:root {
  --bg: #050505;
  --bg-soft: #0b0b0c;
  --surface: #111113;
  --line: rgba(255, 255, 255, 0.14);
  --line-strong: rgba(255, 255, 255, 0.28);
  --text: #f2f2f0;
  --muted: #a7a7ac;
  --silver: #c9cbd0;
  --accent: #aaa3ff;
  --max-width: 1600px;
  --pad: clamp(22px, 4vw, 72px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: "Helvetica Neue", Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

button,
a {
  color: inherit;
}

button {
  font: inherit;
}

a {
  text-decoration: none;
}

:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.82);
  outline-offset: 5px;
}

#about,
#work,
#experience,
#contact {
  scroll-margin-top: 96px;
}

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

::selection {
  background: rgba(172, 164, 255, 0.85);
  color: #050505;
}

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

.page-noise {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.92' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #fff, var(--accent));
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 96px;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(5, 5, 7, 0.54), rgba(5, 5, 7, 0.17));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  -webkit-backdrop-filter: blur(22px) saturate(125%);
  backdrop-filter: blur(22px) saturate(125%);
  transition: background 500ms ease, border-color 500ms ease, min-height 500ms var(--ease), backdrop-filter 500ms ease;
}

.site-header.is-scrolled {
  min-height: 78px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 7, 0.66);
  -webkit-backdrop-filter: blur(28px) saturate(135%);
  backdrop-filter: blur(28px) saturate(135%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.13em;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 10px;
  font-weight: 600;
}

.brand-name {
  font-size: 13px;
  font-weight: 600;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 48px);
}

.site-nav a {
  position: relative;
  color: #ddd;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 350ms var(--ease);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a.is-active {
  color: #fff;
}

.site-nav .nav-contact {
  padding: 10px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
}

.site-nav .nav-contact::after {
  display: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: #fff;
  transition: transform 300ms var(--ease);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #030304;
}

.hero::after {
  position: absolute;
  right: var(--pad);
  bottom: 0;
  left: var(--pad);
  z-index: 3;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
}

.hero-media,
.statement-media {
  position: absolute;
  inset: -4%;
  will-change: transform;
}

.hero-media img,
.statement-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media img {
  object-position: center center;
  filter: saturate(0.76) contrast(1.1) brightness(0.84);
  animation: hero-scale 18s ease-out both;
}

@keyframes hero-scale {
  from { transform: scale(1.055); }
  to { transform: scale(1); }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, transparent 24%, transparent 54%, rgba(0, 0, 0, 0.8) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.28) 100%);
}

.hero-glow {
  position: absolute;
  right: 7vw;
  bottom: -32vh;
  width: 58vw;
  height: 58vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(149, 137, 255, 0.15), transparent 63%);
  filter: blur(24px);
  mix-blend-mode: screen;
}

.hero-topline {
  position: absolute;
  top: 126px;
  right: var(--pad);
  left: var(--pad);
  z-index: 3;
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.52);
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-content {
  position: absolute;
  right: var(--pad);
  bottom: clamp(28px, 4.5vh, 58px);
  left: var(--pad);
  z-index: 2;
}

.hero-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.hero-studio {
  grid-column: 1 / -1;
  margin: 0 0 clamp(20px, 3vh, 34px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.24em;
}

.hero-title {
  margin: 0;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-size: clamp(92px, 18.8vw, 340px);
  font-weight: 600;
  letter-spacing: -0.095em;
  line-height: 0.7;
  text-shadow: 0 12px 50px rgba(0, 0, 0, 0.28);
}

.hero-title-sub {
  display: flex;
  gap: clamp(9px, 1.2vw, 22px);
  align-items: baseline;
  justify-content: flex-end;
  margin: 0 0 1.3vw clamp(18px, 2vw, 34px);
  white-space: nowrap;
  font-size: clamp(26px, 4.5vw, 78px);
  font-weight: 200;
  letter-spacing: -0.07em;
  line-height: 0.82;
}

.hero-title-sub i {
  color: rgba(255, 255, 255, 0.42);
  font-family: Georgia, serif;
  font-size: 0.82em;
  font-weight: 300;
}

.hero-title-sub span:last-child {
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.76);
}

.hero-role-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  margin-top: clamp(30px, 5vh, 58px);
  padding: 16px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.015) 64%, transparent);
  backdrop-filter: blur(18px) saturate(125%);
}

.hero-role-bar p {
  display: flex;
  gap: clamp(16px, 2.6vw, 42px);
  margin: 0;
}

.hero-role-bar p span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero-role-bar p span + span::before {
  margin-right: clamp(16px, 2.6vw, 42px);
  color: rgba(255, 255, 255, 0.26);
  content: "/";
}

.hero-role-bar a {
  flex: 0 0 auto;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-role-bar a b {
  display: inline-block;
  margin-left: 12px;
  font-size: 14px;
  font-weight: 400;
  transition: transform 350ms var(--ease);
}

.hero-role-bar a:hover b {
  transform: translate(4px, 4px);
}

.section-kicker {
  margin: 0 0 22px;
  color: var(--silver);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.section-pad {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: clamp(100px, 13vw, 210px) var(--pad);
}

.intro {
  padding-bottom: clamp(90px, 11vw, 170px);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(270px, 0.55fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
}

.display-copy {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(42px, 6.6vw, 112px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.03;
}

.intro-copy {
  padding-bottom: 12px;
}

.intro-copy p {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.text-link span {
  transition: transform 300ms var(--ease);
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(100px, 13vw, 190px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  min-height: 170px;
  padding: 32px 24px;
  border-right: 1px solid var(--line);
}

.metric:first-child {
  padding-left: 0;
}

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

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

.metric strong {
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.metric span {
  margin-top: 22px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.work {
  width: 100%;
  max-width: none;
  background: #f0f0ee;
  color: #0b0b0b;
}

.work > * {
  width: min(100%, calc(var(--max-width) - var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.section-head h2 {
  margin: 0;
  font-size: clamp(68px, 10vw, 170px);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.section-head .section-kicker {
  color: #5f5f63;
}

.section-head > p {
  max-width: 320px;
  margin: 0;
  color: #5f5f63;
  font-size: 13px;
  line-height: 1.7;
}

.work-toolbar {
  display: flex;
  gap: 12px;
  padding: 28px 0 52px;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: transparent;
  color: #666;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: 0.06em;
  transition: color 250ms ease, border-color 250ms ease, background 250ms ease;
}

.filter-btn span {
  margin-left: 9px;
  opacity: 0.5;
}

.filter-btn:hover,
.filter-btn.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(42px, 6vw, 100px) clamp(18px, 2.5vw, 40px);
}

.project-card {
  grid-column: span 6;
  min-width: 0;
  opacity: 1;
  transition: opacity 350ms ease, transform 550ms var(--ease);
}

.project-card:nth-child(5n + 1),
.project-card:nth-child(5n + 4) {
  grid-column: span 7;
}

.project-card:nth-child(5n + 2),
.project-card:nth-child(5n + 5) {
  grid-column: span 5;
  padding-top: clamp(40px, 6vw, 90px);
}

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

.project-button {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
}

.project-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #d7d7d4;
}

.project-card:nth-child(3n + 2) .project-image {
  aspect-ratio: 4 / 5;
}

.project-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, 0.38));
  opacity: 0;
  transition: opacity 500ms ease;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 900ms var(--ease), filter 600ms ease;
}

.project-card:hover .project-image img,
.project-button:focus-visible .project-image img {
  transform: scale(1.035);
  filter: saturate(1);
}

.project-card:hover .project-image::after {
  opacity: 1;
}

.project-open-label {
  position: absolute;
  right: 20px;
  bottom: 18px;
  z-index: 2;
  display: flex;
  gap: 8px;
  align-items: center;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.12em;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms ease, transform 400ms var(--ease);
}

.project-card:hover .project-open-label {
  opacity: 1;
  transform: translateY(0);
}

.project-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid transparent;
}

.project-meta h3 {
  margin: 0 0 5px;
  font-size: clamp(20px, 2.1vw, 34px);
  font-weight: 400;
  letter-spacing: -0.035em;
}

.project-meta p,
.project-meta span {
  margin: 0;
  color: #707074;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.project-meta > span {
  padding-top: 7px;
}

.statement {
  position: relative;
  display: grid;
  min-height: 88svh;
  place-items: center;
  overflow: hidden;
}

.statement-media img {
  filter: grayscale(0.25) brightness(0.55);
}

.statement-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.16));
}

.statement-content {
  position: relative;
  z-index: 2;
  padding: var(--pad);
  text-align: center;
}

.statement-content blockquote {
  margin: 0;
  font-size: clamp(48px, 8vw, 138px);
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 1.02;
}

.statement-content > p:last-child {
  margin: 54px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
  gap: clamp(50px, 10vw, 160px);
  align-items: start;
}

.about-portrait {
  position: sticky;
  top: 110px;
}

.about-portrait img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.portrait-caption {
  display: flex;
  justify-content: space-between;
  padding-top: 14px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 890px;
  margin: 0 0 58px;
  font-size: clamp(44px, 5.6vw, 96px);
  font-weight: 300;
  letter-spacing: -0.06em;
  line-height: 1.04;
}

.about-lead {
  max-width: 760px;
  margin: 0 0 26px;
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 300;
  line-height: 1.55;
}

.about-note {
  max-width: 640px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.9;
}

.strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.strengths span {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--silver);
  font-size: 10px;
  letter-spacing: 0.06em;
}

.capability-list {
  margin-top: clamp(70px, 9vw, 130px);
  border-top: 1px solid var(--line);
}

.capability-list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.capability-list span {
  padding-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.capability-list h3,
.capability-list p {
  margin: 0;
}

.capability-list h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.capability-list p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.experience {
  padding-top: 50px;
}

.experience .section-head {
  border-color: var(--line);
}

.experience .section-head .section-kicker,
.experience .section-head > p {
  color: var(--muted);
}

.timeline {
  margin-top: 80px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr minmax(220px, 0.6fr);
  gap: 24px;
  align-items: center;
  min-height: 112px;
  border-bottom: 1px solid var(--line);
}

.timeline-item time,
.timeline-item p {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-item h3,
.timeline-item p {
  margin: 0;
}

.timeline-item h3 {
  font-size: clamp(20px, 2.3vw, 34px);
  font-weight: 300;
}

.awards {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin-top: clamp(90px, 12vw, 170px);
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.awards .section-kicker {
  grid-row: 1 / span 4;
}

.award-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.award-row span {
  color: var(--muted);
  font-size: 11px;
}

.award-row p {
  margin: 0;
  font-size: 15px;
}

.contact {
  position: relative;
  width: 100%;
  max-width: none;
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: #080809;
}

.contact > *:not(.contact-glow) {
  position: relative;
  z-index: 2;
  width: min(100%, calc(var(--max-width) - var(--pad) * 2));
  margin-right: auto;
  margin-left: auto;
}

.contact-glow {
  position: absolute;
  right: -10vw;
  bottom: -35vw;
  width: 75vw;
  height: 75vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(118, 100, 255, 0.2), transparent 62%);
  filter: blur(30px);
}

.contact h2 {
  margin: 0;
  font-size: clamp(66px, 13.3vw, 230px);
  font-weight: 300;
  letter-spacing: -0.075em;
  line-height: 0.8;
}

.contact-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 0.65fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
  margin-top: clamp(80px, 11vw, 150px);
  padding-top: 30px;
  border-top: 1px solid var(--line-strong);
}

.contact-bottom > p {
  max-width: 320px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 44px;
}

.contact-links a,
.contact-links button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  text-align: left;
}

.contact-links button,
.contact-links a {
  cursor: pointer;
}

.contact-links span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-links strong {
  font-size: 13px;
  font-weight: 400;
}


.resume-link {
  display: inline-block;
  width: auto !important;
  margin-top: 70px !important;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line-strong);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px var(--pad);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-view {
  position: fixed;
  inset: 0;
  z-index: 300;
  pointer-events: none;
  visibility: hidden;
}

.project-view.is-open {
  pointer-events: auto;
  visibility: visible;
}

.project-view-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  backdrop-filter: blur(8px);
  transition: opacity 450ms ease;
}

.project-view.is-open .project-view-backdrop {
  opacity: 1;
}

.project-view-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(94vw, 1520px);
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #0a0a0b;
  transform: translateX(102%);
  transition: transform 700ms var(--ease);
}

