:root {
  --bg: #09090a;
  --bg-soft: #0f0f11;
  --panel: #141416;
  --panel-2: #1a1a1d;
  --paper: #efede7;
  --paper-2: #e7e3dc;
  --ink: #111113;
  --text: #f2efe9;
  --muted: #aaa7a1;
  --muted-dark: #696762;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(17, 17, 19, 0.14);
  --accent: #f15b43;
  --accent-dark: #d84832;
  --accent-soft: rgba(241, 91, 67, 0.14);
  --header-h: 82px;
  --shell: min(1320px, calc(100vw - 96px));
  --ease: cubic-bezier(.2, .75, .2, 1);
  --shadow: 0 30px 90px rgba(0, 0, 0, .28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 18px);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

::selection {
  background: var(--accent);
  color: #fff;
}

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

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

button {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--accent);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

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

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

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--accent);
  box-shadow: 0 0 18px rgba(241, 91, 67, .7);
}

.site-header {
  position: fixed;
  z-index: 120;
  inset: 0 0 auto;
  height: var(--header-h);
  transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(9, 9, 10, .8);
  border-color: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.header-inner {
  width: var(--shell);
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 1fr) auto minmax(230px, 1fr);
  align-items: center;
  gap: 30px;
}

.brand {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, .34);
  font: 700 14px/1 Arial, sans-serif;
  letter-spacing: .12em;
  transition: color .25s ease, border-color .25s ease, background .25s ease;
}

.brand:hover .brand-mark {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 17px;
  letter-spacing: .12em;
}

.brand-copy small {
  margin-top: 6px;
  color: rgba(255, 255, 255, .56);
  font: 500 9px/1 Arial, sans-serif;
  letter-spacing: .22em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.4vw, 42px);
  font-size: 13px;
  letter-spacing: .12em;
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s var(--ease);
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: #fff;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 108px;
  height: 42px;
  padding: 0 20px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  letter-spacing: .1em;
  transition: background .2s ease, transform .2s ease;
}

.header-contact:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 25px;
  height: 1px;
  margin: 7px auto;
  background: #fff;
  transition: transform .3s ease;
}

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

.menu-button[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  align-content: center;
  padding: 110px 8vw 50px;
  background:
    radial-gradient(circle at 85% 10%, rgba(241, 91, 67, .22), transparent 32%),
    #0a0a0b;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .3s ease, transform .3s ease, visibility .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.mobile-menu nav {
  width: min(680px, 100%);
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.mobile-menu nav a {
  display: flex;
  align-items: baseline;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: clamp(28px, 7vw, 52px);
  font-weight: 600;
  line-height: 1;
}

.mobile-menu nav a span {
  color: var(--accent);
  font: 600 11px/1 Arial, sans-serif;
  letter-spacing: .12em;
}

.mobile-menu-contact {
  width: min(680px, 100%);
  margin: 38px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  color: var(--muted);
  font-size: 14px;
}

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

.hero-media,
.hero-media img,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -4;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: 70% 21%;
  filter: contrast(1.04) brightness(.82);
  transform: scale(1.006);
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(5, 5, 6, .98) 0%, rgba(5, 5, 6, .88) 33%, rgba(5, 5, 6, .35) 60%, rgba(5, 5, 6, .05) 78%),
    linear-gradient(0deg, rgba(5, 5, 6, .88) 0%, transparent 34%, rgba(5, 5, 6, .16) 100%);
}

.hero-grid {
  z-index: -2;
  opacity: .2;
  background-image:
    linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .07) 1px, transparent 1px);
  background-size: 9vw 9vw;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 72%);
  mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.hero-inner {
  width: var(--shell);
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(var(--header-h) + 8vh) 0 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-copy {
  width: min(760px, 58vw);
  padding-top: 3vh;
}

.eyebrow,
.section-kicker {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--accent);
  font: 600 11px/1.3 Arial, sans-serif;
  letter-spacing: .2em;
}

.eyebrow span {
  display: inline-block;
  width: 46px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  margin: 30px 0 0;
  display: flex;
  flex-direction: column;
}

.hero h1 .name {
  font-size: clamp(76px, 9.2vw, 152px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.055em;
}

.hero h1 .role {
  margin-top: 24px;
  color: rgba(255, 255, 255, .94);
  font-size: clamp(28px, 3.25vw, 54px);
  font-weight: 450;
  line-height: 1.05;
  letter-spacing: .03em;
}

.hero-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.9;
}

.hero-tags {
  margin-top: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, .18);
  color: rgba(255, 255, 255, .76);
  background: rgba(0, 0, 0, .14);
  font-size: 12px;
  letter-spacing: .08em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 54px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 38px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: .08em;
  transition: transform .25s var(--ease), background .25s ease, border-color .25s ease, color .25s ease;
}

.button i {
  font-style: normal;
  font-size: 18px;
}

.button-primary {
  min-width: 190px;
  color: #fff;
  background: var(--accent);
}

.button-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

.button-ghost {
  min-width: 170px;
  color: #fff;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(0, 0, 0, .14);
}

.button-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .08);
  transform: translateY(-3px);
}

.hero-stats {
  position: absolute;
  right: max(48px, calc((100vw - min(1320px, calc(100vw - 96px))) / 2));
  bottom: 54px;
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .13);
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.hero-stats div {
  min-width: 142px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  background: rgba(9, 9, 10, .54);
}

.hero-stats strong {
  color: #fff;
  font: 600 31px/1 Arial, sans-serif;
}

.hero-stats sup {
  color: var(--accent);
  font-size: .5em;
}

.hero-stats span {
  margin-top: 8px;
  color: rgba(255, 255, 255, .55);
  font-size: 11px;
  letter-spacing: .08em;
}

