:root {
  color-scheme: light;
  --bg: #f8f8f5;
  --fg: #090909;
  --muted: rgba(9, 9, 9, 0.58);
  --line: rgba(9, 9, 9, 0.16);
  --panel: rgba(248, 248, 245, 0.74);
  --accent: #d25f2b;
  --shadow: rgba(10, 10, 10, 0.18);
  --display: "Avenir Next", "Inter", "Helvetica Neue", Arial, sans-serif;
  --sans: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", Arial, sans-serif;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #050505;
  --fg: #f7f2ec;
  --muted: rgba(247, 242, 236, 0.56);
  --line: rgba(247, 242, 236, 0.18);
  --panel: rgba(5, 5, 5, 0.7);
  --accent: #f08a4b;
  --shadow: rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--sans);
  overflow-x: hidden;
  transition: background 600ms ease, color 600ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(210, 95, 43, 0.13), transparent 25%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 55%);
  opacity: 0.9;
}

html[data-theme="dark"] body::before {
  background:
    radial-gradient(circle at 70% 30%, rgba(240, 138, 75, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent 60%);
}

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

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

button {
  font: inherit;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 24px clamp(20px, 4vw, 56px);
  pointer-events: none;
}

.brand-mark,
.primary-nav,
.header-actions {
  pointer-events: auto;
}

.brand-mark {
  justify-self: start;
  font-family: var(--display);
  font-size: 17px;
  font-weight: 720;
  letter-spacing: -0.02em;
}

.services-page .brand-mark,
.works-page .brand-mark,
.reserve-page .brand-mark {
  width: clamp(112px, 9.5vw, 138px);
}

.services-page .brand-mark img,
.works-page .brand-mark img,
.reserve-page .brand-mark img {
  width: 100%;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.5vw, 34px);
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 86%, transparent);
  backdrop-filter: blur(18px);
}

.primary-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 620;
  color: var(--muted);
  white-space: nowrap;
  transition: color 220ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--fg);
}

.primary-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -9px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%);
}

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

.language-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 38px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--panel) 88%, transparent);
  backdrop-filter: blur(18px);
}

.language-switch button,
.theme-toggle {
  border: 0;
  color: var(--fg);
  cursor: pointer;
}

.language-switch button {
  min-width: 34px;
  height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: transparent;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 650;
  color: var(--muted);
}

.language-switch button[aria-pressed="true"] {
  background: var(--fg);
  color: var(--bg);
}

.theme-toggle {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--fg);
}

.theme-toggle span {
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: var(--bg);
  transition: transform 260ms ease;
}

html[data-theme="dark"] .theme-toggle span {
  transform: translate(5px, -3px) scale(0.72);
  box-shadow: -7px 5px 0 var(--fg);
}

.delphi-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  place-items: center;
  isolation: isolate;
}

.tunnel-space {
  position: fixed;
  inset: 0;
  z-index: -1;
  perspective: 760px;
  perspective-origin: 50% 52%;
  overflow: hidden;
  opacity: 0.92;
}

.tunnel-space::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at center, transparent 0 28%, color-mix(in srgb, var(--bg) 8%, transparent) 42%, var(--bg) 86%),
    linear-gradient(180deg, color-mix(in srgb, var(--bg) 6%, transparent), var(--bg) 96%);
  pointer-events: none;
}

.tunnel-plane {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 160vw;
  height: 160vh;
  border: 1px solid var(--line);
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 82px 82px;
  transform-style: preserve-3d;
  animation: tunnelMove 7s linear infinite;
}

.tunnel-floor {
  transform: translate(-50%, 6%) rotateX(76deg) translateZ(-180px);
}

.tunnel-ceiling {
  transform: translate(-50%, -106%) rotateX(-76deg) translateZ(-180px);
}

.tunnel-left {
  transform: translate(-112%, -50%) rotateY(-76deg) translateZ(-180px);
}

.tunnel-right {
  transform: translate(12%, -50%) rotateY(76deg) translateZ(-180px);
}

@keyframes tunnelMove {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 82px;
  }
}

.tunnel-gallery {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
}

.tunnel-gallery img {
  position: absolute;
  width: clamp(118px, 12vw, 210px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 26px 90px var(--shadow);
  filter: saturate(0.92) contrast(1.04);
  opacity: 0.86;
}

.tunnel-gallery img:nth-child(1) {
  left: 8%;
  top: 19%;
  transform: rotateY(32deg) rotateZ(-5deg);
}

.tunnel-gallery img:nth-child(2) {
  right: 10%;
  top: 16%;
  transform: rotateY(-32deg) rotateZ(5deg);
}

.tunnel-gallery img:nth-child(3) {
  left: 17%;
  bottom: 13%;
  transform: rotateX(28deg) rotateZ(6deg);
}

.tunnel-gallery img:nth-child(4) {
  right: 20%;
  bottom: 10%;
  transform: rotateX(28deg) rotateZ(-4deg);
}

.tunnel-gallery img:nth-child(5) {
  left: 48%;
  top: 6%;
  width: clamp(98px, 9vw, 160px);
  opacity: 0.55;
}

.tunnel-gallery img:nth-child(6) {
  left: 50%;
  bottom: 4%;
  width: clamp(104px, 10vw, 170px);
  opacity: 0.5;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(850px, calc(100vw - 44px));
  text-align: center;
  padding-top: 36px;
}

.mobile-panel {
  display: none;
}

.eyebrow,
.section-kicker {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-title,
.profile-copy h1,
.works-copy h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 9.6vw, 142px);
  font-weight: 820;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy,
.works-copy p,
.profile-copy p,
.statement-section p,
.about-copy p,
.contact-card p {
  color: var(--muted);
  line-height: 1.85;
}

.hero-copy {
  width: min(620px, 92vw);
  margin: 34px auto 0;
  font-size: clamp(16px, 1.5vw, 20px);
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 36px;
}

.pill-button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 720;
}

.pill-button {
  min-width: 140px;
  padding: 0 25px;
  border-radius: 999px;
  background: var(--fg);
  color: var(--bg);
  transition: transform 220ms ease, opacity 220ms ease;
}

.pill-button:hover {
  transform: translateY(-2px);
}

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

.text-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(3px);
}

.statement-section,
.service-section,
.contact-section,
.timeline-section,
.about-grid-section,
.fact-row {
  position: relative;
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: clamp(86px, 12vw, 150px) 0;
}

.statement-section {
  min-height: 76svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.statement-section h2,
.section-heading h2,
.contact-section h2,
.about-copy h2,
.timeline-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(38px, 6vw, 86px);
  font-weight: 800;
  line-height: 1.02;
}

.statement-section p:last-child {
  width: min(680px, 100%);
  margin: 28px 0 0;
  font-size: 18px;
}

.service-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) 1.2fr;
  gap: clamp(32px, 6vw, 86px);
  align-items: start;
}

.service-grid {
  display: grid;
  gap: 14px;
}

.service-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.service-card:last-child {
  border-bottom: 1px solid var(--line);
}

.service-card span {
  font-family: var(--display);
  font-size: 13px;
  color: var(--accent);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2vw, 30px);
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(28px, 6vw, 90px);
  align-items: center;
  min-height: 70svh;
}

.contact-card {
  padding: clamp(28px, 4vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--panel) 84%, transparent);
  backdrop-filter: blur(18px);
}

.contact-card p {
  margin: 0 0 28px;
  font-size: clamp(17px, 1.6vw, 22px);
}

.profile-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(30px, 6vw, 96px);
  align-items: end;
  width: min(1240px, calc(100vw - 44px));
  min-height: 100svh;
  margin: 0 auto;
  padding: 122px 0 0;
}

.profile-copy {
  padding-bottom: clamp(48px, 8vw, 112px);
}

.profile-copy p:last-child {
  width: min(590px, 100%);
  margin: 30px 0 0;
  font-size: 18px;
}

.profile-portrait {
  margin: 0;
  align-self: end;
}

.profile-portrait img {
  width: 100%;
  max-height: 86svh;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 32px 65px var(--shadow));
}

.fact-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 40px;
}

.fact-row article {
  min-height: 180px;
  padding: 28px;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--panel) 76%, transparent);
}

.fact-row strong {
  display: block;
  margin-bottom: 20px;
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 70px);
  line-height: 0.9;
}

.fact-row span {
  color: var(--muted);
}

.about-grid-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.editorial-image {
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  border-radius: 8px;
  background: #d7d1ca;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.about-copy p {
  margin: 24px 0 0;
  font-size: 17px;
}

.about-copy blockquote {
  margin: 34px 0 0;
  padding-left: 24px;
  border-left: 2px solid var(--accent);
  font-family: var(--display);
  font-size: clamp(27px, 3.4vw, 50px);
  font-weight: 760;
  line-height: 1.14;
}

.timeline-section h2 {
  width: min(850px, 100%);
}

.timeline-list {
  display: grid;
  gap: 0;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.timeline-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline-list time {
  font-family: var(--display);
  font-weight: 780;
  color: var(--accent);
}

.timeline-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.works-hero {
  min-height: 68svh;
  display: grid;
  align-items: end;
  width: min(1180px, calc(100vw - 44px));
  margin: 0 auto;
  padding: 130px 0 54px;
}

.works-copy p:last-child {
  width: min(560px, 100%);
  margin: 26px 0 0;
  font-size: 18px;
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 40px;
}

.works-filter button {
  min-height: 38px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 720;
  transition: background 200ms ease, color 200ms ease, transform 200ms ease;
}

.works-filter button:hover,
.works-filter button.is-active {
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-2px);
}

