:root {
  --orange: #ff8c00;
  --orange-deep: #ff7300;
  --ink: #121212;
  --black: #050505;
  --graphite: #22252a;
  --muted: #72767d;
  --line: #dedede;
  --paper: #f6f4f0;
  --white: #ffffff;
  --cool: #e8edf2;
  --max: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

body.has-cursor-light {
  cursor: default;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.scroll-progress {
  background: linear-gradient(90deg, var(--orange), #ffd08a);
  height: 3px;
  left: 0;
  position: fixed;
  top: 0;
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left;
  width: 100%;
  z-index: 60;
}

.cursor-light {
  background: radial-gradient(circle, rgba(255, 140, 0, 0.22), rgba(255, 140, 0, 0.08) 34%, transparent 68%);
  border-radius: 50%;
  height: 360px;
  left: 0;
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  transform: translate3d(calc(var(--cursor-x, 0px) - 180px), calc(var(--cursor-y, 0px) - 180px), 0);
  transition: opacity 160ms ease;
  width: 360px;
  z-index: 50;
}

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

.site-header {
  align-items: center;
  background: color-mix(in srgb, #050505 88%, transparent);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  height: 76px;
  justify-content: space-between;
  left: 0;
  padding: 0 clamp(18px, 4vw, 54px);
  position: fixed;
  right: 0;
  top: 0;
  transition:
    background 180ms ease,
    height 180ms ease,
    box-shadow 180ms ease;
  z-index: 30;
}

.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.96);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  height: 66px;
}

.brand {
  align-items: center;
  display: flex;
  min-width: 178px;
}

.brand img {
  height: 42px;
  object-fit: contain;
  width: auto;
}

.nav {
  align-items: center;
  color: rgba(255, 255, 255, 0.82);
  display: flex;
  gap: clamp(18px, 2.2vw, 34px);
  font-size: 14px;
}

.nav a {
  position: relative;
}

.nav a::after {
  background: var(--orange);
  bottom: -9px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

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

.menu-button {
  align-items: center;
  background: transparent;
  border: 0;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  position: absolute;
  transition: transform 180ms ease;
  width: 24px;
}

.menu-button span:first-child {
  transform: translateY(-5px);
}

.menu-button span:last-child {
  transform: translateY(5px);
}

.menu-button.is-open span:first-child {
  transform: rotate(42deg);
}

.menu-button.is-open span:last-child {
  transform: rotate(-42deg);
}

.hero {
  background: var(--black);
  color: var(--white);
  min-height: 82svh;
  overflow: hidden;
  position: relative;
}

.hero-media {
  background-image: url("./assets/hero.webp");
  background-position: 57% center;
  background-size: cover;
  inset: 0;
  opacity: 0.85;
  position: absolute;
  transform: scale(1.02);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86) 0%, rgba(0, 0, 0, 0.62) 38%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0) 46%);
  inset: 0;
  position: absolute;
}

.hero::after {
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255, 140, 0, 0.78) 34.2% 34.45%, transparent 34.7%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.09) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  opacity: 0.52;
  pointer-events: none;
  position: absolute;
}

.hero-inner {
  display: grid;
  margin: 0 auto;
  max-width: var(--max);
  min-height: 82svh;
  padding: 150px clamp(20px, 4vw, 30px) 154px;
  place-content: center start;
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  color: var(--orange);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

.eyebrow {
  border-left: 3px solid var(--orange);
  margin: 0 0 22px;
  padding-left: 13px;
}

.hero h1 {
  font-size: clamp(58px, 11vw, 128px);
  font-weight: 900;
  line-height: 0.95;
  margin: 0;
}

.hero-lead {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2.1vw, 26px);
  margin: 28px 0 0;
  max-width: 720px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.primary-link,
.secondary-link,
.filter,
.service-tab {
  align-items: center;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  min-height: 46px;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.primary-link {
  background: var(--orange);
  border: 1px solid var(--orange);
  color: var(--black);
  font-weight: 800;
  gap: 10px;
  padding: 12px 20px;
}

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--orange-deep);
  border-color: var(--orange-deep);
  transform: translateY(-2px);
}

.secondary-link {
  border: 1px solid rgba(255, 255, 255, 0.34);
  color: var(--white);
  padding: 12px 20px;
}

.secondary-link:hover,
.secondary-link:focus-visible {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.hero-facts {
  align-items: stretch;
  background: rgba(10, 10, 10, 0.82);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  left: 50%;
  max-width: var(--max);
  position: absolute;
  transform: translateX(-50%);
  width: min(calc(100% - 40px), var(--max));
  z-index: 3;
}

.hero-facts div {
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  padding: 22px clamp(14px, 3vw, 34px);
}

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

.hero-facts strong {
  color: var(--orange);
  display: block;
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1;
}

.hero-facts span {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-size: 14px;
  margin-top: 8px;
}

.intro-band {
  align-items: end;
  background: var(--white);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(44px, 7vw, 84px) clamp(20px, 4vw, 30px);
}

.intro-copy h2,
.section-head h2,
.system-copy h2,
.about-copy h2,
.contact-text h2 {
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1.08;
  margin: 12px 0 0;
}

.intro-band p,
.section-head p,
.system-copy p,
.about-copy p,
.contact-text p {
  color: var(--muted);
  font-size: 17px;
  margin: 0;
}

.section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(70px, 9vw, 116px) clamp(20px, 4vw, 30px);
}