.scroll-cue {
  position: absolute;
  left: max(48px, calc((100vw - min(1320px, calc(100vw - 96px))) / 2));
  bottom: 42px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .52);
  font: 500 9px/1 Arial, sans-serif;
  letter-spacing: .2em;
}

.scroll-cue i {
  position: relative;
  display: block;
  width: 58px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, .2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-100%);
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  45%, 100% { transform: translateX(100%); }
}

.hero-side-label {
  position: absolute;
  top: 50%;
  right: 24px;
  color: rgba(255, 255, 255, .38);
  font: 500 9px/1 Arial, sans-serif;
  letter-spacing: .25em;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right top;
}

.section {
  position: relative;
  padding: clamp(100px, 10vw, 160px) 0;
}

.section-shell {
  width: var(--shell);
  margin: 0 auto;
}

.section-kicker {
  margin-bottom: 24px;
}

.section-title {
  margin: 0;
  font-size: clamp(40px, 5vw, 76px);
  font-weight: 560;
  line-height: 1.17;
  letter-spacing: -.045em;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(300px, .62fr);
  align-items: end;
  gap: clamp(40px, 7vw, 100px);
  margin-bottom: clamp(58px, 7vw, 96px);
}

.section-intro {
  margin: 0 0 6px;
  max-width: 480px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.section-about {
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(17, 17, 19, .055) 1px, transparent 1px),
    var(--paper);
  background-size: 10vw 100%;
}

.about-layout {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(300px, 420px);
  gap: clamp(32px, 5vw, 78px);
  align-items: start;
}

.section-index {
  position: sticky;
  top: 120px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.section-index span {
  color: var(--accent);
  font: 700 15px/1 Arial, sans-serif;
}

.section-index p {
  margin: 0;
  color: rgba(17, 17, 19, .48);
  font: 600 10px/1 Arial, sans-serif;
  letter-spacing: .22em;
  writing-mode: vertical-rl;
}

.section-about .section-kicker {
  color: var(--accent-dark);
}

.about-main {
  padding-top: 18px;
}

.about-copy-grid {
  margin-top: clamp(48px, 6vw, 82px);
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, .8fr);
  gap: clamp(32px, 5vw, 72px);
}

.about-copy p {
  margin: 0 0 24px;
  color: #4e4c48;
  font-size: 17px;
  line-height: 2;
}

.about-principle {
  align-self: start;
  padding: 28px 0 0;
  border-top: 2px solid var(--ink);
}

.about-principle span {
  color: var(--accent-dark);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.about-principle p {
  margin: 22px 0 0;
  font-size: 22px;
  font-weight: 520;
  line-height: 1.65;
}

.about-portrait {
  position: relative;
  margin: 0;
  min-height: 620px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 32px 70px rgba(26, 24, 20, .18);
}

.about-portrait picture,
.about-portrait img {
  width: 100%;
  height: 100%;
}

.about-portrait img {
  min-height: 620px;
  object-fit: cover;
  object-position: 56% 22%;
  filter: contrast(1.04);
}

.about-portrait::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(0, 0, 0, .86), transparent);
}

.about-portrait figcaption {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 27px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}

.about-portrait figcaption span {
  color: var(--accent);
  font: 700 11px/1 Arial, sans-serif;
  letter-spacing: .16em;
}

.about-portrait figcaption strong {
  font-size: 15px;
  font-weight: 500;
  text-align: right;
}

.section-expertise {
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0%, rgba(241, 91, 67, .12), transparent 32%),
    var(--bg-soft);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.capability-card {
  min-height: 270px;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .3s ease, transform .3s var(--ease);
}

.capability-card:hover {
  background: rgba(255, 255, 255, .035);
  transform: translateY(-4px);
}

.capability-card > span {
  color: var(--accent);
  font: 700 12px/1 Arial, sans-serif;
}

.capability-card h3 {
  margin: 65px 0 16px;
  font-size: 27px;
  font-weight: 560;
}

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

.section-sectors {
  background: #0b0b0c;
}

.sector-list {
  display: grid;
  gap: 24px;
}

.sector-card {
  position: relative;
  min-height: 510px;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(310px, .5fr);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}

.sector-image {
  min-height: 510px;
  overflow: hidden;
}

.sector-image img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .6s ease;
}

.sector-card:hover .sector-image img {
  transform: scale(1.025);
  filter: brightness(1.08);
}

.sector-meta {
  position: relative;
  z-index: 2;
  padding: clamp(38px, 4.2vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-left: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 255, 255, .018), transparent);
}

.sector-meta > span {
  position: absolute;
  top: 38px;
  color: var(--accent);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .18em;
}

.sector-meta h3 {
  margin: 0;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 540;
  line-height: 1.1;
}

.sector-meta p {
  margin: 22px 0 36px;
  color: var(--muted);
  line-height: 1.85;
}

.sector-meta button {
  width: max-content;
  padding: 0 0 8px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .45);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: .08em;
  transition: color .2s ease, border-color .2s ease;
}

.sector-meta button i {
  margin-left: 14px;
  color: var(--accent);
  font-style: normal;
}

.sector-meta button:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.section-works {
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 17, 19, .05) 1px, transparent 1px),
    var(--paper);
  background-size: 100% 72px;
}

.section-works .section-kicker {
  color: var(--accent-dark);
}

.works-head {
  align-items: end;
}

.work-filters {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.work-filters button {
  min-width: 62px;
  height: 38px;
  padding: 0 15px;
  border: 1px solid var(--line-dark);
  background: transparent;
  cursor: pointer;
  color: #5e5b56;
  font-size: 12px;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.work-filters button:hover,
.work-filters button.is-active {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 4vw, 58px) clamp(24px, 3vw, 42px);
}

.project-card {
  min-width: 0;
}

.project-card[hidden] {
  display: none;
}

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

.project-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .75s var(--ease), filter .4s ease;
}