.works-wall {
  width: 100vw;
  padding: 12px 0 90px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.works-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(230px, 23vw, 390px);
  align-items: center;
  gap: clamp(18px, 2.2vw, 32px);
  width: max-content;
  padding: 38px clamp(20px, 6vw, 90px);
  animation: worksDrift 58s linear infinite;
}

.works-wall:hover .works-track {
  animation-play-state: paused;
}

@keyframes worksDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.work-card {
  position: relative;
  display: block;
  width: 100%;
  height: clamp(320px, 34vw, 560px);
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: #d8d8d5;
  cursor: pointer;
  box-shadow: 0 30px 80px var(--shadow);
  transform: translateY(var(--lift, 0)) scale(var(--scale, 1));
  transition: transform 300ms ease, box-shadow 300ms ease;
}

.work-card:nth-child(4n + 1) {
  --lift: 26px;
}

.work-card:nth-child(4n + 2) {
  --lift: -18px;
  --scale: 1.04;
}

.work-card:nth-child(4n + 3) {
  --lift: 34px;
}

.work-card:hover {
  z-index: 3;
  transform: translateY(calc(var(--lift, 0) - 16px)) scale(1.1);
  box-shadow: 0 42px 110px var(--shadow);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-card-label {
  position: absolute;
  left: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  display: grid;
  gap: 3px;
  padding: 8px 10px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--bg) 76%, transparent);
  color: var(--fg);
  backdrop-filter: blur(12px);
  font-family: var(--display);
  overflow: hidden;
}

.work-card-label small,
.work-card-label b {
  display: block;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.work-card-label small {
  color: color-mix(in srgb, var(--fg) 64%, transparent);
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 720;
}

.work-card-label b {
  font-size: 11px;
  font-weight: 780;
}

.work-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 70px 24px;
  background: color-mix(in srgb, var(--bg) 82%, rgba(0, 0, 0, 0.74));
  backdrop-filter: blur(18px);
}

.work-lightbox.is-open {
  display: grid;
}

.work-lightbox figure {
  margin: 0;
  text-align: center;
}

.work-lightbox img {
  max-width: min(86vw, 780px);
  max-height: 78vh;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 34px 110px var(--shadow);
}

.work-lightbox figcaption {
  margin-top: 16px;
  color: var(--fg);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 720;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--fg);
  color: var(--bg);
  cursor: pointer;
}

.lightbox-close {
  top: 24px;
  right: 24px;
  font-size: 24px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
}

.lightbox-prev {
  left: 24px;
}

.lightbox-next {
  right: 24px;
}

.reveal {
  opacity: 0;
}

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

  .reveal {
    opacity: 1;
  }
}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
    gap: 14px;
    padding: 16px;
  }

  .primary-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    top: auto;
    justify-content: space-around;
    gap: 0;
    padding: 0 12px;
    min-height: 54px;
  }

  .primary-nav a {
    font-size: 12px;
  }

  body.services-page,
  body.works-page,
  body.reserve-page {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  body.services-page .primary-nav,
  body.works-page .primary-nav,
  body.reserve-page .primary-nav {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    min-height: 64px;
    padding: 8px;
    border-color: rgba(9, 9, 9, 0.14);
    border-radius: 24px;
    background: rgba(248, 248, 245, 0.82);
    box-shadow: 0 16px 46px rgba(9, 9, 9, 0.14);
    backdrop-filter: blur(20px);
  }

  html[data-theme="dark"] body.services-page .primary-nav,
  html[data-theme="dark"] body.works-page .primary-nav,
  html[data-theme="dark"] body.reserve-page .primary-nav {
    border-color: rgba(247, 242, 236, 0.18);
    background: rgba(5, 5, 5, 0.76);
  }

  body.services-page .primary-nav a,
  body.works-page .primary-nav a,
  body.reserve-page .primary-nav a {
    display: grid;
    place-items: center;
    min-width: 0;
    min-height: 46px;
    padding: 0;
    border-radius: 18px;
    color: color-mix(in srgb, var(--fg) 68%, transparent);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 760;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  body.services-page .primary-nav a::after,
  body.works-page .primary-nav a::after,
  body.reserve-page .primary-nav a::after {
    display: none;
  }

  body.services-page .primary-nav a:hover,
  body.services-page .primary-nav a:focus-visible,
  body.services-page .primary-nav a.is-active,
  body.works-page .primary-nav a:hover,
  body.works-page .primary-nav a:focus-visible,
  body.works-page .primary-nav a.is-active,
  body.reserve-page .primary-nav a:hover,
  body.reserve-page .primary-nav a:focus-visible,
  body.reserve-page .primary-nav a.is-active {
    color: var(--fg);
    background: color-mix(in srgb, var(--fg) 8%, transparent);
    outline: 0;
  }

  body.services-page .primary-nav a[data-i18n="nav.contact"],
  body.works-page .primary-nav a[data-i18n="nav.contact"],
  body.reserve-page .primary-nav a[data-i18n="nav.contact"] {
    border-radius: 999px;
    background: var(--fg);
    color: var(--bg);
    box-shadow: 0 10px 24px rgba(9, 9, 9, 0.18);
  }

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

  .language-switch {
    min-height: 36px;
  }

  .language-switch button {
    min-width: 30px;
    height: 28px;
    padding: 0 8px;
  }

  .theme-toggle {
    width: 36px;
    height: 36px;
  }

  .desktop-panel {
    display: none;
  }

  .mobile-panel {
    display: block;
  }

  .delphi-hero {
    min-height: 100svh;
    align-items: end;
    padding: 0 0 112px;
  }

  .tunnel-space {
    perspective: 520px;
  }

  .tunnel-plane {
    background-size: 58px 58px;
  }

  .tunnel-gallery img {
    width: 116px;
    opacity: 0.46;
  }

  .tunnel-gallery img:nth-child(5),
  .tunnel-gallery img:nth-child(6) {
    display: none;
  }

  .hero-content {
    text-align: left;
  }

  .hero-title {
    font-size: clamp(58px, 18vw, 86px);
  }

  .hero-copy {
    margin-left: 0;
    font-size: 16px;
  }

  .hero-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .statement-section,
  .service-section,
  .contact-section,
  .timeline-section,
  .about-grid-section,
  .fact-row {
    width: min(100% - 34px, 680px);
    padding: 72px 0;
  }

  .service-section,
  .contact-section,
  .profile-hero,
  .about-grid-section {
    grid-template-columns: 1fr;
  }

  .service-card {
    grid-template-columns: 42px 1fr;
  }

  .contact-section {
    min-height: auto;
  }

  .profile-hero {
    width: min(100% - 34px, 680px);
    padding-top: 108px;
    gap: 18px;
  }

  .profile-copy {
    padding-bottom: 0;
  }

  .profile-copy h1,
  .works-copy h1 {
    font-size: clamp(56px, 17vw, 86px);
  }

  .profile-portrait img {
    max-height: 62svh;
  }

  .fact-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 26px;
  }

  .fact-row article {
    min-height: auto;
  }

  .editorial-image,
  .editorial-image img {
    min-height: 440px;
  }

  .timeline-list li {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .works-hero {
    min-height: auto;
    width: min(100% - 34px, 680px);
    padding: 104px 0 24px;
  }

  .works-copy h1 {
    max-width: 560px;
    font-size: clamp(48px, 13.6vw, 72px);
    line-height: 0.96;
  }

  .works-copy p:last-child {
    width: min(100%, 430px);
    margin-top: 20px;
    font-size: 15px;
    line-height: 1.8;
  }

  .works-filter {
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    margin-top: 28px;
    padding: 0 0 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .works-filter::-webkit-scrollbar {
    display: none;
  }

  .works-filter button {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }

  .works-wall {
    width: 100%;
    padding: 10px 0 calc(118px + env(safe-area-inset-bottom));
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    cursor: grab;
    touch-action: pan-y;
  }

  .works-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: clamp(196px, 60vw, 246px);
    grid-template-columns: none;
    align-items: start;
    gap: 12px;
    width: max-content;
    padding: 0 16px 28px;
    animation: none;
    will-change: transform;
    user-select: none;
  }

  .works-wall.is-dragging {
    cursor: grabbing;
  }

  .work-card {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 5;
    border-radius: 7px;
    box-shadow: 0 12px 34px rgba(10, 10, 10, 0.12);
    transform: none;
  }

  .work-card:nth-child(4n + 1),
  .work-card:nth-child(4n + 2),
  .work-card:nth-child(4n + 3) {
    --lift: 0;
    --scale: 1;
  }

  .work-card:hover {
    transform: none;
    box-shadow: 0 12px 34px rgba(10, 10, 10, 0.12);
  }

  .work-card img {
    object-position: center top;
  }

  .work-card-label {
    left: 8px;
    bottom: 8px;
    max-width: calc(100% - 16px);
    padding: 7px 8px;
  }

  .work-card-label small {
    font-size: 9px;
  }

  .work-card-label b {
    font-size: 10px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    transform: none;
  }
}

@media (max-width: 460px) {
  .brand-mark {
    font-size: 15px;
  }

  .primary-nav {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 0 8px;
  }

  .primary-nav a {
    font-size: 11px;
  }

  .hero-title {
    font-size: clamp(52px, 17vw, 72px);
  }

  .statement-section h2,
  .section-heading h2,
  .contact-section h2,
  .about-copy h2,
  .timeline-section h2 {
    font-size: clamp(34px, 11vw, 50px);
  }
}

.delphi-tunnel-page {
  min-height: 2600vh;
  background: #fff;
  color: #050505;
  font-family: "Inter", "Avenir Next", "Helvetica Neue", Arial, "Microsoft YaHei UI", sans-serif;
  transition: background 500ms ease, color 500ms ease;
  --tunnel-progress: 0;
}

html[data-theme="dark"] .delphi-tunnel-page {
  background: #050505;
  color: #f7f2ec;
}

.delphi-tunnel-page::before {
  display: none;
}

.tunnel-stage {
  position: fixed;
  inset: 0;
  overflow: hidden;
  background: #fff;
}

html[data-theme="dark"] .tunnel-stage {
  background: #050505;
}

#tunnel-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100vw;
  height: 100vh;
}

