@font-face {
  font-family: "Basis Grotesque";
  src: url("HTML/webfonts/fontsfree-net-basisgrotesquepro-regular-webfont.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Basis Grotesque";
  src: url("HTML/webfonts/fontsfree-net-basisgrotesquepro-medium-webfont.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #050607;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.74);
  background: #050607;
  font-family:
    "Basis Grotesque", "Helvetica Neue", Helvetica, Arial, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  cursor: none;
}

.inner-body {
  overflow: auto;
}

body.is-menu-open {
  overflow: hidden;
}

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

.inner-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(14px, 2.2vw, 26px) clamp(22px, 4vw, 52px);
  color: rgba(255, 255, 255, 0.74);
  background: linear-gradient(180deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0));
  transition:
    background 260ms ease,
    box-shadow 260ms ease,
    backdrop-filter 260ms ease;
}

.inner-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.96), rgba(5, 6, 7, 0.82));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
}

.inner-logo {
  position: relative;
  z-index: 60;
  flex: 0 0 auto;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.24em;
  text-indent: 0.24em;
}

.menu-toggle {
  position: fixed;
  top: clamp(14px, 2.2vw, 26px);
  right: clamp(22px, 4vw, 52px);
  z-index: 60;
  display: grid;
  grid-template-columns: auto 22px;
  width: auto;
  height: 44px;
  align-items: center;
  gap: 16px;
  border: 0;
  padding: 0 0 0 8px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle::before {
  content: "Меню";
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transform: translateX(0);
  transition:
    color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: translateX(-4px);
}

.menu-toggle:hover::before,
.menu-toggle:focus-visible::before {
  color: rgba(255, 255, 255, 0.74);
  transform: translateX(-4px);
}

.inner-header.is-menu-open .menu-toggle::before {
  content: "Закрыть";
  color: rgba(255, 255, 255, 0.74);
}

.menu-toggle span {
  display: block;
  position: absolute;
  right: 0;
  width: 18px;
  height: 2px;
  background: currentColor;
  transform-origin: center;
  transition:
    opacity 180ms ease,
    top 220ms ease,
    width 220ms ease,
    transform 220ms ease,
    background 180ms ease;
}

.menu-toggle span:nth-child(1) {
  top: 17px;
}

.menu-toggle span:nth-child(2) {
  top: 25px;
}

.menu-toggle:hover span:nth-child(1),
.menu-toggle:focus-visible span:nth-child(1) {
  top: 14px;
  width: 22px;
}

.menu-toggle:hover span:nth-child(2),
.menu-toggle:focus-visible span:nth-child(2) {
  top: 28px;
  width: 22px;
}

.inner-header.is-menu-open .menu-toggle span:nth-child(1) {
  top: 21px;
  width: 18px;
  transform: rotate(45deg);
}

.inner-header.is-menu-open .menu-toggle span:nth-child(2) {
  top: 21px;
  width: 18px;
  transform: rotate(-45deg);
}

.inner-header.is-menu-open .menu-toggle:hover,
.inner-header.is-menu-open .menu-toggle:focus-visible {
  transform: translateX(0);
}

.inner-header.is-menu-open .menu-toggle:hover::before,
.inner-header.is-menu-open .menu-toggle:focus-visible::before {
  transform: translateX(0);
}

.menu-toggle span:nth-child(3) {
  display: none;
}

.inner-nav {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  width: 100%;
  align-content: center;
  justify-items: center;
  gap: clamp(4px, 0.7vw, 10px);
  padding: clamp(94px, 12vw, 150px) clamp(24px, 6vw, 80px) clamp(48px, 6vw, 90px);
  background:
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.98), rgba(5, 6, 7, 0.96));
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transform: translateY(-16px);
  transition:
    opacity 280ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s linear 280ms;
}

.inner-nav::before,
.inner-nav::after {
  position: absolute;
  bottom: clamp(26px, 4vw, 46px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inner-nav::before {
  content: "WALD Studio";
  left: clamp(24px, 4vw, 52px);
}

.inner-nav::after {
  content: "Design. Production. Installation.";
  right: clamp(24px, 4vw, 52px);
}

.inner-header.is-menu-open .inner-nav {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
  transform: translateY(0);
  transition:
    opacity 320ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0s;
}

.inner-nav a {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: auto;
  padding: 0;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(80px);
  transition:
    opacity 460ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    color 180ms ease,
    filter 180ms ease;
}

.inner-header.is-menu-open .inner-nav a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(70ms + var(--menu-index, 0) * 45ms);
}

.inner-nav:hover a,
.inner-nav.is-hovering a {
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.inner-header.is-menu-open .inner-nav a[aria-current="page"] {
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.inner-nav a span {
  position: relative;
  display: block;
  transition: transform 220ms ease;
}

.inner-nav a span::before {
  content: attr(data-hover);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: rgba(255, 255, 255, 0.74);
}

.inner-nav a:hover,
.inner-nav a.is-hovered {
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.inner-nav:hover a[aria-current="page"]:not(:hover) {
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.inner-nav.is-hovering a[aria-current="page"]:not(.is-hovered) {
  color: rgba(255, 255, 255, 0.74);
  opacity: 1;
}

.inner-nav:hover a:hover {
  opacity: 1;
}

.inner-nav a:hover span,
.inner-nav a.is-hovered span {
  transform: translateY(-100%);
}

.inner-header.is-menu-open .inner-nav a:hover span,
.inner-header.is-menu-open .inner-nav a.is-hovered span {
  transform: translateY(-100%);
}

.inner-back {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.74);
  transition: color 180ms ease;
}

.inner-back:hover {
  color: rgba(255, 255, 255, 0.74);
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: #050607;
  transform: translateY(0);
  animation: loaderExit 900ms cubic-bezier(0.76, 0, 0.24, 1) 280ms forwards;
  pointer-events: none;
}

.page-loader::before,
.page-loader::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.page-loader::before {
  content: "Loading";
  top: calc(50% - 24px);
}

.page-loader::after {
  content: "";
  top: 50%;
  width: min(240px, 54vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.86), transparent);
  animation: loaderLine 820ms cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

.cursor {
  position: fixed;
  z-index: 80;
  left: 0;
  top: 0;
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.74);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(0.72);
  transition:
    opacity 160ms ease,
    transform 220ms ease;
  pointer-events: none;
  mix-blend-mode: difference;
}

.cursor.is-visible {
  opacity: 1;
}

.cursor.is-active {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.service-page {
  min-height: 100svh;
  background: #050607;
}

.service-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(120px, 14vw, 180px) clamp(24px, 6vw, 80px) clamp(62px, 7vw, 96px);
  isolation: isolate;
}

.service-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-size: 400% 100%;
  filter: brightness(1.08) saturate(0.92) contrast(1.05);
  transform: scale(1.04);
}

.service-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.34), rgba(5, 6, 7, 0.08) 42%, rgba(5, 6, 7, 0.9)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0.12) 56%, rgba(5, 6, 7, 0.68));
}

