:root {
  --ink: #101113;
  --ink-soft: #1d1f22;
  --paper: #f5f5f7;
  --paper-warm: #ecebe7;
  --muted: #6e6e73;
  --line: rgba(16, 17, 19, .12);
  --line-dark: rgba(255, 255, 255, .14);
  --accent: #c8ff4d;
  --accent-warm: #b99a70;
  --shell: min(92vw, 1440px);
  --radius: clamp(22px, 3vw, 44px);
  --header-height: 76px;
  --hero-progress: 0;
  --hero-copy-shift: 0px;
  --hero-copy-opacity: 1;
  --hero-top: 12vh;
  --hero-right: 4vw;
  --hero-bottom: 7vh;
  --hero-left: 60vw;
  --hero-radius: 34px;
  --hero-scale: .94;
  --hero-image-scale: 1.05;
  --hero-spec-width: 35%;
  --hero-mobile-copy-shift: 0px;
  --hero-mobile-inset: 17px;
  --hero-mobile-bottom: 22px;
  --hero-mobile-height: 42vh;
  --hero-mobile-radius: 26px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { color: inherit; }
img { display: block; max-width: 100%; }
::selection { color: var(--ink); background: var(--accent); }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 14px;
  color: white;
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: 200;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 100;
  width: min(94vw, 1480px);
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 22px;
  color: white;
  background: rgba(11, 12, 14, .54);
  box-shadow: 0 20px 70px rgba(0, 0, 0, .12);
  backdrop-filter: saturate(150%) blur(24px);
  -webkit-backdrop-filter: saturate(150%) blur(24px);
  transform: translateX(-50%);
  transition: color .4s ease, background .4s ease, border-color .4s ease, box-shadow .4s ease;
}
.site-header.is-light {
  color: var(--ink);
  background: rgba(247, 247, 249, .78);
  border-color: rgba(16, 17, 19, .12);
  box-shadow: 0 18px 60px rgba(0, 0, 0, .08);
}
.brand { display: flex; align-items: center; gap: 11px; min-width: 190px; }
.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  background: rgba(255, 255, 255, .08);
}
.brand-mark img { width: 28px; height: 28px; object-fit: contain; filter: grayscale(1) brightness(2.4); }
.site-header.is-light .brand-mark { background: #101113; border-color: #101113; }
.brand-type { display: grid; gap: 2px; line-height: 1; }
.brand-type b { font-size: 13px; letter-spacing: .16em; }
.brand-type small { font-size: 9px; opacity: .62; letter-spacing: .07em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(20px, 3vw, 46px); }
.desktop-nav a { position: relative; font-size: 13px; opacity: .72; transition: opacity .25s ease; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}
.desktop-nav a:hover { opacity: 1; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.header-actions { display: flex; align-items: center; gap: 8px; }
.language-toggle {
  height: 42px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 13px;
  color: inherit;
  background: transparent;
  cursor: pointer;
}
.site-header.is-light .language-toggle { border-color: var(--line); }
.language-toggle span { font-size: 10px; font-weight: 700; opacity: .42; }
.language-toggle span:first-child { opacity: 1; }
html[lang="en"] .language-toggle span:first-child { opacity: .42; }
html[lang="en"] .language-toggle span:last-child { opacity: 1; }
.language-toggle i { width: 1px; height: 12px; background: currentColor; opacity: .2; }
.header-cta {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 13px;
  color: var(--ink);
  background: white;
  font-size: 12px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease;
}
.header-cta:hover { transform: translateY(-2px); background: var(--accent); }
.site-header.is-light .header-cta { color: white; background: var(--ink); }
.menu-toggle { display: none; }
.mobile-menu { display: none; }

.section-shell { width: var(--shell); margin-inline: auto; }
.section-light { color: var(--ink); background: var(--paper); }
.section-dark { color: white; background: var(--ink); }
.section-index {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .15em;
  text-transform: uppercase;
  opacity: .5;
}

.hero { position: relative; height: 190vh; background: #08090b; color: white; }
.hero-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}
.hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 20% 45%, rgba(87, 101, 172, .2), transparent 38%),
    linear-gradient(180deg, #08090b 0%, #0d0e12 100%);
}
.hero-copy {
  position: absolute;
  left: max(4vw, calc((100vw - 1440px) / 2));
  top: 50%;
  z-index: 3;
  width: min(57vw, 860px);
  transform: translateY(calc(-50% + var(--hero-copy-shift)));
  opacity: var(--hero-copy-opacity);
}
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 28px; color: rgba(255, 255, 255, .68); }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.eyebrow b { font-size: 12px; font-weight: 600; letter-spacing: .08em; }
.hero h1 {
  margin: 0;
  font-size: clamp(58px, 7.2vw, 112px);
  font-weight: 650;
  line-height: .88;
  letter-spacing: -.07em;
}
.hero h1 span, .hero h1 em { display: block; white-space: nowrap; }
.hero h1 em { color: #8f95a3; font-style: normal; }
.hero-lead { max-width: 690px; margin: 34px 0 0; color: rgba(255, 255, 255, .68); font-size: clamp(16px, 1.4vw, 21px); line-height: 1.72; }
.hero-actions { display: flex; align-items: center; gap: 28px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.button i { font-style: normal; transition: transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover i { transform: translate(3px, 3px); }
.button-dark { color: white; background: var(--ink); }
.hero .button-dark { color: var(--ink); background: white; }
.hero .button-dark:hover { background: var(--accent); }
.text-link { display: inline-flex; gap: 14px; align-items: center; font-size: 13px; font-weight: 650; color: rgba(255, 255, 255, .78); }
.text-link i { font-style: normal; color: var(--accent); }
.hero-visual {
  position: absolute;
  z-index: 2;
  inset: var(--hero-top) var(--hero-right) var(--hero-bottom) var(--hero-left);
  overflow: hidden;
  border-radius: var(--hero-radius);
  transform: scale(var(--hero-scale));
  transform-origin: center;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .35);
}
.hero-visual > img { width: 100%; height: 100%; object-fit: cover; transform: scale(var(--hero-image-scale)); }
.hero-image-shade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 48%, rgba(0, 0, 0, .62)); }
.hero-caption { position: absolute; left: 28px; right: 28px; bottom: 26px; display: flex; justify-content: space-between; align-items: end; gap: 20px; }
.hero-caption span { font-size: 10px; letter-spacing: .18em; opacity: .6; }
.hero-caption b { font-size: 13px; letter-spacing: .04em; }
.floating-spec {
  position: absolute;
  top: 10%;
  left: 4%;
  width: min(250px, 30vw);
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 20px;
  background: rgba(15, 17, 20, .76);
  backdrop-filter: blur(18px);
}
.floating-spec span { display: block; font-size: 10px; color: rgba(255, 255, 255, .5); margin-bottom: 10px; }
.floating-spec strong { font-size: 12px; letter-spacing: .08em; }
.floating-spec i { display: block; height: 2px; margin-top: 17px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.floating-spec u { display: block; width: var(--hero-spec-width); height: 100%; background: linear-gradient(90deg, #6ef4d1, var(--accent-warm)); }

.statement { position: relative; padding: clamp(110px, 15vw, 240px) 0; }
.statement-inner { width: var(--shell); margin: auto; }
.statement-title {
  max-width: 1280px;
  margin: 64px 0 130px;
  font-size: clamp(44px, 6.2vw, 100px);
  font-weight: 620;
  line-height: 1.07;
  letter-spacing: -.055em;
  color: rgba(255, 255, 255, .28);
  background: linear-gradient(90deg, white 0 50%, rgba(255,255,255,.28) 50% 100%);
  background-size: 200% 100%;
  background-position: var(--statement-position, 100%) 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-dark); border-block: 1px solid var(--line-dark); }
.metrics article { min-height: 190px; display: grid; grid-template-columns: auto 1fr; align-content: center; padding: 34px; background: var(--ink); }
.metrics strong { font-size: clamp(44px, 5vw, 76px); font-weight: 520; line-height: .9; letter-spacing: -.05em; }
.metrics sup { margin: 5px 0 0 6px; color: var(--accent); font-size: 14px; }
.metrics span { grid-column: 1 / -1; margin-top: 22px; font-size: 11px; opacity: .46; letter-spacing: .08em; }

.capabilities { padding: clamp(110px, 14vw, 220px) 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; column-gap: 8vw; align-items: end; margin-bottom: clamp(60px, 8vw, 120px); }
.section-heading .section-index { grid-column: 1 / -1; margin-bottom: 40px; }
.section-heading h2, .project-heading h2, .process-heading h2 {
  margin: 0;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 650;
  line-height: .98;
  letter-spacing: -.06em;
}
.section-heading > p:last-child, .project-heading > p { margin: 0; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.7; }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr .85fr; grid-template-rows: 430px 430px; gap: 18px; }
.bento { position: relative; overflow: hidden; border-radius: var(--radius); background: #ddd; transform-style: preserve-3d; }
.bento > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1); }
.bento:hover > img { transform: scale(1.035); }
.bento-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.7)); }
.bento-copy { position: absolute; left: 32px; right: 32px; bottom: 30px; z-index: 2; color: white; }
.bento-copy span, .mini-label { font-size: 10px; letter-spacing: .14em; opacity: .58; }
.bento-copy h3 { margin: 10px 0 0; font-size: clamp(28px, 3vw, 48px); letter-spacing: -.04em; }
.bento-copy p { margin: 8px 0 0; font-size: 13px; opacity: .65; }
.bento-hero { grid-column: 1; grid-row: 1 / 3; }
.bento-copy-card { display: flex; flex-direction: column; justify-content: space-between; padding: 36px; color: white; background: var(--ink-soft); }
.bento-copy-card h3 { position: relative; z-index: 2; max-width: 580px; margin: 13px 0 0; font-size: clamp(28px, 3vw, 48px); line-height: 1.08; letter-spacing: -.045em; }
.bento-number { font-size: 11px; opacity: .4; }
.orbit { position: absolute; width: 260px; height: 260px; right: -60px; top: -60px; border: 1px solid rgba(255,255,255,.1); border-radius: 50%; }
.orbit::before, .orbit::after { content: ""; position: absolute; border-radius: 50%; }
.orbit::before { inset: 36px; border: 1px solid rgba(255,255,255,.1); }
.orbit::after { width: 10px; height: 10px; top: 50%; left: -5px; background: var(--accent); box-shadow: 0 0 22px var(--accent); animation: orbitPulse 3s ease-in-out infinite; }
@keyframes orbitPulse { 50% { transform: scale(1.8); opacity: .5; } }
.bento-copy-card { grid-column: 2 / 4; grid-row: 1; }
.bento-portrait { grid-column: 2; grid-row: 2; }
.bento-texture { grid-column: 3; grid-row: 2; }