.project-view.is-open .project-view-panel {
  transform: translateX(0);
}

.project-close {
  position: fixed;
  top: 24px;
  right: 28px;
  z-index: 8;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.56);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.project-close span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 1px;
  background: #fff;
}

.project-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.project-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.detail-hero {
  position: relative;
  min-height: 84svh;
}

.detail-hero img {
  width: 100%;
  height: 84svh;
  object-fit: cover;
  filter: saturate(0.8) brightness(0.6);
}

.detail-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.detail-title {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: clamp(30px, 6vw, 80px);
  left: clamp(24px, 5vw, 80px);
  z-index: 2;
}

.detail-title p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.detail-title h2 {
  max-width: 1100px;
  margin: 0;
  font-size: clamp(46px, 8vw, 130px);
  font-weight: 300;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.detail-info {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 9vw, 140px);
  padding: clamp(80px, 11vw, 160px) clamp(24px, 5vw, 80px);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-content: start;
  border-top: 1px solid var(--line);
}

.detail-fact {
  padding: 20px 10px 22px 0;
  border-bottom: 1px solid var(--line);
}

.detail-fact span,
.detail-fact strong {
  display: block;
}

.detail-fact span {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-fact strong {
  font-size: 13px;
  font-weight: 400;
}

.detail-copy .section-kicker {
  margin-bottom: 32px;
}

.detail-copy > p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(24px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.45;
}

.detail-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.detail-highlights span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
}

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(8px, 1.2vw, 18px);
  padding: 0 clamp(10px, 2vw, 28px) clamp(80px, 10vw, 150px);
}

.detail-gallery figure {
  grid-column: span 6;
  margin: 0;
  overflow: hidden;
  background: #121214;
}

.detail-gallery figure:nth-child(3n + 1) {
  grid-column: span 12;
}

.detail-gallery img {
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
}

.detail-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
  min-height: 210px;
  padding: 30px clamp(24px, 5vw, 80px);
  border: 0;
  border-top: 1px solid var(--line);
  background: #0a0a0b;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.detail-next span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.detail-next strong {
  font-size: clamp(28px, 5vw, 78px);
  font-weight: 300;
  letter-spacing: -0.05em;
}

.qr-modal {
  position: fixed;
  inset: 0;
  z-index: 400;
  display: grid;
  place-items: center;
  pointer-events: none;
  visibility: hidden;
}

.qr-modal.is-open {
  pointer-events: auto;
  visibility: visible;
}

.qr-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.76);
  opacity: 0;
  backdrop-filter: blur(14px);
  transition: opacity 350ms ease;
}

.qr-modal.is-open .qr-backdrop {
  opacity: 1;
}

.qr-card {
  position: relative;
  z-index: 2;
  width: min(88vw, 390px);
  padding: 32px;
  background: #f3f3f0;
  color: #111;
  opacity: 0;
  transform: translateY(18px) scale(0.98);
  transition: opacity 350ms ease, transform 450ms var(--ease);
}

.qr-modal.is-open .qr-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.qr-card p {
  margin: 0 0 26px;
  font-size: 11px;
  letter-spacing: 0.12em;
}

.qr-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.qr-card > span {
  display: block;
  margin-top: 22px;
  color: #666;
  font-size: 12px;
  text-align: center;
}

.qr-close {
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  cursor: pointer;
  font-size: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 900ms ease, transform 900ms var(--ease);
}

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