.page-yachts .service-bg {
  background-position: 0% center;
}

.page-automotive .service-bg {
  background-position: 33.333% center;
}

.page-interior .service-bg {
  background-position: 66.666% center;
}

.page-large .service-bg {
  background-position: 100% center;
}

.service-hero-content {
  width: min(940px, 100%);
  opacity: 0;
  transform: translateY(28px);
  animation: columnIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 520ms forwards;
}

.service-kicker {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.service-hero h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 150px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-transform: uppercase;
}

.service-hero p:last-child {
  max-width: 700px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.55;
}

.serano-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(18px, 2.5vw, 34px);
  min-height: 100svh;
  padding: clamp(112px, 12vw, 170px) clamp(24px, 5vw, 72px) clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 24%),
    #050607;
}

.grid-intro {
  grid-column: 1 / 6;
  align-self: center;
  opacity: 0;
  transform: translateY(28px);
  animation: columnIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 520ms forwards;
}

.grid-intro h1 {
  display: grid;
  gap: 0.04em;
  margin: 0;
  font-size: clamp(50px, 5.7vw, 82px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.grid-intro p:last-child {
  max-width: 520px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.55;
}

.grid-card {
  position: relative;
  display: grid;
  min-height: 280px;
  overflow: hidden;
  align-items: end;
  padding: clamp(18px, 2.8vw, 34px);
  background: #0a0b0c;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.grid-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 34%, rgba(0, 0, 0, 0.82)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 60%);
}

.grid-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-position: var(--shift, 33.333%) center;
  background-size: 400% 100%;
  filter: brightness(1.12) saturate(0.95) contrast(1.06);
  transform: scale(1.04);
  transition:
    filter 360ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.grid-card:hover .grid-image {
  filter: brightness(1.28) saturate(1.08) contrast(1.08);
  transform: scale(1.1);
}

.card-large {
  grid-column: 6 / 13;
  grid-row: span 2;
  min-height: min(68svh, 720px);
}

.card-medium {
  grid-column: 3 / 8;
  min-height: 430px;
}

.card-small {
  min-height: 340px;
}

.card-protection {
  grid-column: 1 / 5;
}

.card-details {
  grid-column: 5 / 10;
}

.card-optics {
  grid-column: 10 / 13;
  align-self: end;
}

.grid-caption {
  display: grid;
  gap: 10px;
}

.grid-caption strong {
  font-size: clamp(28px, 4vw, 62px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.card-small .grid-caption strong {
  font-size: clamp(24px, 3vw, 42px);
}

.grid-caption em {
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.grid-caption small {
  position: absolute;
  top: clamp(18px, 2vw, 26px);
  right: clamp(18px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
}

.direction-showcase-slider {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: clamp(110px, 12vw, 162px) clamp(24px, 6vw, 80px) clamp(74px, 8vw, 112px);
  background: #050607;
  isolation: isolate;
}

.direction-showcase-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.08), transparent 24%),
    #050607;
}

.slider-copy {
  position: relative;
  z-index: 4;
  width: min(720px, 52vw);
  margin-top: clamp(-284px, -20vw, -190px);
  opacity: 0;
  transform: translateY(46px);
  animation: columnIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 440ms forwards;
}

.slider-copy h1 {
  display: grid;
  gap: 0.02em;
  margin: 0;
  font-size: clamp(42px, 5.8vw, 86px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.slider-copy h1 span {
  display: block;
}

.slider-copy p:last-child {
  max-width: 560px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.6vw, 22px);
  line-height: 1.55;
}

.slider-viewport {
  position: absolute;
  z-index: 1;
  inset: 0;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.slider-viewport.is-dragging {
  cursor: grabbing;
}

.direction-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: end;
  padding: clamp(110px, 12vw, 162px) clamp(24px, 6vw, 80px) clamp(112px, 10vw, 150px);
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transform: scale(1.04);
  transition:
    opacity 540ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.slide-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-position: var(--shift, 50%) center;
  background-size: 400% 100%;
  filter: brightness(1.08) saturate(0.96) contrast(1.08);
  transform: scale(1.06);
  transition:
    filter 480ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-color-reveal {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
  transform: scale(1.06);
  transition:
    opacity 260ms ease,
    transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-slide.is-active .slide-color-reveal {
  opacity: 1;
  transform: scale(1.01);
}

.page-automotive .showcase-slider-page .slide-visual {
  background-position: center center !important;
}

.direction-slide.is-active .slide-visual {
  filter: brightness(1.2) saturate(1.02) contrast(1.08);
  transform: scale(1.01);
}

.direction-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.9), rgba(5, 6, 7, 0.24) 48%, rgba(5, 6, 7, 0.62)),
    linear-gradient(180deg, rgba(5, 6, 7, 0.42), transparent 34%, rgba(5, 6, 7, 0.86));
}

.slide-caption {
  position: relative;
  z-index: 3;
  width: min(430px, 34vw);
  opacity: 0;
  text-align: right;
  transform: translateY(42px);
  transition:
    opacity 520ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-slide.is-active .slide-caption {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 180ms;
}

.slide-caption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.slide-caption h2 {
  margin: 18px 0 14px;
  font-size: clamp(28px, 3.6vw, 56px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  hyphens: none;
  overflow-wrap: normal;
  word-break: normal;
}

.slide-caption .slide-title-right {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: 0;
  text-align: right !important;
}

.slide-caption p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.slider-footer {
  position: absolute;
  z-index: 5;
  left: clamp(24px, 6vw, 80px);
  right: clamp(24px, 6vw, 80px);
  bottom: clamp(26px, 4vw, 46px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slider-counter {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.slider-counter span:first-child {
  color: rgba(255, 255, 255, 0.74);
}

.slider-counter::before {
  content: "";
  width: clamp(42px, 8vw, 120px);
  height: 1px;
  background: rgba(255, 255, 255, 0.34);
}

.slider-actions {
  display: flex;
  gap: 22px;
}

.slider-actions button {
  border: 0;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.slider-actions button:hover {
  border-color: #fff;
  color: rgba(255, 255, 255, 0.74);
  transform: translateY(-2px);
}

.service-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: clamp(26px, 4vw, 46px);
}

.service-meta span {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(70px, 10vw, 130px) clamp(24px, 6vw, 80px);
}

.service-intro,
.service-grid article,
.grid-card,
.showcase-panel,
.spec-heading,
.spec-list article,
.automotive-cta,
.next-direction {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-intro.is-visible,
.service-grid article.is-visible,
.grid-card.is-visible,
.showcase-panel.is-visible,
.spec-heading.is-visible,
.spec-list article.is-visible,
.automotive-cta.is-visible,
.next-direction.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-intro {
  position: sticky;
  top: 110px;
  align-self: start;
}

.service-intro p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2.3vw, 30px);
  line-height: 1.42;
}

.service-cta {
  display: inline-flex;
  margin-top: 34px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.service-grid article {
  min-height: 230px;
  padding: clamp(6px, 1.2vw, 14px) clamp(26px, 4vw, 46px) clamp(26px, 4vw, 46px);
  background: #050607;
}

.automotive-overview .service-grid article:first-child {
  padding-top: 0;
}

.service-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.service-grid h2 {
  margin: 34px 0 16px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
}

.service-grid h2 a {
  color: inherit;
  transition: color 220ms ease;
}

.service-grid h2 a:hover {
  color: rgba(255, 255, 255, 0.74);
}

.service-grid p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.automotive-overview .service-grid p {
  max-width: 860px;
}

@media (min-width: 1600px) {
  .automotive-overview.service-content {
    grid-template-columns: minmax(420px, 0.68fr) minmax(0, 1.32fr);
  }

  .automotive-overview .service-grid p {
    max-width: none;
  }
}

.automotive-showcase {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: minmax(340px, 42vw) minmax(280px, 30vw);
  gap: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.showcase-panel {
  position: relative;
  display: flex;
  min-height: 280px;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  padding: clamp(28px, 5vw, 70px);
  background: #050607;
  isolation: isolate;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-position: 33.333% center;
  background-size: 400% 100%;
  filter: brightness(1.12) saturate(0.96) contrast(1.06);
  transform: scale(1.04);
}

.showcase-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent, rgba(5, 6, 7, 0.88)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.58), transparent 62%);
}

.panel-wide {
  grid-row: span 2;
}

.panel-tall::before {
  background-position: 28% center;
}

.panel-soft::before {
  background-position: 40% center;
}

.showcase-panel span,
.automotive-cta p,
.spec-list span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-panel h2 {
  max-width: 560px;
  margin: 18px 0 0;
  font-size: clamp(34px, 5.6vw, 86px);
  font-weight: 300;
  line-height: 0.94;
  letter-spacing: 0.04em;
}

.automotive-specs {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 92px);
  padding: clamp(74px, 10vw, 138px) clamp(24px, 6vw, 80px);
  background: #08090a;
}

.spec-heading {
  position: sticky;
  top: 110px;
  align-self: start;
}

.spec-heading h2,
.automotive-cta h2 {
  margin: 0;
  font-size: clamp(36px, 6vw, 86px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.03em;
}

.spec-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.spec-list article {
  display: grid;
  grid-template-columns: 70px minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(16px, 3vw, 42px);
  padding: clamp(26px, 4vw, 44px) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.spec-list h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 300;
  line-height: 1.05;
}

.spec-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.65;
}

.automotive-projects {
  padding: clamp(74px, 10vw, 138px) clamp(24px, 6vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #050607;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.6fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: end;
  margin-bottom: clamp(34px, 6vw, 72px);
}

.automotive-projects .section-heading {
  align-items: start;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(38px, 6.6vw, 96px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.automotive-projects .section-heading h2 {
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(42px, 5.8vw, 86px);
  text-align: right;
}

.section-heading p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.55;
}

.section-heading p:last-child a {
  color: rgba(255, 255, 255, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
}

.automotive-project-group + .automotive-project-group {
  margin-top: clamp(34px, 6vw, 78px);
}

.automotive-project-group {
  scroll-margin-top: clamp(92px, 8vw, 132px);
}

.automotive-project-direction {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: clamp(18px, 3vw, 42px);
  align-items: baseline;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.74);
}

.automotive-project-direction span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.automotive-project-direction h3 {
  margin: 0;
  font-size: clamp(24px, 3.2vw, 48px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.automotive-project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.automotive-project-card {
  position: relative;
  display: grid;
  min-height: clamp(420px, 46vw, 680px);
  align-content: end;
  overflow: hidden;
  padding: clamp(24px, 4vw, 54px);
  background: #08090a;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.automotive-project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.automotive-project-card.is-featured {
  grid-column: span 2;
}

.automotive-project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 22%, rgba(0, 0, 0, 0.88)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.42), transparent 62%);
}

.automotive-project-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.12) saturate(1.04) contrast(1.04);
  transform: scale(1.02);
  transition:
    filter 360ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.automotive-project-card:hover img {
  filter: brightness(1.26) saturate(1.1) contrast(1.06);
  transform: scale(1.08);
}

.automotive-project-card h3 {
  max-width: 620px;
  margin: 18px 0 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(34px, 5.4vw, 82px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.automotive-project-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.65;
}

.project-detail-page {
  min-height: 100svh;
  background: #050607;
}

.project-detail-hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  align-items: end;
  overflow: hidden;
  padding: clamp(118px, 14vw, 190px) clamp(24px, 6vw, 80px) clamp(58px, 8vw, 98px);
  isolation: isolate;
}

.project-detail-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.18), rgba(5, 6, 7, 0.88)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.7), rgba(5, 6, 7, 0.12) 64%);
}

.project-detail-hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.04) contrast(1.06);
}