.projects { padding: clamp(110px, 14vw, 220px) 0; overflow: hidden; }
.project-heading { display: grid; grid-template-columns: 1.2fr .6fr; align-items: end; gap: 8vw; margin-bottom: 80px; }
.project-heading .section-index { margin-bottom: 34px; }
.project-heading > p { color: rgba(255,255,255,.54); }
.project-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  gap: 18px;
  padding: 0 4vw 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
}
.project-track::-webkit-scrollbar { display: none; }
.project-track.is-dragging { cursor: grabbing; scroll-snap-type: none; }
.project-card {
  position: relative;
  flex: 0 0 auto;
  width: min(33vw, 520px);
  height: min(62vw, 690px);
  min-width: 330px;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  color: white;
  background: #292b2e;
  scroll-snap-align: center;
  text-align: left;
  cursor: pointer;
}
.project-card-wide { width: min(47vw, 760px); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.2,1), filter .5s ease; }
.project-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.78)); }
.project-card > span { position: absolute; top: 24px; left: 26px; z-index: 2; font-size: 11px; letter-spacing: .14em; }
.project-card > div { position: absolute; left: 26px; right: 64px; bottom: 26px; z-index: 2; display: grid; gap: 8px; }
.project-card b { font-size: clamp(26px, 2.4vw, 40px); letter-spacing: -.04em; }
.project-card small { font-size: 9px; letter-spacing: .14em; opacity: .62; }
.project-card > i { position: absolute; right: 24px; bottom: 27px; z-index: 2; font-size: 18px; font-style: normal; }
.project-card:hover img { transform: scale(1.045); filter: saturate(1.05); }
.track-hint { width: var(--shell); display: flex; justify-content: flex-end; align-items: center; gap: 12px; margin: 26px auto 0; font-size: 10px; letter-spacing: .12em; color: rgba(255,255,255,.42); }
.track-hint b { width: 54px; height: 1px; overflow: hidden; color: transparent; background: rgba(255,255,255,.24); }