@media (max-width: 900px) {
  .site-header {
    min-height: 80px;
  }

  .menu-toggle {
    display: block;
    z-index: 2;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 22px;
    padding: var(--pad);
    background: rgba(5, 5, 5, 0.97);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 350ms ease, transform 450ms var(--ease);
  }

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

  .site-nav a {
    font-size: clamp(34px, 9vw, 58px);
    font-weight: 300;
    letter-spacing: -0.04em;
  }

  .site-nav .nav-contact {
    padding: 0;
    border: 0;
  }

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

  .hero-topline {
    top: 106px;
  }

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

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

  .hero-title-sub {
    justify-content: flex-start;
    margin: 28px 0 0;
    font-size: clamp(28px, 8vw, 54px);
  }

  .hero-role-bar p {
    gap: 18px;
  }

  .hero-role-bar p span + span::before {
    margin-right: 18px;
  }

  .intro-grid,
  .about-layout,
  .detail-info,
  .contact-bottom {
    grid-template-columns: 1fr;
  }

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

  .metric:nth-child(2) {
    border-right: 0;
  }

  .metric:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .metric:nth-child(3) {
    padding-left: 0;
  }

  .project-card,
  .project-card:nth-child(5n + 1),
  .project-card:nth-child(5n + 2),
  .project-card:nth-child(5n + 4),
  .project-card:nth-child(5n + 5) {
    grid-column: span 6;
    padding-top: 0;
  }

  .about-portrait {
    position: relative;
    top: auto;
    max-width: 560px;
  }

  .timeline-item {
    grid-template-columns: 130px 1fr;
    padding: 20px 0;
  }

  .timeline-item p {
    grid-column: 2;
  }

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

  .awards .section-kicker {
    grid-row: auto;
    margin-bottom: 30px;
  }

  .contact-links {
    gap: 0 24px;
  }

  .project-view-panel {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .hero-content {
    bottom: 22px;
  }

  .hero-title {
    font-size: clamp(82px, 25vw, 112px);
  }

  .hero-title-sub {
    margin-top: 24px;
    font-size: clamp(30px, 10.5vw, 46px);
  }

  .hero-role-bar {
    align-items: flex-end;
    margin-top: 36px;
    padding: 14px 12px;
  }

  .hero-role-bar p {
    flex-direction: column;
    gap: 4px;
  }

  .hero-role-bar p span {
    font-size: 8px;
  }

  .hero-role-bar p span + span::before {
    display: none;
  }

  .hero-role-bar a {
    font-size: 8px;
  }

  .intro-grid {
    gap: 44px;
  }

  .metrics {
    margin-top: 80px;
  }

  .metric {
    min-height: 135px;
    padding: 24px 14px;
  }

  .section-head {
    display: block;
  }

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

  .work-toolbar {
    max-width: 100%;
    overflow-x: auto;
  }

  .filter-btn {
    flex: 0 0 auto;
  }

  .project-grid {
    display: block;
  }

  .project-card {
    margin-bottom: 54px;
  }

  .project-card:nth-child(3n + 2) .project-image,
  .project-image {
    aspect-ratio: 4 / 3;
  }

  .statement {
    min-height: 72svh;
  }

  .about-content h2 {
    margin-bottom: 40px;
  }

  .timeline-item {
    display: block;
  }

  .timeline-item h3 {
    margin: 12px 0 7px;
  }

  .award-row {
    grid-template-columns: 74px 1fr;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .site-footer {
    flex-direction: column;
  }

  .detail-hero,
  .detail-hero img {
    min-height: 72svh;
    height: 72svh;
  }

  .detail-facts {
    grid-template-columns: 1fr 1fr;
  }

  .detail-gallery {
    display: block;
  }

  .detail-gallery figure {
    margin-bottom: 8px;
  }

  .detail-gallery img {
    min-height: 0;
  }

  .detail-next {
    min-height: 160px;
  }
}

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

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

/* OPTION 3 — EDITORIAL STACK REDESIGN */
:root {
  --editorial-black: #080808;
  --editorial-panel: #0e0e0f;
  --editorial-white: #f2f1ed;
  --editorial-silver: #c8cbd0;
  --editorial-line: rgba(255, 255, 255, 0.18);
  --editorial-radius: clamp(24px, 3.2vw, 52px);
}

body {
  background: var(--editorial-black);
}

#services,
#work,
#about,
#contact,
#experience {
  scroll-margin-top: 84px;
}

.site-header {
  min-height: 76px;
  border-bottom-color: rgba(255, 255, 255, 0.1);
  background: rgba(8, 8, 8, 0.18);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  backdrop-filter: blur(14px) saturate(120%);
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(8, 8, 8, 0.78);
  -webkit-backdrop-filter: blur(24px) saturate(130%);
  backdrop-filter: blur(24px) saturate(130%);
}

.site-nav a {
  color: #d9dce0;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-hero {
  position: relative;
  display: grid;
  grid-template-columns: clamp(112px, 10vw, 170px) minmax(0, 1fr);
  min-height: 100svh;
  padding-top: 76px;
  overflow: hidden;
  background: var(--editorial-black);
}

.hero-rail {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: calc(100svh - 76px);
  padding: clamp(22px, 2.4vw, 40px) clamp(16px, 2vw, 32px);
  border-right: 1px solid var(--editorial-line);
  color: #b7bac0;
  text-transform: uppercase;
}

.hero-rail p,
.hero-rail span {
  margin: 0;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.rail-brand {
  color: #fff;
  font-size: clamp(18px, 1.5vw, 26px) !important;
  font-weight: 600;
  letter-spacing: 0.08em !important;
}

.rail-label {
  margin-top: 3px !important;
}

.rail-location,
.rail-role {
  display: grid;
  gap: 5px;
}

.rail-years {
  display: grid;
  gap: 2px;
}

.rail-years strong {
  color: var(--editorial-white);
  font-size: clamp(36px, 4vw, 64px);
  font-weight: 300;
  line-height: 0.9;
}

.rail-portrait {
  margin: 0;
}

.rail-portrait img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.rail-portrait figcaption {
  margin-top: 9px;
  color: var(--editorial-white);
  font-family: Georgia, serif;
  font-size: 16px;
  font-style: italic;
  text-transform: none;
}

.hero-stage {
  position: relative;
  min-height: calc(100svh - 76px);
  overflow: hidden;
}

.hero-words {
  position: absolute;
  top: clamp(34px, 5vh, 72px);
  left: clamp(26px, 5vw, 92px);
  z-index: 2;
  display: grid;
  color: transparent;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(92px, 14vw, 226px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.075em;
  line-height: 0.72;
  background: linear-gradient(180deg, #646973 0%, #e3e5e6 52%, #777b82 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-architecture {
  position: absolute;
  top: 0;
  right: 0;
  width: 49%;
  height: 100%;
  margin: 0;
}

.hero-architecture::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.15), transparent 35%, rgba(8, 8, 8, 0.18));
  pointer-events: none;
}

.hero-architecture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% center;
  filter: brightness(0.72) contrast(1.08) saturate(0.78);
}

.hero-discipline {
  position: absolute;
  right: clamp(24px, 4vw, 68px);
  bottom: 11%;
  z-index: 3;
  margin: 0;
  color: #d8d9dc;
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
}

.hero-primary {
  position: absolute;
  bottom: 8%;
  left: clamp(28px, 5vw, 94px);
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: color 300ms ease, background 300ms ease;
}

.hero-primary:hover {
  color: #090909;
  background: #fff;
}

.hero-scroll {
  position: absolute;
  right: clamp(24px, 4vw, 68px);
  bottom: 4%;
  z-index: 3;
  margin: 0;
  color: #85878c;
  font-size: 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.services {
  position: relative;
  z-index: 10;
  margin-top: -28px;
  padding: clamp(54px, 6vw, 100px) var(--pad) clamp(72px, 8vw, 130px);
  border-radius: var(--editorial-radius) var(--editorial-radius) 0 0;
  background: var(--editorial-white);
  color: #0a0a0a;
}

.services-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: clamp(36px, 5vw, 72px);
}

.services-head h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(68px, 10vw, 160px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.8;
}

.services-head p {
  margin: 9px 0 0;
  color: #777;
  font-size: 11px;
}

.service-list {
  border-top: 1px solid rgba(10, 10, 10, 0.18);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(74px, 0.4fr) minmax(210px, 1.05fr) minmax(190px, 1fr) minmax(260px, 1.3fr);
  gap: clamp(16px, 3vw, 48px);
  align-items: center;
  min-height: clamp(94px, 9vw, 138px);
  border-bottom: 1px solid rgba(10, 10, 10, 0.15);
}

.service-row strong {
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(48px, 5.2vw, 84px);
  font-weight: 400;
  letter-spacing: -0.06em;
}

.service-row h3,
.service-row p,
.service-row span {
  margin: 0;
}

.service-row h3 {
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.service-row p,
.service-row span {
  color: #767676;
  font-size: 11px;
  line-height: 1.7;
}

.work-stacked {
  position: relative;
  z-index: 12;
  margin-top: -34px;
  padding: clamp(48px, 6vw, 94px) var(--pad) clamp(80px, 10vw, 150px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--editorial-radius) var(--editorial-radius) 0 0;
  background: var(--editorial-black);
  color: var(--editorial-white);
}

.stacked-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(38px, 5vw, 78px);
}

.stacked-head p {
  margin: 0 0 9px;
  color: #8c8e93;
  font-size: 10px;
  letter-spacing: 0.14em;
  line-height: 1.7;
  text-transform: uppercase;
}