.section-head {
  margin-bottom: 34px;
  max-width: 780px;
}

.process-section .section-head {
  max-width: none;
}

.process-section .section-head h2 {
  font-size: clamp(34px, 4.15vw, 52px);
  white-space: nowrap;
}

.section-head p {
  margin-top: 18px;
}

.split-head {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  max-width: none;
}

.timeline-section .section-head h2 span {
  display: block;
}

.work-section .section-head h2 span {
  display: block;
}

.service-tabs,
.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tab,
.filter {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--graphite);
  min-height: 42px;
  padding: 9px 15px;
}

.service-tab.is-active,
.service-tab:hover,
.filter.is-active,
.filter:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--orange);
}

.service-panel {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: 0.26fr minmax(260px, 0.7fr) minmax(260px, 0.68fr);
  margin-top: 18px;
  min-height: 310px;
  overflow: hidden;
  padding: clamp(28px, 5vw, 56px);
  position: relative;
}

.service-panel::after {
  background:
    linear-gradient(120deg, transparent 0 58%, rgba(255, 140, 0, 0.78) 58.2% 58.6%, transparent 58.8%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 88px);
  content: "";
  inset: 0;
  opacity: 0.7;
  pointer-events: none;
  position: absolute;
}

.service-panel > * {
  position: relative;
  z-index: 1;
}

.service-number {
  color: var(--orange);
  font-size: clamp(64px, 10vw, 126px);
  font-weight: 900;
  line-height: 0.82;
}

.service-panel h3 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 0;
}

.service-panel p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  margin: 20px 0 0;
}

.service-panel ul {
  align-self: end;
  color: rgba(255, 255, 255, 0.82);
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-panel li {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 12px;
}

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

.case-card {
  background: var(--white);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  display: grid;
  min-height: 100%;
  overflow: hidden;
  position: relative;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    border-color 180ms ease;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(0);
  transform-style: preserve-3d;
}

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

.case-card:hover {
  border-color: color-mix(in srgb, var(--orange) 48%, var(--line));
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-4px);
}

.case-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.case-card img {
  aspect-ratio: 16 / 10;
  filter: blur(2.4px) saturate(0.82) contrast(0.92);
  height: 100%;
  max-height: 380px;
  object-fit: cover;
  transform: scale(1.025);
  transition:
    filter 360ms ease,
    transform 360ms ease;
  width: 100%;
}

.case-card::before {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02));
  content: "";
  inset: 0;
  opacity: 0.54;
  pointer-events: none;
  position: absolute;
  transition: opacity 260ms ease;
  z-index: 1;
}

.case-card:hover::before {
  opacity: 0;
}

.case-card:hover img {
  animation: imageWobble 620ms ease both;
  filter: blur(0) saturate(1.08) contrast(1.02);
  transform: scale(1.065);
}

.case-card-large img {
  max-height: none;
}

.case-card div {
  padding: 22px;
  position: relative;
  z-index: 2;
}

.case-card span {
  color: var(--orange-deep);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-card h3 {
  font-size: 24px;
  line-height: 1.2;
  margin: 8px 0 8px;
}

.case-card p {
  color: var(--muted);
  margin: 0;
}

@keyframes imageWobble {
  0% {
    transform: scale(1.045) rotate(0deg);
  }
  28% {
    transform: scale(1.065) rotate(0.45deg);
  }
  58% {
    transform: scale(1.062) rotate(-0.35deg);
  }
  100% {
    transform: scale(1.065) rotate(0deg);
  }
}

.compare-section {
  padding-top: clamp(58px, 8vw, 96px);
}

.compare-layout {
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
}

.compare-slider {
  background: var(--black);
  border-radius: var(--radius);
  cursor: ew-resize;
  min-height: 440px;
  overflow: hidden;
  position: relative;
}

.compare-slider img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  width: 100%;
}

.compare-base {
  filter: saturate(1.05) contrast(1.02);
}

.compare-overlay {
  clip-path: inset(0 calc(100% - var(--compare, 52%)) 0 0);
  inset: 0;
  position: absolute;
}

.compare-overlay img {
  filter: saturate(0.96) contrast(1.04);
}

.compare-handle {
  align-items: center;
  background: linear-gradient(180deg, rgba(255, 140, 0, 0), var(--orange), rgba(255, 140, 0, 0));
  display: flex;
  inset: 0 auto 0 calc(var(--compare, 52%) - 1px);
  justify-content: center;
  position: absolute;
  width: 2px;
  z-index: 4;
}

.compare-handle span {
  background: var(--orange);
  border: 3px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(255, 140, 0, 0.65);
  height: 34px;
  width: 34px;
}

.compare-slider input {
  cursor: ew-resize;
  inset: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
  z-index: 5;
}

.compare-label {
  background: rgba(5, 5, 5, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  bottom: 18px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 12px;
  position: absolute;
  z-index: 3;
}

.compare-label-left {
  left: 18px;
}

.compare-label-right {
  right: 18px;
}

.spec-card {
  background: var(--black);
  border-left: 4px solid var(--orange);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 34px);
}

.spec-card h3 {
  font-size: 30px;
  line-height: 1.15;
  margin: 12px 0 24px;
}