.craft { height: 220vh; }
.craft-sticky { position: sticky; top: 0; height: 100vh; min-height: 700px; width: var(--shell); margin: auto; display: grid; grid-template-columns: .82fr 1.18fr; align-items: center; gap: 8vw; }
.craft-copy h2 { margin: 38px 0 28px; font-size: clamp(48px, 6vw, 96px); line-height: .97; letter-spacing: -.06em; }
.craft-copy > p:nth-of-type(2) { max-width: 560px; color: var(--muted); font-size: clamp(16px, 1.35vw, 19px); line-height: 1.72; }
.finish-list { margin-top: 48px; border-top: 1px solid var(--line); }
.finish-list button { width: 100%; display: grid; grid-template-columns: 54px 1fr; align-items: center; padding: 19px 0; border: 0; border-bottom: 1px solid var(--line); color: var(--ink); background: transparent; text-align: left; cursor: pointer; opacity: .36; transition: opacity .3s ease; }
.finish-list button:hover, .finish-list button.is-active { opacity: 1; }
.finish-list span { font-size: 10px; }
.finish-list b { font-size: 15px; font-weight: 620; }
.craft-visual { position: relative; height: min(78vh, 850px); min-height: 560px; overflow: hidden; border-radius: var(--radius); background: #d6d5d2; box-shadow: 0 40px 110px rgba(0,0,0,.12); }
.craft-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transform: scale(1.05); transition: opacity .7s ease, transform 1.2s cubic-bezier(.2,.7,.2,1); }
.craft-visual img.is-active { opacity: 1; transform: scale(1); }
.craft-visual > span { position: absolute; z-index: 3; left: 24px; bottom: 22px; padding: 10px 13px; border-radius: 999px; color: white; background: rgba(0,0,0,.54); font-size: 10px; backdrop-filter: blur(14px); }
.light-sweep { position: absolute; z-index: 2; inset: -40% auto -40% -20%; width: 34%; background: linear-gradient(90deg, transparent, rgba(255,255,255,.36), transparent); transform: skewX(-18deg); animation: sweep 6s ease-in-out infinite; pointer-events: none; }
@keyframes sweep { 0%, 12% { transform: translateX(-140%) skewX(-18deg); } 68%, 100% { transform: translateX(520%) skewX(-18deg); } }