.stacked-head h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(68px, 9.2vw, 148px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.featured-work {
  position: relative;
}

.featured-project {
  position: sticky;
  top: calc(84px + var(--project-index) * 16px);
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: min(760px, calc(100svh - 112px));
  margin-bottom: 16vh;
  padding: clamp(18px, 2.4vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(214, 221, 228, 0.58);
  border-radius: clamp(26px, 3vw, 48px);
  background: #0d0d0e;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.28);
  transform: scale(var(--card-scale, 1));
  transform-origin: top center;
  transition: transform 120ms linear;
}

.featured-top {
  display: grid;
  grid-template-columns: 120px minmax(200px, 0.8fr) minmax(260px, 1.4fr) auto;
  gap: clamp(18px, 3vw, 54px);
  align-items: end;
  padding-bottom: clamp(18px, 2vw, 30px);
}

.featured-number {
  color: #f2f2f0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(64px, 8vw, 128px);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.72;
}

.featured-label,
.featured-top p {
  margin: 0;
  color: #8f9197;
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.featured-title h3 {
  margin: 0 0 7px;
  font-size: clamp(24px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.featured-open {
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.featured-collage {
  display: grid;
  grid-template-columns: 0.72fr 0.72fr 1.45fr;
  gap: 12px;
  min-height: 0;
}

.featured-collage img {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border-radius: clamp(18px, 2.4vw, 38px);
  object-fit: cover;
  filter: saturate(0.88) contrast(1.03);
}

.featured-collage img:nth-child(1) { object-position: left center; }
.featured-collage img:nth-child(3) { object-position: center; }

.archive-trigger {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 4vh;
  padding: 34px 0;
  border-top: 1px solid var(--editorial-line);
  border-bottom: 1px solid var(--editorial-line);
}

.archive-trigger div {
  display: grid;
  gap: 6px;
}

.archive-trigger span {
  color: #80838a;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.archive-trigger strong {
  font-size: clamp(26px, 3vw, 44px);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.archive-trigger button {
  min-height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-archive {
  display: none;
  padding-top: 48px;
}

.project-archive.is-open {
  display: block;
}

.project-archive .work-toolbar {
  border-color: var(--editorial-line);
}

.project-archive .filter-btn {
  color: #8e9095;
}

.project-archive .filter-btn.is-active {
  color: #fff;
}

.project-archive .project-button,
.project-archive .project-meta h3 {
  color: #fff;
}

.project-archive .project-meta p,
.project-archive .project-meta span {
  color: #8e9095;
}

.about-editorial {
  padding: clamp(86px, 10vw, 160px) var(--pad);
  background: var(--editorial-black);
  color: var(--editorial-white);
}

.about-editorial-head {
  display: grid;
  grid-template-columns: 0.34fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 110px);
}

.about-editorial-head p,
.experience-title > p,
.contact-copy > p {
  margin: 8px 0 0;
  color: #8c8e93;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-editorial-head h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(82px, 13vw, 210px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.72;
}

.about-editorial-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 150px);
  align-items: start;
}

.about-editorial-portrait {
  margin: 0;
}

.about-editorial-portrait img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
}

.about-editorial-copy {
  padding-top: 3vw;
}

.about-editorial-copy > p {
  max-width: 900px;
  margin: 0 0 26px;
  color: #92949a;
  font-size: clamp(15px, 1.6vw, 24px);
  line-height: 1.7;
}

.about-editorial-copy .about-editorial-lead {
  color: #e3e3e0;
  font-size: clamp(24px, 3.4vw, 52px);
  letter-spacing: -0.035em;
  line-height: 1.38;
}

.about-tags {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: clamp(50px, 7vw, 110px);
  border-top: 1px solid var(--editorial-line);
}

.about-tags span {
  padding: 22px 14px 22px 0;
  border-right: 1px solid var(--editorial-line);
  color: #c9cbd0;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-tags span:last-child {
  border-right: 0;
  padding-left: 20px;
}

.experience-editorial {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 140px);
  margin-top: clamp(100px, 13vw, 210px);
  padding-top: clamp(58px, 7vw, 110px);
  border-top: 1px solid var(--editorial-line);
}

.experience-title h3 {
  margin: 18px 0 0;
  font-size: clamp(42px, 6vw, 92px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.experience-rows article {
  display: grid;
  grid-template-columns: 130px 1fr 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 28px 0;
  border-bottom: 1px solid var(--editorial-line);
}

.experience-rows time,
.experience-rows p {
  margin: 0;
  color: #8e9095;
  font-size: 11px;
}

.experience-rows h4 {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 400;
}

.contact-editorial {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.54fr) minmax(240px, 0.48fr);
  gap: clamp(30px, 5vw, 90px);
  min-height: 70svh;
  margin: 0 var(--pad) clamp(44px, 5vw, 82px);
  padding: clamp(36px, 5vw, 80px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(24px, 3vw, 46px);
  background: #0d0d0e;
}

.contact-copy {
  position: relative;
  z-index: 2;
}

.contact-copy h2 {
  margin: clamp(38px, 6vw, 90px) 0 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(64px, 9vw, 144px);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.78;
}

.contact-actions {
  position: relative;
  z-index: 2;
  align-self: center;
  border-left: 1px solid var(--editorial-line);
}

.contact-actions a,
.contact-actions button {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 24px 0 24px 34px;
  border: 0;
  border-bottom: 1px solid var(--editorial-line);
  background: transparent;
  color: #fff;
  cursor: pointer;
  text-align: left;
}

.contact-actions span {
  color: #80838a;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-actions strong {
  font-size: 14px;
  font-weight: 400;
}

.contact-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 27%;
  margin: 0;
  opacity: 0.58;
}

.contact-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, #0d0d0e, transparent 60%);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.45) brightness(0.68);
}

.site-footer {
  border-top-color: var(--editorial-line);
  background: var(--editorial-black);
}

@media (max-width: 1100px) {
  .hero-words { font-size: clamp(82px, 15.4vw, 170px); }
  .service-row { grid-template-columns: 82px 1fr 1fr; }
  .service-row > span { display: none; }
  .featured-top { grid-template-columns: 90px 1fr 1fr; }
  .featured-open { grid-column: 3; justify-self: end; }
  .contact-editorial { grid-template-columns: minmax(0, 1fr) 300px; }
  .contact-image { display: none; }
}

@media (max-width: 760px) {
  .site-header { min-height: 72px; }
  .editorial-hero { grid-template-columns: 1fr; padding-top: 72px; }
  .hero-rail { display: none; }
  .hero-stage { min-height: calc(100svh - 72px); }
  .hero-architecture { width: 62%; opacity: 0.74; }
  .hero-words { top: 13%; left: 20px; font-size: clamp(76px, 24.5vw, 130px); line-height: 0.78; }
  .hero-primary { left: 20px; bottom: 9%; }
  .hero-discipline { right: 20px; bottom: 18%; text-align: right; }
  .hero-scroll { right: 20px; }
  .services { margin-top: -20px; padding-right: 20px; padding-left: 20px; }
  .services-head { display: block; }
  .services-head h2 { font-size: clamp(62px, 19vw, 100px); }
  .services-head p { margin-top: 20px; }
  .service-row { grid-template-columns: 62px 1fr; gap: 16px; min-height: 112px; }
  .service-row strong { grid-row: span 2; font-size: 46px; }
  .service-row h3 { font-size: 18px; }
  .service-row p { font-size: 9px; }
  .work-stacked { margin-top: -26px; padding-right: 20px; padding-left: 20px; }
  .stacked-head { grid-template-columns: 1fr; }
  .stacked-head > p { display: none; }
  .featured-project { top: calc(78px + var(--project-index) * 10px); min-height: auto; margin-bottom: 12vh; padding: 16px; border-radius: 26px; }
  .featured-top { grid-template-columns: 64px 1fr; gap: 12px; }
  .featured-number { grid-row: span 2; font-size: 62px; }
  .featured-title h3 { font-size: 25px; }
  .featured-top > p { display: none; }
  .featured-open { grid-column: 2; justify-self: start; min-height: 38px; }
  .featured-collage { grid-template-columns: 1fr 1fr; margin-top: 18px; }
  .featured-collage img { min-height: 220px; border-radius: 18px; }
  .featured-collage img:nth-child(3) { grid-column: 1 / -1; min-height: 260px; }
  .archive-trigger { align-items: flex-start; flex-direction: column; }
  .project-archive .project-grid { grid-template-columns: 1fr; }
  .about-editorial { padding-right: 20px; padding-left: 20px; }
  .about-editorial-head { grid-template-columns: 1fr; gap: 18px; }
  .about-editorial-head h2 { font-size: clamp(74px, 24vw, 126px); }
  .about-editorial-grid { grid-template-columns: 1fr; }
  .about-editorial-portrait { max-width: 70%; }
  .about-editorial-copy { padding-top: 0; }
  .about-tags { grid-template-columns: 1fr 1fr; }
  .about-tags span { border-bottom: 1px solid var(--editorial-line); }
  .about-tags span:nth-child(2) { border-right: 0; padding-left: 18px; }
  .experience-editorial { grid-template-columns: 1fr; }
  .experience-rows article { grid-template-columns: 92px 1fr; }
  .experience-rows p { grid-column: 2; }
  .contact-editorial { grid-template-columns: 1fr; min-height: auto; margin-right: 20px; margin-left: 20px; padding: 28px 22px; }
  .contact-copy h2 { font-size: clamp(56px, 17vw, 90px); }
  .contact-actions { border-top: 1px solid var(--editorial-line); border-left: 0; }
  .contact-actions a,
  .contact-actions button { padding-left: 0; }
}
/* Selected-concept fidelity fixes */
.hero-words {
  margin: 0;
  color: inherit;
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}

.hero-words span {
  display: block;
  width: 166.667%;
  color: transparent;
  background: linear-gradient(180deg, #646973 0%, #e3e5e6 52%, #777b82 100%);
  -webkit-background-clip: text;
  background-clip: text;
  transform: scaleX(0.6);
  transform-origin: left center;
}

.featured-collage {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

@media (min-width: 761px) {
  .editorial-hero { grid-template-columns: clamp(132px, 13vw, 188px) minmax(0, 1fr); }
  .hero-words { font-size: clamp(112px, 16.2vw, 262px); }
}
/* Browser annotation pass — hero identity and proportion */
.rail-logo {
  display: block;
  width: 100%;
  margin: -12px 0 0;
  overflow: hidden;
}

.rail-logo img {
  display: block;
  width: 100%;
  height: auto;
  filter: invert(1) grayscale(1) contrast(1.2);
  mix-blend-mode: screen;
}

.hero-avatar-cutout {
  position: absolute;
  bottom: -1px;
  left: 41%;
  z-index: 3;
  width: min(45vw, 650px);
  margin: 0;
  pointer-events: none;
}

.hero-avatar-cutout img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 54px rgba(0, 0, 0, 0.42));
}

.hero-discipline,
.hero-primary,
.hero-scroll {
  z-index: 5;
}

@media (min-width: 761px) {
  .hero-words {
    top: clamp(30px, 4.2vh, 58px);
    transform: scaleY(1.4);
    transform-origin: left top;
  }

  .hero-words span {
    transform: scaleX(0.57);
    transform-origin: left center;
  }

  .hero-primary {
    right: clamp(24px, 4vw, 68px);
    bottom: 5.5%;
    left: auto;
  }

  .hero-discipline {
    bottom: 15%;
  }

  .hero-scroll {
    bottom: 2.5%;
  }
}

@media (max-width: 760px) {
  .hero-words {
    top: 11%;
    z-index: 2;
    transform: scaleY(1.18);
    transform-origin: left top;
  }

  .hero-avatar-cutout {
    bottom: 0;
    left: 10%;
    width: 118%;
  }

  .hero-architecture {
    width: 70%;
  }

  .hero-discipline {
    bottom: 20%;
  }
}
/* Browser annotation pass — cinematic scale and frosted navigation */
.site-header {
  min-height: 76px;
  border-bottom-color: rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(17, 18, 21, 0.58), rgba(8, 8, 10, 0.3));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 16px 42px rgba(0, 0, 0, 0.16);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
  backdrop-filter: blur(24px) saturate(145%);
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(10, 10, 12, 0.66);
  -webkit-backdrop-filter: blur(30px) saturate(150%);
  backdrop-filter: blur(30px) saturate(150%);
}

.site-nav a {
  font-weight: 700;
}

.rail-logo {
  width: calc(100% + 28px);
  margin-left: -14px;
}

.hero-architecture {
  width: 78%;
}

.hero-architecture::after {
  background: linear-gradient(90deg, #080808 0%, rgba(8, 8, 8, 0.92) 14%, rgba(8, 8, 8, 0.48) 32%, rgba(8, 8, 8, 0.08) 55%, rgba(8, 8, 8, 0.2) 100%);
}

.hero-avatar-cutout {
  left: 36%;
  width: min(52vw, 740px);
}

.hero-avatar-cutout img {
  filter: grayscale(1) contrast(1.08) brightness(0.9) drop-shadow(0 28px 58px rgba(0, 0, 0, 0.48));
}

@media (min-width: 761px) {
  .hero-words {
    top: clamp(22px, 3.2vh, 44px);
    transform: scaleY(1.52);
  }
}

@media (max-width: 760px) {
  .hero-words {
    top: 8.5%;
    transform: scaleY(1.28);
  }

  .hero-avatar-cutout {
    left: 4%;
    width: 126%;
  }

  .hero-architecture {
    width: 100%;
  }
}
/* Browser annotation pass — profile-first narrative */
.site-header,
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.5);
}

.rail-symbol {
  width: 100%;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  opacity: 0.86;
}

.rail-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.12);
}