.project-card:not(.is-placeholder) .project-cover {
  cursor: zoom-in;
}

.project-card:not(.is-placeholder):hover .project-cover img {
  transform: scale(1.035);
}

.project-number,
.project-status {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 7px 10px;
  color: #fff;
  background: rgba(9, 9, 10, .72);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font: 700 9px/1 Arial, sans-serif;
  letter-spacing: .14em;
}

.project-number {
  left: 18px;
}

.project-status {
  right: 18px;
  color: #fff;
  background: var(--accent);
}

.project-card-meta {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: start;
}

.project-card-meta p {
  margin: 0 0 9px;
  color: var(--accent-dark);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .15em;
}

.project-card-meta h3 {
  margin: 0;
  font-size: clamp(25px, 2.2vw, 34px);
  font-weight: 560;
  line-height: 1.25;
}

.project-card-meta > span {
  margin-top: 5px;
  color: var(--muted-dark);
  font-size: 12px;
}

.project-empty {
  grid-column: 1 / -1;
  min-height: 260px;
  padding: clamp(34px, 5vw, 70px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 38px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, .35);
}

.project-empty h3 {
  margin: 0 0 16px;
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 560;
}

.project-empty p {
  max-width: 650px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 16px;
  line-height: 1.85;
}

.project-empty a {
  min-width: 160px;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--ink);
  font-size: 13px;
  letter-spacing: .08em;
  transition: background .2s ease, transform .2s ease;
}

.project-empty a:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.noscript-note {
  padding: 20px;
  color: var(--muted-dark);
  border: 1px solid var(--line-dark);
}

.section-method {
  padding: 0;
  color: #fff;
  background: var(--accent-dark);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(320px, .8fr) minmax(0, 1.2fr);
  min-height: 620px;
}

.method-statement {
  padding: clamp(70px, 8vw, 120px) clamp(36px, 5vw, 76px) clamp(70px, 8vw, 120px) 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, .28);
}

.section-method .section-kicker {
  color: rgba(255, 255, 255, .72);
}

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

.method-grid article {
  min-height: 310px;
  padding: clamp(36px, 4.5vw, 68px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-right: 1px solid rgba(255, 255, 255, .22);
  border-bottom: 1px solid rgba(255, 255, 255, .22);
}

.method-grid article:nth-child(2n) {
  border-right: 0;
}

.method-grid article:nth-last-child(-n+2) {
  border-bottom: 0;
}

.method-grid span {
  margin-bottom: auto;
  color: rgba(255, 255, 255, .68);
  font: 700 11px/1 Arial, sans-serif;
}

.method-grid h3 {
  margin: 0 0 12px;
  font-size: 34px;
  font-weight: 560;
}

.method-grid p {
  margin: 0;
  color: rgba(255, 255, 255, .72);
  line-height: 1.75;
}

.section-process {
  background:
    radial-gradient(circle at 0% 100%, rgba(241, 91, 67, .1), transparent 28%),
    #0c0c0d;
}

.process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.process-list li {
  min-height: 124px;
  display: grid;
  grid-template-columns: 105px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
}

.process-list li:hover {
  background: rgba(255, 255, 255, .025);
}

.process-list li > span {
  color: var(--accent);
  font: 700 12px/1 Arial, sans-serif;
}

.process-list li > div {
  display: grid;
  grid-template-columns: minmax(210px, .55fr) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.process-list h3 {
  margin: 0;
  font-size: 27px;
  font-weight: 520;
}

.process-list p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.section-contact {
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(241, 91, 67, .1), transparent 44%),
    #111113;
}

.contact-backdrop {
  position: absolute;
  right: -1vw;
  bottom: -3vw;
  color: rgba(255, 255, 255, .025);
  font: 800 clamp(130px, 20vw, 360px)/.75 Arial, sans-serif;
  letter-spacing: -.07em;
  pointer-events: none;
  user-select: none;
}

.contact-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
}

.contact-lead {
  max-width: 680px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.contact-cards {
  margin-top: 52px;
  border-top: 1px solid var(--line);
}

.contact-cards a {
  min-height: 104px;
  display: grid;
  grid-template-columns: 150px 1fr auto;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  transition: background .25s ease, padding .25s var(--ease);
}

.contact-cards a:hover {
  padding-left: 16px;
  background: rgba(255, 255, 255, .025);
}

.contact-cards span {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: .1em;
}

.contact-cards strong {
  font-size: clamp(19px, 2vw, 28px);
  font-weight: 520;
}

.contact-cards i {
  color: var(--accent);
  font-style: normal;
  font-size: 20px;
}

.contact-tools {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-tools button,
.contact-tools a {
  min-height: 40px;
  padding: 0 15px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  color: rgba(255, 255, 255, .7);
  font-size: 12px;
  letter-spacing: .06em;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.contact-tools button:hover,
.contact-tools a:hover {
  color: #fff;
  border-color: var(--accent);
  background: var(--accent-soft);
}

.contact-form {
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .035);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: block;
  margin-bottom: 24px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, .62);
  font-size: 12px;
  letter-spacing: .08em;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  color: #fff;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
  border-radius: 0;
  outline: 0;
  background: transparent;
  transition: border-color .2s ease;
}

.contact-form input,
.contact-form select {
  height: 48px;
}

.contact-form textarea {
  min-height: 130px;
  padding: 12px 0;
  resize: vertical;
}

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

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, .32);
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, rgba(255,255,255,.7) 50%), linear-gradient(135deg, rgba(255,255,255,.7) 50%, transparent 50%);
  background-position: calc(100% - 14px) 21px, calc(100% - 9px) 21px;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}