.project-detail-copy {
  max-width: 920px;
  opacity: 0;
  transform: translateY(42px);
  animation: columnIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 420ms forwards;
}

.project-back {
  display: inline-flex;
  margin-bottom: clamp(28px, 4vw, 48px);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-detail-copy h1 {
  display: grid;
  gap: 0.02em;
  margin: 0;
  font-size: clamp(64px, 10vw, 148px);
  font-weight: 300;
  line-height: 0.84;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-detail-copy p:last-child {
  max-width: 640px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
}

.case-overview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: clamp(34px, 7vw, 104px);
  padding: clamp(78px, 10vw, 134px) clamp(24px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: #050607;
}

.case-overview-lead,
.case-facts div,
.case-photo {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 620ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-overview-lead.is-visible,
.case-facts div.is-visible,
.case-photo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.case-overview-lead h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(42px, 7.6vw, 116px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.case-facts {
  display: grid;
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.case-facts div {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.case-facts dt,
.case-facts dd {
  margin: 0;
}

.case-facts dt {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.case-facts dd {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.5;
}

.case-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 3vw, 40px);
  padding: clamp(26px, 4vw, 54px) clamp(24px, 6vw, 80px) clamp(82px, 11vw, 150px);
  background: #050607;
}

.case-photo {
  min-height: clamp(360px, 42vw, 680px);
  margin: 0;
  overflow: hidden;
  background: #0a0b0c;
}

.case-photo-full {
  grid-column: 1 / -1;
  min-height: clamp(520px, 66vw, 980px);
}

.case-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
  filter: brightness(1.06) saturate(1.02) contrast(1.04);
  transform: scale(1.01);
  transition:
    filter 360ms ease,
    transform 900ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-photo:hover img {
  filter: brightness(1.18) saturate(1.08) contrast(1.06);
  transform: scale(1.045);
}

body.is-lightbox-open {
  overflow: hidden;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: rgba(5, 6, 7, 0.94);
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

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

.gallery-lightbox img {
  display: block;
  max-width: min(100%, 1640px);
  max-height: min(100%, 82svh);
  object-fit: contain;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.48);
}

.gallery-lightbox-close,
.gallery-lightbox-nav {
  position: absolute;
  border: 0;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.gallery-lightbox-close:hover,
.gallery-lightbox-nav:hover {
  color: rgba(255, 255, 255, 0.74);
}

.gallery-lightbox-close {
  top: clamp(22px, 4vw, 44px);
  right: clamp(20px, 5vw, 58px);
}

.gallery-lightbox-close:hover {
  transform: translateY(-2px);
}

.gallery-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox-prev {
  left: clamp(18px, 4vw, 52px);
}

.gallery-lightbox-next {
  right: clamp(18px, 4vw, 52px);
}

.gallery-lightbox-prev:hover {
  transform: translate(-4px, -50%);
}

.gallery-lightbox-next:hover {
  transform: translate(4px, -50%);
}

.gallery-lightbox-count {
  position: absolute;
  left: clamp(20px, 5vw, 58px);
  bottom: clamp(22px, 4vw, 44px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
}

.project-detail-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px clamp(24px, 6vw, 80px) clamp(76px, 10vw, 136px);
  background: #050607;
}

.project-photo {
  min-height: clamp(270px, 28vw, 460px);
  margin: 0;
  overflow: hidden;
  background: #0b0c0d;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-photo.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-photo-wide {
  grid-column: span 2;
}

.project-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) saturate(1.04) contrast(1.04);
  transition:
    filter 360ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-photo:hover img {
  filter: brightness(1.18) saturate(1.08) contrast(1.06);
  transform: scale(1.045);
}

.automotive-cta {
  display: grid;
  min-height: 70svh;
  align-content: center;
  justify-items: center;
  padding: clamp(70px, 10vw, 130px) 24px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0.08), transparent 28%),
    #050607;
}

.automotive-cta h2 {
  width: min(980px, 100%);
  margin-top: 22px;
}

.automotive-cta a {
  margin-top: 36px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.next-direction {
  position: relative;
  display: grid;
  min-height: 62svh;
  place-items: center;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  isolation: isolate;
}

.next-direction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-size: 400% 100%;
  filter: brightness(0.88) saturate(0.9) contrast(1.08);
  opacity: 0.7;
  transition:
    filter 360ms ease,
    opacity 360ms ease,
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.next-direction::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(5, 6, 7, 0.82), rgba(5, 6, 7, 0.4), rgba(5, 6, 7, 0.9));
}

.next-direction:hover::before {
  filter: brightness(1.08) saturate(1) contrast(1.08);
  opacity: 1;
  transform: scale(1.06);
}

.next-direction span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.next-direction strong {
  display: block;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(42px, 8vw, 112px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: 0.08em;
  text-indent: 0.08em;
  text-transform: uppercase;
}

.projects-page {
  min-height: 100svh;
  background: #050607;
}

.projects-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.62fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
  padding: clamp(126px, 14vw, 190px) clamp(24px, 6vw, 80px) clamp(48px, 7vw, 86px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.projects-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.projects-hero h1 {
  display: grid;
  gap: 0.02em;
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.projects-hero p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 2vw, 24px);
  line-height: 1.5;
}

.projects-gallery {
  padding: clamp(26px, 4vw, 52px) clamp(24px, 6vw, 80px) clamp(76px, 10vw, 136px);
}

.project-filters {
  position: sticky;
  z-index: 8;
  top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 18px 0 24px;
  background: linear-gradient(180deg, #050607 74%, rgba(5, 6, 7, 0));
}

.project-filter {
  min-height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.74);
  background: transparent;
  font: inherit;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background 180ms ease;
}

.project-filter:hover,
.project-filter.is-active {
  border-color: rgba(255, 255, 255, 0.74);
  color: #050607;
  background: #fff;
}

.project-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.project-card {
  position: relative;
  display: grid;
  min-height: clamp(320px, 30vw, 470px);
  align-content: end;
  overflow: hidden;
  padding: clamp(22px, 3.4vw, 46px);
  background: #08090a;
  isolation: isolate;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 240ms ease;
}

.project-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card.is-hidden {
  display: none;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.88)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.46), transparent 64%);
}