.tunnel-fallback {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  perspective: 820px;
  perspective-origin: 50% 50%;
  background: #fff;
}

html[data-theme="dark"] .tunnel-fallback {
  background: #050505;
}

html.has-three-tunnel .tunnel-fallback {
  display: none;
}

.fallback-plane {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 170vw;
  height: 170vh;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.13) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.13) 1px, transparent 1px);
  background-size: 160px 160px;
  transform-style: preserve-3d;
  transform-origin: center center;
}

html[data-theme="dark"] .fallback-plane {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
}

.fallback-floor {
  transform: translate(-50%, 8%) rotateX(76deg) translateZ(-240px);
}

.fallback-ceiling {
  transform: translate(-50%, -108%) rotateX(-76deg) translateZ(-240px);
}

.fallback-left {
  transform: translate(-115%, -50%) rotateY(-76deg) translateZ(-240px);
}

.fallback-right {
  transform: translate(15%, -50%) rotateY(76deg) translateZ(-240px);
}

.fallback-photo {
  position: absolute;
  z-index: 3;
  width: clamp(120px, 12vw, 260px);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.11);
  transform-style: preserve-3d;
}

.fallback-photo.p1 {
  left: -18px;
  bottom: 15%;
  width: clamp(210px, 18vw, 360px);
  transform: rotateY(42deg) rotateZ(-2deg);
}

.fallback-photo.p2 {
  right: 9%;
  top: 14%;
  width: clamp(190px, 15vw, 320px);
  transform: rotateY(-35deg);
}

.fallback-photo.p3 {
  left: 18%;
  top: 1%;
  width: clamp(200px, 15vw, 320px);
  transform: rotateX(-42deg) rotateZ(-8deg);
}

.fallback-photo.p4 {
  left: 43%;
  top: 16%;
  width: clamp(120px, 8vw, 180px);
  transform: translateZ(-120px) rotateX(-14deg);
}

.fallback-photo.p5 {
  left: 35%;
  bottom: 13%;
  width: clamp(130px, 9vw, 190px);
  transform: rotateX(58deg) rotateZ(4deg);
}

.fallback-photo.p6 {
  right: -6px;
  bottom: 20%;
  width: clamp(210px, 17vw, 350px);
  transform: rotateY(-36deg);
}

.fallback-photo.p7 {
  left: 25%;
  top: 29%;
  width: clamp(96px, 7vw, 150px);
  transform: rotateY(44deg);
}

.fallback-photo.p8 {
  right: 28%;
  bottom: 28%;
  width: clamp(98px, 7vw, 150px);
  transform: rotateY(-38deg);
}

.fallback-photo.p9 {
  left: 36%;
  top: 24%;
  width: clamp(96px, 7vw, 150px);
  transform: rotateY(42deg);
}

.fallback-photo.p10 {
  right: 38%;
  top: 8%;
  width: clamp(120px, 8vw, 170px);
  transform: rotateX(-48deg) rotateZ(1deg);
}

.fallback-photo.p11 {
  left: 50%;
  bottom: 18%;
  width: clamp(110px, 8vw, 170px);
  transform: rotateX(56deg);
}

.fallback-photo.p12 {
  left: 20%;
  bottom: 31%;
  width: clamp(120px, 9vw, 190px);
  transform: rotateY(38deg);
}

.fallback-photo.p13 {
  right: 16%;
  bottom: 34%;
  width: clamp(118px, 9vw, 190px);
  transform: rotateY(-40deg);
}

.fallback-photo.p14 {
  right: 45%;
  bottom: 7%;
  width: clamp(130px, 10vw, 210px);
  transform: rotateX(58deg) rotateZ(-2deg);
}

.tunnel-nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 27px 48px;
  pointer-events: none;
}

.tunnel-brand,
.tunnel-links,
.tunnel-controls {
  pointer-events: auto;
}

.tunnel-brand {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  justify-self: start;
  color: currentColor;
  font-size: 19px;
  font-weight: 760;
  letter-spacing: -0.03em;
}

.tunnel-brand span {
  font-family: Georgia, serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
}

.tunnel-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
  min-height: 44px;
}

.tunnel-links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: color-mix(in srgb, currentColor 72%, transparent);
  font-size: 14px;
  font-weight: 560;
  transition: color 180ms ease;
}

.tunnel-links a:hover {
  color: currentColor;
}

.tunnel-controls {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tunnel-language {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 34px;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
}

html[data-theme="dark"] .tunnel-language {
  background: rgba(255, 255, 255, 0.12);
}

.tunnel-language button {
  min-width: 31px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: color-mix(in srgb, currentColor 66%, transparent);
  cursor: pointer;
  font-size: 12px;
  font-weight: 760;
}

.tunnel-language button[aria-pressed="true"] {
  background: #050505;
  color: #fff;
}

html[data-theme="dark"] .tunnel-language button[aria-pressed="true"] {
  background: #fff;
  color: #050505;
}

.tunnel-theme {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: currentColor;
  cursor: pointer;
}

html[data-theme="dark"] .tunnel-theme {
  background: rgba(255, 255, 255, 0.12);
}

.tunnel-theme span {
  display: block;
  font-size: 17px;
  transform: translateY(-1px);
}

.tunnel-copy {
  position: fixed;
  inset: 0;
  z-index: 10;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 0 24px;
  pointer-events: none;
  text-align: center;
}

.tunnel-copy h1 {
  margin: 0;
  color: currentColor;
  font-size: clamp(88px, 15.4vw, 190px);
  font-weight: 880;
  line-height: 0.78;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.tunnel-copy p {
  width: min(86vw, 680px);
  margin: clamp(18px, 2.4vw, 30px) auto 0;
  color: color-mix(in srgb, currentColor 58%, transparent);
  font-size: clamp(15px, 1.4vw, 22px);
  font-weight: 520;
  line-height: 1.65;
  letter-spacing: 0.04em;
  text-wrap: balance;
}

.tunnel-footer {
  position: fixed;
  right: 22px;
  bottom: 16px;
  z-index: 12;
  color: color-mix(in srgb, currentColor 32%, transparent);
  font-size: 11px;
  pointer-events: none;
}

.tunnel-progress {
  position: fixed;
  left: 28px;
  bottom: 26px;
  z-index: 12;
  display: grid;
  grid-template-columns: auto 1px auto;
  align-items: center;
  gap: 10px;
  color: color-mix(in srgb, currentColor 42%, transparent);
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.16em;
  pointer-events: none;
}

.tunnel-progress i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: color-mix(in srgb, currentColor 18%, transparent);
}

.tunnel-progress i::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc(var(--tunnel-progress) * 100%);
  background: currentColor;
}