.spec-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.spec-card dl div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 13px;
}

.spec-card dt {
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
}

.spec-card dd {
  color: rgba(255, 255, 255, 0.78);
  margin: 6px 0 0;
}

.timeline-section {
  padding-top: 0;
}

.control-timeline {
  background:
    linear-gradient(90deg, rgba(255, 140, 0, 0.9) 0 2px, transparent 2px),
    var(--white);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
}

.timeline-node {
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(18, 18, 18, 0.1);
  color: var(--graphite);
  cursor: pointer;
  min-height: 132px;
  padding: 24px 18px;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.timeline-node:last-child {
  border-right: 0;
}

.timeline-node span {
  color: var(--orange);
  display: block;
  font-size: 28px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 22px;
}

.timeline-node:hover,
.timeline-node.is-active {
  background: var(--black);
  color: var(--white);
  transform: translateY(-4px);
}

.timeline-detail {
  align-items: center;
  background: var(--black);
  border-radius: 0 0 var(--radius) var(--radius);
  color: var(--white);
  display: grid;
  gap: 20px;
  grid-template-columns: 190px 1fr;
  margin-top: 1px;
  padding: 24px 28px;
}

.timeline-detail strong {
  color: var(--orange);
  font-size: 24px;
}

.timeline-detail p {
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.system-section {
  background: var(--black);
  color: var(--white);
  display: grid;
  gap: clamp(36px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1fr);
  max-width: none;
  padding-left: max(clamp(20px, 4vw, 30px), calc((100vw - var(--max)) / 2 + 30px));
  padding-right: max(clamp(20px, 4vw, 30px), calc((100vw - var(--max)) / 2 + 30px));
  position: relative;
}

.proof-section {
  background: var(--paper);
}

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

.proof-card {
  background: var(--white);
  border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: var(--radius);
  overflow: hidden;
  transition:
    box-shadow 180ms ease,
    transform 180ms ease;
}

.proof-card:hover {
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.12);
  transform: translateY(-5px);
}

.proof-card img {
  aspect-ratio: 4 / 3;
  filter: saturate(0.9);
  object-fit: cover;
  width: 100%;
}

.proof-card div {
  padding: 22px;
}

.proof-card h3 {
  font-size: 23px;
  line-height: 1.22;
  margin: 0 0 9px;
}

.proof-card p {
  color: var(--muted);
  margin: 0;
}

.system-section::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  opacity: 0.38;
  pointer-events: none;
  position: absolute;
}

.system-copy,
.system-list {
  position: relative;
  z-index: 1;
}

.system-copy p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 22px;
}

.system-list {
  display: grid;
  gap: 1px;
}

.system-list article {
  background: rgba(255, 255, 255, 0.08);
  border-left: 3px solid var(--orange);
  padding: clamp(24px, 4vw, 34px);
  transition:
    background 180ms ease,
    transform 180ms ease;
}

.system-list article:hover {
  background: rgba(255, 140, 0, 0.16);
  transform: translateX(8px);
}

.system-list span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.system-list h3 {
  font-size: 26px;
  margin: 8px 0 10px;
}

.system-list p {
  color: rgba(255, 255, 255, 0.72);
  margin: 0;
}

.process-list {
  counter-reset: item;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-list li {
  background: var(--white);
  border-top: 4px solid var(--orange);
  min-height: 260px;
  padding: 28px 22px;
}

.process-list strong {
  color: var(--orange);
  display: block;
  font-size: 34px;
  line-height: 1;
}

.process-list h3 {
  font-size: 24px;
  margin: 22px 0 10px;
}

.process-list p {
  color: var(--muted);
  margin: 0;
}

.about-section {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 70px);
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  aspect-ratio: 4 / 3;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.about-copy p {
  margin-top: 20px;
}

.about-copy h2 span {
  display: block;
}

.about-copy dl {
  display: grid;
  gap: 14px;
  margin: 30px 0 0;
}

.about-copy dl div {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 14px;
  grid-template-columns: 118px 1fr;
  padding-top: 14px;
}

.about-copy dt {
  color: var(--muted);
}

.about-copy dd {
  font-weight: 800;
  margin: 0;
}

.team-section {
  background: #131313;
  border-top: 1px solid rgba(255, 140, 0, 0.28);
  color: var(--white);
  overflow: hidden;
}

.team-inner {
  display: grid;
  align-items: center;
  gap: clamp(42px, 5vw, 68px);
  grid-template-columns: minmax(520px, 0.9fr) minmax(0, 1.1fr);
  margin: 0 auto;
  max-width: min(1480px, calc(100vw - 80px));
  padding: clamp(68px, 8vw, 104px) clamp(20px, 4vw, 30px);
}

.team-copy {
  align-self: center;
  max-width: 700px;
}

.team-copy h2 {
  font-size: clamp(38px, 3vw, 50px);
  line-height: 1.1;
  margin: 18px 0 22px;
  word-break: keep-all;
}

.team-copy h2 span {
  display: block;
  max-width: 100%;
  overflow-wrap: normal;
  white-space: nowrap;
}

.team-copy > p {
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
  margin: 0;
  max-width: 530px;
}

.team-disciplines {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 38px 0 0;
  padding: 0;
}

.team-disciplines li {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: flex;
  gap: 10px;
  min-height: 52px;
}

.team-disciplines li:nth-child(odd) {
  margin-right: 20px;
}

.team-disciplines span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 850;
}