.project-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-position: var(--shift, 50%) center;
  background-size: 400% 100%;
  filter: brightness(1.16) saturate(0.98) contrast(1.06);
  transform: scale(1.04);
  transition:
    filter 360ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.project-card:hover .project-image {
  filter: brightness(1.3) saturate(1.08) contrast(1.08);
  transform: scale(1.1);
}

.project-wide {
  grid-column: span 2;
}

.project-tall {
  grid-row: span 2;
  min-height: clamp(620px, 62vw, 940px);
}

.project-meta {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-card h2 {
  max-width: 620px;
  margin: 16px 0 0;
  font-size: clamp(28px, 4.2vw, 64px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.035em;
  text-transform: uppercase;
}

.info-page {
  min-height: 100svh;
  background: #050607;
}

.info-hero,
.contact-hero {
  display: grid;
  min-height: 82svh;
  padding: clamp(126px, 14vw, 190px) clamp(24px, 6vw, 80px) clamp(58px, 8vw, 98px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.08), transparent 24%),
    #050607;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.info-hero {
  align-content: end;
}

.contact-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.48fr);
  gap: clamp(36px, 7vw, 110px);
  align-items: end;
}

.info-hero.is-visible,
.contact-hero.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-hero h1,
.contact-hero h1 {
  display: grid;
  gap: 0.02em;
  margin: 0;
  font-size: clamp(58px, 9vw, 132px);
  font-weight: 300;
  line-height: 0.86;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.info-hero > p:last-child {
  max-width: 780px;
  margin: clamp(28px, 4vw, 44px) 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2.3vw, 28px);
  line-height: 1.46;
}