.about-profile-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(54px, 8vw, 140px);
  min-height: calc(100svh - 150px);
  align-items: start;
}

.about-profile-heading > p,
.about-kicker {
  margin: 0 0 18px;
  color: #8c8e93;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-profile-heading h2 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(76px, 9.2vw, 148px);
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.75;
}

.about-profile-heading .about-editorial-portrait {
  width: min(100%, 450px);
  margin-top: clamp(42px, 5vw, 76px);
  overflow: hidden;
  aspect-ratio: 0.72;
}

.about-profile-heading .about-editorial-portrait img {
  height: 100%;
  aspect-ratio: auto;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.12) brightness(0.86);
}

.about-editorial-copy {
  padding-top: 24px;
}

.about-editorial-copy > .about-kicker {
  margin-bottom: clamp(34px, 4vw, 58px);
  color: #c4c6ca;
  font-size: 10px;
  line-height: 1.4;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: clamp(42px, 5vw, 72px);
  border-top: 1px solid var(--editorial-line);
}

.about-facts dl {
  margin: 0;
  padding: 24px 20px 24px 0;
  border-bottom: 1px solid var(--editorial-line);
}

.about-facts dl:nth-child(odd) {
  border-right: 1px solid var(--editorial-line);
}

.about-facts dl:nth-child(even) {
  padding-left: 24px;
}

.about-facts dt {
  margin-bottom: 9px;
  color: #74777d;
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.about-facts dd {
  margin: 0;
  color: #e2e3e5;
  font-size: clamp(14px, 1.25vw, 18px);
}

.about-profile-layout .about-tags {
  margin-top: clamp(42px, 5vw, 72px);
}

.experience-editorial {
  min-height: 78svh;
}

@media (max-width: 760px) {
  .about-profile-layout {
    grid-template-columns: 1fr;
    gap: 46px;
    min-height: auto;
  }

  .about-profile-heading h2 {
    font-size: clamp(76px, 25vw, 112px);
  }

  .about-profile-heading .about-editorial-portrait {
    width: 86%;
  }

  .about-editorial-copy {
    padding-top: 0;
  }

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

  .about-facts dl:nth-child(odd) {
    border-right: 0;
  }

  .about-facts dl:nth-child(even) {
    padding-left: 0;
  }

  .experience-editorial {
    min-height: auto;
  }
}
.rail-symbol img { transform: scale(1.45); }

/* Browser annotation pass — transparent identity assets and bilingual profile */
.site-header,
.site-header.is-scrolled {
  background: rgba(10, 10, 12, 0.28);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.05), 0 12px 32px rgba(0, 0, 0, 0.1);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  backdrop-filter: blur(22px) saturate(135%);
}

.rail-logo img {
  filter: invert(1) grayscale(1) contrast(1.28);
  mix-blend-mode: normal;
}

.rail-symbol {
  background: transparent;
  opacity: 0.96;
}

.rail-symbol img {
  object-fit: contain;
  filter: grayscale(1) contrast(1.2);
  transform: scale(1.02);
}

.about-editorial-copy > .about-kicker {
  display: grid;
  gap: 8px;
}

.about-kicker strong {
  color: #f1f1ef;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
}

.about-kicker span {
  color: #777a80;
  font-size: 9px;
  letter-spacing: 0.16em;
}

.profile-data {
  display: grid;
  gap: clamp(48px, 5vw, 76px);
  margin-top: clamp(52px, 6vw, 86px);
}

.profile-block {
  border-top: 1px solid var(--editorial-line);
}

.profile-block > header {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px 0 24px;
}

.profile-block > header > span {
  color: #686b71;
  font-size: 9px;
  letter-spacing: 0.14em;
}

.profile-block h3 {
  margin: 0;
  color: #ededeb;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.profile-block header p {
  margin: 5px 0 0;
  color: #73767c;
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.profile-basic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) 138px;
  border-bottom: 1px solid var(--editorial-line);
}

.profile-basic-grid dl {
  margin: 0;
  padding: 18px 16px 18px 0;
  border-top: 1px solid var(--editorial-line);
}

.profile-basic-grid dl:nth-of-type(even) {
  padding-left: 20px;
  border-left: 1px solid var(--editorial-line);
}

.profile-basic-grid dt {
  color: #a4a6ab;
  font-size: 11px;
}

.profile-basic-grid dt small {
  margin-left: 7px;
  color: #5f6268;
  font-size: 8px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.profile-basic-grid dd {
  margin: 8px 0 0;
  color: #efefed;
  font-size: 16px;
}

.profile-basic-grid dd a {
  color: inherit;
}

.profile-qr {
  grid-row: 1 / 4;
  grid-column: 3;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  border: 0;
  border-top: 1px solid var(--editorial-line);
  border-left: 1px solid var(--editorial-line);
  border-radius: 0;
  background: transparent;
  color: #c8c9cc;
  cursor: pointer;
}

.profile-qr img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: grayscale(1) contrast(1.1);
}

.profile-qr span {
  display: grid;
  gap: 3px;
  font-size: 10px;
}

.profile-qr small {
  color: #62656b;
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.award-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--editorial-line);
  list-style: none;
}

.award-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  min-height: 90px;
  padding: 18px 18px 18px 0;
  border-top: 1px solid var(--editorial-line);
}

.award-list li:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--editorial-line);
}

.award-list time {
  color: #7a7d83;
  font-size: 10px;
  letter-spacing: 0.08em;
}

.award-list div {
  display: grid;
  align-content: start;
  gap: 7px;
}

.award-list strong {
  color: #e7e7e4;
  font-size: 14px;
  font-weight: 500;
}

.award-list span {
  color: #85878d;
  font-size: 11px;
}