@media (max-width: 760px) {
  .tunnel-nav {
    grid-template-columns: 1fr auto;
    padding: 18px 18px 0;
  }

  .tunnel-links {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 22;
    display: grid;
    justify-self: stretch;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px;
    min-height: 64px;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(20px);
    box-shadow: 0 16px 46px rgba(0, 0, 0, 0.11);
  }

  html[data-theme="dark"] .tunnel-links {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(5, 5, 5, 0.74);
  }

  .tunnel-links a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 20px;
    color: color-mix(in srgb, currentColor 76%, transparent);
    font-size: 13px;
    font-weight: 760;
    line-height: 1;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  .tunnel-links a:hover,
  .tunnel-links a:focus-visible {
    background: rgba(0, 0, 0, 0.06);
    color: currentColor;
    outline: 0;
  }

  html[data-theme="dark"] .tunnel-links a:hover,
  html[data-theme="dark"] .tunnel-links a:focus-visible {
    background: rgba(255, 255, 255, 0.12);
  }

  .tunnel-links a[data-nav-key="reserve"] {
    position: static;
    width: auto;
    min-height: 48px;
    border-radius: 999px;
    background: #050505;
    color: #fff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }

  html[data-theme="dark"] .tunnel-links a[data-nav-key="reserve"] {
    background: #fff;
    color: #050505;
  }

  .tunnel-brand {
    font-size: 19px;
  }

  .tunnel-controls {
    gap: 8px;
  }

  .tunnel-language {
    height: 32px;
  }

  .tunnel-language button {
    min-width: 28px;
    height: 26px;
    font-size: 11px;
  }

  .tunnel-theme {
    width: 32px;
    height: 32px;
  }

  .tunnel-copy {
    align-items: center;
    padding: 0 22px 84px;
  }

  .tunnel-copy h1 {
    font-size: clamp(52px, 15vw, 68px);
    letter-spacing: -0.06em;
  }

  .tunnel-copy p {
    width: min(86vw, 340px);
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.7;
  }

  .tunnel-footer {
    display: none;
  }

  .delphi-tunnel-page {
    min-height: 1800vh;
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .tunnel-progress {
    display: none;
  }

  #tunnel-canvas,
  .tunnel-stage,
  .tunnel-fallback {
    height: 100svh;
  }

  .fallback-plane {
    background-size: 96px 96px;
  }

  .fallback-photo.p1 {
    left: -54px;
    bottom: 28%;
  }

  .fallback-photo.p2 {
    right: -38px;
    top: 20%;
  }

  .fallback-photo.p3 {
    left: 17%;
    top: 16%;
  }

  .fallback-photo.p4,
  .fallback-photo.p5,
  .fallback-photo.p7,
  .fallback-photo.p8,
  .fallback-photo.p9,
  .fallback-photo.p10,
  .fallback-photo.p11,
  .fallback-photo.p12,
  .fallback-photo.p13,
  .fallback-photo.p14 {
    width: 96px;
  }
}

@media (max-width: 420px) {
  .tunnel-nav {
    padding: 18px 16px 0;
  }

  .tunnel-brand span {
    font-size: 23px;
  }

  .tunnel-links {
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    border-radius: 24px;
  }

  .tunnel-links a {
    min-height: 46px;
    border-radius: 18px;
    font-size: 12px;
  }

  .tunnel-links a[data-nav-key="reserve"] {
    min-height: 46px;
  }

}

/* Services page */
.services-page {
  background: #f5f3ee;
  color: #080808;
}

.services-page::before {
  display: none;
}

.services-page .site-header {
  color: #080808;
}

.services-page .services-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  gap: 52px;
  align-items: end;
  min-height: 100svh;
  padding: 126px 48px 56px;
}

.services-hero-copy {
  align-self: center;
  max-width: 570px;
  padding-bottom: 26px;
}

.services-page .eyebrow {
  margin: 0 0 22px;
  color: rgba(8, 8, 8, 0.48);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.services-hero-copy h1 {
  margin: 0;
  color: #080808;
  font-family: var(--display);
  font-size: 92px;
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
}

.services-hero-copy p:last-child {
  max-width: 540px;
  margin: 30px 0 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 18px;
  line-height: 1.92;
}

.services-hero-image {
  align-self: end;
  height: min(72svh, 720px);
  min-height: 520px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #dedbd3;
}

.services-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.services-intro {
  display: grid;
  grid-template-columns: minmax(220px, 0.5fr) minmax(360px, 1fr) minmax(320px, 0.72fr);
  gap: 44px;
  align-items: start;
  padding: 112px 64px;
  border-top: 1px solid rgba(8, 8, 8, 0.12);
  border-bottom: 1px solid rgba(8, 8, 8, 0.12);
  background: #ffffff;
}

.services-intro .eyebrow {
  margin-top: 10px;
}

.services-intro h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: 0;
}

.services-intro p:last-child {
  margin: 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 18px;
  line-height: 1.95;
}

.services-scope {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(8, 8, 8, 0.14);
}

.services-scope article {
  min-height: 250px;
  padding: 34px 30px;
  background: #f5f3ee;
}

.services-scope span {
  display: block;
  color: rgba(8, 8, 8, 0.48);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.services-scope p {
  margin: 88px 0 0;
  color: rgba(8, 8, 8, 0.72);
  font-size: 18px;
  line-height: 1.82;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  background: rgba(8, 8, 8, 0.14);
}

.service-item {
  display: grid;
  grid-template-columns: 1fr;
  background: #f5f3ee;
}

.service-item-large {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  min-height: 680px;
}

.service-item figure {
  min-height: 430px;
  margin: 0;
  overflow: hidden;
  background: #d8d4cb;
}

.service-item-large figure {
  min-height: 680px;
}

.service-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-item-large img {
  object-position: center center;
}

.service-item > div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 330px;
  padding: 44px;
}

.service-item-large > div {
  min-height: auto;
  padding: 70px 58px;
}

.service-item span {
  color: rgba(8, 8, 8, 0.45);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-item h2 {
  margin: 26px 0 0;
  font-size: 40px;
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.service-item-large h2 {
  font-size: 58px;
}

.service-item p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 17px;
  line-height: 1.9;
}

.services-process {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 62px;
  padding: 112px 64px;
  color: #f7f2ec;
  background: #101114;
}

.services-process .eyebrow {
  color: rgba(247, 242, 236, 0.5);
}

.services-process h2 {
  margin: 0;
  font-size: 62px;
  font-weight: 900;
  line-height: 1;
}

.services-process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: rgba(247, 242, 236, 0.16);
  border: 1px solid rgba(247, 242, 236, 0.16);
}

.services-process li {
  min-height: 210px;
  padding: 28px;
  background: #101114;
}

.services-process li span {
  display: block;
  color: rgba(247, 242, 236, 0.42);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 780;
}

.services-process li p {
  margin: 72px 0 0;
  color: rgba(247, 242, 236, 0.78);
  font-size: 20px;
  line-height: 1.7;
}

.services-prepare {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
  gap: 64px;
  align-items: start;
  padding: 112px 64px;
  background: #fff;
}

.services-prepare h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: 0;
}

.services-prepare ul {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(8, 8, 8, 0.14);
}

.services-prepare li {
  display: flex;
  align-items: center;
  min-height: 76px;
  border-bottom: 1px solid rgba(8, 8, 8, 0.14);
  color: rgba(8, 8, 8, 0.72);
  font-size: 20px;
  line-height: 1.5;
}

.services-cta {
  display: grid;
  justify-items: center;
  padding: 118px 28px 130px;
  text-align: center;
  color: #f7f2ec;
  background:
    linear-gradient(rgba(16, 17, 20, 0.7), rgba(16, 17, 20, 0.88)),
    url("assets/services/service-tools-still-life.png") center / cover;
}

.services-cta .eyebrow {
  color: rgba(247, 242, 236, 0.54);
}

.services-cta h2 {
  margin: 0;
  font-size: 76px;
  font-weight: 900;
  line-height: 1;
}

.services-cta p {
  max-width: 640px;
  margin: 28px 0 0;
  color: rgba(247, 242, 236, 0.74);
  font-size: 18px;
  line-height: 1.9;
}