.info-content {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(36px, 7vw, 96px);
  padding: clamp(70px, 10vw, 130px) clamp(24px, 6vw, 80px);
}

.info-content.compact {
  background: #08090a;
}

.info-lead {
  position: sticky;
  top: 110px;
  align-self: start;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.info-lead.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-lead p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(19px, 2.4vw, 31px);
  line-height: 1.42;
}

.info-list,
.material-groups,
.contact-grid {
  display: grid;
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.info-list article,
.material-groups article,
.contact-grid article {
  min-height: 250px;
  padding: clamp(26px, 4vw, 46px);
  background: #050607;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.info-list article.is-visible,
.material-groups article.is-visible,
.contact-grid article.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.info-list span,
.material-groups span,
.contact-grid span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.info-list h2,
.material-groups h2,
.contact-grid h2 {
  margin: 34px 0 16px;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.04em;
}

.info-list p,
.material-groups p,
.contact-grid p {
  max-width: 640px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.7;
}

.info-directions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.14);
}

.info-directions a {
  display: grid;
  min-height: 32svh;
  align-items: end;
  padding: clamp(28px, 4vw, 48px);
  background: #08090a;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(28px, 3.8vw, 56px);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 680ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1),
    background 240ms ease;
}

.info-directions a:hover {
  background: #101214;
}