.contact-form option {
  color: #111;
  background: #fff;
}

.form-submit {
  width: 100%;
  border: 0;
}

.form-note {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, .38);
  font-size: 11px;
  line-height: 1.6;
}

.site-footer {
  padding: 30px 0 calc(30px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  background: #080809;
}

.footer-inner {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, .45);
  font-size: 12px;
}

.footer-inner > div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.footer-inner strong {
  color: #fff;
  font-size: 15px;
}

.footer-inner p {
  margin: 0;
  text-align: center;
}

.footer-inner > a {
  justify-self: end;
  color: rgba(255, 255, 255, .7);
}

.footer-inner > a i {
  margin-left: 10px;
  color: var(--accent);
  font-style: normal;
}

.mobile-quick-contact {
  display: none;
}

.project-dialog {
  width: min(1180px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100svh - 48px);
  padding: 0;
  color: var(--text);
  border: 1px solid var(--line);
  background: #0d0d0f;
  box-shadow: 0 40px 120px rgba(0, 0, 0, .65);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, .78);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.dialog-close {
  position: fixed;
  z-index: 3;
  top: 36px;
  right: 36px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 50%;
  background: rgba(9, 9, 10, .75);
  cursor: pointer;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}

.dialog-content {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .45fr);
  min-height: 640px;
}

.dialog-media {
  overflow-y: auto;
  background: #070708;
}

.dialog-media img {
  width: 100%;
  height: auto;
  border-bottom: 1px solid var(--line);
}

.dialog-info {
  position: sticky;
  top: 0;
  align-self: start;
  padding: 52px 38px;
}

.dialog-info > p {
  margin: 0 0 16px;
  color: var(--accent);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .16em;
}

.dialog-info h2 {
  margin: 0;
  font-size: 38px;
  font-weight: 560;
  line-height: 1.2;
}

#dialog-description {
  margin-top: 28px;
  color: var(--muted);
  line-height: 1.9;
}

.dialog-count {
  margin-top: 38px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: rgba(255, 255, 255, .42);
  font-size: 12px;
}

.toast {
  position: fixed;
  z-index: 999;
  left: 50%;
  bottom: 34px;
  padding: 12px 18px;
  color: #fff;
  background: rgba(20, 20, 22, .92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 16px);
  transition: opacity .25s ease, transform .25s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

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

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

@media (max-width: 1180px) {
  :root {
    --shell: min(100% - 64px, 1120px);
  }

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

  .desktop-nav {
    display: none;
  }

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

  .menu-button {
    display: block;
  }

  .hero-copy {
    width: min(700px, 68vw);
  }

  .hero-stats {
    right: 32px;
  }

  .scroll-cue {
    left: 32px;
  }

  .about-layout {
    grid-template-columns: 56px minmax(0, 1fr) minmax(280px, 360px);
    gap: 36px;
  }

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

  .contact-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .75fr);
    gap: 64px;
  }
}