.process { padding: clamp(110px, 14vw, 220px) 0; }
.process-heading .section-index { margin-bottom: 36px; }
.process-list { margin-top: 100px; border-top: 1px solid var(--line-dark); }
.process-list article { position: relative; min-height: 170px; display: grid; grid-template-columns: 90px 1fr 1fr 100px; align-items: center; border-bottom: 1px solid var(--line-dark); }
.process-list article > span { font-size: 11px; opacity: .4; }
.process-list h3 { margin: 0; font-size: clamp(26px, 2.5vw, 38px); letter-spacing: -.035em; }
.process-list p { margin: 0; color: rgba(255,255,255,.48); font-size: 14px; }
.process-list i { justify-self: center; width: 62px; height: 1px; background: rgba(255,255,255,.24); }
.process-list i::after { content: ""; float: right; width: 7px; height: 7px; margin-top: -3px; border-top: 1px solid rgba(255,255,255,.4); border-right: 1px solid rgba(255,255,255,.4); transform: rotate(45deg); }

.cta { position: relative; min-height: 92vh; display: grid; place-items: center; overflow: hidden; text-align: center; }
.cta-inner { position: relative; z-index: 2; width: min(1000px, 86vw); padding: 120px 0; }
.cta h2 { margin: 38px 0 28px; font-size: clamp(56px, 8.4vw, 138px); line-height: .9; letter-spacing: -.075em; }
.cta-inner > p:nth-of-type(2) { max-width: 670px; margin: 0 auto; color: var(--muted); font-size: clamp(16px, 1.4vw, 20px); line-height: 1.72; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 18px; margin-top: 42px; }
.button-large { min-height: 62px; padding: 0 28px; border-radius: 18px; }
.button-large:hover { color: var(--ink); background: var(--accent); }
.cta-actions > span { font-size: 10px; color: var(--muted); letter-spacing: .08em; }
.cta-orb { position: absolute; width: min(72vw, 980px); aspect-ratio: 1; border-radius: 50%; background: radial-gradient(circle at 50% 48%, rgba(200,255,77,.28), rgba(185,154,112,.13) 34%, transparent 68%); filter: blur(18px); transform: translateY(18%); animation: orb 9s ease-in-out infinite; }
@keyframes orb { 50% { transform: translateY(13%) scale(1.06); } }