.info-directions a.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.material-groups,
.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: clamp(70px, 10vw, 130px) clamp(24px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.08)),
    #050607;
}

.contact-panel {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.55;
}

.contact-panel a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 0.04em;
}

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(20px, 3vw, 34px) clamp(22px, 4vw, 48px);
  pointer-events: none;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(210px, 26vh, 285px);
  background:
    radial-gradient(ellipse at 50% 34%, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.98) 28%, rgba(0, 0, 0, 0.76) 55%, transparent 86%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.96), transparent);
}

.logo {
  pointer-events: auto;
}

.logo {
  position: absolute;
  left: 50%;
  top: clamp(28px, 4.2vw, 48px);
  display: grid;
  justify-items: center;
  transform: translateX(-50%);
  isolation: isolate;
  opacity: 0;
  animation: logoIn 900ms cubic-bezier(0.16, 1, 0.3, 1) 760ms forwards;
}

.logo::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -22px;
  left: 50%;
  width: clamp(380px, 46vw, 720px);
  height: clamp(150px, 18vw, 240px);
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.96) 52%, transparent 82%);
}

.logo-main {
  font-size: clamp(42px, 5.2vw, 74px);
  font-weight: 300;
  line-height: 0.8;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
}

.logo-sub {
  margin-top: 16px;
  font-size: clamp(10px, 1vw, 14px);
  font-weight: 400;
  letter-spacing: 0.62em;
  text-indent: 0.62em;
  opacity: 0.9;
}

.split-page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.split-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 3;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.78) 18%,
      rgba(0, 0, 0, 0.24) 36%,
      rgba(0, 0, 0, 0) 52%
    );
  pointer-events: none;
}

.tagline {
  position: fixed;
  z-index: 11;
  top: clamp(128px, 16vh, 165px);
  left: 50%;
  display: grid;
  gap: 14px;
  width: min(680px, calc(100% - 36px));
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
  display: grid;
  isolation: isolate;
  opacity: 0;
  animation: fadeLift 800ms cubic-bezier(0.16, 1, 0.3, 1) 940ms forwards;
}

.tagline::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 16%;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.88), transparent 72%);
}

.tagline p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 100svh;
}

.direction {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 100svh;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: clamp(34px, 4vw, 54px) clamp(18px, 3vw, 34px);
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  isolation: isolate;
  opacity: 0;
  transform: translateY(28px);
  animation: columnIn 900ms cubic-bezier(0.16, 1, 0.3, 1) calc(520ms + var(--index) * 90ms) forwards;
}

.direction:last-child {
  border-right: 0;
}

.direction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("assets/split-reference1.jpg?v=1");
  background-size: 400% 100%;
  filter: brightness(1.18) saturate(0.95) contrast(1.04);
  opacity: 0.96;
  transform: scale(1.02);
  transition:
    filter 300ms ease,
    opacity 180ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.02) 0%,
      rgba(0, 0, 0, 0.08) 42%,
      rgba(0, 0, 0, 0.62) 66%,
      rgba(0, 0, 0, 0.9) 100%
    ),
    linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 48%, rgba(0, 0, 0, 0.08));
}

.direction:hover::before {
  filter: brightness(1.24) saturate(1.06) contrast(1.08);
  opacity: 1;
  transform: translate3d(var(--move-x, 0), var(--move-y, 0), 0) scale(1.08);
}

.direction-content {
  position: relative;
  z-index: 4;
  display: grid;
  justify-items: center;
  width: min(100%, 360px);
  min-height: 185px;
  align-content: end;
  text-align: center;
  transform: translateY(0);
  transition:
    opacity 240ms ease,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction-grid:has(.direction:hover) .direction:not(:hover) .direction-content {
  opacity: 0.36;
  transform: translateY(12px);
}

.direction:hover .direction-content {
  transform: translateY(-10px);
}

.direction-yachts::before {
  background-position: 0% center;
}

.direction-auto::before {
  background-position: 33.333% center;
}

.direction-interior::before {
  background-position: 66.666% center;
}

.direction-large::before {
  background-position: 100% center;
}

.direction-title {
  width: 100%;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(24px, 2.35vw, 38px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: 0.16em;
  text-indent: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.85);
}

.direction-copy {
  max-width: 300px;
  min-height: 36px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(10px, 0.95vw, 13px);
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.95);
}

.direction-line {
  width: 64px;
  height: 1px;
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.38);
  transform-origin: center;
  transition:
    background 180ms ease,
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1);
}

.direction:hover .direction-line {
  background: rgba(255, 255, 255, 0.78);
  transform: scaleX(1.42);
}

.direction-link {
  margin-top: clamp(70px, 10vh, 118px);
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.95);
}

.direction-link span {
  display: inline-block;
  margin-left: 12px;
  font-size: 18px;
  transform: translateY(1px);
  transition: transform 180ms ease;
}

.direction:hover .direction-link span {
  transform: translate(7px, 1px);
}

body.is-leaving .split-page,
body.is-leaving .site-header {
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.76, 0, 0.24, 1);
}

@keyframes loaderExit {
  to {
    transform: translateY(-100%);
  }
}