@media (max-width: 920px) {
  :root {
    --header-h: 72px;
    --shell: min(100% - 40px, 820px);
  }

  .header-contact {
    display: none;
  }

  .hero-media img {
    object-position: 61% 20%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 5, 6, .98) 0%, rgba(5, 5, 6, .82) 48%, rgba(5, 5, 6, .18) 100%),
      linear-gradient(0deg, rgba(5, 5, 6, .9) 0%, transparent 38%, rgba(5, 5, 6, .2) 100%);
  }

  .hero-copy {
    width: 76vw;
  }

  .hero-stats {
    position: static;
    width: max-content;
    margin-top: 60px;
  }

  .hero-stats div {
    min-width: 128px;
  }

  .scroll-cue,
  .hero-side-label {
    display: none;
  }

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

  .section-index {
    position: static;
    flex-direction: row;
    align-items: center;
  }

  .section-index p {
    writing-mode: initial;
  }

  .about-main {
    padding-top: 0;
  }

  .about-portrait {
    width: min(100%, 520px);
    min-height: 0;
  }

  .about-portrait img {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .section-head {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 28px;
  }

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

  .sector-card {
    grid-template-columns: 1fr;
  }

  .sector-image {
    min-height: 420px;
  }

  .sector-meta {
    min-height: 300px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .work-filters {
    justify-content: flex-start;
  }

  .method-layout {
    grid-template-columns: 1fr;
  }

  .method-statement {
    min-height: 420px;
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .28);
  }

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

  .contact-form {
    max-width: 720px;
  }

  .dialog-content {
    grid-template-columns: 1fr;
  }

  .dialog-info {
    position: static;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: calc(100% - 32px);
  }

  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom));
  }

  .brand-copy small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero {
    min-height: 900px;
  }

  .hero-media img {
    object-position: 55% 20%;
    filter: contrast(1.04) brightness(.72);
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, .26) 0%, rgba(5, 5, 6, .35) 34%, rgba(5, 5, 6, .92) 72%, rgba(5, 5, 6, 1) 100%),
      linear-gradient(90deg, rgba(5, 5, 6, .72), rgba(5, 5, 6, .06) 68%);
  }

  .hero-grid {
    opacity: .13;
    background-size: 64px 64px;
  }

  .hero-inner {
    min-height: 900px;
    padding-top: 360px;
    padding-bottom: 42px;
    justify-content: flex-end;
  }

  .hero-copy {
    width: 100%;
    padding-top: 0;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: .15em;
  }

  .eyebrow span {
    width: 28px;
  }

  .hero h1 {
    margin-top: 22px;
  }

  .hero h1 .name {
    font-size: clamp(62px, 19vw, 88px);
  }

  .hero h1 .role {
    margin-top: 16px;
    font-size: clamp(22px, 6.8vw, 32px);
    letter-spacing: .01em;
    white-space: nowrap;
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-lead br {
    display: none;
  }

  .hero-tags {
    margin-top: 18px;
  }

  .hero-tags span {
    padding: 6px 9px;
    font-size: 10px;
  }

  .hero-cta {
    margin-top: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .button {
    min-width: 0;
    min-height: 50px;
    padding: 0 15px;
    gap: 10px;
    font-size: 12px;
  }

  .hero-stats {
    width: 100%;
    margin-top: 34px;
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-stats div {
    min-width: 0;
    padding: 15px 10px;
  }

  .hero-stats strong {
    font-size: 24px;
  }

  .hero-stats span {
    font-size: 9px;
  }

  .section {
    padding: 84px 0;
  }

  .section-title {
    font-size: clamp(36px, 11vw, 52px);
  }

  .about-copy-grid {
    margin-top: 38px;
  }

  .about-copy p {
    font-size: 15px;
    line-height: 1.9;
  }

  .about-principle p {
    font-size: 19px;
  }

  .about-portrait {
    width: 100%;
  }

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

  .capability-card {
    min-height: 230px;
  }

  .capability-card h3 {
    margin-top: 48px;
  }

  .sector-card {
    min-height: 0;
  }

  .sector-image {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .sector-meta {
    min-height: 260px;
    padding: 32px 26px;
  }

  .sector-meta > span {
    top: 30px;
  }

  .sector-meta h3 {
    font-size: 38px;
  }

  .sector-meta p {
    margin-bottom: 28px;
  }

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

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

  .project-empty a {
    width: 100%;
  }

  .method-layout {
    min-height: 0;
  }

  .method-statement {
    min-height: 360px;
  }

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

  .method-grid article,
  .method-grid article:nth-child(2n),
  .method-grid article:nth-last-child(-n+2) {
    min-height: 230px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .22);
  }

  .method-grid article:last-child {
    border-bottom: 0;
  }

  .process-list li {
    grid-template-columns: 52px 1fr;
    padding: 26px 0;
  }

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

  .process-list h3 {
    font-size: 22px;
  }

  .process-list p {
    font-size: 14px;
  }

  .contact-cards a {
    min-height: 96px;
    grid-template-columns: 1fr auto;
    gap: 8px 16px;
  }

  .contact-cards a span {
    grid-column: 1 / -1;
  }

  .contact-cards strong {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .contact-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

  .footer-inner > div span,
  .footer-inner p {
    display: none;
  }

  .mobile-quick-contact {
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    height: calc(62px + env(safe-area-inset-bottom));
    padding-bottom: env(safe-area-inset-bottom);
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: rgba(8, 8, 9, .94);
    border-top: 1px solid var(--line);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
  }

  .mobile-quick-contact a,
  .mobile-quick-contact button {
    display: grid;
    place-items: center;
    border: 0;
    border-right: 1px solid var(--line);
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-size: 12px;
    letter-spacing: .08em;
  }

  .mobile-quick-contact > :nth-child(2) {
    background: var(--accent);
  }

  .project-dialog {
    width: 100vw;
    max-height: 100svh;
    height: 100svh;
    border: 0;
  }

  .dialog-close {
    top: 16px;
    right: 16px;
  }

  .dialog-info {
    padding: 36px 20px 70px;
  }

  .dialog-info h2 {
    font-size: 30px;
  }
}

@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;
  }
}


/* CASE INTEGRATION — generated 2026-07 */
.works-summary {
  max-width: 720px;
  margin: 26px 0 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.85;
}

.work-filters sup {
  margin-left: 4px;
  color: currentColor;
  font: 700 8px/1 Arial, sans-serif;
  opacity: .58;
  vertical-align: .35em;
}

.project-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(0, 0, 0, .14));
  pointer-events: none;
}

.project-cover:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.project-card-meta h3 {
  font-size: clamp(22px, 1.9vw, 31px);
  overflow-wrap: anywhere;
}

.project-card-meta p {
  line-height: 1.45;
}

.project-card-meta > span {
  white-space: nowrap;
}

.dialog-media img {
  display: block;
  background: #0a0a0b;
}

@media (min-width: 921px) {
  .project-dialog {
    overflow: hidden;
  }

  .dialog-content {
    height: min(780px, calc(100svh - 48px));
    min-height: 0;
  }

  .dialog-media {
    height: 100%;
    overscroll-behavior: contain;
  }

  .dialog-info {
    max-height: 100%;
    overflow-y: auto;
  }
}

@media (max-width: 680px) {
  .works-summary {
    margin-top: 20px;
    font-size: 13px;
  }

  .project-card-meta {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .project-card-meta > span {
    margin-top: 0;
    white-space: normal;
  }
}


/* Long folder names remain readable without splitting the area unit. */
.project-card-meta h3 {
  overflow-wrap: normal;
  word-break: normal;
}

.project-card.has-long-title .project-card-meta h3 {
  font-size: clamp(19px, 1.45vw, 25px);
  line-height: 1.38;
}

/* COMPACT DIRECTION REVISION — 2026-07
   Project work leads the home page; portrait becomes a small signature;
   four discipline entries become one compact grid. */

.hero {
  min-height: clamp(700px, 88svh, 860px);
  background: #070708;
}

.hero-project-visual {
  position: absolute;
  z-index: -4;
  inset: 0 0 0 49%;
  margin: 0;
  overflow: hidden;
  background: #171513;
}

.hero-project-visual picture,
.hero-project-visual img {
  width: 100%;
  height: 100%;
}

.hero-project-visual img {
  object-fit: cover;
  object-position: 48% 50%;
  filter: contrast(1.03) brightness(.78) saturate(.88);
  transform: scale(1.01);
  transition: transform 1.1s var(--ease), filter .6s ease;
}

.hero:hover .hero-project-visual img {
  transform: scale(1.025);
  filter: contrast(1.04) brightness(.83) saturate(.92);
}

.hero-project-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 7, 8, .88) 0%, rgba(7, 7, 8, .16) 27%, transparent 58%),
    linear-gradient(0deg, rgba(7, 7, 8, .88) 0%, transparent 30%);
  pointer-events: none;
}