.services-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 154px;
  min-height: 50px;
  margin-top: 42px;
  border: 1px solid rgba(247, 242, 236, 0.55);
  border-radius: 999px;
  color: #f7f2ec;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .services-page .services-hero,
  .services-intro,
  .services-scope,
  .services-process,
  .services-prepare {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .services-page .services-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .services-hero-copy h1,
  .services-cta h2 {
    font-size: 56px;
  }

  .services-intro h2,
  .services-process h2,
  .services-prepare h2 {
    font-size: 46px;
  }

  .services-hero-image {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

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

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

  .services-scope article {
    min-height: 220px;
  }

  .services-scope p {
    margin-top: 56px;
  }

  .service-item-large {
    grid-column: auto;
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .service-item-large figure,
  .service-item figure {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .service-item > div,
  .service-item-large > div {
    min-height: 0;
    padding: 36px 28px 44px;
  }

  .service-item h2,
  .service-item-large h2 {
    font-size: 34px;
  }

  .services-process ol {
    grid-template-columns: 1fr;
  }

  .services-process li {
    min-height: 170px;
  }

  .services-process li p {
    margin-top: 44px;
  }

  .services-prepare li {
    min-height: 68px;
    font-size: 17px;
  }
}

@media (max-width: 560px) {
  .services-page .services-hero,
  .services-intro,
  .services-scope,
  .services-process,
  .services-prepare {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services-page .services-hero {
    padding-top: 108px;
    padding-bottom: 40px;
  }

  .services-hero-copy h1,
  .services-cta h2 {
    font-size: 44px;
  }

  .services-intro h2,
  .services-process h2,
  .services-prepare h2 {
    font-size: 36px;
  }

  .services-scope {
    grid-template-columns: 1fr;
    padding: 1px 0;
  }

  .services-scope article {
    min-height: auto;
    padding: 28px 20px;
  }

  .services-scope p {
    margin-top: 28px;
    font-size: 16px;
    line-height: 1.78;
  }

  .services-hero-copy p:last-child,
  .services-intro p:last-child,
  .service-item p,
  .services-cta p {
    font-size: 16px;
    line-height: 1.8;
  }
}

/* Reserve page */
.reserve-page {
  background: #f5f3ee;
  color: #080808;
}

.reserve-page::before {
  display: none;
}

.reserve-page .site-header {
  color: #080808;
}

.reserve-hero {
  display: grid;
  grid-template-columns: minmax(360px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
  min-height: 100svh;
  padding: 126px 48px 58px;
}

.reserve-copy {
  max-width: 600px;
}

.reserve-page .eyebrow {
  margin: 0 0 22px;
  color: rgba(8, 8, 8, 0.48);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 760;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reserve-copy h1 {
  margin: 0;
  color: #080808;
  font-family: var(--display);
  font-size: clamp(62px, 6.6vw, 108px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.reserve-copy > p:last-of-type {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(8, 8, 8, 0.66);
  font-size: 18px;
  line-height: 1.95;
}

.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.reserve-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(8, 8, 8, 0.22);
  border-radius: 999px;
  color: #080808;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.reserve-actions a:first-child {
  background: #080808;
  color: #f5f3ee;
}

.reserve-actions a:hover {
  transform: translateY(-2px);
}

.reserve-map-panel {
  position: relative;
  display: block;
  min-height: min(68svh, 680px);
  overflow: hidden;
  border: 1px solid rgba(8, 8, 8, 0.16);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    linear-gradient(0deg, rgba(8, 8, 8, 0.06) 1px, transparent 1px) 0 0 / 78px 78px,
    radial-gradient(circle at 70% 26%, rgba(210, 95, 43, 0.16), transparent 25%),
    #fffdf8;
  box-shadow: 0 32px 90px rgba(8, 8, 8, 0.12);
}

.reserve-map-panel::before,
.reserve-map-panel::after {
  content: "";
  position: absolute;
  inset: auto;
  pointer-events: none;
}

.reserve-map-panel::before {
  left: -10%;
  top: 45%;
  width: 120%;
  height: 1px;
  background: rgba(8, 8, 8, 0.18);
  transform: rotate(-18deg);
}

.reserve-map-panel::after {
  left: 52%;
  top: -18%;
  width: 1px;
  height: 140%;
  background: rgba(8, 8, 8, 0.16);
  transform: rotate(12deg);
}

.map-road {
  position: absolute;
  display: block;
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.1);
}

.map-road-main {
  left: 10%;
  top: 52%;
  width: 86%;
  height: 18px;
  transform: rotate(-18deg);
}

.map-road-cross {
  left: 44%;
  top: 12%;
  width: 16px;
  height: 82%;
  transform: rotate(14deg);
}

.map-road-soft {
  left: 22%;
  top: 16%;
  width: 64%;
  height: 10px;
  background: rgba(210, 95, 43, 0.2);
  transform: rotate(31deg);
}

.map-pin {
  position: absolute;
  left: 61%;
  top: 44%;
  width: 24px;
  height: 24px;
  border: 6px solid #080808;
  border-radius: 50% 50% 50% 0;
  background: #f5f3ee;
  transform: rotate(-45deg);
  box-shadow: 0 18px 34px rgba(8, 8, 8, 0.24);
}

.map-pin::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #080808;
  transform: translate(-50%, -50%);
}

.map-district,
.map-building,
.map-label {
  position: absolute;
  z-index: 2;
  color: #080808;
  font-family: var(--display);
}

.map-district {
  left: 34px;
  top: 32px;
  color: rgba(8, 8, 8, 0.52);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.map-building {
  right: 34px;
  top: 32px;
  font-size: 15px;
  font-weight: 820;
}

.map-label {
  left: 34px;
  bottom: 34px;
  display: grid;
  gap: 8px;
}

.map-label strong {
  font-size: clamp(44px, 5vw, 86px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0;
}

.map-label small {
  color: rgba(8, 8, 8, 0.62);
  font-size: 15px;
  font-weight: 740;
}

.reserve-details {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 1fr;
  gap: 1px;
  padding: 1px;
  background: rgba(8, 8, 8, 0.14);
}

.reserve-details article {
  min-height: 260px;
  padding: 34px;
  background: #fff;
}

.reserve-details span {
  display: block;
  color: rgba(8, 8, 8, 0.48);
  font-family: var(--display);
  font-size: 12px;
  font-weight: 780;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.reserve-details p {
  margin: 90px 0 0;
  color: rgba(8, 8, 8, 0.76);
  font-size: clamp(18px, 1.7vw, 27px);
  font-weight: 680;
  line-height: 1.55;
}

.reserve-details a {
  font-family: var(--display);
  font-size: clamp(28px, 3.2vw, 54px);
  font-weight: 900;
  line-height: 1;
}

.reserve-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 1fr);
  gap: 64px;
  padding: 112px 64px 132px;
  color: #f7f2ec;
  background: #101114;
}

.reserve-process .eyebrow {
  color: rgba(247, 242, 236, 0.5);
}

.reserve-process h2 {
  margin: 0;
  color: #f7f2ec;
  font-size: 64px;
  font-weight: 900;
  line-height: 1.02;
}

.reserve-process ol {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(247, 242, 236, 0.16);
  background: rgba(247, 242, 236, 0.16);
  list-style: none;
}

.reserve-process li {
  min-height: 260px;
  padding: 28px;
  background: #101114;
}

.reserve-process li span {
  color: rgba(247, 242, 236, 0.42);
  font-family: var(--display);
  font-size: 13px;
  font-weight: 780;
}

.reserve-process li p {
  margin: 92px 0 0;
  color: rgba(247, 242, 236, 0.78);
  font-size: 19px;
  line-height: 1.72;
}

@media (max-width: 980px) {
  .reserve-hero,
  .reserve-process {
    grid-template-columns: 1fr;
    gap: 38px;
    padding-left: 28px;
    padding-right: 28px;
  }

  .reserve-hero {
    min-height: auto;
    padding-top: 118px;
  }

  .reserve-map-panel {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .reserve-details {
    grid-template-columns: 1fr;
  }

  .reserve-details article {
    min-height: 210px;
  }

  .reserve-details p {
    margin-top: 58px;
  }

  .reserve-process ol {
    grid-template-columns: 1fr;
  }

  .reserve-process li {
    min-height: 170px;
  }

  .reserve-process li p {
    margin-top: 44px;
  }
}

@media (max-width: 560px) {
  .reserve-hero {
    gap: 30px;
    padding: 108px 20px 42px;
  }

  .reserve-page .eyebrow {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .reserve-copy h1 {
    font-size: 46px;
    line-height: 1;
  }

  .reserve-copy > p:last-of-type {
    margin-top: 22px;
    font-size: 16px;
    line-height: 1.8;
  }

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

  .reserve-actions a {
    flex: 1 1 138px;
    min-height: 48px;
    padding: 0 16px;
    font-size: 12px;
  }

  .reserve-map-panel {
    aspect-ratio: 16 / 15;
    box-shadow: 0 18px 46px rgba(8, 8, 8, 0.12);
  }

  .map-district,
  .map-building {
    left: 22px;
    right: auto;
    font-size: 11px;
  }

  .map-building {
    top: 58px;
  }

  .map-label {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .map-label strong {
    font-size: 42px;
  }

  .map-label small {
    font-size: 13px;
  }

  .map-pin {
    left: 58%;
    top: 42%;
  }

  .reserve-details article {
    min-height: auto;
    padding: 28px 20px;
  }

  .reserve-details p {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.62;
  }

  .reserve-details a {
    font-size: 34px;
  }

  .reserve-process {
    gap: 30px;
    padding: 78px 20px 96px;
  }

  .reserve-process h2 {
    font-size: 38px;
  }

  .reserve-process li {
    min-height: auto;
    padding: 24px 20px;
  }

  .reserve-process li p {
    margin-top: 34px;
    font-size: 16px;
  }
}

/* About redesign */
.about-redesign {
  min-height: 100vh;
  overflow-x: hidden;
  background: #f7f7f2;
  color: #050505;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.about-redesign::before,
.about-redesign::after {
  display: none;
}

.about-redesign .about-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 28px 48px;
  color: #050505;
  pointer-events: none;
}

.about-redesign .about-brand,
.about-redesign .about-links {
  pointer-events: auto;
}

.about-redesign .about-brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: inherit;
  font-size: 21px;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}

.about-redesign .about-brand span {
  font-size: 31px;
  font-weight: 400;
  line-height: 0.8;
  transform: translateY(-1px);
}

.about-redesign .about-links {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 999px;
  background: rgba(247, 247, 242, 0.72);
  backdrop-filter: blur(16px);
}

.about-redesign .about-links a {
  color: rgba(5, 5, 5, 0.58);
  font-size: 14px;
  font-weight: 720;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: color 180ms ease;
}

.about-redesign .about-links a:hover,
.about-redesign .about-links a.is-active {
  color: #050505;
}

.about-redesign .about-main {
  width: min(1240px, calc(100vw - 96px));
  margin: 0 auto;
}

.about-redesign .about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 0.82fr);
  gap: 72px;
  align-items: end;
  min-height: 100vh;
  padding-top: 132px;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.about-redesign .about-hero-text {
  align-self: end;
  padding-bottom: 92px;
}

.about-redesign .about-kicker {
  margin: 0 0 20px;
  color: rgba(5, 5, 5, 0.45);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.about-redesign .about-hero-text h1 {
  max-width: 820px;
  margin: 0;
  color: #050505;
  font-size: clamp(76px, 8vw, 128px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.86;
}

.about-redesign .about-lead {
  max-width: 650px;
  margin: 34px 0 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 18px;
  font-weight: 460;
  line-height: 1.86;
}

.about-redesign .about-facts-inline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 720px;
  margin-top: 42px;
  background: rgba(5, 5, 5, 0.1);
  border: 1px solid rgba(5, 5, 5, 0.1);
}

.about-redesign .about-facts-inline article {
  min-height: 132px;
  padding: 22px 20px;
  background: rgba(247, 247, 242, 0.9);
}

.about-redesign .about-facts-inline strong {
  display: block;
  margin-bottom: 14px;
  color: #050505;
  font-size: clamp(30px, 3vw, 50px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.about-redesign .about-facts-inline span {
  display: block;
  color: rgba(5, 5, 5, 0.6);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.5;
}

.about-redesign .about-hero-image {
  align-self: end;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: calc(100vh - 132px);
  margin: 0;
}

.about-redesign .about-hero-image img {
  display: block;
  width: min(520px, 100%);
  max-height: calc(100vh - 132px);
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 44px rgba(0, 0, 0, 0.14));
}

.about-redesign .about-profile-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 88px;
  align-items: center;
  padding: 120px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.1);
}

.about-redesign .about-profile-image {
  width: 100%;
  height: 620px;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #e5e2da;
}

.about-redesign .about-profile-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-redesign .about-profile-copy {
  align-self: center;
  max-width: 760px;
}

.about-redesign .about-profile-copy h2,
.about-redesign .about-section-title h2 {
  margin: 0;
  color: #050505;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.about-redesign .about-profile-copy h2 {
  font-size: clamp(44px, 5vw, 72px);
}

.about-redesign .about-profile-copy p:not(.about-kicker) {
  max-width: 680px;
  margin: 28px 0 0;
  color: rgba(5, 5, 5, 0.64);
  font-size: 17px;
  line-height: 1.9;
}

.about-redesign .about-profile-copy blockquote {
  max-width: 680px;
  margin: 38px 0 0;
  padding-left: 24px;
  border-left: 2px solid #d85f31;
  color: #050505;
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 880;
  letter-spacing: -0.03em;
  line-height: 1.16;
}

.about-redesign .about-timeline-layout {
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  gap: 88px;
  align-items: start;
  padding: 120px 0 140px;
}

.about-redesign .about-section-title {
  position: sticky;
  top: 118px;
}

.about-redesign .about-section-title h2 {
  max-width: 410px;
  font-size: clamp(36px, 4.2vw, 58px);
}

.about-redesign .about-timeline-clean {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(5, 5, 5, 0.12);
}

.about-redesign .about-timeline-clean li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 34px;
  align-items: baseline;
  padding: 30px 0;
  border-bottom: 1px solid rgba(5, 5, 5, 0.12);
}

.about-redesign .about-timeline-clean time {
  color: #050505;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.45;
}

.about-redesign .about-timeline-clean p {
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: 17px;
  line-height: 1.85;
}

@media (max-width: 980px) {
  .about-redesign .about-nav {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 22px 20px;
  }

  .about-redesign .about-brand {
    justify-self: center;
  }

  .about-redesign .about-links {
    max-width: calc(100vw - 28px);
    gap: 18px;
    overflow-x: auto;
    padding: 0 18px;
  }

  .about-redesign .about-main {
    width: min(100% - 36px, 720px);
  }

  .about-redesign .about-hero-layout,
  .about-redesign .about-profile-layout,
  .about-redesign .about-timeline-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-redesign .about-hero-layout {
    padding-top: 150px;
  }

  .about-redesign .about-hero-text {
    padding-bottom: 0;
  }

  .about-redesign .about-hero-text h1 {
    font-size: clamp(54px, 14vw, 82px);
  }

  .about-redesign .about-facts-inline {
    grid-template-columns: 1fr;
  }

  .about-redesign .about-hero-image {
    min-height: 0;
  }

  .about-redesign .about-hero-image img {
    max-height: 68vh;
  }

  .about-redesign .about-profile-layout,
  .about-redesign .about-timeline-layout {
    padding: 84px 0;
  }

  .about-redesign .about-profile-image {
    height: min(620px, 120vw);
  }

  .about-redesign .about-section-title {
    position: static;
  }

  .about-redesign .about-timeline-clean li {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}

/* Legacy about page from D:\叶建军\111\叶建军 */
body.about-page {
  --ink: #171a1e;
  --graphite: #25282d;
  --paper: #f2f2f0;
  --paper-soft: #ededeb;
  --line: rgba(23, 26, 30, 0.16);
  --display: "Futura Md BT", "Futura", "Avenir Next Condensed", "Avenir Next", sans-serif;
  --sans: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  --cn-display: "Noto Sans SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
  background:
    linear-gradient(180deg, #f1f1ef 0%, #e9e9e6 42%, #f4f4f2 100%);
  color: var(--ink);
}

body.about-page::before {
  display: none;
}

body.about-page .page-texture {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    radial-gradient(circle, rgba(0, 0, 0, 0.16) 0 0.45px, transparent 0.7px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.025), transparent 32%, rgba(255, 255, 255, 0.42));
  background-size: 4px 4px, 100% 100%;
  mix-blend-mode: multiply;
}

body.about-page .site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  display: grid;
  grid-template-columns: 210px 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 48px clamp(32px, 4.7vw, 86px) 0;
  pointer-events: none;
}

body.about-page .brand-mark,
body.about-page .primary-nav,
body.about-page .language-switch {
  pointer-events: auto;
}

body.about-page .brand-mark {
  justify-self: start;
  display: block;
  width: clamp(138px, 9vw, 170px);
}

body.about-page .brand-mark img {
  width: 100%;
}

body.about-page .primary-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(28px, 3.35vw, 62px);
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  backdrop-filter: none;
  font-family: var(--display);
  font-size: clamp(11px, 0.78vw, 15px);
  line-height: 1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
}

body.about-page .primary-nav a {
  position: relative;
  padding-bottom: 8px;
  color: var(--ink);
  font-size: inherit;
  font-weight: 620;
}

body.about-page .primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  border-radius: 0;
  background: currentColor;
  transform: none;
  transition: width 220ms ease;
}

body.about-page .primary-nav a:hover::after,
body.about-page .primary-nav a.is-active::after {
  width: calc(100% - 0.23em);
}

body.about-page .language-switch {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-height: auto;
  padding: 0;
  border: 1px solid rgba(23, 26, 30, 0.22);
  border-radius: 0;
  background: rgba(255, 255, 255, 0.28);
  backdrop-filter: none;
}

body.about-page .language-switch button {
  appearance: none;
  min-width: 42px;
  min-height: 30px;
  height: auto;
  padding: 0 10px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(23, 26, 30, 0.66);
  font-family: var(--display);
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

body.about-page .language-switch button[aria-pressed="true"] {
  color: var(--paper);
  background: var(--ink);
}

body.about-page .about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(560px, 0.92fr) minmax(360px, 1.08fr);
  align-items: end;
  gap: clamp(28px, 5vw, 92px);
  padding: clamp(150px, 16vh, 190px) clamp(28px, 8.4vw, 158px) clamp(54px, 7vh, 82px);
  isolation: isolate;
  background:
    radial-gradient(circle at 66% 38%, rgba(255, 255, 255, 0.9) 0 18%, rgba(235, 235, 232, 0.82) 42%, rgba(211, 211, 207, 0.68) 100%),
    linear-gradient(90deg, #eeeeec 0%, #fbfbfa 50%, #e6e6e3 100%);
}

body.about-page .about-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), transparent 28%, transparent 80%, rgba(255, 255, 255, 0.68)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), transparent 24%, rgba(226, 226, 222, 0.72));
}

body.about-page .about-hero-word {
  position: absolute;
  z-index: 1;
  left: clamp(20px, 5.6vw, 112px);
  bottom: clamp(124px, 11vw, 190px);
  color: rgba(23, 26, 30, 0.18);
  font-family: var(--display);
  font-size: clamp(132px, 24vw, 410px);
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  mix-blend-mode: multiply;
}

body.about-page .about-hero-copy {
  position: relative;
  z-index: 7;
  align-self: center;
  min-width: 0;
  max-width: 650px;
  padding-bottom: clamp(28px, 8vh, 96px);
}

body.about-page .about-kicker,
body.about-page .about-feature span,
body.about-page .about-cta span {
  display: inline-block;
  font-family: var(--display);
  font-size: clamp(10px, 0.78vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(23, 26, 30, 0.62);
}

body.about-page .about-hero h1 {
  margin: 24px 0 26px;
  font-family: var(--cn-display);
  font-size: clamp(50px, 6.8vw, 124px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

html[data-lang="en"] body.about-page .about-hero h1,
html[data-lang="en"] body.about-page .about-copy-block h2,
html[data-lang="en"] body.about-page .about-feature h2,
html[data-lang="en"] body.about-page .about-cta h2 {
  font-family: var(--display);
  text-transform: uppercase;
}

html[data-lang="en"] body.about-page .about-hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.2vw, 88px);
  line-height: 1.02;
  overflow-wrap: normal;
  word-break: normal;
}

body.about-page .about-hero-copy p:last-child {
  margin: 0;
  max-width: 560px;
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 2;
  color: rgba(23, 26, 30, 0.72);
  overflow-wrap: anywhere;
}

body.about-page .about-portrait {
  position: absolute;
  z-index: 6;
  right: clamp(86px, 17vw, 290px);
  bottom: 0;
  width: clamp(468px, 40.8vw, 768px);
  margin: 0;
  pointer-events: none;
}

body.about-page .about-portrait img {
  width: 100%;
  filter: grayscale(0.03) contrast(1.05) drop-shadow(0 38px 74px rgba(9, 10, 12, 0.18));
  mix-blend-mode: normal;
}

body.about-page .about-hero-facts {
  position: relative;
  z-index: 8;
  align-self: end;
  justify-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: clamp(640px, 49vw, 744px);
  max-width: none;
  border: 1px solid rgba(23, 26, 30, 0.18);
  background: rgba(23, 26, 30, 0.16);
  backdrop-filter: blur(14px);
}

body.about-page .about-hero-facts article {
  min-height: 130px;
  padding: 24px 22px;
  background: rgba(242, 242, 240, 0.62);
}

body.about-page .about-hero-facts strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--display);
  font-size: clamp(26px, 1.98vw, 37px);
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}