@keyframes loaderLine {
  from {
    clip-path: inset(0 50% 0 50%);
  }

  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: translate(-50%, -12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes fadeLift {
  from {
    opacity: 0;
    transform: translate(-50%, 12px);
  }

  to {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

@keyframes columnIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .direction {
    padding-inline: 14px;
  }

  .direction-title {
    font-size: clamp(21px, 2.8vw, 30px);
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  .direction-copy {
    font-size: 10px;
  }
}

@media (min-width: 641px) and (max-width: 1180px) {
  .showcase-slider-page .direction-showcase-slider {
    align-items: start;
    padding: clamp(96px, 10vw, 122px) clamp(36px, 5vw, 62px) clamp(64px, 8vw, 96px);
  }

  .showcase-slider-page .slider-copy {
    width: min(620px, 58vw);
    margin-top: clamp(54px, 8vh, 96px);
  }

  .showcase-slider-page .slide-visual {
    background-position: center center !important;
    background-repeat: no-repeat;
    background-size: min(92vw, 980px) auto !important;
  }

  .showcase-slider-page .direction-slide {
    align-items: end;
    padding: clamp(96px, 10vw, 122px) clamp(36px, 5vw, 62px) clamp(178px, 19vh, 256px);
  }

  .showcase-slider-page .slide-caption {
    width: min(380px, 36vw);
  }

  .showcase-slider-page .slider-footer {
    bottom: clamp(147px, 15.5vh, 210px);
  }
}

@media (max-width: 640px) {
  body {
    overflow: auto;
    cursor: auto;
  }

  .cursor {
    display: none;
  }

  .page-loader {
    animation-duration: 520ms;
    animation-delay: 120ms;
  }

  .site-header {
    padding: 14px 18px;
  }

  .site-header::before {
    display: none;
  }

  .logo {
    top: 16px;
  }

  .logo::before {
    display: none;
  }

  .logo-main {
    font-size: 27px;
    letter-spacing: 0.24em;
    text-indent: 0.24em;
  }

  .logo-sub {
    display: none;
  }

  .tagline {
    display: none;
  }

  .split-page::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.02) 26%, rgba(0, 0, 0, 0.4)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.08), transparent 54%);
  }

  .direction::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.02) 45%, rgba(0, 0, 0, 0.54)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 60%);
  }

  .direction-grid {
    grid-template-columns: 1fr;
    min-height: 100svh;
  }

  .direction {
    min-height: 25svh;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 24px 26px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation-delay: calc(320ms + var(--index) * 70ms);
  }

  .direction::before {
    background-size: 400% auto;
  }

  .direction:first-child {
    padding-top: 108px;
    min-height: 34svh;
  }

  .direction-content {
    width: 100%;
    min-height: 116px;
    justify-items: start;
    text-align: left;
  }

  .direction-title {
    font-size: clamp(27px, 9vw, 40px);
    color: rgba(255, 255, 255, 0.74);
    text-indent: 0;
  }

  .direction-copy {
    max-width: 260px;
    min-height: auto;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 10px;
  }

  .direction-line {
    margin-top: 12px;
  }

  .direction-link {
    margin-top: 22px;
  }

  .inner-header {
    display: flex;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(5, 6, 7, 0.88), rgba(5, 6, 7, 0));
  }

  .inner-logo {
    width: fit-content;
    font-size: 27px;
  }

  .menu-toggle {
    top: 18px;
    right: 20px;
    height: 40px;
  }

  .inner-nav {
    inset: 0;
    width: 100%;
    align-content: center;
    gap: clamp(2px, 1.2vw, 6px);
    padding: 96px 24px 52px;
  }

  .inner-nav a {
    font-size: clamp(28px, 9.6vw, 44px);
    line-height: 0.94;
  }

  .inner-nav::before,
  .inner-nav::after {
    right: auto;
    left: 24px;
    text-align: left;
  }

  .inner-nav::before {
    bottom: 44px;
  }

  .inner-nav::after {
    bottom: 24px;
  }

  .inner-back {
    font-size: 10px;
  }

  .service-hero {
    min-height: 82svh;
    padding: 108px 24px 44px;
  }

  .direction-showcase-slider {
    min-height: 100svh;
    padding: 108px 24px 116px;
    align-items: start;
  }

  .slider-copy {
    width: 100%;
    margin-top: 42px;
  }

  .slider-copy h1 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

  .slider-copy p:last-child {
    max-width: 330px;
    font-size: 16px;
  }

  .direction-slide {
    align-items: end;
    justify-items: start;
    padding: 108px 24px 118px;
  }

  .slide-visual {
    background-size: 400% auto;
  }

  .direction-slide::after {
    background:
      linear-gradient(180deg, rgba(5, 6, 7, 0.78), rgba(5, 6, 7, 0.18) 48%, rgba(5, 6, 7, 0.92)),
      linear-gradient(90deg, rgba(5, 6, 7, 0.74), rgba(5, 6, 7, 0.2));
  }

  .slide-caption {
    width: min(342px, 100%);
    text-align: left;
  }

  .slide-caption .slide-title-right {
    text-align: left !important;
  }

  .slide-caption h2 {
    font-size: clamp(28px, 8.4vw, 38px);
  }

  .slider-footer {
    left: 24px;
    right: 24px;
    bottom: 28px;
  }

  .slider-counter::before {
    width: 42px;
  }

  .slider-actions {
    gap: 16px;
  }

  .serano-showcase-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 108px 24px 54px;
  }

  .grid-intro,
  .card-large,
  .card-medium,
  .card-small,
  .grid-card:nth-of-type(3),
  .grid-card:nth-of-type(5) {
    grid-column: auto;
  }

  .grid-intro h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .grid-card,
  .card-large,
  .card-medium,
  .card-small {
    min-height: 52svh;
  }

  .grid-image {
    background-size: 400% auto;
  }

  .service-bg {
    background-size: 400% auto;
  }

  .service-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
    letter-spacing: 0.03em;
    text-indent: 0;
  }

  .page-automotive .service-hero h1 {
    font-size: clamp(34px, 10vw, 46px);
    letter-spacing: 0.02em;
  }

  .service-hero p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

  .service-content {
    grid-template-columns: 1fr;
    padding: 54px 24px 80px;
  }

  .service-intro {
    position: static;
  }

  .service-grid article {
    min-height: auto;
    padding-right: 0;
    padding-left: 0;
  }

  .automotive-showcase {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .showcase-panel {
    min-height: 58svh;
    padding: 32px 24px;
  }

  .panel-wide {
    grid-row: auto;
  }

  .showcase-panel::before {
    background-size: 400% auto;
  }

  .automotive-specs {
    grid-template-columns: 1fr;
    padding: 60px 24px;
  }

  .spec-heading {
    position: static;
  }

  .spec-list article {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .automotive-projects {
    padding: 60px 24px;
  }

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

  .section-heading h2 {
    font-size: clamp(38px, 12vw, 56px);
  }

  .automotive-projects .section-heading h2 {
    font-size: clamp(34px, 9.4vw, 44px);
  }

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

  .automotive-project-direction {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 14px;
  }

  .automotive-project-direction h3 {
    font-size: clamp(24px, 8vw, 34px);
  }

  .automotive-project-card-secondary {
    display: none;
  }

  .automotive-project-card,
  .automotive-project-card.is-featured {
    grid-column: auto;
    min-height: 64svh;
  }

  .project-detail-hero {
    min-height: 88svh;
    padding: 108px 24px 48px;
  }

  .project-detail-copy h1 {
    font-size: clamp(46px, 15vw, 68px);
  }

  .project-detail-copy p:last-child {
    font-size: 16px;
  }

  .case-overview {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 60px 24px;
  }

  .case-overview-lead h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .case-facts div {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px 0;
  }

  .case-gallery {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 24px 72px;
  }

  .case-photo,
  .case-photo-full {
    grid-column: auto;
    min-height: 58svh;
  }

  .project-detail-gallery {
    grid-template-columns: 1fr;
    padding: 1px 24px 72px;
  }

  .project-photo,
  .project-photo-wide {
    grid-column: auto;
    min-height: 58svh;
  }

  .projects-hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 108px 24px 42px;
  }

  .projects-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .projects-hero p:last-child {
    font-size: 16px;
  }

  .projects-gallery {
    padding: 18px 24px 72px;
  }

  .project-filters {
    gap: 6px;
    padding: 14px 0 18px;
  }

  .project-filter {
    min-height: 34px;
    padding: 0 13px;
    font-size: 10px;
  }

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

  .project-card,
  .project-wide,
  .project-tall {
    grid-column: auto;
    grid-row: auto;
    min-height: 62svh;
  }

  .project-image {
    background-size: 400% auto;
  }

  .info-hero,
  .contact-hero {
    min-height: 76svh;
    padding: 108px 24px 42px;
  }

  .contact-hero {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .info-hero h1,
  .contact-hero h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .info-hero > p:last-child {
    font-size: 16px;
  }

  .info-content {
    grid-template-columns: 1fr;
    padding: 54px 24px 72px;
  }

  .info-lead {
    position: static;
  }

  .info-list article,
  .material-groups article,
  .contact-grid article {
    min-height: auto;
  }

  .material-groups,
  .contact-grid,
  .info-directions {
    grid-template-columns: 1fr;
  }

  .material-groups,
  .contact-grid {
    padding: 54px 24px 72px;
  }

  .info-directions a {
    min-height: 22svh;
  }

  .contact-panel {
    padding: 24px;
  }

  .contact-panel a {
    font-size: clamp(20px, 7vw, 28px);
    overflow-wrap: anywhere;
  }

  .automotive-cta {
    min-height: 54svh;
  }

  .next-direction {
    min-height: 42svh;
    padding: 70px 24px;
    text-align: center;
  }

  .next-direction strong {
    font-size: clamp(34px, 11vw, 54px);
    text-indent: 0;
  }
}

p,
.service-kicker,
.grid-caption em,
.grid-caption small,
.slide-caption span,
.slide-caption p,
.slider-counter,
.service-meta span,
.service-intro p,
.service-grid span,
.service-grid p,
.showcase-panel span,
.automotive-cta p,
.spec-list span,
.spec-list p,
.section-heading p:last-child,
.automotive-project-direction span,
.automotive-project-card p,
.project-detail-copy p:last-child,
.next-direction span,
.projects-hero p:last-child,
.project-meta,
.info-hero > p:last-child,
.info-lead p,
.info-list span,
.material-groups span,
.contact-grid span,
.info-list p,
.material-groups p,
.contact-grid p,
.contact-panel p,
.tagline p,
.direction-copy {
  color: rgba(255, 255, 255, 0.54);
}

@media (max-width: 380px), (max-height: 720px) {
  .inner-nav {
    gap: 2px;
    padding-top: 82px;
    padding-bottom: 44px;
  }

  .inner-nav a {
    font-size: clamp(24px, 8.6vw, 34px);
    line-height: 0.92;
  }

  .inner-nav::before,
  .inner-nav::after {
    font-size: 9px;
  }
}

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

  body {
    cursor: auto;
  }

  .cursor,
  .page-loader {
    display: none;
  }
}