.team-disciplines strong {
  font-size: 14px;
  font-weight: 650;
}

.team-gallery {
  min-height: clamp(430px, 36vw, 500px);
  min-width: 0;
  position: relative;
}

.team-photo {
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.team-photo-studio {
  box-shadow: 0 26px 76px rgba(0, 0, 0, 0.3);
  transform: translateY(-8px);
  width: min(78%, 700px);
  z-index: 2;
}

.team-photo-exhibition {
  bottom: clamp(42px, 5.4vw, 68px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.38);
  position: absolute;
  right: clamp(6px, 1.8vw, 26px);
  width: min(36%, 340px);
  z-index: 3;
}

.team-photo img {
  height: 100%;
  object-fit: cover;
  transition: filter 420ms ease, transform 520ms cubic-bezier(0.2, 0.75, 0.25, 1);
  width: 100%;
}

.team-photo figcaption {
  background: rgba(5, 5, 5, 0.88);
  border-top: 2px solid var(--orange);
  bottom: 0;
  display: grid;
  gap: 2px;
  left: 0;
  min-width: 64%;
  padding: 12px 15px;
  position: absolute;
  z-index: 2;
}

.team-photo figcaption span {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.team-photo figcaption strong {
  font-size: 13px;
  font-weight: 650;
}

@media (hover: hover) and (pointer: fine) {
  .team-photo::after {
    -webkit-backdrop-filter: blur(2.5px) saturate(0.72);
    backdrop-filter: blur(2.5px) saturate(0.72);
    background: rgba(255, 255, 255, 0.035);
    content: "";
    inset: 0;
    opacity: 0.72;
    pointer-events: none;
    position: absolute;
    transition: opacity 420ms ease;
    z-index: 1;
  }

  .team-photo:hover::after {
    opacity: 0;
  }

  .team-photo:hover img {
    filter: saturate(1.06) contrast(1.03);
    transform: scale(1.035);
  }
}

body[data-language="en"] .team-copy h2 {
  font-size: clamp(32px, 2.65vw, 42px);
}

.contact-section {
  background: var(--graphite);
  color: var(--white);
  display: grid;
  gap: clamp(32px, 7vw, 96px);
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 0.72fr);
  padding: clamp(70px, 9vw, 116px) max(clamp(20px, 4vw, 30px), calc((100vw - var(--max)) / 2 + 30px));
}

.contact-text p {
  color: rgba(255, 255, 255, 0.72);
  margin-top: 18px;
}

.contact-form {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 30px);
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--ink);
  outline: none;
  padding: 12px 13px;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange);
}

.form-submit {
  border: 0;
  margin-top: 4px;
  width: 100%;
}

.form-note {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin: 0;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  padding: 24px max(clamp(20px, 4vw, 30px), calc((100vw - var(--max)) / 2 + 30px));
}

.site-footer img {
  height: 36px;
  object-fit: contain;
  width: auto;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  align-items: center;
  background: var(--orange);
  border-radius: 50%;
  color: var(--black);
  display: inline-flex;
  font-size: 20px;
  font-weight: 900;
  height: 42px;
  justify-content: center;
  width: 42px;
}

@media (pointer: coarse) {
  .cursor-light {
    display: none;
  }

  .case-card,
  .case-card:hover {
    transform: none;
  }

  .case-card img,
  .case-card:hover img {
    animation: none;
    filter: none;
    transform: none;
  }

  .case-card::before {
    opacity: 0;
  }
}