@media (max-width: 760px) {
  .profile-basic-grid,
  .award-list {
    grid-template-columns: 1fr;
  }

  .profile-basic-grid dl:nth-of-type(even),
  .award-list li:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .profile-qr {
    grid-row: auto;
    grid-column: 1;
    grid-template-columns: 76px 1fr;
    justify-content: start;
    justify-items: start;
    padding: 20px 0;
    border-left: 0;
  }

  .profile-qr img {
    width: 68px;
    height: 68px;
  }
}
.profile-qr img { box-sizing: content-box; padding: 6px; background: #fff; filter: none; }

/* Browser annotation pass — compact profile narrative and advantages index */
.about-editorial {
  padding-top: clamp(92px, 8vw, 126px);
  padding-bottom: clamp(84px, 8vw, 126px);
}

.about-profile-layout {
  grid-template-columns: minmax(300px, 0.58fr) minmax(0, 1.42fr);
  gap: clamp(58px, 7vw, 112px);
  min-height: auto;
}

.about-profile-heading h2 {
  font-size: clamp(72px, 8.2vw, 132px);
}

.about-profile-heading .about-editorial-portrait {
  width: min(100%, 360px);
  margin-top: clamp(30px, 3.4vw, 48px);
}

.about-editorial-copy .about-editorial-lead {
  font-size: clamp(24px, 2.8vw, 42px);
  line-height: 1.34;
}

.profile-data {
  gap: clamp(34px, 4vw, 52px);
  margin-top: clamp(38px, 4.5vw, 58px);
}

.award-list li {
  min-height: 78px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.experience-editorial {
  grid-template-columns: minmax(260px, 0.56fr) minmax(0, 1.44fr);
  gap: clamp(44px, 7vw, 108px);
  min-height: auto;
  margin-top: clamp(64px, 7vw, 96px);
  padding-top: clamp(48px, 5vw, 70px);
}

.experience-title h3 {
  font-size: clamp(42px, 5.4vw, 78px);
}

.experience-rows article {
  padding: 24px 0;
}

.advantages .services-head h2 {
  font-size: clamp(64px, 8.4vw, 134px);
}

.advantages .services-head p {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.advantages .service-row {
  grid-template-columns: minmax(72px, 0.34fr) minmax(230px, 0.9fr) minmax(100px, 0.48fr) minmax(340px, 1.55fr);
  align-items: start;
  min-height: 148px;
  padding: 26px 0;
}

.advantages .service-row h3 {
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1.1;
}

.advantages .service-row p {
  color: #3f444a;
  font-size: 14px;
  font-weight: 600;
}

.advantages .service-row span {
  color: #5f646a;
  font-size: 13px;
  line-height: 1.75;
}

@media (min-width: 761px) {
  .about-profile-heading {
    position: sticky;
    top: 104px;
    align-self: start;
  }
}

@media (max-width: 1100px) {
  .advantages .service-row {
    grid-template-columns: 70px minmax(190px, 0.8fr) minmax(0, 1.4fr);
  }

  .advantages .service-row strong {
    grid-row: 1 / 3;
  }

  .advantages .service-row h3,
  .advantages .service-row p {
    grid-column: 2;
  }

  .advantages .service-row > span {
    display: block;
    grid-row: 1 / 3;
    grid-column: 3;
  }
}

@media (max-width: 760px) {
  .about-profile-layout {
    grid-template-columns: 1fr;
  }

  .about-profile-heading h2 {
    font-size: clamp(74px, 24vw, 108px);
  }

  .about-profile-heading .about-editorial-portrait {
    width: 82%;
  }

  .experience-editorial {
    grid-template-columns: 1fr;
    margin-top: 62px;
    padding-top: 44px;
  }

  .advantages .services-head h2 {
    font-size: clamp(52px, 16vw, 72px);
  }

  .advantages .service-row {
    grid-template-columns: 54px 1fr;
    gap: 12px 16px;
    min-height: 0;
    padding: 24px 0;
  }

  .advantages .service-row strong {
    grid-row: 1 / 3;
  }

  .advantages .service-row h3,
  .advantages .service-row p {
    grid-column: 2;
  }

  .advantages .service-row > span {
    display: block;
    grid-row: auto;
    grid-column: 1 / -1;
    padding-top: 4px;
    font-size: 12px;
  }
}
.experience-editorial { margin-top: 48px; padding-top: 40px; }

/* Browser annotation pass — hero cleanup and stronger advantage hierarchy */
.advantages .service-row strong {
  font-weight: 700;
}

.advantages .service-row p {
  width: 2em;
  color: #18191b;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.04em;
  word-break: break-all;
}

@media (max-width: 760px) {
  .advantages .service-row p {
    width: 2em;
    font-size: 22px;
    line-height: 1.05;
  }
}

/* React Bits GlitchText — adapted to the existing static hero */
.hero-words .glitch-text {
  --after-duration: 3s;
  --before-duration: 2s;
  --after-shadow: -5px 0 #ff294d;
  --before-shadow: 5px 0 #26e6ff;
  position: relative;
  user-select: none;
  cursor: default;
}

.hero-words .glitch-text::before,
.hero-words .glitch-text::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: max-content;
  white-space: nowrap;
  overflow: hidden;
  color: #eef2f5;
  background: rgba(8, 8, 8, 0.82);
  opacity: 0;
  content: "";
  pointer-events: none;
  clip-path: inset(0 0 0 0);
}

.hero-words .glitch-text::after {
  left: 10px;
  opacity: 1;
  content: attr(data-text);
  text-shadow: var(--after-shadow);
  animation: hero-glitch var(--after-duration) var(--after-delay, 0s) infinite linear alternate-reverse;
}

.hero-words .glitch-text::before {
  left: -10px;
  opacity: 1;
  content: attr(data-text);
  text-shadow: var(--before-shadow);
  animation: hero-glitch var(--before-duration) var(--before-delay, 0s) infinite linear alternate-reverse;
}

@keyframes hero-glitch {
  0%, 50%, 80% { clip-path: inset(20% 0 50% 0); }
  5%, 30%, 55%, 85% { clip-path: inset(10% 0 60% 0); }
  10%, 35%, 60%, 90% { clip-path: inset(15% 0 55% 0); }
  15%, 40%, 65%, 95% { clip-path: inset(25% 0 35% 0); }
  20%, 45%, 70%, 100% { clip-path: inset(30% 0 40% 0); }
  25%, 75% { clip-path: inset(40% 0 20% 0); }
}

@media (min-width: 761px) {
  .hero-words {
    transform: scaleY(1.62);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-words .glitch-text::before,
  .hero-words .glitch-text::after {
    animation: none !important;
    opacity: 0;
    content: "";
  }
}


/* Static rain-glass hero image */
.hero-architecture img {
  position: relative;
  z-index: 0;
}


.hero-architecture::after {
  z-index: 2;
}


.hero-architecture img {
  filter: grayscale(1) contrast(1.12) brightness(0.78);
}


/* React Bits ProfileCard — adapted to the static editorial portrait */
.profile-card {
  --profile-pointer-x: 50%;
  --profile-pointer-y: 50%;
  --profile-rotate-x: 0deg;
  --profile-rotate-y: 0deg;
  --profile-depth: 0;
  position: relative;
  overflow: visible !important;
  perspective: 760px;
  transform-style: preserve-3d;
  touch-action: pan-y;
}

.profile-card-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.profile-card-surface {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0b0b0b;
  box-shadow: var(--profile-shadow-x, 0px) var(--profile-shadow-y, 12px) 34px rgba(0, 0, 0, 0.66);
  transform: rotateX(var(--profile-rotate-y)) rotateY(var(--profile-rotate-x)) translateZ(0);
  transform-origin: center;
  transition: transform 520ms cubic-bezier(0.2, 0.75, 0.2, 1), box-shadow 260ms ease;
  will-change: transform;
}

.profile-card.is-active .profile-card-surface {
  transition: transform 90ms linear, box-shadow 120ms ease;
}

.profile-card-surface img {
  display: block;
  transform: translate3d(var(--profile-image-x, 0px), var(--profile-image-y, 0px), 1px) scale(1.035);
  transition: transform 180ms ease-out, filter 260ms ease;
  will-change: transform;
}

.profile-card-behind {
  position: absolute;
  inset: 8%;
  z-index: 0;
  background: radial-gradient(
    circle at var(--profile-pointer-x) var(--profile-pointer-y),
    rgba(164, 205, 235, 0.48) 0%,
    rgba(99, 146, 186, 0.18) 24%,
    transparent 62%
  );
  filter: blur(42px);
  opacity: calc(var(--profile-depth) * 0.8);
  transform: translateZ(-20px) scale(1.08);
  transition: opacity 240ms ease;
  pointer-events: none;
}

.profile-card-shine,
.profile-card-glare {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: calc(var(--profile-depth) * 0.58);
  pointer-events: none;
  transition: opacity 220ms ease;
}

.profile-card-shine {
  background:
    linear-gradient(
      118deg,
      transparent 18%,
      rgba(255, 255, 255, 0.04) 32%,
      rgba(188, 224, 246, 0.38) 47%,
      rgba(255, 255, 255, 0.08) 55%,
      transparent 72%
    );
  background-size: 220% 220%;
  background-position:
    calc(100% - var(--profile-pointer-x))
    calc(100% - var(--profile-pointer-y));
  mix-blend-mode: screen;
}

.profile-card-glare {
  background: radial-gradient(
    circle at var(--profile-pointer-x) var(--profile-pointer-y),
    rgba(235, 247, 255, 0.34) 0%,
    rgba(162, 199, 224, 0.09) 22%,
    transparent 58%
  );
  mix-blend-mode: soft-light;
}

/* React Bits SplitText — native scroll-triggered character reveal */
.split-text-title .split-char {
  display: inline-block;
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 42px, 0) rotate(2deg);
  transition:
    opacity 720ms cubic-bezier(0.2, 0.78, 0.2, 1),
    transform 780ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 680ms ease;
  transition-delay: calc(90ms + (var(--split-index) * 62ms));
  will-change: transform, opacity, filter;
}

.split-text-title.is-split-visible .split-char {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) rotate(0);
}

@media (max-width: 760px), (hover: none) {
  .profile-card {
    perspective: none;
  }

  .profile-card-surface,
  .profile-card-surface img {
    transform: none;
  }

  .profile-card-behind,
  .profile-card-shine,
  .profile-card-glare {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .profile-card-surface,
  .profile-card-surface img,
  .split-text-title .split-char {
    transition: none !important;
    transform: none !important;
  }

  .split-text-title .split-char {
    opacity: 1;
    filter: none;
  }

  .profile-card-behind,
  .profile-card-shine,
  .profile-card-glare {
    display: none;
  }
}

/* Portfolio V4 — two source-ordered project collections */
.work-stacked {
  padding-bottom: 0;
}

.work-stacked > .stacked-head {
  margin-bottom: clamp(70px, 9vw, 150px);
}

.work-collection {
  position: relative;
  isolation: isolate;
}

.work-collection--commercial {
  padding: clamp(28px, 4vw, 62px) 0 clamp(92px, 12vw, 180px);
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.collection-head {
  display: grid;
  grid-template-columns: minmax(130px, 0.42fr) minmax(0, 1.58fr) auto;
  gap: clamp(20px, 4vw, 70px);
  align-items: end;
  min-height: clamp(330px, 45vw, 650px);
  padding: clamp(26px, 4vw, 56px) 0 clamp(40px, 6vw, 86px);
}

.collection-head > p,
.collection-head > div {
  margin: 0;
  color: #8d9096;
  font-size: 9px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  text-transform: uppercase;
}

.collection-head > p {
  align-self: start;
}

.collection-head > p span {
  display: block;
  margin-bottom: 10px;
  color: currentColor;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.collection-head h3 {
  margin: 0;
  font-family: "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(72px, 11.4vw, 186px);
  font-stretch: condensed;
  font-weight: 800;
  letter-spacing: -0.075em;
  line-height: 0.72;
  text-transform: uppercase;
}

.collection-head > div {
  display: grid;
  gap: 10px;
  justify-items: end;
  padding-bottom: 4px;
  text-align: right;
}

.collection-head > div strong {
  color: #f2f2ef;
  font-size: clamp(18px, 2vw, 30px);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.work-collection--residential {
  width: calc(100% + (var(--pad) * 2));
  margin-top: clamp(20px, 4vw, 60px);
  margin-left: calc(var(--pad) * -1);
  padding: clamp(50px, 7vw, 110px) var(--pad) clamp(110px, 14vw, 210px);
  overflow: clip;
  border-radius: clamp(40px, 5vw, 76px) clamp(40px, 5vw, 76px) 0 0;
  background:
    radial-gradient(circle at 85% 12%, rgba(182, 207, 224, 0.46), transparent 34%),
    #e8e9e7;
  color: #090a0c;
}

.work-collection--residential .collection-head {
  min-height: clamp(390px, 48vw, 690px);
}

.work-collection--residential .collection-head > p,
.work-collection--residential .collection-head > div {
  color: #62666c;
}

.work-collection--residential .collection-head > div strong {
  color: #0b0c0e;
}

.featured-work {
  position: relative;
}

.featured-project {
  top: 84px;
  margin-bottom: clamp(100px, 15vh, 180px);
}

.featured-title {
  min-width: 0;
}

.featured-title h3 {
  max-width: 19ch;
  text-wrap: balance;
}

.featured-open {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease;
}

.featured-open:hover,
.featured-open:focus-visible {
  border-color: #fff;
  background: #fff;
  color: #0a0b0d;
}

.featured-collage {
  overflow: hidden;
  border-radius: clamp(18px, 2.4vw, 38px);
}

.featured-collage img {
  border-radius: 0;
  transition: filter 500ms ease, transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-collage:hover img {
  filter: saturate(1) contrast(1.03);
  transform: scale(1.018);
}

.work-collection--residential .featured-project {
  border-color: rgba(9, 10, 12, 0.2);
  background: rgba(248, 248, 245, 0.93);
  box-shadow: 0 -24px 60px rgba(24, 31, 36, 0.12);
  color: #0b0c0e;
}

.work-collection--residential .featured-number {
  color: #0b0c0e;
}

.work-collection--residential .featured-label,
.work-collection--residential .featured-top p {
  color: #62666c;
}

.work-collection--residential .featured-open {
  border-color: rgba(9, 10, 12, 0.48);
  color: #0b0c0e;
}

.work-collection--residential .featured-open:hover,
.work-collection--residential .featured-open:focus-visible {
  border-color: #0b0c0e;
  background: #0b0c0e;
  color: #f3f3f0;
}

@media (max-width: 980px) {
  .collection-head {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .collection-head > div {
    grid-column: 2;
    justify-items: start;
    text-align: left;
  }

  .featured-top {
    grid-template-columns: 88px minmax(130px, 0.55fr) minmax(0, 1.45fr);
  }

  .featured-open {
    grid-column: 3;
    justify-self: start;
  }
}

@media (max-width: 760px) {
  .work-stacked {
    padding-right: 18px;
    padding-left: 18px;
  }

  .work-stacked > .stacked-head {
    margin-bottom: 60px;
  }

  .collection-head {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 430px;
    padding-bottom: 48px;
  }

  .collection-head > p {
    align-self: auto;
  }

  .collection-head h3 {
    font-size: clamp(63px, 22vw, 104px);
    line-height: 0.76;
  }

  .collection-head > div {
    grid-column: auto;
    grid-template-columns: 1fr auto;
    width: 100%;
    justify-items: start;
    align-items: end;
    text-align: left;
  }

  .collection-head > div span {
    justify-self: end;
  }

  .work-collection--residential {
    width: calc(100% + 36px);
    margin-left: -18px;
    padding-right: 18px;
    padding-left: 18px;
    border-radius: 34px 34px 0 0;
  }

  .work-collection--residential .collection-head {
    min-height: 470px;
  }

  .featured-project {
    top: 76px;
    min-height: auto;
    margin-bottom: 14vh;
    padding: 15px;
    border-radius: 24px;
  }

  .featured-top {
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 12px 16px;
  }

  .featured-number {
    grid-row: 1 / span 2;
    font-size: 64px;
  }

  .featured-top > p {
    display: block;
    align-self: start;
    padding-top: 2px;
  }

  .featured-title {
    grid-column: 2;
  }

  .featured-title h3 {
    max-width: none;
    font-size: clamp(21px, 6.8vw, 30px);
  }

  .featured-open {
    grid-column: 2;
    justify-self: start;
    min-height: 38px;
  }

  .featured-collage {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5px;
    margin-top: 16px;
    border-radius: 17px;
  }

  .featured-collage img {
    min-height: 210px;
  }

  .featured-collage img:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 250px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-project {
    transform: none !important;
  }

  .featured-collage img {
    transition: none;
  }
}
@media (max-width: 760px) {
  .collection-head h3 {
    max-width: 100%;
    font-size: clamp(54px, 17vw, 72px);
    overflow-wrap: normal;
  }
}
/* Marked refinement pass — denser collection intros, project symbols and hero-backed contact */
.project-symbols {
  display: flex;
  gap: clamp(12px, 1.4vw, 22px);
  align-items: center;
  justify-content: flex-end;
  align-self: end;
  padding-bottom: 4px;
  color: #d9dde1;
}

.project-symbols span {
  display: grid;
  width: clamp(48px, 5vw, 72px);
  aspect-ratio: 1;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
}

.project-symbols svg {
  width: 72%;
  height: 72%;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.work-stacked > .stacked-head {
  margin-bottom: clamp(46px, 5.5vw, 82px);
}

.work-collection--commercial {
  padding-top: clamp(18px, 2.5vw, 34px);
  padding-bottom: clamp(54px, 6vw, 86px);
}

.collection-head {
  min-height: clamp(270px, 31vw, 440px);
  padding-top: clamp(18px, 2.4vw, 34px);
  padding-bottom: clamp(28px, 3.4vw, 50px);
}

.work-collection--residential {
  margin-top: clamp(12px, 2vw, 28px);
  padding-top: clamp(26px, 3.5vw, 52px);
  padding-bottom: clamp(48px, 6vw, 82px);
}

.work-collection--residential .collection-head {
  min-height: clamp(290px, 33vw, 470px);
}

.featured-work .featured-project:last-child {
  margin-bottom: 0;
}

.contact-editorial {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  min-height: min(760px, 78svh);
  isolation: isolate;
  background: #08090a;
}

.contact-copy {
  max-width: 760px;
  align-self: center;
}

.contact-copy h2 {
  margin-top: clamp(32px, 5vw, 72px);
}

.contact-image {
  display: block;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.contact-image::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(5, 6, 7, 0.96) 0%, rgba(5, 6, 7, 0.84) 31%, rgba(5, 6, 7, 0.28) 67%, rgba(5, 6, 7, 0.44) 100%),
    linear-gradient(0deg, rgba(5, 6, 7, 0.44), transparent 46%);
}

.contact-image img {
  filter: grayscale(1) contrast(1.12) brightness(0.74);
  object-position: center;
}

@media (max-width: 760px) {
  .project-symbols {
    justify-content: flex-start;
  }

  .project-symbols span {
    width: 48px;
    border-radius: 11px;
  }

  .collection-head {
    min-height: 320px;
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .work-collection--residential .collection-head {
    min-height: 340px;
  }

  .work-collection--commercial {
    padding-bottom: 52px;
  }

  .work-collection--residential {
    padding-top: 26px;
    padding-bottom: 46px;
  }

  .contact-editorial {
    min-height: 68svh;
    margin: 0 18px 34px;
    padding: 30px 24px;
  }

  .contact-copy h2 {
    margin-top: 34px;
  }
}
/* React Bits FuzzyText, adapted for this static portfolio. */
.fuzzy-title {
  position: relative;
  isolation: isolate;
  max-width: 100%;
}

.fuzzy-fallback {
  display: inline-block;
  transition: opacity 180ms ease;
}

.fuzzy-canvas {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.fuzzy-title.is-fuzzy-ready .fuzzy-fallback {
  opacity: 0;
}

.fuzzy-title.is-fuzzy-ready .fuzzy-canvas {
  opacity: 1;
}

.work-collection {
  overflow-x: clip;
}

.contact-editorial {
  margin-top: var(--pad);
}

@media (max-width: 760px) {
  .contact-editorial {
    margin-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fuzzy-canvas {
    pointer-events: none;
  }
}
/* Browser annotation pass — wider, vertically compressed hero lettering. */
@media (min-width: 761px) {
  .hero-words {
    transform: scaleY(1.38);
  }

  .hero-words span {
    transform: scaleX(0.68);
  }
}
/* React Bits MagicBento — adapted to the About information panel. */
.magic-bento-panel {
  position: relative;
  perspective: 1200px;
}

.magic-bento-surface {
  --bento-x: 50%;
  --bento-y: 50%;
  --bento-intensity: 0;
  position: relative;
  isolation: isolate;
  margin: -18px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(158, 181, 210, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.018), rgba(103, 155, 220, 0.026)),
    rgba(7, 8, 10, 0.22);
  transform: perspective(1200px) translate3d(0, 0, 0) rotateX(0) rotateY(0);
  transform-style: preserve-3d;
  transition:
    transform 280ms cubic-bezier(0.2, 0.75, 0.25, 1),
    border-color 280ms ease,
    box-shadow 280ms ease;
  will-change: transform;
}

.magic-bento-surface::before,
.magic-bento-surface::after {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.magic-bento-surface::before {
  padding: 1px;
  background: radial-gradient(
    490px circle at var(--bento-x) var(--bento-y),
    rgba(125, 190, 255, calc(var(--bento-intensity) * 0.92)) 0%,
    rgba(125, 190, 255, calc(var(--bento-intensity) * 0.36)) 34%,
    transparent 68%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
}

.magic-bento-surface::after {
  opacity: var(--bento-intensity);
  background: radial-gradient(
    490px circle at var(--bento-x) var(--bento-y),
    rgba(125, 190, 255, 0.11) 0%,
    rgba(125, 190, 255, 0.045) 32%,
    transparent 70%
  );
  mix-blend-mode: screen;
  transition: opacity 220ms ease;
}

.magic-bento-surface > *:not(.magic-bento-particle, .magic-bento-ripple) {
  position: relative;
  z-index: 2;
}

.magic-bento-panel.is-bento-active .magic-bento-surface {
  border-color: rgba(125, 190, 255, 0.3);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(75, 138, 220, 0.11);
}

.magic-bento-particle {
  position: absolute;
  z-index: 4;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  opacity: 0;
  background: rgba(164, 211, 255, 0.95);
  box-shadow:
    0 0 7px rgba(125, 190, 255, 0.9),
    0 0 16px rgba(125, 190, 255, 0.42);
  pointer-events: none;
  animation: magic-bento-particle var(--particle-duration) var(--particle-delay) ease-in-out infinite alternate;
  transition: opacity 240ms ease;
}

.magic-bento-particle.is-leaving {
  opacity: 0 !important;
  animation: none;
}

.magic-bento-ripple {
  position: absolute;
  z-index: 3;
  border-radius: 50%;
  pointer-events: none;
  background: radial-gradient(circle, rgba(125, 190, 255, 0.24), rgba(125, 190, 255, 0.08) 34%, transparent 70%);
  animation: magic-bento-ripple 760ms ease-out forwards;
}

@keyframes magic-bento-particle {
  0% {
    opacity: 0.15;
    transform: translate3d(0, 0, 0) scale(0.45);
  }
  35% {
    opacity: 0.92;
  }
  100% {
    opacity: 0.28;
    transform: translate3d(var(--particle-x), var(--particle-y), 0) scale(1.15);
  }
}

@keyframes magic-bento-ripple {
  from {
    opacity: 0.82;
    transform: scale(0);
  }
  to {
    opacity: 0;
    transform: scale(1);
  }
}

@media (max-width: 760px), (prefers-reduced-motion: reduce) {
  .magic-bento-surface {
    margin: -12px;
    padding: 12px;
    transform: none !important;
    transition: none;
  }

  .magic-bento-surface::before,
  .magic-bento-surface::after,
  .magic-bento-particle,
  .magic-bento-ripple {
    display: none;
  }
}
/* Header logo and MagicBento internal grid glow. */
.brand {
  width: clamp(96px, 7.2vw, 132px);
  height: 38px;
  gap: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.magic-bento-cell {
  --cell-glow-x: 50%;
  --cell-glow-y: 50%;
  --cell-glow-intensity: 0;
  position: relative;
  isolation: isolate;
}

.magic-bento-cell::after {
  position: absolute;
  inset: 2px;
  z-index: 5;
  padding: 1px;
  border-radius: 10px;
  content: "";
  pointer-events: none;
  opacity: var(--cell-glow-intensity);
  background: radial-gradient(
    210px circle at var(--cell-glow-x) var(--cell-glow-y),
    rgba(148, 208, 255, 0.98) 0%,
    rgba(92, 168, 255, 0.56) 35%,
    transparent 72%
  );
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  transition: opacity 120ms linear;
  filter: drop-shadow(0 0 5px rgba(125, 190, 255, 0.42));
}

.magic-bento-surface--experience {
  min-height: 100%;
}

@media (max-width: 760px) {
  .brand {
    width: 108px;
    height: 34px;
  }

  .magic-bento-cell::after {
    display: none;
  }
}
/* Contact Ferrofluid + project image hover shrink */
.contact-editorial {
  background: #03070d;
}

.contact-ferrofluid {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 72% 45%, rgba(125, 190, 255, 0.14), transparent 36%),
    #03070d;
  pointer-events: none;
}

.contact-ferrofluid canvas {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0.96;
  mix-blend-mode: screen;
}

.contact-ferrofluid.is-fallback {
  background:
    radial-gradient(ellipse at 72% 42%, rgba(163, 179, 235, 0.32), transparent 22%),
    repeating-radial-gradient(ellipse at 64% 52%, rgba(229, 235, 255, 0.18) 0 2px, transparent 4px 34px),
    #03070d;
}

.contact-editorial::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 1, 10, 0.82) 0%, rgba(3, 1, 10, 0.55) 32%, rgba(3, 1, 10, 0.10) 70%, rgba(3, 1, 10, 0.26) 100%),
    linear-gradient(0deg, rgba(3, 1, 10, 0.42), transparent 52%);
  pointer-events: none;
}

.contact-copy {
  z-index: 2;
}

.contact-image {
  display: none !important;
}

@media (hover: hover) and (pointer: fine) {
  .featured-collage img {
    position: relative;
    z-index: 0;
    transform: scale(1);
    transform-origin: center;
    transition:
      filter 480ms ease,
      opacity 480ms ease,
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
  }

  .featured-collage:hover img {
    filter: saturate(0.9) contrast(1.03);
    transform: scale(1);
  }

  .featured-collage img:hover {
    z-index: 1;
    filter: saturate(1) contrast(1.04);
    transform: scale(0.95);
  }
}

@media (max-width: 760px) {
  .contact-ferrofluid canvas {
    opacity: 0.84;
  }

  .contact-editorial::after {
    background:
      linear-gradient(90deg, rgba(3, 1, 10, 0.82), rgba(3, 1, 10, 0.28)),
      linear-gradient(0deg, rgba(3, 1, 10, 0.52), transparent 48%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .featured-collage img {
    transition-duration: 0.01ms !important;
  }
}
/* Static hero Ferrofluid + PillNav */
.hero-stage {
  isolation: isolate;
  background: #03070d;
}

.hero-stage > .contact-ferrofluid {
  z-index: 0;
  border-radius: 0;
}

.hero-stage::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background:
    linear-gradient(90deg, rgba(3, 1, 10, 0.68) 0%, rgba(3, 1, 10, 0.28) 30%, rgba(3, 1, 10, 0.04) 64%, rgba(3, 1, 10, 0.18) 100%),
    linear-gradient(0deg, rgba(3, 1, 10, 0.30), transparent 48%);
  pointer-events: none;
}

.hero-architecture {
  display: none !important;
}

.hero-words,
.hero-discipline,
.hero-primary,
.hero-scroll {
  z-index: 2;
}

.hero-words .glitch-text::before,
.hero-words .glitch-text::after {
  display: none !important;
  content: none !important;
  animation: none !important;
}

@media (min-width: 761px) {
  .site-nav.is-pill-ready {
    --pill-base: rgba(246, 247, 247, 0.95);
    --pill-ink: #08090a;
    display: flex;
    height: 44px;
    gap: 3px;
    padding: 3px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: var(--pill-base);
    box-shadow:
      0 10px 36px rgba(0, 0, 0, 0.20),
      inset 0 1px rgba(255, 255, 255, 0.72);
  }

  .site-nav.is-pill-ready a,
  .site-nav.is-pill-ready .nav-contact {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    min-width: 88px;
    padding: 0 17px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    color: var(--pill-ink);
    background: transparent;
    font-size: 10px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .site-nav.is-pill-ready a::after {
    display: none;
  }

  .nav-hover-circle {
    position: absolute;
    bottom: -84px;
    left: 50%;
    z-index: 0;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: #08090a;
    pointer-events: none;
    transform: translateX(-50%) scale(0);
    transform-origin: 50% 100%;
    transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-label-stack {
    position: relative;
    z-index: 1;
    display: block;
    height: 1em;
    overflow: hidden;
    line-height: 1;
  }

  .nav-pill-label,
  .nav-pill-label-hover {
    display: block;
    transition:
      opacity 300ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-pill-label-hover {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    opacity: 0;
    transform: translateY(135%);
  }

  .site-nav.is-pill-ready a:hover .nav-hover-circle,
  .site-nav.is-pill-ready a:focus-visible .nav-hover-circle,
  .site-nav.is-pill-ready a.is-active .nav-hover-circle {
    transform: translateX(-50%) scale(1.12);
  }

  .site-nav.is-pill-ready a:hover .nav-pill-label,
  .site-nav.is-pill-ready a:focus-visible .nav-pill-label,
  .site-nav.is-pill-ready a.is-active .nav-pill-label {
    opacity: 0;
    transform: translateY(-135%);
  }

  .site-nav.is-pill-ready a:hover .nav-pill-label-hover,
  .site-nav.is-pill-ready a:focus-visible .nav-pill-label-hover,
  .site-nav.is-pill-ready a.is-active .nav-pill-label-hover {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 760px) {
  .hero-stage::after {
    background:
      linear-gradient(90deg, rgba(3, 1, 10, 0.62), rgba(3, 1, 10, 0.14)),
      linear-gradient(0deg, rgba(3, 1, 10, 0.38), transparent 50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .nav-hover-circle,
  .nav-pill-label,
  .nav-pill-label-hover {
    transition-duration: 0.01ms !important;
  }
}
/* Compact centered Advantages page */
.advantages {
  padding-top: clamp(40px, 4.3vw, 68px);
  padding-bottom: clamp(46px, 5vw, 78px);
}

.advantages .services-head {
  align-items: center;
  margin-bottom: clamp(24px, 2.6vw, 40px);
}

.advantages .services-head h2 {
  font-size: clamp(58px, 7.2vw, 112px);
  line-height: 0.78;
}

.advantages .services-head p {
  margin-top: 0;
  align-self: center;
}

.advantages .service-row {
  align-items: center;
  min-height: clamp(92px, 7vw, 112px);
  padding: clamp(12px, 1.3vw, 20px) 0;
}

.advantages .service-row > strong,
.advantages .service-row > h3,
.advantages .service-row > p,
.advantages .service-row > span {
  align-self: center;
}

.advantages .service-row span {
  line-height: 1.58;
}

@media (max-width: 760px) {
  .advantages {
    padding-top: 44px;
    padding-bottom: 58px;
  }

  .advantages .services-head {
    margin-bottom: 28px;
  }

  .advantages .service-row {
    min-height: 0;
    padding: 22px 0;
  }
}
/* Advantages numeral compression */
.advantages .service-row strong {
  line-height: 0.82;
}