body.about-page .about-hero-facts span {
  display: block;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(23, 26, 30, 0.64);
}

body.about-page .about-section,
body.about-page .about-feature,
body.about-page .about-cta {
  scroll-margin-top: 120px;
}

body.about-page .about-section {
  display: grid;
  grid-template-columns: minmax(190px, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 110px);
  padding: clamp(78px, 9.4vw, 144px) clamp(28px, 8.4vw, 158px);
  border-top: 1px solid var(--line);
  background: var(--paper);
}

body.about-page .about-copy-block {
  max-width: 980px;
}

body.about-page .about-copy-block h2,
body.about-page .about-feature h2,
body.about-page .about-cta h2 {
  margin: 0;
  font-family: var(--cn-display);
  font-size: clamp(34px, 4.6vw, 78px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
}

body.about-page .about-copy-block > p {
  max-width: 820px;
  margin: 28px 0 0;
  font-size: clamp(17px, 1.28vw, 22px);
  line-height: 2;
  color: rgba(23, 26, 30, 0.72);
}

body.about-page .about-copy-block blockquote {
  margin: clamp(36px, 5vw, 68px) 0 0;
  padding: 32px 0 0;
  border-top: 1px solid rgba(23, 26, 30, 0.28);
  font-family: var(--cn-display);
  font-size: clamp(26px, 3vw, 52px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--ink);
}

body.about-page .about-profile {
  position: relative;
  grid-template-columns: minmax(300px, 33vw) minmax(0, 1fr);
  gap: clamp(46px, 5.8vw, 116px);
  min-height: 100svh;
  padding: clamp(88px, 9.5vh, 132px) clamp(62px, 7.2vw, 148px) clamp(44px, 5vw, 78px);
  overflow: hidden;
}

body.about-page .profile-visual {
  position: relative;
  align-self: stretch;
  min-height: clamp(660px, 74vh, 900px);
  overflow: hidden;
}

body.about-page .profile-kicker,
body.about-page .timeline-kicker {
  position: absolute;
  z-index: 4;
  font-family: var(--display);
  font-size: clamp(10px, 0.78vw, 13px);
  line-height: 1.5;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(23, 26, 30, 0.58);
}

body.about-page .profile-kicker {
  left: clamp(8px, 3.2vw, 62px);
  top: clamp(12px, 2.4vh, 30px);
}

body.about-page .profile-portrait {
  position: absolute;
  left: clamp(72px, 6.2vw, 132px);
  top: 50%;
  z-index: 2;
  margin: 0;
  pointer-events: none;
  transform: translateY(-50%);
}

body.about-page .profile-portrait img {
  width: auto;
  height: clamp(620px, 74svh, 940px);
  max-width: none;
  filter: grayscale(0.04) contrast(1.04) drop-shadow(0 24px 58px rgba(12, 14, 18, 0.08));
}

body.about-page .profile-content {
  align-self: center;
  max-width: 1180px;
}

body.about-page .about-profile .about-copy-block h2 {
  max-width: 1140px;
  font-size: clamp(54px, 5.3vw, 104px);
  line-height: 0.96;
}

body.about-page .about-profile .about-copy-block > p {
  max-width: 1120px;
  font-size: clamp(18px, 1.28vw, 24px);
  line-height: 2.05;
}

body.about-page .about-profile .about-copy-block blockquote {
  margin-top: clamp(42px, 5vw, 76px);
  padding-top: clamp(34px, 4.2vw, 62px);
  font-size: clamp(34px, 4.1vw, 78px);
  line-height: 1.18;
}

body.about-page .about-timeline {
  position: relative;
  grid-template-columns: minmax(300px, 30vw) minmax(0, 1fr);
  gap: clamp(44px, 4.8vw, 92px);
  min-height: 100svh;
  padding: clamp(96px, 10vh, 140px) clamp(60px, 5.4vw, 112px) clamp(34px, 4.8vw, 72px);
  overflow: hidden;
}

body.about-page .timeline-visual {
  position: relative;
  min-height: clamp(720px, 74vh, 960px);
  align-self: stretch;
}

body.about-page .timeline-kicker {
  left: clamp(8px, 3.2vw, 62px);
  top: 0;
}

body.about-page .timeline-portrait {
  position: absolute;
  left: clamp(0px, 1.2vw, 28px);
  top: clamp(58px, 7vh, 86px);
  bottom: clamp(-300px, -22vh, -190px);
  z-index: 2;
  width: auto;
  margin: 0;
  pointer-events: none;
}

body.about-page .timeline-portrait img {
  width: auto;
  height: 100%;
  max-width: none;
  filter: grayscale(0.04) contrast(1.04) drop-shadow(0 24px 58px rgba(12, 14, 18, 0.08));
}

body.about-page .timeline-signature {
  position: absolute;
  left: clamp(4px, 1.6vw, 34px);
  bottom: clamp(270px, 34vh, 430px);
  z-index: 4;
  width: clamp(240px, 20vw, 390px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 10px 18px;
  pointer-events: none;
}

body.about-page .timeline-signature strong {
  grid-column: 1 / -1;
  font-family: var(--display);
  font-size: clamp(34px, 3.2vw, 62px);
  line-height: 0.82;
  letter-spacing: -0.01em;
  color: rgba(180, 181, 178, 0.86);
}

body.about-page .timeline-signature i {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(242, 242, 240, 0.85);
}

body.about-page .timeline-signature span {
  font-size: clamp(14px, 1.1vw, 21px);
  line-height: 1;
  letter-spacing: 0.34em;
  color: rgba(242, 242, 240, 0.96);
  white-space: nowrap;
}

body.about-page .timeline-content {
  align-self: center;
  max-width: 1120px;
}

body.about-page .about-timeline .about-copy-block h2 {
  max-width: 1040px;
  font-size: clamp(52px, 4.45vw, 88px);
  line-height: 0.96;
}

body.about-page .timeline-list {
  list-style: none;
  display: grid;
  gap: 0;
  margin: clamp(38px, 5vw, 70px) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

body.about-page .timeline-list li {
  display: grid;
  grid-template-columns: minmax(170px, 0.24fr) minmax(0, 1fr);
  gap: clamp(32px, 4.8vw, 90px);
  padding: clamp(30px, 3.2vw, 48px) 0;
  border-bottom: 1px solid var(--line);
}

body.about-page .timeline-list time {
  font-family: var(--display);
  font-size: clamp(18px, 1.28vw, 27px);
  line-height: 1.2;
  letter-spacing: 0.12em;
  color: rgba(23, 26, 30, 0.62);
}

body.about-page .timeline-list h3 {
  margin: 0 0 10px;
  font-family: var(--cn-display);
  font-size: clamp(26px, 2.35vw, 43px);
  line-height: 1.2;
}

body.about-page .timeline-list p {
  margin: 0;
  max-width: 820px;
  font-size: clamp(16px, 1.08vw, 20px);
  line-height: 1.85;
  color: rgba(23, 26, 30, 0.66);
}

body.about-page .about-feature {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.18fr) minmax(320px, 0.9fr);
  gap: 1px;
  padding: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(242, 242, 240, 0.1), rgba(242, 242, 240, 0.04)),
    #111216;
  color: var(--paper);
}

body.about-page .about-feature article {
  position: relative;
  min-height: clamp(500px, 54vh, 660px);
  padding: clamp(40px, 4vw, 74px) clamp(34px, 4vw, 76px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background:
    radial-gradient(circle at 78% 18%, rgba(242, 242, 240, 0.08), transparent 34%),
    #111216;
}

body.about-page .about-feature span {
  align-self: flex-start;
  padding: 4px 0;
  color: rgba(242, 242, 240, 0.55);
}

body.about-page .about-feature h2 {
  max-width: 760px;
  margin-top: clamp(70px, 6.4vw, 112px);
  color: var(--paper);
  font-size: clamp(38px, 3.4vw, 68px);
  line-height: 1.08;
}

body.about-page .about-feature p {
  max-width: 760px;
  margin: clamp(28px, 3vw, 48px) 0 0;
  font-size: clamp(16px, 1.1vw, 20px);
  line-height: 2.05;
  color: rgba(242, 242, 240, 0.72);
}

body.about-page .about-feature .feature-method h2 {
  font-size: clamp(44px, 4.2vw, 82px);
}

body.about-page .about-feature .feature-impact {
  background:
    linear-gradient(180deg, rgba(242, 242, 240, 0.045), transparent 52%),
    #15161a;
}

body.about-page .about-feature .feature-character h2 {
  max-width: 620px;
}

body.about-page .about-cta {
  display: grid;
  grid-template-columns: minmax(220px, 0.6fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: clamp(28px, 4.6vw, 76px);
  padding: clamp(64px, 8vw, 120px) clamp(28px, 8.4vw, 158px);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 40%, rgba(77, 78, 76, 0.45), transparent 36%),
    #101114;
}

body.about-page .about-cta span {
  color: rgba(242, 242, 240, 0.56);
}

body.about-page .about-cta h2 {
  color: var(--paper);
}

body.about-page .about-cta p {
  margin: 0;
  max-width: 620px;
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.95;
  color: rgba(242, 242, 240, 0.68);
}

body.about-page .about-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 48px;
  border: 1px solid rgba(242, 242, 240, 0.5);
  font-size: 14px;
  letter-spacing: 0.18em;
}

body.about-page .reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: aboutRevealUp 850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

body.about-page .reveal-1 {
  animation-delay: 80ms;
}

body.about-page .reveal-2 {
  animation-delay: 160ms;
}

body.about-page .reveal-model {
  animation-delay: 260ms;
}

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

@media (max-width: 980px) {
  body.about-page .site-header {
    grid-template-columns: 160px 1fr auto;
    padding-top: 34px;
  }

  body.about-page .primary-nav {
    gap: 22px;
    letter-spacing: 0.14em;
  }

  body.about-page .about-hero {
    grid-template-columns: 1fr;
    align-items: start;
    min-height: 900px;
  }

  body.about-page .about-portrait {
    right: 4vw;
    width: clamp(360px, 48vw, 520px);
  }

  body.about-page .about-hero-facts {
    justify-self: start;
    margin-top: 32px;
  }

  body.about-page .about-section,
  body.about-page .about-cta {
    grid-template-columns: 1fr;
  }

  body.about-page .about-profile {
    padding-top: 96px;
    gap: 44px;
  }

  body.about-page .profile-visual {
    min-height: clamp(640px, 72svh, 780px);
  }

  body.about-page .profile-kicker {
    left: 24px;
  }

  body.about-page .profile-portrait {
    left: 50%;
    top: 52%;
    transform: translate(-50%, -50%);
  }

  body.about-page .profile-portrait img {
    height: clamp(540px, 68svh, 700px);
  }

  body.about-page .about-profile .about-copy-block h2 {
    max-width: 840px;
    font-size: clamp(46px, 7vw, 76px);
  }

  body.about-page .about-timeline {
    padding-top: 112px;
    gap: 48px;
  }

  body.about-page .timeline-visual {
    min-height: 640px;
  }

  body.about-page .timeline-kicker {
    left: 24px;
  }

  body.about-page .timeline-portrait {
    left: 44%;
    bottom: -84px;
    width: clamp(390px, 58vw, 560px);
    transform: translateX(-50%);
  }

  body.about-page .timeline-signature {
    left: 18%;
    bottom: 168px;
  }

  body.about-page .about-timeline .about-copy-block h2 {
    max-width: 820px;
    font-size: clamp(44px, 7vw, 76px);
  }

  body.about-page .about-feature {
    grid-template-columns: 1fr;
  }

  body.about-page .about-feature article {
    min-height: 320px;
    border-bottom: 1px solid rgba(242, 242, 240, 0.16);
  }

  body.about-page .about-feature article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  body.about-page {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  body.about-page .site-header {
    position: fixed;
    inset: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 18px 16px 0;
    pointer-events: none;
  }

  body.about-page .brand-mark {
    justify-self: start;
    width: 118px;
    pointer-events: auto;
  }

  body.about-page .primary-nav {
    position: fixed;
    left: 10px;
    right: 10px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    z-index: 45;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    justify-self: stretch;
    gap: 6px;
    min-height: 64px;
    padding: 8px;
    border: 1px solid rgba(23, 26, 30, 0.14);
    border-radius: 24px;
    background: rgba(242, 242, 240, 0.82);
    box-shadow: 0 16px 46px rgba(23, 26, 30, 0.14);
    backdrop-filter: blur(20px);
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
    pointer-events: auto;
  }

  body.about-page .primary-nav a {
    display: grid;
    place-items: center;
    min-height: 46px;
    padding: 0;
    border-radius: 18px;
    color: rgba(23, 26, 30, 0.68);
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 760;
    letter-spacing: 0;
    line-height: 1;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
  }

  body.about-page .primary-nav a::after {
    display: none;
  }

  body.about-page .primary-nav a:hover,
  body.about-page .primary-nav a:focus-visible,
  body.about-page .primary-nav a.is-active {
    color: var(--ink);
    background: rgba(23, 26, 30, 0.07);
    outline: 0;
  }

  body.about-page .primary-nav a[data-i18n="nav.contact"] {
    position: static;
    width: auto;
    min-height: 46px;
    border-radius: 999px;
    background: var(--ink);
    color: var(--paper);
    box-shadow: 0 10px 24px rgba(23, 26, 30, 0.18);
  }

  body.about-page .language-switch {
    position: static;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 4px;
    min-height: 36px;
    padding: 4px;
    border: 1px solid rgba(23, 26, 30, 0.12);
    border-radius: 999px;
    background: rgba(242, 242, 240, 0.82);
    backdrop-filter: blur(18px);
    pointer-events: auto;
  }

  body.about-page .language-switch button {
    min-width: 32px;
    min-height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    font-size: 10px;
  }

  body.about-page .about-hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 116px 20px 28px;
  }

  body.about-page .about-hero-word {
    left: 0;
    top: 318px;
    bottom: auto;
    font-size: 34vw;
    opacity: 0.14;
  }

  body.about-page .about-hero-copy {
    padding-bottom: 0;
  }

  body.about-page .about-hero h1 {
    margin-top: 18px;
    font-size: clamp(38px, 11.6vw, 56px);
    line-height: 0.96;
  }

  body.about-page .about-hero-copy p:last-child {
    max-width: 100%;
    font-size: 15px;
    line-height: 1.85;
  }

  body.about-page .about-portrait {
    position: relative;
    right: auto;
    bottom: auto;
    align-self: center;
    width: min(92vw, 390px);
    margin-top: 18px;
  }

  body.about-page .about-hero-facts {
    width: 100%;
    grid-template-columns: 1fr;
    margin-top: 4px;
  }

  body.about-page .about-hero-facts article {
    min-height: auto;
    padding: 16px;
  }

  body.about-page .about-section {
    padding: 64px 22px;
    gap: 26px;
  }

  body.about-page .about-profile {
    padding: 64px 20px 58px;
    gap: 30px;
  }

  body.about-page .profile-visual {
    min-height: 460px;
    margin-left: -20px;
    margin-right: -20px;
  }

  body.about-page .profile-kicker {
    left: 20px;
    top: 0;
    letter-spacing: 0.28em;
  }

  body.about-page .profile-portrait {
    left: 50%;
    top: 52%;
  }

  body.about-page .profile-portrait img {
    height: clamp(350px, 52svh, 430px);
  }

  body.about-page .about-timeline {
    padding: 70px 20px 54px;
    gap: 34px;
  }

  body.about-page .timeline-visual {
    min-height: 390px;
    margin-left: -20px;
    margin-right: -20px;
    overflow: hidden;
  }

  body.about-page .timeline-kicker {
    left: 20px;
    letter-spacing: 0.28em;
  }

  body.about-page .timeline-portrait {
    left: 42%;
    top: 48px;
    bottom: -118px;
    width: auto;
  }

  body.about-page .timeline-signature {
    left: 20px;
    bottom: 96px;
    width: 252px;
  }

  body.about-page .timeline-signature strong {
    font-size: 38px;
  }

  body.about-page .timeline-signature i {
    height: 2px;
  }

  body.about-page .timeline-signature span {
    font-size: 13px;
  }

  body.about-page .about-copy-block h2,
  body.about-page .about-feature h2,
  body.about-page .about-cta h2 {
    font-size: clamp(32px, 10vw, 50px);
  }

  body.about-page .about-profile .about-copy-block h2 {
    font-size: clamp(35px, 10.6vw, 56px);
    line-height: 1;
  }

  body.about-page .about-profile .about-copy-block blockquote {
    font-size: clamp(28px, 8.8vw, 42px);
    line-height: 1.2;
  }

  body.about-page .about-timeline .about-copy-block h2 {
    font-size: clamp(34px, 10.5vw, 52px);
    line-height: 1;
  }

  body.about-page .about-copy-block > p {
    font-size: 15.5px;
    line-height: 1.85;
  }

  body.about-page .timeline-list li,
  body.about-page .about-timeline .timeline-list li {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 24px 0;
  }

  body.about-page .about-feature article {
    min-height: auto;
    padding: 46px 22px;
  }

  body.about-page .about-cta {
    grid-template-columns: 1fr;
    padding: 58px 22px;
  }

  body.about-page .about-cta a {
    width: 100%;
  }
}