.reveal {
  opacity: 1;
  transform: translateY(12px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

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

@media (max-width: 900px) {
  .menu-button {
    display: inline-flex;
  }

  .nav {
    align-items: stretch;
    background: rgba(5, 5, 5, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: grid;
    gap: 0;
    left: 0;
    opacity: 0;
    padding: 8px 20px 20px;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 100%;
    transform: translateY(-8px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 0;
  }

  .nav a::after {
    display: none;
  }

  .intro-band,
  .split-head,
  .system-section,
  .about-section,
  .contact-section,
  .service-panel,
  .compare-layout,
  .timeline-detail {
    grid-template-columns: 1fr;
  }

  .control-timeline,
  .proof-grid {
    grid-template-columns: 1fr;
  }

  .timeline-node {
    border-bottom: 1px solid rgba(18, 18, 18, 0.1);
    border-right: 0;
    min-height: auto;
  }

  .service-panel {
    min-height: auto;
  }

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

  .case-card-large {
    grid-column: span 2;
  }

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

  .compare-slider {
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 66px;
    padding: 0 16px;
  }

  .brand img {
    height: 34px;
  }

  .hero,
  .hero-inner {
    min-height: 86svh;
  }

  .hero-media {
    background-position: 62% center;
  }

  .hero-inner {
    padding: 116px 18px 190px;
  }

  .hero h1 {
    font-size: 60px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-actions,
  .primary-link,
  .secondary-link {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    width: calc(100% - 28px);
  }

  .hero-facts div {
    border-right: 0;
    padding: 13px 18px;
  }

  .intro-copy h2,
  .section-head h2,
  .system-copy h2,
  .about-copy h2,
  .contact-text h2 {
    font-size: 34px;
  }

  .process-section .section-head h2 {
    white-space: normal;
  }

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

  .case-card-large {
    grid-column: span 1;
  }

  .case-card img {
    filter: none;
    max-height: 320px;
    transform: none;
  }

  .case-card::before {
    opacity: 0;
  }

  .compare-slider {
    min-height: 300px;
  }

  .compare-label {
    bottom: 12px;
    font-size: 11px;
    padding: 7px 9px;
  }

  .timeline-detail {
    padding: 20px;
  }

  .process-list li {
    min-height: auto;
  }

  .about-copy dl div {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Revision: bilingual brand system, evidence-led delivery, and project comparisons */

.brand {
  gap: 11px;
  min-width: 250px;
}

.brand img {
  height: 43px;
  width: 43px;
}

.brand-name {
  display: grid;
  line-height: 1.15;
}

.brand-name strong {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  white-space: nowrap;
}

.brand-name small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  margin-top: 5px;
  text-transform: uppercase;
}

.nav {
  gap: 25px;
}

.language-switch {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 6px;
  display: inline-flex;
  height: 34px;
  margin-left: 6px;
  padding: 0 3px;
}

.language-switch > span {
  background: rgba(255, 255, 255, 0.18);
  height: 14px;
  width: 1px;
}

.language-option {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
  height: 28px;
  padding: 0 8px;
}

.language-option.is-active {
  color: var(--orange);
}

.language-option:focus-visible,
.project-index-button:focus-visible,
.timeline-node:focus-visible,
.service-tab:focus-visible,
.filter:focus-visible,
.primary-link:focus-visible,
.secondary-link:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
}

.hero {
  min-height: 86svh;
}

.hero-media {
  background-image: url("./assets/hero-grand.webp");
  background-position: 50% 45%;
  opacity: 0.88;
  transform: scale(1.035);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.69) 43%, rgba(0, 0, 0, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.04) 55%);
}

.hero::after {
  opacity: 0.32;
}

.hero-inner {
  min-height: 86svh;
  padding-bottom: 160px;
  padding-top: 142px;
}

.hero h1 {
  font-size: 104px;
  letter-spacing: 0;
  line-height: 0.94;
  max-width: 940px;
}

.hero h1 > span {
  display: block;
}

.hero-title-accent {
  color: var(--orange);
  margin-top: 5px;
}

.hero-motto {
  align-items: baseline;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 17px;
  gap: 7px;
  margin: 22px 0 0;
  text-transform: uppercase;
}

.hero-motto strong {
  color: var(--white);
  font-size: 26px;
  font-weight: 850;
}

.hero-lead {
  font-size: 20px;
  margin-top: 18px;
  max-width: 720px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-facts strong {
  align-items: baseline;
  display: flex;
  font-size: 40px;
  white-space: nowrap;
}

.hero-facts strong small {
  color: var(--orange);
  font-size: 13px;
  font-weight: 850;
  margin-left: 6px;
  text-transform: uppercase;
}

.intro-band {
  align-items: center;
  gap: 64px;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
}

.intro-copy h2,
.section-head h2,
.system-copy h2,
.about-copy h2,
.contact-text h2 {
  font-size: 58px;
  letter-spacing: 0;
}

.intro-copy h2 {
  font-size: 54px;
}

.intro-band > p {
  border-left: 3px solid var(--orange);
  color: var(--graphite);
  font-size: 18px;
  padding-left: 22px;
}

.belief-section {
  background:
    linear-gradient(115deg, rgba(255, 140, 0, 0.12), transparent 34%),
    var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.belief-section::before {
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  opacity: 0.34;
  pointer-events: none;
  position: absolute;
}

.belief-section::after {
  background: var(--orange);
  content: "";
  height: 170%;
  left: 48%;
  opacity: 0.72;
  position: absolute;
  top: -35%;
  transform: rotate(18deg);
  width: 2px;
}

.belief-inner {
  display: grid;
  gap: 90px;
  grid-template-columns: minmax(0, 0.9fr) minmax(350px, 0.7fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 92px 30px;
  position: relative;
  z-index: 1;
}

.belief-motto h2 {
  font-size: 78px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 0.98;
  margin: 18px 0 20px;
}

.belief-motto h2 em {
  color: var(--orange);
  display: block;
  font-style: normal;
  transition:
    color 180ms ease,
    transform 240ms ease;
}

.belief-motto:hover h2 em {
  color: #ffad35;
  transform: translateX(9px);
}

.belief-motto p,
.belief-edge p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  margin: 0;
}

.belief-motto small {
  color: rgba(255, 255, 255, 0.82);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-top: 24px;
}

.belief-edge {
  align-self: end;
  border-left: 3px solid var(--orange);
  padding-left: 30px;
}

.belief-edge h3 {
  font-size: 34px;
  letter-spacing: 0;
  line-height: 1.28;
  margin: 16px 0 20px;
  transition: transform 220ms ease;
}

.belief-edge:hover h3 {
  transform: translateX(8px);
}

.project-index {
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  margin-bottom: 18px;
}

.project-index-button {
  align-items: center;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--graphite);
  cursor: pointer;
  display: grid;
  gap: 12px;
  grid-template-columns: auto 1fr;
  min-height: 72px;
  padding: 15px 20px;
  text-align: left;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.project-index-button span {
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 900;
}

.project-index-button strong {
  font-size: 17px;
  line-height: 1.25;
}

.project-index-button:hover {
  background: rgba(255, 140, 0, 0.09);
}

.project-index-button.is-active {
  background: var(--black);
  color: var(--white);
  transform: translateY(-3px);
}

.project-index-status {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  min-width: 92px;
  padding: 0 18px;
}

.project-index-status span {
  color: var(--orange-deep);
  font-size: 24px;
  margin-right: 5px;
}

.compare-slider {
  min-height: 520px;
  transition: opacity 180ms ease;
}

.compare-slider.is-switching {
  opacity: 0.58;
}

.compare-slider img {
  object-position: center;
}

.spec-card-topline {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.spec-card-topline > span:last-child {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 750;
  text-align: right;
}

.compare-project-note {
  color: rgba(255, 255, 255, 0.68);
  margin: -10px 0 22px;
}

.timeline-node strong {
  display: block;
  font-size: 16px;
  line-height: 1.35;
}

.zero-section {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.zero-section::before {
  background:
    linear-gradient(115deg, transparent 0 53%, rgba(255, 140, 0, 0.68) 53.1% 53.35%, transparent 53.5%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 120px);
  content: "";
  inset: 0;
  opacity: 0.62;
  pointer-events: none;
  position: absolute;
}

.zero-inner {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: minmax(340px, 0.8fr) minmax(480px, 1.05fr);
  margin: 0 auto;
  max-width: var(--max);
  padding: 104px 30px;
  position: relative;
  z-index: 1;
}

.zero-copy h2 {
  font-size: 42px;
  letter-spacing: 0;
  line-height: 1.16;
  margin: 16px 0 24px;
}

.zero-copy h2 em {
  color: var(--orange);
  display: block;
  font-style: normal;
}

.zero-copy > p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 17px;
  margin: 0;
}

.zero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.zero-metrics div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0 13px;
}

.zero-metrics div:first-child {
  border-left: 3px solid var(--orange);
}

.zero-metrics strong {
  color: var(--orange);
  display: block;
  font-size: 23px;
  line-height: 1.1;
}

.zero-metrics span {
  color: rgba(255, 255, 255, 0.58);
  display: block;
  font-size: 12px;
  margin-top: 8px;
}

.zero-visual {
  min-height: 600px;
  overflow: hidden;
  position: relative;
}

.zero-visual::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.12) 68%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.zero-visual > img {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: filter 340ms ease, transform 520ms ease;
  width: 100%;
}

.zero-visual:hover > img {
  filter: saturate(1.08) contrast(1.04);
  transform: scale(1.025);
}

.scan-line {
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.9), transparent);
  box-shadow: 0 0 24px rgba(255, 140, 0, 0.64);
  height: 2px;
  left: 0;
  position: absolute;
  right: 0;
  top: 14%;
  z-index: 2;
  animation: scanEvidence 4.8s ease-in-out infinite;
}

@keyframes scanEvidence {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(330px);
  }
}

.zero-evidence {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  z-index: 3;
}

.zero-evidence > div {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  gap: 14px;
  grid-template-columns: 36px 1fr auto;
  min-height: 68px;
  padding: 12px 18px;
  transition: background 180ms ease, padding-left 180ms ease;
}

.zero-evidence > div:hover {
  background: rgba(255, 140, 0, 0.16);
  padding-left: 24px;
}

.zero-evidence span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.zero-evidence p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.zero-evidence strong {
  color: rgba(255, 255, 255, 0.46);
  font-size: 10px;
  text-transform: uppercase;
}

.footer-brand {
  align-items: center;
  display: flex;
  gap: 10px;
}

.footer-brand img {
  height: 34px;
  width: 34px;
}

.footer-brand strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

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

body[data-language="en"] .brand-name strong {
  font-size: 13px;
}

body[data-language="en"] .hero h1 {
  font-size: 92px;
  max-width: 1000px;
}

body[data-language="en"] .belief-motto h2 {
  font-size: 70px;
}

body[data-language="en"] .belief-edge h3 {
  font-size: 30px;
}

body[data-language="en"] .zero-copy h2 {
  font-size: 40px;
}

@media (max-width: 1100px) {
  .site-header {
    padding-left: 24px;
    padding-right: 24px;
  }

  .brand {
    min-width: 220px;
  }

  .brand-name strong {
    font-size: 14px;
  }

  .nav {
    gap: 17px;
  }

  .belief-inner,
  .zero-inner {
    gap: 48px;
  }

  .hero h1 {
    font-size: 88px;
  }

  body[data-language="en"] .hero h1 {
    font-size: 78px;
  }
}

@media (max-width: 900px) {
  .brand {
    min-width: 0;
  }

  .nav {
    gap: 0;
  }

  .language-switch {
    justify-self: start;
    margin: 14px 0 4px;
  }

  .hero h1,
  body[data-language="en"] .hero h1 {
    font-size: 72px;
  }

  .intro-copy h2,
  .section-head h2,
  .system-copy h2,
  .about-copy h2,
  .contact-text h2 {
    font-size: 46px;
  }

  .belief-inner,
  .zero-inner {
    grid-template-columns: 1fr;
    padding-left: 24px;
    padding-right: 24px;
  }

  .belief-section::after {
    left: 74%;
  }

  .belief-edge {
    max-width: 650px;
  }

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

  .project-index-status {
    display: none;
  }

  .compare-slider {
    min-height: 430px;
  }

  .zero-visual {
    min-height: 540px;
  }

  .team-inner {
    grid-template-columns: 1fr;
  }

  .team-copy {
    max-width: 760px;
  }

  .team-copy > p {
    max-width: 700px;
  }

  .team-gallery {
    min-height: clamp(430px, 54vw, 540px);
  }

  .team-photo-studio {
    width: min(76%, 660px);
  }

  .team-photo-exhibition {
    bottom: clamp(36px, 6vw, 62px);
    width: min(36%, 340px);
  }
}

@media (min-width: 641px) and (max-width: 900px) {
  .project-index-button {
    border-bottom: 1px solid var(--line);
  }

  .project-index-button:nth-of-type(2n) {
    border-right: 0;
  }

  .project-index-button:nth-last-of-type(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .brand {
    gap: 8px;
  }

  .brand img {
    height: 34px;
    width: 34px;
  }

  .brand-name strong {
    font-size: 12px;
  }

  body[data-language="en"] .brand-name strong {
    font-size: 10px;
    white-space: normal;
  }

  .brand-name small {
    font-size: 7px;
    margin-top: 3px;
  }

  body[data-language="en"] .brand-name {
    max-width: 190px;
  }

  body[data-language="en"] .brand-name strong {
    font-size: 10px;
    white-space: normal;
  }

  body[data-language="en"] .brand-name small {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 84svh;
  }

  .hero-media {
    background-position: 58% center;
  }

  .hero-inner {
    padding: 108px 18px 142px;
  }

  .hero h1,
  body[data-language="en"] .hero h1 {
    font-size: 50px;
    line-height: 0.98;
  }

  .hero-motto {
    font-size: 13px;
    margin-top: 16px;
  }

  .hero-motto strong {
    font-size: 19px;
  }

  .hero-lead {
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero-actions .primary-link,
  .hero-actions .secondary-link {
    min-width: 0;
    padding: 10px 11px;
    width: 100%;
  }

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

  .hero-facts div {
    border-right: 1px solid rgba(255, 255, 255, 0.13);
    padding: 11px 8px;
  }

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

  .hero-facts strong {
    display: block;
    font-size: 21px;
    line-height: 1.05;
  }

  .hero-facts strong small {
    display: block;
    font-size: 7px;
    line-height: 1.2;
    margin: 4px 0 0;
    white-space: normal;
  }

  .hero-facts > div > span {
    font-size: 10px;
    line-height: 1.25;
    margin-top: 6px;
  }

  .intro-band {
    gap: 24px;
  }

  .intro-copy h2,
  .section-head h2,
  .system-copy h2,
  .about-copy h2,
  .contact-text h2 {
    font-size: 34px;
  }

  .intro-band > p {
    font-size: 16px;
  }

  .belief-inner {
    gap: 54px;
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .belief-motto h2,
  body[data-language="en"] .belief-motto h2 {
    font-size: 48px;
  }

  .belief-edge h3,
  body[data-language="en"] .belief-edge h3 {
    font-size: 25px;
  }

  .belief-edge {
    padding-left: 20px;
  }

  .project-index {
    border: 1px solid var(--line);
    grid-template-columns: 1fr;
  }

  .project-index-button {
    border-bottom: 1px solid var(--line);
    border-right: 0;
    min-height: 58px;
    padding: 11px 14px;
  }

  .project-index-button:last-of-type {
    border-bottom: 0;
  }

  .team-inner {
    gap: 42px;
    padding-bottom: 74px;
    padding-top: 74px;
  }

  .team-copy h2,
  body[data-language="en"] .team-copy h2 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .team-copy h2 span {
    white-space: normal;
  }

  .team-copy > p {
    font-size: 15px;
  }

  .team-gallery {
    min-height: clamp(350px, 86vw, 480px);
  }

  .team-photo-studio {
    transform: none;
    width: 92%;
  }

  .team-photo-exhibition {
    bottom: 18px;
    right: 0;
    width: 58%;
  }

  .compare-slider {
    min-height: 330px;
  }

  .spec-card-topline {
    align-items: flex-start;
    gap: 16px;
  }

  .zero-inner {
    padding-bottom: 72px;
    padding-top: 72px;
  }

  .zero-copy h2,
  body[data-language="en"] .zero-copy h2 {
    font-size: 32px;
  }

  .zero-metrics {
    gap: 0;
  }

  .zero-metrics div {
    padding: 0 8px;
  }

  .zero-metrics strong {
    font-size: 17px;
  }

  .zero-visual {
    min-height: 500px;
  }

  .zero-evidence > div {
    gap: 9px;
    grid-template-columns: 24px 1fr;
    padding: 11px 13px;
  }

  .zero-evidence strong {
    display: none;
  }

  .zero-evidence p {
    font-size: 13px;
    line-height: 1.4;
  }

  .site-footer {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .site-footer > p {
    font-size: 12px;
    order: 3;
    width: 100%;
  }
}

.about-copy h2 {
  font-size: clamp(42px, 4vw, 50px);
}

.about-copy h2 span {
  white-space: nowrap;
}

body[data-language="en"] .timeline-section .section-head h2 {
  font-size: clamp(30px, 3.2vw, 40px);
  line-height: 1.12;
}

body[data-language="en"] .timeline-section .section-head h2 span {
  white-space: nowrap;
}

body[data-language="en"] .about-copy h2 {
  font-size: clamp(30px, 2.7vw, 35px);
  line-height: 1.18;
}

body[data-language="en"] .contact-text h2 {
  font-size: clamp(32px, 3.2vw, 42px);
  line-height: 1.14;
}

/* Revision 2: tighter brand lockup, clearer facts, and deliberate title rhythm */
.site-header,
.site-header.is-scrolled {
  background: rgba(5, 5, 5, 0.97);
  border-bottom-color: rgba(255, 140, 0, 0.28);
}

.brand {
  gap: 11px;
}

.brand-symbol {
  display: block;
  flex: 0 0 42px;
  height: 42px;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.brand-symbol img {
  height: 42px;
  width: 42px;
}

.brand-symbol::after {
  background: #050505;
  bottom: 0;
  content: "";
  height: 17px;
  position: absolute;
  right: 0;
  width: 8px;
}

.brand-name {
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  gap: 3px;
  line-height: 1.08;
  padding-left: 11px;
}

.brand-name strong,
body[data-language="en"] .brand-name strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.brand-name small {
  color: rgba(255, 140, 0, 0.78);
  font-size: 9px;
  font-weight: 650;
  margin-top: 0;
  text-transform: none;
}

.hero-facts strong {
  align-items: flex-end;
  gap: 8px;
}

.hero-facts strong > span[data-count] {
  color: rgba(255, 255, 255, 0.94);
  display: inline-block;
  font-size: 48px;
  font-weight: 850;
  line-height: 0.82;
  margin: 0;
}

.hero-facts strong small {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  padding-bottom: 2px;
  text-transform: none;
}

.proof-section .section-head h2 {
  font-size: clamp(40px, 4vw, 50px);
  line-height: 1.08;
}

.proof-section .section-head h2 span {
  display: block;
  white-space: nowrap;
}

body[data-language="en"] .proof-section .section-head h2 {
  font-size: clamp(30px, 3.1vw, 40px);
}

.site-footer {
  border-top: 1px solid rgba(255, 140, 0, 0.3);
  min-height: 116px;
  padding-bottom: 30px;
  padding-top: 30px;
}

.footer-signature {
  min-height: 58px;
  position: relative;
}

.footer-signature strong {
  color: rgba(255, 255, 255, 0.92);
  display: block;
  font-size: 16px;
  font-weight: 650;
  position: relative;
  z-index: 2;
}

.footer-signature p {
  color: rgba(255, 255, 255, 0.2);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 760;
  left: 0;
  line-height: 1;
  margin: 0;
  position: absolute;
  top: 24px;
  white-space: nowrap;
  z-index: 1;
}

.site-footer > a {
  flex: 0 0 46px;
  height: 46px;
  transition: background 180ms ease, transform 180ms ease;
  width: 46px;
}

.site-footer > a:hover,
.site-footer > a:focus-visible {
  background: #ffab42;
  transform: translateY(-3px);
}

@media (max-width: 640px) {
  .about-copy h2 {
    font-size: clamp(28px, 8.6vw, 34px);
  }

  body[data-language="en"] .timeline-section .section-head h2 {
    font-size: clamp(22px, 6.4vw, 28px);
  }

  body[data-language="en"] .about-copy h2 {
    font-size: clamp(20px, 6vw, 26px);
  }

  body[data-language="en"] .contact-text h2 {
    font-size: clamp(27px, 8vw, 32px);
  }

  .brand {
    gap: 8px;
  }

  .brand-symbol {
    flex-basis: 34px;
    height: 34px;
    width: 34px;
  }

  .brand-symbol img {
    height: 34px;
    width: 34px;
  }

  .brand-symbol::after {
    height: 14px;
    width: 7px;
  }

  .brand-name {
    padding-left: 8px;
  }

  .brand-name strong {
    font-size: 12px;
  }

  .hero-facts strong {
    align-items: flex-end;
    display: flex;
    gap: 4px;
  }

  .hero-facts strong > span[data-count] {
    font-size: 27px;
  }

  .hero-facts strong small {
    display: inline-block;
    font-size: 9px;
    margin: 0;
    padding-bottom: 1px;
    white-space: nowrap;
  }

  .proof-section .section-head h2 {
    font-size: clamp(25px, 7.5vw, 32px);
  }

  body[data-language="en"] .proof-section .section-head h2 {
    font-size: clamp(24px, 7vw, 30px);
  }

  body[data-language="en"] .proof-section .section-head h2 span {
    white-space: normal;
  }

  .site-footer {
    align-items: center;
    flex-direction: row;
    min-height: 104px;
    padding-bottom: 24px;
    padding-top: 24px;
  }

  .footer-signature {
    max-width: calc(100% - 64px);
    min-height: 48px;
  }

  .footer-signature strong {
    font-size: 14px;
  }

  .footer-signature p {
    font-size: clamp(18px, 5vw, 22px);
    top: 22px;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}