.hero-project-visual figcaption {
  position: absolute;
  z-index: 2;
  right: max(48px, calc((100vw - min(1320px, calc(100vw - 96px))) / 2));
  bottom: 34px;
  width: min(360px, 37vw);
  padding: 20px 22px 19px;
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(8, 8, 9, .66);
  box-shadow: 0 20px 54px rgba(0, 0, 0, .3);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.hero-project-visual figcaption > span {
  display: block;
  color: var(--accent);
  font: 700 9px/1.2 Arial, sans-serif;
  letter-spacing: .17em;
}

.hero-project-visual figcaption strong {
  display: block;
  margin-top: 11px;
  color: #fff;
  font-size: 16px;
  font-weight: 520;
  line-height: 1.45;
}

.hero-project-visual figcaption button {
  margin-top: 14px;
  padding: 0 0 5px;
  color: rgba(255, 255, 255, .72);
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  letter-spacing: .08em;
}

.hero-project-visual figcaption button i {
  margin-left: 9px;
  color: var(--accent);
  font-style: normal;
}

.hero-overlay {
  background:
    linear-gradient(90deg, #070708 0%, #070708 31%, rgba(7, 7, 8, .96) 42%, rgba(7, 7, 8, .55) 57%, rgba(7, 7, 8, .08) 75%),
    linear-gradient(0deg, rgba(7, 7, 8, .62), transparent 38%);
}

.hero-grid {
  opacity: .18;
  background-size: 82px 82px;
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 74%);
  mask-image: linear-gradient(90deg, #000 0%, #000 48%, transparent 74%);
}

.hero-inner {
  min-height: clamp(700px, 88svh, 860px);
  padding: calc(var(--header-h) + 64px) 0 46px;
  justify-content: center;
}

.hero-copy {
  width: min(740px, 57vw);
  padding-top: 0;
}

.hero h1 {
  margin-top: 26px;
}

.hero h1 .name {
  font-size: clamp(72px, 8vw, 126px);
}

.hero h1 .role {
  margin-top: 20px;
  font-size: clamp(27px, 3vw, 48px);
}

.hero-lead {
  max-width: 650px;
  margin-top: 25px;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.85;
}

.hero-tags {
  margin-top: 21px;
}

.hero-tags span {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(7, 7, 8, .28);
}

.hero-cta {
  margin-top: 30px;
}

.hero-stats {
  position: static;
  width: max-content;
  margin-top: 38px;
  box-shadow: none;
  background: rgba(255, 255, 255, .1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.hero-stats div {
  min-width: 128px;
  padding: 16px 20px;
  background: rgba(9, 9, 10, .52);
}

.hero-stats strong {
  font-size: 27px;
}

.scroll-cue,
.hero-side-label {
  display: none;
}

/* The portrait is now a restrained signature in the About section. */
.section-about {
  padding-top: clamp(86px, 8vw, 122px);
  padding-bottom: clamp(86px, 8vw, 122px);
}

.about-layout {
  grid-template-columns: 68px minmax(0, 1fr) 172px;
  gap: clamp(28px, 4.2vw, 62px);
  align-items: end;
}

.about-main {
  padding-top: 0;
}

.about-copy-grid {
  margin-top: clamp(38px, 4.5vw, 62px);
}

.about-portrait-compact {
  width: 172px;
  min-height: 0;
  aspect-ratio: 3 / 4;
  align-self: end;
  justify-self: end;
  border: 1px solid rgba(17, 17, 19, .18);
  background: #111;
  box-shadow: 0 18px 42px rgba(26, 24, 20, .14);
}

.about-portrait-compact picture,
.about-portrait-compact img {
  width: 100%;
  height: 100%;
}

.about-portrait-compact img {
  min-height: 0;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 53% 20%;
  filter: contrast(1.04) brightness(.9);
}

.about-portrait-compact::after {
  height: 48%;
}

.about-portrait-compact figcaption {
  left: 14px;
  right: 14px;
  bottom: 13px;
  align-items: flex-end;
}

.about-portrait-compact figcaption strong {
  font-size: 13px;
  font-weight: 520;
  text-align: left;
}

.about-portrait-compact figcaption span {
  font-size: 8px;
  letter-spacing: .13em;
}

/* Four real-project entries in one screen, replacing four oversized panels. */
.section-sectors {
  padding-top: clamp(82px, 7vw, 112px);
  padding-bottom: clamp(88px, 7.5vw, 122px);
}

.section-sectors .section-head {
  margin-bottom: clamp(38px, 4.5vw, 58px);
}

.section-sectors .section-title {
  font-size: clamp(40px, 4.5vw, 64px);
}

.sector-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.sector-card {
  min-height: 350px;
  aspect-ratio: 4 / 5;
  display: block;
  border-color: rgba(255, 255, 255, .15);
  background: #141416;
}

.sector-image {
  position: absolute;
  inset: 0;
  min-height: 0;
}

.sector-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 8, 9, .12) 0%, rgba(8, 8, 9, .18) 38%, rgba(8, 8, 9, .92) 100%),
    linear-gradient(90deg, rgba(8, 8, 9, .14), transparent 60%);
  pointer-events: none;
}

.sector-image img {
  object-position: center;
  filter: saturate(.82) contrast(1.03) brightness(.84);
}

.sector-card:hover .sector-image img {
  transform: scale(1.045);
  filter: saturate(.92) contrast(1.04) brightness(.92);
}

.sector-meta {
  position: absolute;
  inset: 0;
  padding: 25px 24px 24px;
  justify-content: flex-end;
  border: 0;
  background: transparent;
}

.sector-meta > span {
  top: 23px;
  left: 24px;
}

.sector-meta h3 {
  font-size: clamp(29px, 2.35vw, 38px);
  line-height: 1.08;
}

.sector-meta p {
  margin: 12px 0 19px;
  color: rgba(255, 255, 255, .67);
  font-size: 13px;
  line-height: 1.7;
}

.sector-meta button {
  padding-bottom: 5px;
  color: rgba(255, 255, 255, .82);
  font-size: 11px;
}

@media (max-width: 1180px) {
  .hero-project-visual figcaption {
    right: 32px;
  }

  .hero-copy {
    width: min(690px, 61vw);
  }

  .about-layout {
    grid-template-columns: 56px minmax(0, 1fr) 156px;
    gap: 34px;
  }

  .about-portrait-compact {
    width: 156px;
  }

  .sector-card {
    min-height: 320px;
  }

  .sector-meta {
    padding: 22px 20px 21px;
  }

  .sector-meta > span {
    top: 20px;
    left: 20px;
  }
}

@media (max-width: 920px) {
  .hero {
    min-height: 780px;
  }

  .hero-project-visual {
    inset: 0 0 0 45%;
  }

  .hero-project-visual figcaption {
    width: min(310px, 42vw);
  }

  .hero-inner {
    min-height: 780px;
    padding-top: calc(var(--header-h) + 56px);
  }

  .hero-copy {
    width: min(620px, 68vw);
  }

  .hero-stats {
    margin-top: 34px;
  }

  .about-layout {
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
  }

  .about-main {
    grid-column: 2;
  }

  .about-portrait-compact {
    grid-column: 2;
    width: 146px;
    margin-top: -4px;
    justify-self: end;
  }

  .sector-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sector-card {
    min-height: 330px;
    aspect-ratio: 5 / 4;
  }
}

@media (max-width: 680px) {
  .hero {
    min-height: 760px;
  }

  .hero-project-visual {
    inset: var(--header-h) 0 auto;
    width: 100%;
    height: 248px;
  }

  .hero-project-visual img {
    object-position: 50% 48%;
    filter: contrast(1.03) brightness(.78) saturate(.88);
  }

  .hero-project-visual::after {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, .04) 0%, rgba(7, 7, 8, .08) 48%, rgba(7, 7, 8, .94) 100%),
      linear-gradient(90deg, rgba(7, 7, 8, .18), transparent 70%);
  }

  .hero-project-visual figcaption {
    left: 16px;
    right: 16px;
    bottom: 13px;
    width: auto;
    padding: 11px 13px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: end;
    gap: 4px 12px;
    background: rgba(8, 8, 9, .58);
  }

  .hero-project-visual figcaption > span {
    grid-column: 1 / -1;
    font-size: 7px;
  }

  .hero-project-visual figcaption strong {
    margin-top: 1px;
    font-size: 12px;
  }

  .hero-project-visual figcaption button {
    margin-top: 0;
    font-size: 9px;
    white-space: nowrap;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(7, 7, 8, .02) 0%, rgba(7, 7, 8, .05) 28%, rgba(7, 7, 8, .94) 49%, #070708 64%),
      linear-gradient(90deg, rgba(7, 7, 8, .2), transparent);
  }

  .hero-grid {
    opacity: .11;
    background-size: 58px 58px;
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 48%, #000 100%);
    mask-image: linear-gradient(180deg, transparent 0%, #000 48%, #000 100%);
  }

  .hero-inner {
    min-height: 760px;
    padding-top: 314px;
    padding-bottom: 32px;
    justify-content: flex-start;
  }

  .hero-copy {
    width: 100%;
  }

  .hero h1 .name {
    font-size: clamp(56px, 17vw, 76px);
  }

  .hero h1 .role {
    font-size: clamp(20px, 5.9vw, 28px);
    white-space: normal;
  }

  .hero-lead {
    margin-top: 18px;
    line-height: 1.72;
  }

  .hero-tags {
    margin-top: 15px;
    gap: 7px;
  }

  .hero-tags span {
    padding: 5px 8px;
    font-size: 9px;
  }

  .hero-cta {
    margin-top: 20px;
  }

  .hero-stats {
    margin-top: 24px;
  }

  .hero-stats div {
    padding: 12px 8px;
  }

  .section-about {
    padding-top: 78px;
    padding-bottom: 78px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-main,
  .about-portrait-compact {
    grid-column: 1;
  }

  .about-portrait-compact {
    width: 108px;
    margin-top: 0;
    justify-self: end;
  }

  .about-portrait-compact figcaption {
    left: 9px;
    right: 9px;
    bottom: 8px;
  }

  .about-portrait-compact figcaption strong {
    font-size: 10px;
  }

  .about-portrait-compact figcaption span {
    font-size: 6px;
  }

  .section-sectors {
    padding-top: 76px;
    padding-bottom: 82px;
  }

  .section-sectors .section-head {
    margin-bottom: 30px;
  }

  .sector-list {
    gap: 9px;
  }

  .sector-card {
    min-height: 246px;
    aspect-ratio: 3 / 4;
  }

  .sector-meta {
    padding: 18px 15px 16px;
  }

  .sector-meta > span {
    top: 15px;
    left: 15px;
    font-size: 7px;
    letter-spacing: .11em;
  }

  .sector-meta h3 {
    font-size: clamp(23px, 7vw, 29px);
  }

  .sector-meta p {
    display: none;
  }

  .sector-meta button {
    margin-top: 12px;
    font-size: 9px;
    letter-spacing: .03em;
  }

  .sector-meta button i {
    margin-left: 6px;
  }
}

/* Final compacting pass for wide screens. */
@media (min-width: 921px) {
  .sector-card {
    min-height: 330px;
    aspect-ratio: 10 / 11;
  }
}


/* MULTILINGUAL EDITION — Chinese / Japanese / English */
html[lang="ja"] body {
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Yu Gothic", "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
}

html[lang="en"] body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, .42);
  font: 700 10px/1 Arial, sans-serif;
  letter-spacing: .08em;
  white-space: nowrap;
}