.site-footer { padding: 64px 4vw 26px; color: rgba(255,255,255,.58); background: var(--ink); }
.footer-brand { display: flex; align-items: baseline; gap: 18px; }
.footer-brand b { color: white; font-size: 15px; letter-spacing: .16em; }
.footer-brand span { font-size: 11px; }
.site-footer > p { margin: 24px 0 86px; font-size: 12px; }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 20px; border-top: 1px solid var(--line-dark); font-size: 10px; letter-spacing: .08em; }
.footer-bottom nav { display: flex; gap: 24px; }
.footer-bottom a { transition: color .25s ease; }
.footer-bottom a:hover { color: white; }

.legal-page { min-height: 100vh; padding: 120px 0 80px; color: var(--ink); background: var(--paper); }
.legal-nav { width: min(92vw, 1000px); display: flex; justify-content: space-between; align-items: center; margin: 0 auto 70px; }
.legal-nav a:first-child { font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.legal-nav a:last-child { font-size: 12px; color: var(--muted); }
.legal-wrap { width: min(92vw, 1000px); margin: auto; }
.legal-wrap .section-index { margin-bottom: 30px; }
.legal-wrap h1 { max-width: 850px; margin: 0 0 46px; font-size: clamp(48px, 7vw, 94px); line-height: .95; letter-spacing: -.065em; }
.legal-summary { max-width: 760px; margin: 0 0 70px; color: var(--muted); font-size: 18px; line-height: 1.75; }
.legal-content { display: grid; gap: 0; border-top: 1px solid var(--line); }
.legal-content section { display: grid; grid-template-columns: 220px 1fr; gap: 40px; padding: 38px 0; border-bottom: 1px solid var(--line); }
.legal-content h2 { margin: 0; font-size: 18px; letter-spacing: -.02em; }
.legal-content p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.85; }
.legal-content p + p { margin-top: 12px; }

.floating-contact { position: fixed; z-index: 90; right: 22px; bottom: 20px; display: flex; align-items: center; gap: 10px; padding: 7px 14px 7px 7px; border: 1px solid rgba(16,17,19,.12); border-radius: 999px; background: rgba(255,255,255,.86); box-shadow: 0 16px 44px rgba(0,0,0,.16); backdrop-filter: blur(18px); transition: transform .25s ease; }
.floating-contact:hover { transform: translateY(-3px); }
.floating-contact span { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%; color: var(--accent); background: var(--ink); font-size: 10px; font-weight: 800; }
.floating-contact b { color: var(--ink); font-size: 11px; }