.language-switcher a {
  min-width: 20px;
  padding: 7px 2px;
  color: rgba(255, 255, 255, .58);
  text-align: center;
  transition: color .2s ease, transform .2s ease;
}

.language-switcher a:hover,
.language-switcher a.is-active {
  color: var(--accent);
  transform: translateY(-1px);
}

.language-switcher a.is-active {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.language-switcher span {
  color: rgba(255, 255, 255, .2);
}

html[lang="ja"] .desktop-nav,
html[lang="ja"] .header-contact,
html[lang="ja"] .hero-tags span,
html[lang="ja"] .button,
html[lang="ja"] .work-filters button {
  letter-spacing: .035em;
}

html[lang="en"] .desktop-nav,
html[lang="en"] .header-contact,
html[lang="en"] .hero-tags span,
html[lang="en"] .button,
html[lang="en"] .work-filters button {
  letter-spacing: .045em;
}

html[lang="ja"] .section-title {
  line-height: 1.18;
  letter-spacing: -.035em;
  word-break: auto-phrase;
}

html[lang="en"] .section-title {
  line-height: 1.08;
  letter-spacing: -.045em;
}

html[lang="ja"] .hero h1 .role {
  font-size: clamp(24px, 2.75vw, 44px);
  letter-spacing: .01em;
  line-height: 1.18;
}

html[lang="en"] .hero-copy {
  width: min(790px, 61vw);
}

html[lang="en"] .hero h1 .name {
  font-size: clamp(58px, 6.7vw, 106px);
  letter-spacing: -.045em;
  line-height: .96;
}

html[lang="en"] .hero h1 .role {
  max-width: 760px;
  font-size: clamp(22px, 2.25vw, 37px);
  line-height: 1.15;
  letter-spacing: .005em;
}

html[lang="en"] .hero-lead {
  max-width: 720px;
}

html[lang="ja"] .about-copy,
html[lang="ja"] .section-intro,
html[lang="ja"] .contact-lead,
html[lang="ja"] .capability-card p,
html[lang="ja"] .method-grid p,
html[lang="ja"] .process-list p {
  line-height: 1.82;
}

html[lang="en"] .about-copy,
html[lang="en"] .section-intro,
html[lang="en"] .contact-lead,
html[lang="en"] .capability-card p,
html[lang="en"] .method-grid p,
html[lang="en"] .process-list p {
  line-height: 1.72;
}

html[lang="ja"] .project-card-meta h3 {
  line-height: 1.32;
}

html[lang="en"] .project-card-meta h3 {
  font-size: clamp(21px, 1.65vw, 28px);
  line-height: 1.16;
}

html[lang="en"] .project-card.has-long-title .project-card-meta h3 {
  font-size: clamp(18px, 1.25vw, 23px);
  line-height: 1.24;
}

html[lang="en"] .project-card-meta p,
html[lang="ja"] .project-card-meta p {
  letter-spacing: .09em;
}

html[lang="en"] .sector-meta h3 {
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.05;
}

html[lang="ja"] .sector-meta h3 {
  line-height: 1.16;
}

html[lang="en"] .mobile-menu nav a {
  font-size: clamp(27px, 6vw, 48px);
}

@media (max-width: 1180px) {
  .header-actions {
    gap: 14px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    gap: 16px;
  }

  .header-actions {
    gap: 9px;
  }

  .language-switcher {
    gap: 4px;
    font-size: 9px;
  }

  .language-switcher a {
    min-width: 18px;
    padding: 7px 1px;
  }

  html[lang="en"] .brand-copy strong,
  html[lang="ja"] .brand-copy strong {
    letter-spacing: .08em;
  }

  html[lang="en"] .hero h1 .name {
    font-size: clamp(43px, 13.5vw, 62px);
  }

  html[lang="en"] .hero h1 .role {
    font-size: clamp(17px, 4.9vw, 23px);
    line-height: 1.22;
  }

  html[lang="ja"] .hero h1 .role {
    font-size: clamp(18px, 5.1vw, 25px);
    line-height: 1.24;
  }

  html[lang="en"] .hero-tags span {
    font-size: 8px;
  }

  html[lang="en"] .section-title,
  html[lang="ja"] .section-title {
    font-size: clamp(32px, 10.2vw, 48px);
  }

  html[lang="en"] .sector-meta h3 {
    font-size: 21px;
  }

  html[lang="en"] .project-card-meta h3,
  html[lang="en"] .project-card.has-long-title .project-card-meta h3 {
    font-size: clamp(20px, 6vw, 27px);
    line-height: 1.18;
  }
}

/* English mobile copy needs the full content column. */
@media (max-width: 680px) {
  html[lang="en"] .hero,
  html[lang="en"] .hero-inner {
    min-height: 900px;
  }

  html[lang="en"] .hero-copy {
    width: 100%;
  }

  html[lang="en"] .hero-lead br {
    display: block;
  }
}