.project-dialog { width: min(1080px, 92vw); max-height: 88vh; padding: 0; overflow: hidden; border: 0; border-radius: 30px; color: white; background: #17181b; box-shadow: 0 40px 160px rgba(0,0,0,.5); }
.project-dialog[open] { display: grid; grid-template-columns: 1.15fr .85fr; }
.project-dialog::backdrop { background: rgba(4,5,6,.72); backdrop-filter: blur(12px); }
.dialog-media { min-height: 620px; }
.dialog-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(34px, 5vw, 72px); }
.dialog-copy p { margin: 0 0 24px; font-size: 9px; letter-spacing: .16em; opacity: .44; }
.dialog-copy h2 { margin: 0; font-size: clamp(36px, 4vw, 64px); line-height: 1; letter-spacing: -.055em; }
.dialog-copy > span { margin: 28px 0 42px; color: rgba(255,255,255,.58); line-height: 1.8; }
.dialog-copy a { width: fit-content; padding-bottom: 6px; border-bottom: 1px solid rgba(255,255,255,.28); font-size: 12px; }
.dialog-close { position: absolute; z-index: 3; top: 16px; right: 16px; width: 42px; height: 42px; border: 0; border-radius: 50%; color: white; background: rgba(0,0,0,.54); font-size: 24px; cursor: pointer; backdrop-filter: blur(10px); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

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

@media (max-width: 1100px) {
  .desktop-nav { display: none; }
  .menu-toggle { width: 42px; height: 42px; display: grid; place-content: center; gap: 6px; padding: 0; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: inherit; background: transparent; }
  .site-header.is-light .menu-toggle { border-color: var(--line); }
  .menu-toggle span { display: block; width: 17px; height: 1px; background: currentColor; transition: transform .3s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-menu { position: absolute; top: calc(100% + 8px); left: 0; right: 0; display: grid; gap: 2px; padding: 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 20px; background: rgba(11,12,14,.95); box-shadow: 0 30px 80px rgba(0,0,0,.28); backdrop-filter: blur(24px); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: .3s ease; }
  .mobile-menu.is-open { opacity: 1; visibility: visible; transform: translateY(0); }
  .mobile-menu a { padding: 17px 16px; border-radius: 12px; color: white; font-size: 14px; }
  .mobile-menu a:hover { background: rgba(255,255,255,.08); }
  .hero-copy { left: 4vw; width: 62vw; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading > p:last-child { max-width: 650px; margin-top: 30px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .bento-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 480px 440px; }
  .bento-hero { grid-column: 1 / -1; grid-row: auto; }
  .bento-copy-card { grid-column: 1 / -1; }
  .bento-portrait, .bento-texture { display: none; }
  .craft-sticky { gap: 5vw; }
}

@media (max-width: 760px) {
  :root { --shell: calc(100vw - 34px); --header-height: 64px; --radius: 24px; }
  .site-header { top: 8px; width: calc(100vw - 16px); min-height: 64px; padding: 8px 9px 8px 11px; border-radius: 18px; }
  .brand { min-width: 0; }
  .brand-mark { width: 38px; border-radius: 11px; }
  .brand-mark img { width: 25px; height: 25px; }
  .brand-type b { font-size: 11px; }
  .brand-type small { font-size: 8px; }
  .language-toggle { height: 38px; padding: 0 9px; }
  .language-toggle span { font-size: 9px; }
  .header-cta { display: none; }
  .menu-toggle { width: 38px; height: 38px; }
  .hero { height: 150vh; }
  .hero-sticky { min-height: 620px; align-items: start; }
  .hero-copy { top: 120px; left: 17px; width: calc(100vw - 34px); transform: translateY(var(--hero-mobile-copy-shift)); }
  .eyebrow { margin-bottom: 22px; }
  .eyebrow b { font-size: 10px; }
  .hero h1 { font-size: clamp(50px, 17vw, 76px); line-height: .92; }
  html[lang="en"] .hero h1 { font-size: clamp(50px, 14vw, 56px); }
  .hero h1 span, .hero h1 em { white-space: normal; }
  .hero-lead { margin-top: 24px; max-width: 94%; font-size: 14px; line-height: 1.65; }
  .hero-actions { margin-top: 24px; gap: 18px; }
  .button { min-height: 48px; padding: 0 17px; }
  .text-link { font-size: 12px; }
  .hero-visual { inset: auto var(--hero-mobile-inset) var(--hero-mobile-bottom) var(--hero-mobile-inset); height: var(--hero-mobile-height); min-height: 310px; border-radius: var(--hero-mobile-radius); transform: none; }
  .hero-caption { left: 18px; right: 18px; bottom: 18px; }
  .hero-caption span { display: none; }
  .floating-spec { display: none; }
  .statement { padding: 100px 0; }
  .statement-title { margin: 50px 0 80px; font-size: 42px; line-height: 1.1; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metrics article { min-height: 148px; padding: 24px 16px; }
  .metrics strong { font-size: 43px; }
  .metrics span { font-size: 9px; }
  .capabilities, .projects, .process { padding: 100px 0; }
  .section-heading { margin-bottom: 56px; }
  .section-heading .section-index { margin-bottom: 28px; }
  .section-heading h2, .project-heading h2, .process-heading h2 { font-size: 46px; line-height: 1; }
  .section-heading > p:last-child, .project-heading > p { margin-top: 24px; font-size: 15px; }
  .bento-grid { display: grid; grid-template-columns: 1fr; grid-template-rows: 470px 360px 420px 420px; }
  .bento-hero, .bento-copy-card, .bento-portrait, .bento-texture { position: relative; display: block; grid-column: auto; grid-row: auto; opacity: 1; pointer-events: auto; }
  .bento-copy-card { display: flex; }
  .bento-copy { left: 22px; right: 22px; bottom: 22px; }
  .bento-copy h3 { font-size: 31px; }
  .bento-copy-card { padding: 26px; }
  .project-heading { grid-template-columns: 1fr; gap: 0; margin-bottom: 52px; }
  .project-card, .project-card-wide { width: calc(100vw - 54px); min-width: 0; height: 66vh; min-height: 510px; }
  .project-track { gap: 12px; padding-inline: 17px; }
  .track-hint { justify-content: flex-start; }
  .craft { height: auto; padding: 100px 0; }
  .craft-sticky { position: static; height: auto; min-height: 0; grid-template-columns: 1fr; gap: 50px; }
  .craft-copy h2 { margin-top: 30px; font-size: 47px; }
  .craft-visual { height: 65vh; min-height: 520px; }
  .process-list { margin-top: 60px; }
  .process-list article { min-height: 160px; grid-template-columns: 52px 1fr; grid-template-rows: auto auto; align-content: center; gap: 8px 0; }
  .process-list article > span { grid-row: 1 / 3; align-self: start; margin-top: 8px; }
  .process-list h3 { font-size: 28px; }
  .process-list p { font-size: 12px; }
  .process-list i { display: none; }
  .cta { min-height: 80vh; }
  .cta h2 { font-size: 58px; line-height: .95; }
  .cta-inner { padding: 100px 0; }
  .site-footer { padding-inline: 17px; }
  .site-footer > p { margin-bottom: 58px; line-height: 1.7; }
  .floating-contact { right: 12px; bottom: 12px; }
  .footer-bottom { align-items: flex-start; gap: 20px; }
  .footer-bottom nav { flex-direction: column; align-items: flex-end; gap: 12px; }
  .legal-page { padding-top: 70px; }
  .legal-nav { margin-bottom: 58px; }
  .legal-wrap h1 { font-size: 52px; }
  .legal-summary { font-size: 16px; margin-bottom: 52px; }
  .legal-content section { grid-template-columns: 1fr; gap: 14px; padding: 30px 0; }
  .project-dialog[open] { display: block; overflow-y: auto; }
  .project-dialog { max-height: 90vh; border-radius: 24px; }
  .dialog-media { height: 46vh; min-height: 320px; }
  .dialog-copy { padding: 30px 24px 40px; }
}

@media (max-width: 390px) {
  .brand-type small { display: none; }
  .language-toggle { padding: 0 8px; gap: 6px; }
  .hero h1 { font-size: 52px; }
  .hero-lead { font-size: 13px; }
  .hero-actions { gap: 14px; }
  .text-link { max-width: 95px; }
  .metrics { grid-template-columns: 1fr; }
  .metrics article { min-height: 130px; }
  .project-card, .project-card-wide { width: calc(100vw - 44px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero-copy { transform: translateY(-50%); opacity: 1; }
  .hero-visual { transform: none; }
}
