:root {
  --bg: #f5f7fb;
  --bg-alt: #eef2f9;
  --bg-soft: #fafdff;
  --surface: #ffffff;
  --surface-2: #f2f5fb;
  --surface-border: #dbe3f0;
  --text: #111a2b;
  --text-soft: #4c5870;
  --text-muted: #6a7893;
  --accent: #2160ff;
  --accent-strong: #0f46cf;
  --accent-soft: rgba(33, 96, 255, 0.12);
  --ok: #198754;
  --danger: #cb3a43;
  --shadow-sm: 0 8px 28px rgba(42, 56, 96, 0.08);
  --shadow-md: 0 18px 44px rgba(36, 52, 94, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1260px;
  --page-gutter: 30px;
  --section-pad: 112px;
  --header-height: 86px;
  --title-tight: -0.055em;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Sora", "Noto Sans KR", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 0%, rgba(96, 141, 255, 0.22), transparent 28%),
    radial-gradient(circle at 90% 22%, rgba(95, 230, 255, 0.14), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fd 30%, #f3f7fd 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-page="home"] {
  background:
    radial-gradient(circle at 12% 6%, rgba(72, 117, 255, 0.18), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(113, 214, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfcff 0%, #f4f7fc 50%, #eff4fb 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(17, 26, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 26, 43, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 88%);
}

body[data-page="home"]::before {
  background-size: 120px 120px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 82%);
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - (var(--page-gutter) * 2)), var(--max-width));
  margin: 0 auto;
}

.section {
  padding: var(--section-pad) 0;
}

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

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  max-width: 940px;
}

.section-heading h2,
.section-heading h3,
.page-hero h1,
.hero-copy h1 {
  margin: 0;
  letter-spacing: var(--title-tight);
  line-height: 0.97;
}

.section-summary,
.page-summary,
.hero-summary,
.text-block p,
.list-copy,
.support-copy,
.company-grid p,
.intro-copy p,
.contact-note,
.faq-list details {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.76;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: currentColor;
  opacity: 0.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-solid {
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  box-shadow: 0 10px 22px rgba(33, 96, 255, 0.28);
}

.button-solid:hover,
.button-solid:focus-visible {
  box-shadow: 0 16px 28px rgba(33, 96, 255, 0.34);
}

.button-ghost {
  color: var(--text);
  border-color: #c7d3e8;
  background: #ffffff;
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: #95add8;
  background: #f8fbff;
}

.link-inline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--accent-strong);
}

.link-inline::after {
  content: "→";
  font-size: 0.92em;
}

.site-shell {
  position: relative;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  .site-shell {
    overflow-x: hidden;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  width: 100%;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(23, 39, 70, 0.1);
  box-shadow: 0 8px 24px rgba(37, 56, 94, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: var(--header-height);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-right: auto;
}

.brand-mark {
  font-size: clamp(2.1rem, 3.2vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 1;
}

.brand-copy {
  max-width: 250px;
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid #cfdbef;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: var(--shadow-sm);
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background-color 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.social-link:hover,
.social-link:focus-visible {
  transform: translateY(-1px);
  border-color: #9db8ea;
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 12px 22px rgba(54, 86, 157, 0.18);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.site-nav-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  position: relative;
  color: var(--text-soft);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 170ms ease;
}

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

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active {
  color: var(--text);
}

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

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid #c5d1e8;
  background: #ffffff;
  color: var(--text);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding-top: 42px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 2% 0 auto auto;
  width: min(40vw, 520px);
  height: min(40vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(76, 140, 255, 0.16), transparent 70%);
  pointer-events: none;
  filter: blur(10px);
}

.hero-grid,
.page-hero-grid,
.split-grid,
.company-grid,
.contact-grid,
.signal-grid {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  grid-template-areas:
    "copy visual"
    "feature visual";
  align-items: start;
  gap: 28px 34px;
}

.hero-copy {
  grid-area: copy;
  display: grid;
  gap: 18px;
  align-content: start;
  padding-top: 18px;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.98;
  word-break: keep-all;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: block;
}

.hero-line {
  white-space: nowrap;
}

.hero-line-accent {
  background: linear-gradient(135deg, #0f46cf, #4e9bff 55%, #5cb8d8);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-summary {
  max-width: 34ch;
  font-size: 1.02rem;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-row,
.meta-row,
.hero-feature-top {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #cad7ef;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.tag-link {
  position: relative;
  transition:
    transform 170ms ease,
    border-color 170ms ease,
    background-color 170ms ease,
    color 170ms ease,
    box-shadow 170ms ease;
}

.tag-link::after {
  content: attr(data-tag-hint);
  position: absolute;
  left: 12px;
  bottom: calc(100% + 8px);
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(17, 26, 43, 0.9);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(4px);
  pointer-events: none;
  transition:
    opacity 170ms ease,
    transform 170ms ease;
}

.tag-link:hover,
.tag-link:focus-visible {
  transform: translateY(-1px);
  border-color: #9db8ea;
  background: #ffffff;
  color: var(--accent-strong);
  box-shadow: 0 10px 18px rgba(46, 79, 149, 0.12);
}

.tag-link:hover::after,
.tag-link:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.hero-feature {
  grid-area: feature;
  padding: 28px;
  border: 1px solid rgba(205, 217, 237, 0.92);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 36px rgba(33, 53, 100, 0.1);
  backdrop-filter: blur(14px);
  display: grid;
  gap: 14px;
}

.hero-feature-kicker {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--accent-strong);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero-feature h2 {
  margin: 0;
  font-size: clamp(1.55rem, 2.6vw, 2.28rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.hero-feature p {
  margin: 0;
  color: var(--text-soft);
}

.hero-feature-summary {
  max-width: 42ch;
}

.hero-feature-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-feature-points span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero-visual {
  grid-area: visual;
  display: grid;
  gap: 16px;
}

.hero-frame,
.page-hero-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid #d8e1f0;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-md);
}

.hero-frame {
  width: 100%;
  max-width: none;
  min-height: clamp(420px, 46vw, 620px);
  aspect-ratio: auto;
  margin-inline: 0;
}

.hero-image,
.page-hero-image {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  transition: background-image 180ms ease;
}

.hero-image::after,
.page-hero-image::after,
.portfolio-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 18, 31, 0.04), rgba(15, 28, 52, 0.22));
}

.hero-visual-panel {
  display: grid;
  gap: 14px;
  margin-top: 4px;
}

.hero-visual-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.hero-visual-head p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-visual-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hero-visual-link {
  display: grid;
  gap: 6px;
  min-height: 94px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(211, 222, 239, 0.94);
  box-shadow: 0 10px 24px rgba(40, 60, 110, 0.08);
  transition:
    transform 170ms ease,
    background-color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease;
}

.hero-visual-link:hover,
.hero-visual-link:focus-visible,
.hero-visual-link.is-active {
  transform: translateY(-1px);
  background: #ffffff;
  border-color: #b5c7e8;
  box-shadow: 0 16px 28px rgba(42, 72, 140, 0.12);
}

.hero-visual-link strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.hero-visual-link span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

.hero-support {
  grid-area: support;
}

.hero-project-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.hero-project-card {
  overflow: hidden;
  display: grid;
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  transition:
    transform 170ms ease,
    box-shadow 170ms ease,
    border-color 170ms ease;
}

.hero-project-card:hover,
.hero-project-card:focus-visible {
  transform: translateY(-2px);
  border-color: #b8cae7;
  box-shadow: 0 16px 32px rgba(42, 63, 110, 0.14);
}

.hero-project-thumb {
  display: block;
  min-height: 200px;
  background-position: center;
  background-size: cover;
}

.hero-project-body {
  display: grid;
  gap: 6px;
  padding: 16px 18px 18px;
}

.hero-project-body strong {
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-project-body span {
  color: var(--text-soft);
  font-size: 0.82rem;
}

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

.stat-card,
.statement-card,
.service-card,
.portfolio-card,
.capability-card,
.process-card,
.guide-card,
.company-card,
.contact-card,
.metric,
.list-item,
.signal-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.stat-card,
.statement-card,
.capability-card,
.process-card,
.guide-card,
.company-card,
.contact-card,
.metric,
.list-item,
.signal-card {
  padding: 22px;
}

.stat-card strong,
.metric strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.stat-card span,
.metric span {
  color: var(--text-soft);
}

.statement-card {
  display: grid;
  gap: 14px;
  padding: 34px;
  background:
    radial-gradient(circle at 6% 16%, rgba(36, 98, 255, 0.11), transparent 52%),
    #ffffff;
}

.statement-card h2 {
  margin: 0;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.manifesto-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 18px;
  align-items: stretch;
}

.manifesto-panel {
  padding: 42px;
}

.manifesto-panel h2 {
  max-width: 9ch;
  font-size: clamp(2.3rem, 4.8vw, 4.8rem);
}

.manifesto-aside,
.journal-card {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(12px);
}

.manifesto-aside {
  display: grid;
  gap: 18px;
  padding: 30px;
}

.manifesto-list {
  display: grid;
  gap: 14px;
}

.manifesto-list article {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid rgba(210, 221, 239, 0.9);
}

.manifesto-list article:first-child {
  padding-top: 0;
  border-top: 0;
}

.manifesto-list strong {
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.manifesto-list p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.signal-section {
  padding-top: 40px;
}

.signal-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: start;
}

.signal-intro {
  display: grid;
  gap: 12px;
}

.signal-panels {
  display: grid;
  gap: 12px;
}

.pill-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill-cloud span {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-soft);
  border: 1px solid #cfdbef;
  background: var(--surface-2);
}

.service-grid,
.support-grid,
.capability-grid,
.process-grid,
.company-grid,
.contact-grid {
  display: grid;
  gap: 14px;
}

.service-grid,
.support-grid,
.capability-grid,
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-grid-compact {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.portfolio-card {
  overflow: hidden;
}

.service-card-body,
.portfolio-card-body {
  padding: 22px;
  display: grid;
  gap: 13px;
}

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

.service-index {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.service-card h3,
.portfolio-card h3,
.capability-card h3,
.process-card h3,
.guide-card h3,
.signal-card h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
  line-height: 1.12;
}

.service-card p,
.portfolio-card p,
.capability-card p,
.process-card p,
.guide-card p,
.signal-card p,
.company-card p,
.contact-card p {
  margin: 0;
  color: var(--text-soft);
}

.service-card:hover,
.portfolio-card:hover,
.guide-card:hover {
  box-shadow: 0 14px 34px rgba(42, 62, 108, 0.18);
}

.service-card-quiet {
  background: rgba(255, 255, 255, 0.84);
  border-color: rgba(211, 223, 240, 0.94);
}

.service-card-quiet .service-card-body {
  min-height: 100%;
  padding: 26px;
  gap: 18px;
}

.service-card-quiet h3 {
  font-size: 1.36rem;
}

.service-card-quiet p {
  line-height: 1.72;
}

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

.portfolio-showcase {
  padding-top: 60px;
}

.portfolio-showcase .section-heading,
#services .section-heading {
  max-width: 760px;
}

.portfolio-grid-curated {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-card-media {
  position: relative;
  min-height: 310px;
  background-position: center;
  background-size: cover;
}

.portfolio-card-featured .portfolio-card-media {
  min-height: 370px;
}

.portfolio-card-featured {
  grid-column: span 2;
}

.portfolio-card-editorial {
  background: rgba(255, 255, 255, 0.92);
}

.portfolio-card-editorial .portfolio-card-media {
  min-height: 340px;
}

.portfolio-card-featured.portfolio-card-editorial .portfolio-card-media {
  min-height: 440px;
}

.portfolio-card-editorial .portfolio-card-body {
  gap: 12px;
}

.portfolio-card-editorial h3 {
  font-size: 1.4rem;
  line-height: 1.08;
}

.portfolio-lead {
  color: var(--accent-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-card-body .meta-row {
  color: var(--text-muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #c5d3ea;
  background: #ffffff;
  color: var(--text-soft);
  transition:
    background-color 160ms ease,
    color 160ms ease,
    border-color 160ms ease;
}

.filter-button.is-active,
.filter-button:hover,
.filter-button:focus-visible {
  background: var(--accent-soft);
  border-color: rgba(33, 96, 255, 0.4);
  color: var(--accent-strong);
}

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

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

.page-hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: end;
}

.page-hero-copy {
  display: grid;
  gap: 20px;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.8rem);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.page-hero-frame {
  min-height: 420px;
}

.page-hero-panel {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 340px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(194, 207, 232, 0.9);
  backdrop-filter: blur(8px);
}

.split-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.intro-copy,
.list-block {
  display: grid;
  gap: 14px;
}

.list-grid,
.metric-grid,
.logo-cloud,
.faq-list {
  display: grid;
  gap: 12px;
}

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

.logo-cloud {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #cad8ee;
  border-radius: 999px;
  background: #ffffff;
  color: var(--text-soft);
  font-weight: 600;
}

.faq-list details {
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  padding: 16px 18px;
}

.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  color: var(--text);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin-top: 12px;
}

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

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

.field,
.field-full {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.field-full label {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.field input,
.field select,
.field textarea,
.field-full textarea {
  width: 100%;
  border: 1px solid #c9d7ee;
  border-radius: 12px;
  background: #ffffff;
  color: var(--text);
  padding: 13px 14px;
}

.field textarea,
.field-full textarea {
  min-height: 170px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder,
.field-full textarea::placeholder {
  color: #8191ad;
}

.form-status {
  min-height: 22px;
  color: var(--accent-strong);
  font-size: 0.9rem;
}

.cta-band {
  display: grid;
  gap: 14px;
  padding: 34px;
  border-radius: var(--radius-xl);
  border: 1px solid #cfdcf1;
  background:
    radial-gradient(circle at 0% 10%, rgba(43, 118, 255, 0.12), transparent 48%),
    linear-gradient(145deg, #ffffff, #f2f7ff);
  box-shadow: var(--shadow-sm);
}

.journal-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px;
  padding: 38px;
}

.journal-copy {
  display: grid;
  gap: 14px;
  max-width: 700px;
}

.journal-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.journal-copy p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.72;
}

.cta-band-minimal {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.cta-band-minimal p {
  max-width: 42ch;
}

.site-footer {
  padding: 34px 0 44px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 18px;
  border-top: 1px solid #d2ddef;
  padding-top: 22px;
}

.footer-brand,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  font-size: 1rem;
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.footer-links a {
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--accent-strong);
}

.label {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  border: 1px solid #c7d7ef;
  background: var(--surface-2);
  color: var(--accent-strong);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

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

body.js-ready .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

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

/* About page organization map blocks */
.org-switcher {
  border: 1px solid #d2ddef;
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.org-interactive-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 20px 22px;
  border-bottom: 1px solid #dde5f2;
  background: #f8fbff;
}

.org-route {
  color: var(--text-soft);
  font-weight: 600;
}

.org-switch,
.org-map-chip {
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid #c9d8ee;
  background: #ffffff;
  color: var(--text-soft);
}

.org-switch.is-active,
.org-map-chip.is-active {
  color: var(--accent-strong);
  border-color: rgba(33, 96, 255, 0.5);
  background: rgba(33, 96, 255, 0.1);
}

.org-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  align-items: start;
  gap: 24px;
  padding: 0;
}

.org-map {
  border: 1px solid #d4deef;
  border-radius: var(--radius-lg);
  background: #f4f8ff;
  padding: 22px;
  box-shadow: var(--shadow-sm);
}

.org-map-head {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.org-map-head h3,
.org-map-head p {
  margin: 0;
}

.org-map-canvas {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #cfe0f5;
  border-radius: 24px;
  background:
    radial-gradient(circle at 18% 70%, rgba(84, 144, 255, 0.24), transparent 24%),
    radial-gradient(circle at 84% 26%, rgba(31, 131, 174, 0.18), transparent 20%),
    linear-gradient(135deg, rgba(94, 140, 255, 0.13), rgba(45, 124, 255, 0.06)),
    #ffffff;
}

.org-map-marker {
  position: absolute;
  width: min(270px, calc(100% - 44px));
  height: auto;
  padding: 16px 18px;
  border-radius: 24px;
  border: 1px solid #d6e2f5;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 34px rgba(40, 73, 137, 0.16);
  display: grid;
  gap: 5px;
  text-align: left;
  color: var(--text);
}

.org-map-marker-paju {
  left: 24px;
  bottom: 28px;
}

.org-map-marker-kintex {
  right: 24px;
  top: 28px;
}

.org-map-marker.is-active {
  border-color: rgba(33, 96, 255, 0.45);
  box-shadow: 0 24px 38px rgba(33, 96, 255, 0.18);
}

.org-map-marker-label {
  position: static;
  font-size: 0.72rem;
  white-space: normal;
  color: var(--accent-strong);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.org-map-marker strong {
  font-size: 1.04rem;
  line-height: 1.2;
}

.org-map-marker small {
  color: var(--text-soft);
  line-height: 1.5;
}

.org-map-axis {
  position: absolute;
  right: 18px;
  top: 14px;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.org-map-axis-south {
  top: auto;
  bottom: 10px;
}

.org-map-board {
  display: grid;
  gap: 14px;
  margin-top: 0;
}

.org-map-legend {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 4px;
}

.org-legend-item {
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 16px;
  border: 1px solid #d8e2f3;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.82);
  color: var(--text-soft);
  font-size: 0.82rem;
}

.org-legend-item::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #84a8ff;
}

.org-legend-item strong,
.org-legend-item p {
  margin: 0;
}

.org-panel {
  display: none;
  border: 1px solid #d2ddef;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.org-panel.is-active {
  display: grid;
  gap: 14px;
}

.org-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.org-panel-kicker {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.org-location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.org-location-card {
  border: 1px solid #d8e2f1;
  border-radius: var(--radius-md);
  background: #fbfdff;
  padding: 16px;
  display: grid;
  gap: 10px;
}

.org-location-row {
  display: grid;
  gap: 5px;
}

.org-location-row strong {
  font-size: 0.8rem;
  color: var(--accent-strong);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.org-location-row span {
  color: var(--text-soft);
  line-height: 1.5;
}

.org-map-embed {
  overflow: hidden;
  border: 1px solid #d9e2f2;
  border-radius: var(--radius-md);
}

.org-map-embed iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
}

.org-points {
  margin: 0;
  padding-left: 18px;
  color: var(--text-soft);
  display: grid;
  gap: 8px;
}

.org-map-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.org-map-tags span {
  min-height: 30px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid #cfe0f3;
  color: var(--text-soft);
  font-size: 0.76rem;
}

.org-map-tags-paju span {
  background: #f4f8ff;
}

.org-map-tags-kintex span {
  background: #f7f7ff;
}

.org-route-paju {
  position: absolute;
  left: 150px;
  right: 220px;
  bottom: 112px;
  height: 2px;
  background: linear-gradient(90deg, rgba(38, 87, 197, 0.35), rgba(38, 87, 197, 0));
  transform: rotate(-16deg);
  transform-origin: left center;
}

.org-route-kintex {
  position: absolute;
  left: 240px;
  right: 136px;
  top: 106px;
  height: 2px;
  background: linear-gradient(90deg, rgba(31, 131, 174, 0.35), rgba(31, 131, 174, 0));
  transform: rotate(13deg);
  transform-origin: left center;
}

@media (max-width: 1120px) {
  :root {
    --section-pad: 90px;
  }

  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .signal-grid,
  .company-grid,
  .contact-grid,
  .footer-grid,
  .org-location-grid,
  .org-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    grid-template-areas:
      "copy"
      "visual"
      "feature";
  }

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

  .manifesto-grid,
  .journal-card {
    grid-template-columns: 1fr;
  }

  .service-grid-compact,
  .portfolio-grid-curated {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-visual-links,
  .hero-project-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .portfolio-card-featured {
    grid-column: span 1;
  }

  .portfolio-card-featured.portfolio-card-editorial {
    grid-column: span 2;
  }

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

  .hero-frame,
  .page-hero-frame {
    min-height: 420px;
  }

  .hero-frame {
    min-height: 480px;
  }

  .org-map-legend {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: 18px;
    --section-pad: 76px;
  }

  .brand-copy,
  .site-nav-wrap .button {
    display: none;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    gap: 10px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .site-nav-wrap {
    position: fixed;
    top: 72px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: var(--radius-lg);
    border: 1px solid #d4deef;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 14px 34px rgba(31, 53, 100, 0.22);
    backdrop-filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition:
      opacity 170ms ease,
      transform 170ms ease;
  }

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

  .site-nav {
    display: grid;
    gap: 16px;
  }

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

  .site-nav-wrap .button {
    display: inline-flex;
  }

  .header-tools {
    gap: 10px;
  }

  .header-socials {
    gap: 6px;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .service-grid,
  .support-grid,
  .capability-grid,
  .process-grid,
  .stats-strip,
  .hero-project-strip,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid-compact,
  .portfolio-grid-curated {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .stack-actions {
    flex-direction: column;
  }

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

  .org-map {
    padding: 18px;
  }

  .org-map-canvas {
    min-height: 280px;
  }

  .org-map-marker {
    width: calc(100% - 32px);
    left: 16px;
    right: 16px;
  }

  .org-map-marker-paju {
    top: 24px;
    bottom: auto;
  }

  .org-map-marker-kintex {
    top: auto;
    bottom: 24px;
  }

  .org-route-paju,
  .org-route-kintex {
    display: none;
  }
}

@media (max-width: 560px) {
  .header-tools {
    gap: 8px;
  }

  .social-link {
    width: 40px;
    height: 40px;
  }

  .button {
    width: 100%;
  }

  .hero-copy h1,
  .page-hero h1 {
    line-height: 1.02;
  }

  .hero-feature,
  .statement-card,
  .manifesto-aside,
  .journal-card,
  .cta-band {
    padding: 20px;
  }

  .hero-frame {
    min-height: 280px;
  }

  .hero-visual-panel {
    margin-top: 12px;
  }

  .hero-visual-head {
    align-items: start;
    flex-direction: column;
  }

  .hero-project-thumb {
    min-height: 160px;
  }
}

/* Project editorial redesign */

.project-home-page,
.project-wall-page,
.project-detail-page {
  background: #ffffff;
  color: #141414;
}

.project-home-page .site-shell,
.project-wall-page .site-shell,
.project-detail-page .site-shell {
  background: #ffffff;
}

.project-home-page::before,
.project-wall-page::before,
.project-detail-page::before {
  display: none;
}

.project-home-page .container,
.project-wall-page .container,
.project-detail-page .container {
  max-width: 1760px;
}

.project-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.project-header .header-inner {
  min-height: 96px;
  width: calc(100% - 52px);
  max-width: none;
  margin: 0 auto;
}

.project-brand {
  gap: 18px;
}

.project-brand .brand-mark {
  font-size: clamp(2.4rem, 4vw, 4rem);
  letter-spacing: -0.08em;
}

.project-header .brand-copy {
  max-width: 340px;
  color: rgba(20, 20, 20, 0.56);
  font-size: 0.78rem;
  line-height: 1.45;
}

.project-header .site-nav-wrap {
  position: static;
  inset: auto;
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  backdrop-filter: none;
}

.project-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.project-nav a {
  position: relative;
  padding-bottom: 2px;
  color: rgba(20, 20, 20, 0.56);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

.project-nav a:hover,
.project-nav a.is-active {
  color: #141414;
}

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

.project-home-main,
.project-wall-main,
.project-detail-main {
  padding-top: 8px;
}

.project-mosaic-hero {
  padding: clamp(26px, 4vw, 54px) 0 24px;
}

.project-mosaic-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 98px;
  gap: 10px;
}

.project-mosaic-card {
  position: relative;
  display: flex;
  overflow: hidden;
  min-height: 0;
  padding: 24px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), transparent 40%),
    #050505;
  color: #f5f5f2;
}

.project-mosaic-card.is-wide {
  grid-column: span 5;
}

.project-mosaic-title {
  grid-column: span 5;
  grid-row: span 2;
  align-items: flex-end;
  justify-content: space-between;
  background:
    linear-gradient(122deg, rgba(255, 255, 255, 0.04) 0%, transparent 42%),
    linear-gradient(180deg, #141416 0%, #0c0c0d 100%);
}

.project-mosaic-title .project-mosaic-label {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.project-mosaic-title strong {
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 600;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.project-mosaic-emblem {
  grid-column: span 5;
  grid-row: span 2;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.project-mosaic-ring {
  width: 144px;
  height: 144px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.03),
    0 0 44px rgba(255, 255, 255, 0.16);
}

.project-mosaic-emblem p {
  margin: 0;
  text-align: center;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.16em;
}

.project-mosaic-meta {
  grid-column: span 2;
  grid-row: span 2;
  flex-direction: column;
  justify-content: space-between;
}

.project-mosaic-meta span,
.project-mosaic-location span,
.project-mosaic-bottom span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-mosaic-meta strong,
.project-mosaic-location strong,
.project-mosaic-bottom strong {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.project-mosaic-image {
  grid-column: span 3;
  grid-row: span 3;
  padding: 0;
}

.project-mosaic-image-wide {
  grid-column: span 5;
  grid-row: span 3;
  padding: 0;
}

.project-mosaic-gridmark {
  grid-column: span 4;
  grid-row: span 3;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) 0),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) 0),
    #070708;
  background-size: 56px 56px;
}

.project-mosaic-gridmark span {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}

.project-mosaic-location {
  grid-column: span 3;
  grid-row: span 2;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.project-mosaic-bottom {
  grid-column: span 5;
  grid-row: span 2;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.project-mosaic-image img,
.project-mosaic-image-wide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) contrast(1.02);
}

.project-detail-gallery {
  padding: clamp(28px, 5vw, 72px) 0 108px;
}

.project-detail-gallery-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
  padding-top: 26px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.project-detail-gallery-head h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.4rem, 5.4vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.project-detail-gallery-head p {
  max-width: 380px;
  margin: 0;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.92rem;
  line-height: 1.8;
}

.project-detail-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.project-detail-gallery-item {
  position: relative;
  grid-column: span 4;
  margin: 0;
  overflow: hidden;
  background: #e5e5e1;
}

.project-detail-gallery-item.is-wide {
  grid-column: span 8;
}

.project-detail-gallery-item.is-half {
  grid-column: span 6;
}

.project-detail-gallery-item.is-tall {
  grid-row: span 2;
}

.project-detail-gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  display: block;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.02);
  transition:
    transform 420ms ease,
    filter 420ms ease;
}

.project-detail-gallery-item:hover img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.04);
}

.project-detail-gallery-item figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.5);
}

.home-scrolly {
  padding: 10px 0 140px;
}

.home-scrolly-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.62fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
}

.home-scrolly-stage-wrap {
  position: relative;
}

.home-scrolly-stage {
  position: sticky;
  top: 102px;
  display: block;
  height: calc(100vh - 132px);
  overflow: hidden;
  background: #070809;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
}

.home-stage-media,
.home-stage-scrim {
  position: absolute;
  inset: 0;
}

.home-stage-media {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: scale(1.12);
  opacity: 0;
  transition:
    opacity 500ms ease,
    transform 1200ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-stage-media.is-visible {
  opacity: 1;
  transform: scale(1);
}

.home-stage-scrim {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.38) 100%);
  z-index: 1;
}

.home-stage-caption {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  z-index: 2;
  display: grid;
  gap: 8px;
  color: #fff;
}

.home-stage-caption span,
.home-stage-caption em {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-stage-caption strong {
  font-size: clamp(2.4rem, 4.4vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

.home-scrolly-steps {
  display: grid;
  gap: 20vh;
  padding-top: 16vh;
  padding-bottom: 38vh;
}

.home-scrolly-step {
  max-width: 420px;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 36px rgba(16, 16, 16, 0.06);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease;
}

.home-scrolly-step.is-active {
  transform: translateY(-6px);
  border-color: rgba(83, 127, 222, 0.34);
  background: rgba(255, 255, 255, 0.88);
}

.home-step-kicker {
  margin: 0 0 16px;
  color: rgba(20, 20, 20, 0.44);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.home-scrolly-step h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.home-scrolly-step p:last-child {
  margin: 0;
  color: rgba(20, 20, 20, 0.68);
  font-size: 0.98rem;
  line-height: 1.9;
}

.interaction-presets {
  padding: 0 0 140px;
}

.interaction-presets-head {
  margin-bottom: 26px;
  max-width: 760px;
}

.interaction-presets-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.interaction-preset-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.interaction-preset-button {
  padding: 12px 18px;
  border: 1px solid rgba(20, 20, 20, 0.12);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(20, 20, 20, 0.68);
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.interaction-preset-button.is-active {
  border-color: rgba(83, 127, 222, 0.38);
  color: #141414;
  background: #fff;
}

.interaction-preset-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 26px;
  align-items: stretch;
}

.interaction-preset-panel.is-active {
  display: grid;
}

.interaction-preset-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: #0b0c10;
}

.interaction-preset-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.preset-visual-sticky img {
  transform: scale(1.08);
}

.preset-visual-crossfade img {
  position: absolute;
  inset: 0;
}

.preset-visual-crossfade img:first-child {
  opacity: 0.5;
}

.preset-visual-crossfade img:last-child {
  opacity: 1;
  mix-blend-mode: screen;
}

.preset-visual-panels {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: linear-gradient(180deg, #0e1015 0%, #050607 100%);
}

.preset-visual-panels span {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 100%),
    linear-gradient(160deg, #1a1c23 0%, #08090b 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.preset-visual-panels span:nth-child(1) {
  transform: translateY(0);
}

.preset-visual-panels span:nth-child(2) {
  transform: translateY(34px);
}

.preset-visual-panels span:nth-child(3) {
  transform: translateY(68px);
}

.interaction-preset-copy {
  padding: 30px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: rgba(255, 255, 255, 0.74);
}

.interaction-preset-copy h3 {
  margin: 0 0 14px;
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.interaction-preset-copy p {
  margin: 0;
  color: rgba(20, 20, 20, 0.68);
  line-height: 1.9;
}

.project-kicker {
  margin: 0 0 20px;
  color: rgba(20, 20, 20, 0.44);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-home-intro,
.project-wall-section,
.project-detail-hero {
  padding-top: clamp(32px, 5vw, 76px);
}

.project-home-intro {
  padding-bottom: 36px;
}

.project-home-intro-inner,
.project-wall-intro {
  max-width: 860px;
}

.project-home-intro h1,
.project-wall-intro h1,
.project-detail-hero-copy h1 {
  margin: 0;
  letter-spacing: -0.08em;
  font-weight: 500;
}

.project-home-intro h1,
.project-wall-intro h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 0.95;
}

.project-home-intro p:last-child,
.project-wall-intro p:last-child {
  max-width: 560px;
  margin: 28px 0 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 1.02rem;
  line-height: 1.8;
}

.project-scrub-intro {
  padding: clamp(28px, 5vh, 58px) 0 clamp(20px, 4vh, 40px);
}

.project-scrub-intro .container {
  width: min(calc(100% - 60px), 1480px);
}

.project-scrub-item .container {
  width: min(calc(100% - 44px), 1760px);
}

.project-scrub-intro-inner {
  display: grid;
  gap: 14px;
  max-width: 900px;
}

.project-scrub-intro h1 {
  margin: 0;
  font-size: clamp(4rem, 8.8vw, 8.4rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.085em;
}

.project-scrub-intro p:last-child {
  max-width: 660px;
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 1.02rem;
  line-height: 1.8;
}

.project-scrub-list {
  padding: 0 0 140px;
}

.project-scrub-item {
  min-height: calc(100vh - 10px);
  padding: 0 0 clamp(70px, 12vh, 140px);
}

.project-scrub-item + .project-scrub-item {
  padding-top: clamp(46px, 8vh, 90px);
}

.project-scrub-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 22px;
  margin-bottom: 18px;
}

.project-scrub-head h2 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(2.2rem, 4.8vw, 5.2rem);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -0.075em;
}

.project-scrub-item .hero-scrub-stage {
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 0;
}

.project-scrub-item:first-child .hero-scrub-stage {
  height: auto;
  min-height: 0;
}

.hero-study {
  padding: 0 0 120px;
}

.hero-study .container {
  width: min(calc(100% - 60px), 1480px);
}

.hero-study-head {
  display: grid;
  gap: 18px;
  max-width: 860px;
  margin-bottom: 28px;
}

.hero-study-head h2 {
  margin: 0;
  max-width: 780px;
  font-size: clamp(2.35rem, 5vw, 5.2rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-study-head p:last-child {
  max-width: 650px;
  margin: 0;
  color: rgba(20, 20, 20, 0.62);
  font-size: 1rem;
  line-height: 1.85;
}

.hero-study-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.hero-study-tab {
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(20, 20, 20, 0.13);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: rgba(20, 20, 20, 0.62);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.hero-study-tab:hover,
.hero-study-tab:focus-visible,
.hero-study-tab.is-active {
  color: #111827;
  border-color: rgba(17, 24, 39, 0.28);
  background: #ffffff;
  transform: translateY(-1px);
}

.hero-study-panel {
  display: none;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.34fr);
  gap: 26px;
  align-items: stretch;
}

.hero-study-panel.is-active {
  display: grid;
}

.hero-study-panel-slide {
  grid-template-columns: 1fr;
}

.hero-study-panel-slide .hero-study-copy {
  min-height: 0;
  max-width: 780px;
  padding: 26px 0 0;
  border: 0;
  background: transparent;
}

.hero-study-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 420px;
  padding: 34px;
  border: 1px solid rgba(20, 20, 20, 0.11);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72)),
    radial-gradient(circle at 0 0, rgba(33, 96, 255, 0.14), transparent 34%);
}

.hero-study-copy h3 {
  margin: 0 0 16px;
  font-size: clamp(1.65rem, 2.2vw, 2.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.06em;
}

.hero-study-copy p:last-child {
  margin: 0;
  color: rgba(20, 20, 20, 0.64);
  line-height: 1.84;
}

.hero-slide-stage,
.hero-split-grid,
.hero-reel-stage {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: #090b10;
}

.hero-scrub-stage {
  height: clamp(560px, 72vh, 860px);
  min-height: 560px;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-slide-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.02);
  transition:
    opacity 360ms ease,
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-slide-stage.is-changing .hero-slide-link img,
.hero-scrub-stage.is-changing .hero-slide-link img {
  opacity: 0.52;
  transform: scale(1.055);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.62), transparent 48%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.35), transparent 46%);
  pointer-events: none;
}

.hero-slide-caption {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  bottom: clamp(24px, 4vw, 54px);
  display: grid;
  gap: 8px;
  max-width: 560px;
  color: #ffffff;
}

.hero-slide-caption span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
}

.hero-slide-caption strong {
  font-size: clamp(2.6rem, 6vw, 6.4rem);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: -0.09em;
}

.hero-slide-caption small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.6;
}

.hero-slide-controls {
  position: absolute;
  top: 24px;
  right: 24px;
  display: flex;
  gap: 8px;
  z-index: 2;
}

.hero-scrub-guide {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 16px 18px;
  color: #ffffff;
  background: rgba(8, 11, 18, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero-scrub-guide span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-scrub-guide strong {
  font-size: 0.94rem;
  letter-spacing: -0.03em;
}

.hero-scrub-progress {
  position: absolute;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: 18px;
  z-index: 2;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.24);
}

.hero-scrub-progress span {
  display: block;
  width: var(--scrub-progress, 20%);
  height: 100%;
  background: #ffffff;
  transition: width 180ms ease;
}

.hero-scrub-booths {
  position: absolute;
  right: clamp(24px, 4vw, 58px);
  bottom: 36px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.hero-slide-controls button,
.hero-slide-thumbs button,
.hero-scrub-booths button {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.11);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-slide-controls button {
  min-height: 40px;
  padding: 0 14px;
}

.hero-slide-thumbs {
  position: absolute;
  right: 24px;
  bottom: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 420px;
  z-index: 2;
}

.hero-slide-thumbs button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero-scrub-booths button {
  min-height: 34px;
  padding: 0 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

.hero-slide-thumbs button.is-active,
.hero-scrub-booths button.is-active {
  background: #ffffff;
  color: #111827;
}

.hero-split-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  padding: 10px;
  background: #ffffff;
}

.hero-split-main,
.hero-split-card {
  position: relative;
  display: block;
  overflow: hidden;
  background: #0b0c10;
}

.hero-split-main {
  grid-row: span 2;
}

.hero-split-main img,
.hero-split-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.95) contrast(1.05);
  transform: scale(1.02);
  transition:
    transform 620ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 220ms ease;
}

.hero-split-main:hover img,
.hero-split-card:hover img {
  transform: scale(1.075);
  filter: saturate(1.06) contrast(1.02);
}

.hero-split-main::after,
.hero-split-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.54), transparent 44%);
}

.hero-split-main span,
.hero-split-card span {
  position: absolute;
  left: 22px;
  bottom: 20px;
  z-index: 1;
  color: #ffffff;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.hero-split-main span {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.hero-split-card span {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.hero-reel-stage {
  display: grid;
  align-items: center;
  padding: clamp(18px, 3vw, 40px);
  background:
    radial-gradient(circle at 18% 18%, rgba(62, 116, 255, 0.28), transparent 30%),
    linear-gradient(145deg, #07080b 0%, #151922 100%);
}

.hero-reel-window {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 12px;
  min-height: 410px;
  transform: rotate(-1.2deg);
}

.hero-reel-window img {
  width: 100%;
  height: 100%;
  min-height: 410px;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.18) contrast(1.08);
  animation: heroReelFloat 7s ease-in-out infinite alternate;
}

.hero-reel-window img:nth-child(2) {
  transform: translateY(44px);
  animation-delay: -1.4s;
}

.hero-reel-window img:nth-child(3) {
  transform: translateY(88px);
  animation-delay: -2.2s;
}

.hero-reel-note {
  position: absolute;
  left: clamp(24px, 4vw, 54px);
  bottom: clamp(24px, 4vw, 54px);
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 22px 24px;
  color: #ffffff;
  background: rgba(5, 8, 14, 0.72);
  backdrop-filter: blur(18px);
}

.hero-reel-note span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-reel-note strong {
  font-size: clamp(1.5rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.06em;
}

@keyframes heroReelFloat {
  from {
    filter: grayscale(0.24) contrast(1.02);
  }

  to {
    filter: grayscale(0) contrast(1.12);
    translate: 0 -18px;
  }
}

.project-list-home {
  padding: 18px 0 260px;
}

.project-list-item {
  position: relative;
  min-height: 240vh;
  padding: 0 0 58vh;
}

.project-list-item + .project-list-item {
  padding-top: 18vh;
}

.project-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.project-list-copy {
  max-width: 760px;
}

.project-list-head h2 {
  margin: 0;
  font-size: clamp(2rem, 4.6vw, 4.25rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.98;
}

.project-list-copy p {
  margin: 16px 0 0;
  color: rgba(20, 20, 20, 0.56);
  font-size: 1rem;
  line-height: 1.85;
  max-width: 520px;
}

.project-see-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(20, 20, 20, 0.64);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.project-see-more::after {
  content: "\2197";
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.project-see-more:hover {
  color: #141414;
}

.project-see-more:hover::after {
  transform: translate(3px, -3px);
}

.project-list-media {
  position: sticky;
  top: 120px;
  display: block;
  height: calc(100vh - 148px);
  overflow: hidden;
  background: #0b0b0d;
  box-shadow: 0 22px 70px rgba(18, 18, 18, 0.14);
}

.project-list-media img {
  display: block;
  width: 112%;
  height: 112%;
  margin: -5% 0 0 -6%;
  object-fit: cover;
  transition:
    transform 1400ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 280ms ease;
}

.project-list-item:hover .project-list-media img {
  transform: scale(1.04);
  filter: saturate(1.04);
}

.project-list-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
  color: rgba(20, 20, 20, 0.58);
  font-size: 0.88rem;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}

.project-list-meta span:last-child {
  text-align: right;
}

.project-list-home-static {
  padding: 0 0 180px;
}

.project-list-home-static .project-list-item {
  min-height: 0;
  padding: 0 0 17vh;
}

.project-list-home-static .project-list-item + .project-list-item {
  padding-top: 2vh;
}

.project-list-home-static .project-list-head {
  align-items: center;
  margin-bottom: 44px;
}

.project-list-home-static .project-list-copy {
  max-width: 880px;
}

.project-list-home-static .project-list-head h2 {
  font-size: 1.58rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.12;
}

.project-list-window {
  position: relative;
  top: auto;
  display: block;
  height: auto;
  aspect-ratio: 3.28 / 1;
  overflow: hidden;
  background-color: #f2f2f2;
  background-image: var(--project-image);
  background-position: center var(--project-image-position, var(--project-image-start, 0%));
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
}

.project-list-window::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.project-list-home-static .project-list-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  opacity: 0;
  pointer-events: none;
}

.project-list-home-static .project-list-item:hover .project-list-media img {
  opacity: 0;
}

.project-list-home-static .project-list-meta {
  margin-top: 18px;
  font-size: 0.76rem;
  letter-spacing: 0;
}

.project-wall-section {
  padding-bottom: 140px;
}

.project-wall-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 86px;
  gap: 16px;
  margin-top: 48px;
}

.project-wall-card {
  position: relative;
  grid-column: span 4;
  grid-row: span 4;
  overflow: hidden;
  background: #070708;
  min-height: 0;
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.project-wall-card.is-wide {
  grid-column: span 8;
}

.project-wall-card.is-tall {
  grid-row: span 6;
}

.project-wall-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition:
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 260ms ease,
    opacity 260ms ease;
}

.project-wall-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.project-wall-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 22px 24px;
  color: #fff;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.84) 100%);
  transition:
    transform 260ms ease,
    opacity 260ms ease;
}

.project-wall-overlay strong {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.project-wall-overlay em {
  color: rgba(255, 255, 255, 0.76);
  font-style: normal;
  font-size: 0.88rem;
}

.project-wall-grid-branded .project-wall-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.project-wall-grid-branded .project-wall-card:hover {
  border-color: rgba(124, 164, 255, 0.5);
}

.project-wall-brand,
.project-wall-emblem,
.project-wall-gridmark {
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #f5f5f2;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.06), transparent 42%),
    linear-gradient(160deg, #121214 0%, #050506 100%);
}

.project-wall-brand strong,
.project-wall-emblem strong,
.project-wall-gridmark span {
  font-size: clamp(2rem, 3.4vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
}

.project-wall-brand-kicker,
.project-wall-brand em,
.project-wall-emblem em {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.78rem;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-wall-brand em,
.project-wall-emblem em {
  display: block;
  max-width: 210px;
  letter-spacing: 0.06em;
  line-height: 1.7;
}

.project-wall-emblem {
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
}

.project-wall-emblem-ring {
  width: 108px;
  height: 108px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.03),
    0 0 38px rgba(255, 255, 255, 0.14);
}

.project-wall-gridmark {
  align-items: flex-start;
  background:
    linear-gradient(transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) 0),
    linear-gradient(90deg, transparent calc(100% - 1px), rgba(255, 255, 255, 0.08) 0),
    #060607;
  background-size: 42px 42px;
}

.project-wall-gridmark span {
  margin-top: auto;
}

.project-wall-photo img {
  filter: grayscale(1) brightness(0.84);
}

.project-wall-photo:hover img {
  transform: scale(1.045);
  filter: grayscale(0) brightness(0.98);
}

.project-wall-brand:hover,
.project-wall-emblem:hover,
.project-wall-gridmark:hover {
  background:
    radial-gradient(circle at top left, rgba(124, 164, 255, 0.12), transparent 42%),
    linear-gradient(160deg, #15181f 0%, #050506 100%);
}

.project-wall-brand:hover strong,
.project-wall-emblem:hover strong,
.project-wall-gridmark:hover span {
  color: #ffffff;
}

.project-wall-arrow {
  position: absolute;
  right: 24px;
  bottom: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.project-wall-arrow::after {
  content: " \2197";
}

.project-wall-card:hover .project-wall-arrow,
.project-wall-card:hover .project-wall-overlay {
  opacity: 1;
  transform: translateY(0);
}

.project-wall-grid-branded {
  grid-auto-rows: 108px;
}

.project-wall-feature {
  padding: 0;
}

.project-wall-feature.is-wide {
  grid-column: span 7;
}

.project-wall-feature.is-tall {
  grid-row: span 4;
}

.project-wall-feature img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(1) brightness(0.84);
  transition:
    transform 800ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 260ms ease;
}

.project-wall-feature:hover img {
  transform: scale(1.05);
  filter: grayscale(0) brightness(0.98);
}

.project-wall-static,
.project-wall-hover {
  position: absolute;
  inset: 0;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.project-wall-static {
  z-index: 1;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.44) 100%);
  color: #fff;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.project-wall-static strong {
  font-size: clamp(2rem, 3.4vw, 3.8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.9;
}

.project-wall-static em,
.project-wall-hover em,
.project-wall-static span,
.project-wall-hover span {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-wall-hover {
  z-index: 2;
  opacity: 0;
  transform: translateY(16px);
  background: linear-gradient(180deg, rgba(5, 5, 6, 0.18) 0%, rgba(5, 5, 6, 0.92) 100%);
  color: #fff;
  transition:
    opacity 260ms ease,
    transform 260ms ease;
}

.project-wall-hover strong {
  font-size: clamp(1.7rem, 2.8vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.06em;
  line-height: 0.95;
  margin-top: 12px;
}

.project-wall-hover p {
  max-width: 320px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
}

.project-wall-feature:hover .project-wall-static {
  opacity: 0;
  transform: translateY(-12px);
}

.project-wall-feature:hover .project-wall-hover {
  opacity: 1;
  transform: translateY(0);
}

.project-wall-layout-a {
  grid-column: 1 / span 5;
  grid-row: 1 / span 3;
}

.project-wall-layout-b {
  grid-column: 6 / span 3;
  grid-row: 1 / span 2;
}

.project-wall-layout-c {
  grid-column: 9 / span 4;
  grid-row: 1 / span 2;
}

.project-wall-layout-d {
  grid-column: 6 / span 3;
  grid-row: 3 / span 2;
}

.project-wall-layout-e {
  grid-column: 9 / span 4;
  grid-row: 3 / span 2;
}

.project-wall-layout-f {
  grid-column: 1 / span 3;
  grid-row: 4 / span 3;
}

.project-wall-layout-g {
  grid-column: 4 / span 3;
  grid-row: 5 / span 2;
}

.project-wall-layout-h {
  grid-column: 7 / span 3;
  grid-row: 5 / span 2;
}

.project-wall-layout-i {
  grid-column: 10 / span 3;
  grid-row: 5 / span 2;
}

.project-home-intro-compact {
  padding-bottom: 52px;
}

.project-home-intro-compact .container,
.project-list-home-static .container {
  width: min(94vw, 1960px);
  max-width: none;
}

.project-home-intro-compact .project-home-intro-inner {
  max-width: 920px;
}

.project-home-intro-compact h1 {
  font-size: 3.1rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.04;
}

.project-home-intro-compact p:last-child {
  max-width: 620px;
}

.home-cinematic {
  position: relative;
  min-height: 420vh;
  padding: 0 0 140px;
  --home-window-shift: 0px;
  --home-image-shift: 0px;
  --home-caption-shift: 0px;
  --home-cue-shift: 0px;
}

.home-cinematic-stage-wrap {
  position: sticky;
  top: 96px;
  z-index: 1;
  height: calc(100vh - 96px);
  margin-bottom: calc(-1 * (100vh - 96px));
}

.home-cinematic-stage {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #050608;
}

.home-cinematic-frame {
  position: relative;
  width: 100%;
  height: 100%;
}

.home-cinematic-window {
  position: absolute;
  inset: clamp(18px, 2.6vw, 34px);
  overflow: hidden;
  transform: translateY(var(--home-window-shift));
  transition: transform 240ms ease-out;
}

.home-cinematic-viewfinder {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(7, 8, 12, 0.12);
  pointer-events: none;
}

.home-cinematic .home-stage-media,
.home-cinematic .home-stage-scrim {
  position: absolute;
  inset: 0;
}

.home-cinematic .home-stage-media {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(var(--home-image-shift)) scale(1.18);
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 1600ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.home-cinematic .home-stage-media.is-visible {
  opacity: 1;
  transform: translateY(var(--home-image-shift)) scale(1.08);
}

.home-cinematic .home-stage-scrim {
  background:
    linear-gradient(180deg, rgba(5, 6, 8, 0.06) 0%, rgba(5, 6, 8, 0.24) 54%, rgba(5, 6, 8, 0.72) 100%),
    linear-gradient(90deg, rgba(5, 6, 8, 0.46) 0%, rgba(5, 6, 8, 0.08) 35%, rgba(5, 6, 8, 0.22) 100%);
}

.home-stage-caption-wide {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: clamp(26px, 4vw, 46px);
  left: clamp(24px, 4vw, 64px);
  z-index: 2;
  display: grid;
  gap: 14px;
  color: #fff;
  transform: translateY(var(--home-caption-shift));
  transition: transform 240ms ease-out;
}

.home-stage-caption-main {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-stage-caption-wide span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-stage-caption-wide strong {
  max-width: min(980px, 72vw);
  font-size: clamp(3rem, 7.6vw, 7rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.88;
}

.home-stage-caption-wide em {
  color: rgba(255, 255, 255, 0.78);
  font-style: normal;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
}

.home-cinematic-scrollcue {
  position: absolute;
  top: clamp(22px, 3vw, 42px);
  left: clamp(24px, 4vw, 64px);
  z-index: 2;
  display: grid;
  gap: 6px;
  color: #fff;
  transform: translateY(var(--home-cue-shift));
  transition: transform 240ms ease-out;
}

.home-cinematic-scrollcue span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-cinematic-scrollcue strong {
  max-width: 300px;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.35;
}

.home-cinematic-story {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: flex-end;
  padding-top: 12vh;
  padding-bottom: 24vh;
}

.home-cinematic-story-rail {
  width: min(460px, 100%);
  margin-left: auto;
  display: grid;
  gap: 42vh;
}

.home-cinematic-step {
  padding: 28px 30px 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(248, 244, 236, 0.78);
  box-shadow: 0 22px 48px rgba(12, 15, 22, 0.12);
  backdrop-filter: blur(12px);
  transition:
    transform 260ms ease,
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

.home-cinematic-step.is-active {
  transform: translate(-12px, -6px);
  border-color: rgba(120, 170, 255, 0.42);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 26px 62px rgba(12, 15, 22, 0.18);
}

.home-cinematic-step .home-step-kicker {
  margin-bottom: 18px;
}

.home-cinematic-step h2 {
  margin: 0 0 16px;
  font-size: clamp(2.1rem, 3vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.92;
}

.home-cinematic-step p:last-child {
  margin: 0;
  color: rgba(20, 20, 20, 0.7);
  font-size: 0.98rem;
  line-height: 1.85;
}

@media (max-width: 1200px) {
  .project-header .header-inner {
    width: calc(100% - 36px);
  }

  .project-list-window {
    aspect-ratio: 2.45 / 1;
  }

  .project-list-home-static .project-list-head h2 {
    font-size: 1.45rem;
  }

  .home-cinematic {
    min-height: 320vh;
  }

  .home-cinematic-stage-wrap {
    top: 96px;
    height: calc(72vh - 16px);
    margin-bottom: calc(-1 * (72vh - 16px));
  }

  .home-cinematic-story {
    padding-top: 10vh;
  }

  .home-cinematic-story-rail {
    gap: 28vh;
  }

  .project-wall-grid-branded {
    grid-auto-rows: 96px;
  }

  .project-wall-layout-a {
    grid-column: 1 / span 6;
    grid-row: 1 / span 3;
  }

  .project-wall-layout-b {
    grid-column: 7 / span 3;
    grid-row: 1 / span 2;
  }

  .project-wall-layout-c {
    grid-column: 10 / span 3;
    grid-row: 1 / span 2;
  }

  .project-wall-layout-d {
    grid-column: 7 / span 3;
    grid-row: 3 / span 2;
  }

  .project-wall-layout-e {
    grid-column: 10 / span 3;
    grid-row: 3 / span 2;
  }

  .project-wall-layout-f {
    grid-column: 1 / span 4;
    grid-row: 4 / span 3;
  }

  .project-wall-layout-g {
    grid-column: 5 / span 4;
    grid-row: 5 / span 2;
  }

  .project-wall-layout-h {
    grid-column: 9 / span 4;
    grid-row: 5 / span 2;
  }

  .project-wall-layout-i {
    grid-column: 5 / span 8;
    grid-row: 7 / span 2;
  }

  .home-stage-caption-wide strong {
    max-width: 100%;
    font-size: clamp(2.8rem, 6vw, 5rem);
  }
}

@media (max-width: 760px) {
  .project-header .header-inner {
    width: calc(100% - 24px);
  }

  .project-list-home-static {
    padding-bottom: 96px;
  }

  .project-list-home-static .project-list-item {
    padding-bottom: 64px;
  }

  .project-list-home-static .project-list-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .project-list-window {
    aspect-ratio: 1.26 / 1;
  }

  .project-list-home-static .project-list-media img {
    height: 190%;
    margin-top: 0;
  }

  .project-home-intro-compact {
    padding-bottom: 14px;
  }

  .home-cinematic {
    min-height: 0;
    padding-bottom: 90px;
  }

  .home-cinematic-stage-wrap {
    position: relative;
    top: auto;
    height: 58vh;
    margin-bottom: 0;
  }

  .home-cinematic .home-stage-media {
    transform: scale(1.08);
  }

  .home-cinematic .home-stage-media.is-visible {
    transform: scale(1.02);
  }

  .home-stage-caption-wide {
    right: 18px;
    bottom: 18px;
    left: 18px;
    gap: 10px;
  }

  .home-stage-caption-main {
    display: grid;
    gap: 8px;
  }

  .home-stage-caption-wide strong {
    font-size: clamp(2.1rem, 10vw, 3rem);
    line-height: 0.94;
  }

  .home-stage-caption-wide em {
    font-size: 0.86rem;
  }

  .home-cinematic-scrollcue {
    top: 18px;
    left: 18px;
  }

  .home-cinematic-scrollcue strong {
    font-size: 0.9rem;
  }

  .home-cinematic-story {
    padding-top: 20px;
    padding-bottom: 0;
  }

  .home-cinematic-story-rail {
    width: 100%;
    gap: 20px;
  }

  .home-cinematic-step,
  .home-cinematic-step.is-active {
    transform: none;
  }

  .home-cinematic-step {
    padding: 22px;
    background: rgba(255, 255, 255, 0.9);
  }

  .home-cinematic-step h2 {
    font-size: 1.8rem;
  }

  .project-wall-grid-branded {
    grid-auto-rows: 140px;
  }

  .project-wall-layout-a,
  .project-wall-layout-b,
  .project-wall-layout-c,
  .project-wall-layout-d,
  .project-wall-layout-e,
  .project-wall-layout-f,
  .project-wall-layout-g,
  .project-wall-layout-h,
  .project-wall-layout-i {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 860px) {
  .project-wall-layout-a,
  .project-wall-layout-b,
  .project-wall-layout-c,
  .project-wall-layout-d,
  .project-wall-layout-e,
  .project-wall-layout-f,
  .project-wall-layout-g,
  .project-wall-layout-h,
  .project-wall-layout-i {
    grid-column: auto;
    grid-row: auto;
  }
}

.project-detail-hero {
  padding-bottom: 54px;
}

.project-detail-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(220px, 0.38fr);
  gap: clamp(24px, 3vw, 42px);
  align-items: start;
}

.project-detail-hero-media {
  margin: 0;
  overflow: hidden;
  background: #d8ddd8;
  box-shadow: 0 22px 54px rgba(18, 18, 18, 0.08);
}

.project-detail-hero-media img,
.project-detail-side-media img,
.project-detail-wide-media img {
  width: 100%;
  display: block;
  object-fit: cover;
}

.project-detail-hero-media img {
  aspect-ratio: 1.82 / 1;
}

.project-detail-hero-copy {
  position: static;
  max-width: 250px;
  padding-top: 14px;
}

.project-detail-hero-copy h1 {
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 0.92;
}

.project-detail-meta-table {
  margin-top: 24px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.project-detail-meta-table div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.project-detail-meta-table span {
  color: rgba(20, 20, 20, 0.46);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.project-detail-meta-table strong {
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.project-detail-story {
  display: block;
  padding: 14px 0 132px;
}

.project-detail-block {
  display: grid;
  grid-template-columns: minmax(280px, 0.5fr) minmax(0, 0.92fr);
  gap: clamp(48px, 7vw, 140px);
  align-items: start;
  margin-bottom: 82px;
}

.project-detail-text {
  max-width: 420px;
}

.project-detail-text p {
  margin: 0 0 24px;
  color: rgba(20, 20, 20, 0.72);
  font-size: 0.94rem;
  line-height: 1.9;
}

.project-detail-side-media,
.project-detail-wide-media {
  margin: 0;
  overflow: hidden;
  background: #d8ddd8;
}

.project-detail-side-media {
  width: min(100%, 360px);
  justify-self: end;
}

.project-detail-side-media img {
  aspect-ratio: 1.12 / 1;
}

.project-detail-wide-media {
  width: min(100%, 760px);
  margin-left: auto;
}

.project-detail-wide-media img {
  aspect-ratio: 1.65 / 1;
}

.project-detail-nav-section {
  padding-bottom: 128px;
}

.project-detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.project-detail-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(20, 20, 20, 0.78);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.project-detail-arrow::before,
.project-detail-arrow::after {
  font-size: 1.1em;
}

.project-detail-arrow.prev::before {
  content: "\2190";
}

.project-detail-arrow.next::after {
  content: "\2192";
}

.project-detail-arrow:hover {
  color: #141414;
}

.editorial-main {
  padding-top: 8px;
}

.editorial-hero,
.editorial-section {
  padding: clamp(52px, 7vw, 112px) 0;
}

.editorial-section-tight {
  padding-top: 20px;
}

.editorial-hero-grid,
.editorial-split,
.editorial-image-row,
.editorial-contact-grid {
  display: grid;
  gap: clamp(28px, 4vw, 72px);
}

.editorial-hero-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  align-items: end;
}

.editorial-hero-copy {
  display: grid;
  gap: 22px;
  max-width: 620px;
}

.editorial-hero-copy h1,
.editorial-heading h2,
.editorial-note h2 {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.editorial-hero-copy h1 {
  font-size: clamp(3.3rem, 7.4vw, 8rem);
}

.editorial-heading h2,
.editorial-note h2 {
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.editorial-hero-copy p,
.editorial-note p,
.editorial-card p,
.editorial-checklist p {
  margin: 0;
  color: rgba(20, 20, 20, 0.66);
  line-height: 1.85;
}

.editorial-hero-media,
.editorial-image-row figure {
  margin: 0;
  overflow: hidden;
  background: #e4e4e0;
}

.editorial-hero-media img,
.editorial-image-row img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.editorial-hero-media img {
  aspect-ratio: 1.72 / 1;
}

.editorial-split {
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  align-items: start;
}

.editorial-heading {
  display: grid;
  gap: 18px;
}

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

.editorial-card {
  display: grid;
  gap: 16px;
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(20, 20, 20, 0.1);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.055);
}

.editorial-card span,
.editorial-checklist span {
  color: rgba(20, 20, 20, 0.42);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.editorial-card h3 {
  margin: 0;
  margin-top: auto;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.editorial-image-row {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  align-items: center;
}

.editorial-image-row figure img {
  aspect-ratio: 1.7 / 1;
}

.editorial-note {
  display: grid;
  gap: 20px;
  max-width: 560px;
}

.editorial-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.editorial-page .button-solid {
  color: #ffffff;
  background: #141414;
  box-shadow: none;
}

.editorial-page .button-solid:hover,
.editorial-page .button-solid:focus-visible {
  background: #000000;
  box-shadow: 0 18px 36px rgba(20, 20, 20, 0.18);
}

.editorial-page .button-ghost {
  color: #141414;
  border-color: rgba(20, 20, 20, 0.22);
  background: #ffffff;
  box-shadow: none;
}

.editorial-page .button-ghost:hover,
.editorial-page .button-ghost:focus-visible {
  border-color: rgba(20, 20, 20, 0.56);
  background: #f6f6f3;
}

.editorial-dark-section {
  padding-top: 20px;
}

.editorial-dark-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(160px, auto);
  gap: 12px;
}

.editorial-dark-card {
  display: grid;
  align-content: end;
  gap: 16px;
  min-height: 260px;
  padding: clamp(24px, 3vw, 40px);
  color: #f8f8f5;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 38%),
    linear-gradient(145deg, #17191f 0%, #050506 100%);
}

.editorial-dark-card-large {
  grid-column: span 6;
  grid-row: span 2;
}

.editorial-dark-card:not(.editorial-dark-card-large) {
  grid-column: span 2;
}

.editorial-dark-grid-contact .editorial-dark-card-large {
  grid-column: span 7;
}

.editorial-dark-grid-contact .editorial-dark-card:not(.editorial-dark-card-large) {
  grid-column: span 5;
}

.editorial-dark-card span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.editorial-dark-card strong {
  font-size: clamp(2rem, 4.8vw, 5.8rem);
  font-weight: 500;
  letter-spacing: -0.08em;
  line-height: 0.9;
}

.editorial-dark-card:not(.editorial-dark-card-large) strong {
  font-size: clamp(1.4rem, 2vw, 2.2rem);
  line-height: 1;
}

.editorial-dark-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.85;
}

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

.editorial-contact-card {
  min-height: 240px;
}

.editorial-checklist {
  display: grid;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.editorial-checklist p {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.1);
}

.editorial-image-row-reverse {
  grid-template-columns: minmax(280px, 0.6fr) minmax(0, 1.1fr);
}

.about-simple-main,
.contact-simple-main {
  padding-top: 8px;
}

.about-simple-intro,
.contact-simple-intro {
  padding-bottom: 34px;
}

.about-simple-section,
.contact-simple-section {
  padding: 0 0 128px;
}

.about-simple-page .container,
.contact-simple-page .container {
  width: min(94vw, 1960px);
  max-width: none;
}

.about-simple-head,
.contact-simple-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 44px;
}

.about-simple-head h2,
.contact-simple-head h2,
.about-simple-statement h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 7rem);
  font-weight: 400;
  letter-spacing: -0.075em;
  line-height: 0.94;
}

.about-simple-media,
.contact-simple-media {
  display: block;
  margin: 0;
  overflow: hidden;
  background: #e8e8e5;
}

.about-simple-media img,
.contact-simple-media img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 3.28 / 1;
  object-fit: cover;
  object-position: center var(--media-focus-y, 50%);
}

.about-simple-meta,
.contact-simple-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 22px;
  color: rgba(20, 20, 20, 0.66);
  font-size: 0.78rem;
}

.about-simple-meta span,
.contact-simple-meta span {
  color: rgba(20, 20, 20, 0.48);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-simple-meta {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-simple-meta a {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(20, 20, 20, 0.14);
}

.contact-simple-meta strong {
  font-size: clamp(1rem, 1.6vw, 1.55rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.contact-simple-note {
  margin: 38px 0 0;
  color: rgba(20, 20, 20, 0.56);
  font-size: 0.95rem;
}

.contact-mail-panel {
  display: none;
  margin-top: 42px;
}

.contact-mail-panel:target {
  display: block;
}

.contact-mail-form {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 3vw, 42px);
  color: #f7f7f4;
  background: #070708;
}

.contact-mail-form-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.contact-mail-form-head .project-kicker {
  color: rgba(255, 255, 255, 0.5);
}

.contact-mail-form-head a {
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-mail-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-mail-fields label {
  display: grid;
  gap: 10px;
}

.contact-mail-fields span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-mail-fields input,
.contact-mail-fields textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 0;
  padding: 12px 0;
  color: #ffffff;
  background: transparent;
  outline: none;
}

.contact-mail-fields textarea {
  resize: vertical;
}

.contact-mail-fields input:focus,
.contact-mail-fields textarea:focus {
  border-bottom-color: rgba(255, 255, 255, 0.76);
}

.contact-mail-field-wide {
  grid-column: span 2;
}

.contact-mail-submit {
  justify-self: start;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #070708;
  background: #ffffff;
}

.about-simple-statement {
  padding: 0 0 128px;
}

.about-simple-statement-grid {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  padding-top: 44px;
  border-top: 1px solid rgba(20, 20, 20, 0.12);
}

.about-simple-footer,
.contact-simple-footer {
  padding-bottom: 42px;
}

.project-footer {
  padding: 0 0 52px;
  border-top: 0;
  background: transparent;
}

.project-footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(20, 20, 20, 0.1);
}

.project-footer-copy strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.project-footer-copy p,
.project-footer-meta p {
  margin: 0;
  color: rgba(20, 20, 20, 0.6);
  font-size: 0.9rem;
  line-height: 1.8;
}

.project-footer-meta {
  text-align: right;
}

.project-footer-meta span {
  display: inline-block;
  min-width: 66px;
  color: rgba(20, 20, 20, 0.42);
}

@media (max-width: 1200px) {
  .home-scrolly-grid,
  .interaction-preset-panel {
    grid-template-columns: 1fr;
  }

  .home-scrolly-stage {
    position: sticky;
    top: 98px;
    height: 62vh;
  }

  .home-scrolly-steps {
    gap: 12vh;
    padding-top: 22px;
    padding-bottom: 0;
  }

  .project-detail-hero-grid,
  .project-detail-block,
  .editorial-hero-grid,
  .editorial-split,
  .editorial-image-row {
    grid-template-columns: 1fr;
  }

  .project-detail-hero-copy,
  .project-detail-text,
  .project-detail-side-media,
  .project-detail-wide-media,
  .editorial-hero-copy,
  .editorial-note {
    max-width: none;
    width: 100%;
  }

  .editorial-card-grid,
  .editorial-contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-dark-grid,
  .editorial-dark-grid-contact {
    grid-template-columns: 1fr;
  }

  .editorial-dark-card,
  .editorial-dark-card-large,
  .editorial-dark-grid-contact .editorial-dark-card-large,
  .editorial-dark-grid-contact .editorial-dark-card:not(.editorial-dark-card-large),
  .editorial-dark-card:not(.editorial-dark-card-large) {
    grid-column: auto;
    grid-row: auto;
  }

  .about-simple-head,
  .contact-simple-head,
  .about-simple-statement-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-simple-meta,
  .contact-simple-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .project-mosaic-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 108px;
  }

  .project-detail-gallery-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .project-detail-gallery-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .project-detail-gallery-item,
  .project-detail-gallery-item.is-wide,
  .project-detail-gallery-item.is-half {
    grid-column: span 3;
  }

  .project-mosaic-title,
  .project-mosaic-emblem,
  .project-mosaic-image-wide,
  .project-mosaic-bottom,
  .project-mosaic-card.is-wide {
    grid-column: span 3;
  }

  .project-mosaic-meta,
  .project-mosaic-location,
  .project-mosaic-image,
  .project-mosaic-gridmark {
    grid-column: span 3;
  }

  .project-wall-feature.is-wide {
    grid-column: span 6;
  }
}

@media (max-width: 900px) {
  .project-header .brand-copy {
    display: none;
  }

  .project-header .site-nav-wrap {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    padding: 20px;
    border: 1px solid rgba(20, 20, 20, 0.08);
    background: rgba(248, 245, 240, 0.96);
    box-shadow: 0 18px 40px rgba(18, 18, 18, 0.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
  }

  body.nav-open .project-header .site-nav-wrap {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .project-nav {
    display: grid;
    gap: 14px;
  }

  .project-home-intro,
  .project-wall-section,
  .project-detail-hero {
    padding-top: 30px;
  }

  .project-home-intro h1,
  .project-wall-intro h1 {
    font-size: clamp(2.8rem, 18vw, 4.4rem);
  }

  .project-list-head {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 18px;
  }

  .project-list-item {
    min-height: 0;
    padding-bottom: 0;
  }

  .home-scrolly-stage {
    top: 88px;
    height: 54vh;
  }

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

  .project-list-meta span:last-child {
    text-align: left;
  }

  .project-wall-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 140px;
  }

  .project-wall-card,
  .project-wall-card.is-wide,
  .project-wall-feature.is-wide {
    grid-column: span 1;
  }

  .project-wall-card.is-tall {
    grid-row: span 2;
  }

  .project-wall-brand strong,
  .project-wall-emblem strong,
  .project-wall-gridmark span {
    font-size: 2rem;
  }

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

  .project-footer-meta {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .project-header .header-inner {
    min-height: 82px;
  }

  .project-mosaic-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 148px;
  }

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

  .project-detail-gallery-item,
  .project-detail-gallery-item.is-wide,
  .project-detail-gallery-item.is-half {
    grid-column: span 1;
  }

  .project-detail-gallery-item img {
    min-height: 220px;
  }

  .project-mosaic-title,
  .project-mosaic-emblem,
  .project-mosaic-meta,
  .project-mosaic-image,
  .project-mosaic-image-wide,
  .project-mosaic-gridmark,
  .project-mosaic-location,
  .project-mosaic-bottom,
  .project-mosaic-card.is-wide {
    grid-column: span 2;
  }

  .project-mosaic-title strong,
  .project-mosaic-gridmark span {
    font-size: 2.6rem;
  }

  .project-mosaic-emblem {
    gap: 16px;
  }

  .project-mosaic-ring {
    width: 96px;
    height: 96px;
  }

  .project-brand .brand-mark {
    font-size: 2.5rem;
  }

  .project-home-intro p:last-child,
  .project-wall-intro p:last-child,
  .project-detail-text p {
    font-size: 0.94rem;
    line-height: 1.8;
  }

  .home-scrolly {
    padding-bottom: 90px;
  }

  .home-scrolly-stage {
    top: 82px;
    height: 52vh;
  }

  .home-stage-caption {
    right: 18px;
    bottom: 18px;
    left: 18px;
  }

  .home-stage-caption strong,
  .project-detail-hero-copy h1,
  .editorial-hero-copy h1 {
    font-size: 2.25rem;
  }

  .editorial-heading h2,
  .editorial-note h2 {
    font-size: 2rem;
  }

  .editorial-card {
    min-height: 210px;
    padding: 22px;
  }

  .editorial-checklist p {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-simple-media img,
  .contact-simple-media img {
    aspect-ratio: 1.28 / 1;
  }

  .about-simple-meta,
  .contact-simple-meta {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-mail-fields,
  .contact-mail-field-wide {
    grid-template-columns: 1fr;
    grid-column: auto;
  }

  .home-scrolly-step {
    padding: 22px;
  }

  .home-scrolly-step h2 {
    font-size: 1.8rem;
  }

  .interaction-preset-visual {
    min-height: 260px;
  }

  .project-detail-hero-media img,
  .project-detail-hero-media img,
  .project-detail-wide-media img {
    aspect-ratio: 1.2 / 1;
  }

  .project-list-meta {
    gap: 10px;
    font-size: 0.82rem;
  }

  .project-wall-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .project-wall-card,
  .project-wall-card.is-wide,
  .project-wall-card.is-tall {
    grid-column: span 1;
    grid-row: span 1;
  }

  .project-detail-nav {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 760px) {
  .project-home-page .container,
  .project-wall-page .container,
  .project-detail-page .container,
  .about-simple-page .container,
  .contact-simple-page .container,
  .project-scrub-intro .container,
  .project-scrub-item .container,
  .project-list-home-static .container {
    width: calc(100% - 24px);
  }

  .project-header {
    background: rgba(255, 255, 255, 0.96);
  }

  .project-header .header-inner {
    min-height: 74px;
    width: calc(100% - 24px);
  }

  .project-brand .brand-mark {
    font-size: 2.65rem;
  }

  .project-header .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 46px;
    height: 46px;
    background: #ffffff;
    box-shadow: none;
  }

  .project-header .site-nav-wrap {
    top: 78px;
    right: 12px;
    left: 12px;
    display: grid;
    padding: 18px 20px;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
  }

  .project-nav a {
    font-size: 0.86rem;
    letter-spacing: 0.12em;
  }

  .project-home-intro,
  .project-scrub-intro,
  .project-wall-section,
  .project-detail-hero {
    padding-top: 26px;
  }

  .project-scrub-intro {
    padding-bottom: 22px;
  }

  .project-scrub-intro h1 {
    font-size: clamp(3.3rem, 21vw, 5.4rem);
    letter-spacing: -0.085em;
  }

  .project-scrub-intro p:last-child {
    font-size: 0.94rem;
    line-height: 1.78;
  }

  .project-scrub-list {
    padding-bottom: 78px;
  }

  .project-scrub-item {
    min-height: auto;
    padding-bottom: 76px;
  }

  .project-scrub-item + .project-scrub-item {
    padding-top: 22px;
  }

  .project-scrub-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
  }

  .project-scrub-head h2 {
    font-size: clamp(2rem, 11.5vw, 3.7rem);
    letter-spacing: -0.065em;
  }

  .project-scrub-item .hero-scrub-stage,
  .project-scrub-item:first-child .hero-scrub-stage {
    width: 100%;
    max-width: 100%;
    height: min(68vh, 570px);
    min-height: 430px;
    overflow: hidden;
    contain: paint;
  }

  .hero-slide-stage,
  .hero-split-grid,
  .hero-reel-stage,
  .hero-scrub-stage,
  .project-wall-card,
  .project-detail-hero-media,
  .project-detail-side-media,
  .project-detail-wide-media,
  .about-simple-media,
  .contact-simple-media {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: paint;
  }

  .hero-slide-link,
  .hero-slide-link img,
  .project-wall-card img,
  .project-detail-hero-media img,
  .project-detail-side-media img,
  .project-detail-wide-media img,
  .about-simple-media img,
  .contact-simple-media img {
    max-width: 100%;
  }

  .project-home-intro-compact {
    padding-bottom: 22px;
  }

  .project-home-intro h1,
  .project-wall-intro h1 {
    font-size: clamp(3.35rem, 21vw, 5.4rem);
    letter-spacing: -0.085em;
  }

  .project-list-home-static {
    padding-bottom: 72px;
  }

  .project-list-home-static .project-list-item {
    padding-bottom: 76px;
  }

  .project-list-home-static .project-list-head {
    margin-bottom: 14px;
  }

  .project-list-home-static .project-list-head h2 {
    font-size: 1.2rem;
    letter-spacing: -0.035em;
  }

  .project-see-more {
    font-size: 0.88rem;
  }

  .project-list-window {
    aspect-ratio: 1.62 / 1;
    background-size: cover;
    background-position: center var(--project-image-position, var(--project-image-start, 0%)) !important;
  }

  .project-list-home-static .project-list-media img {
    display: none;
  }

  .project-list-home-static .project-list-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    margin-top: 10px;
    font-size: 0.72rem;
  }

  .project-list-home-static .project-list-meta span:last-child {
    text-align: left;
  }

  .project-wall-section {
    padding-bottom: 78px;
  }

  .project-wall-intro p:last-child {
    display: none;
  }

  .project-wall-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 10px;
    margin-top: 28px;
  }

  .project-wall-layout-a,
  .project-wall-layout-b,
  .project-wall-layout-c,
  .project-wall-layout-d,
  .project-wall-layout-e,
  .project-wall-layout-f,
  .project-wall-layout-g,
  .project-wall-layout-h,
  .project-wall-layout-i {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .project-wall-card {
    min-height: 220px;
  }

  .project-wall-layout-a {
    min-height: 300px;
  }

  .project-wall-static,
  .project-wall-hover {
    padding: 18px;
  }

  .project-wall-static strong {
    font-size: clamp(2rem, 13vw, 3.2rem);
  }

  .project-wall-hover strong {
    font-size: clamp(1.5rem, 8vw, 2.3rem);
  }

  .project-detail-hero-media img,
  .project-detail-wide-media img {
    aspect-ratio: 1.55 / 1;
    object-position: center top;
  }

  .about-simple-intro,
  .contact-simple-intro {
    padding-bottom: 18px;
  }

  .about-simple-section,
  .contact-simple-section,
  .about-simple-statement {
    padding-bottom: 78px;
  }

  .about-simple-head,
  .contact-simple-head,
  .about-simple-statement-grid {
    gap: 16px;
    margin-bottom: 20px;
  }

  .about-simple-head h2,
  .contact-simple-head h2,
  .about-simple-statement h2 {
    font-size: clamp(2.7rem, 14vw, 4.4rem);
  }

  .about-simple-media img,
  .contact-simple-media img {
    aspect-ratio: 1.58 / 1;
    object-position: center top;
  }

  .about-simple-meta,
  .contact-simple-meta {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 16px;
  }

  .contact-mail-form {
    padding: 24px 18px;
  }
}

@media (max-width: 980px) {
  .hero-study {
    padding-bottom: 88px;
  }

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

  .hero-study-copy {
    min-height: 0;
  }

  .hero-slide-stage,
  .hero-split-grid,
  .hero-reel-stage {
    min-height: 470px;
  }

  .hero-split-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1.25fr 0.7fr 0.7fr;
  }

  .hero-split-main {
    grid-row: span 1;
  }
}

@media (max-width: 760px) {
  .hero-study {
    padding: 0 0 76px;
  }

  .hero-study-head {
    gap: 14px;
    margin-bottom: 20px;
  }

  .hero-study-head h2 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  .hero-study-tabs {
    gap: 8px;
    margin-bottom: 14px;
  }

  .hero-study-tab {
    min-height: 38px;
    padding: 0 12px;
    font-size: 0.74rem;
  }

  .hero-slide-stage,
  .hero-split-grid,
  .hero-reel-stage {
    min-height: 430px;
  }

  .hero-study .container {
    width: calc(100% - 24px);
  }

  .hero-scrub-stage {
    height: min(74vh, 560px);
    min-height: 430px;
  }

  .hero-slide-link img,
  .hero-split-main img,
  .hero-split-card img,
  .hero-reel-window img {
    object-position: center top;
  }

  .hero-slide-caption {
    left: 18px;
    right: 18px;
    bottom: 86px;
  }

  .hero-slide-caption strong {
    font-size: clamp(2.25rem, 14vw, 4.2rem);
  }

  .hero-slide-controls {
    top: 14px;
    right: 14px;
  }

  .hero-scrub-guide {
    top: 14px;
    right: 14px;
    left: 14px;
    min-width: 0;
    padding: 12px 14px;
  }

  .hero-slide-thumbs {
    right: 14px;
    bottom: 14px;
    left: 14px;
    justify-content: flex-start;
  }

  .hero-scrub-booths {
    right: 14px;
    left: 14px;
    bottom: 30px;
    justify-content: flex-start;
  }

  .hero-scrub-progress {
    left: 14px;
    right: 14px;
    bottom: 12px;
  }

  .hero-study-copy {
    padding: 24px 18px;
  }

  .hero-study-panel-slide .hero-study-copy {
    padding: 20px 0 0;
  }

  .hero-reel-stage {
    padding: 14px;
  }

  .hero-reel-window {
    grid-template-columns: 1fr;
    min-height: 360px;
    transform: none;
  }

  .hero-reel-window img {
    min-height: 130px;
  }

  .hero-reel-window img:nth-child(2),
  .hero-reel-window img:nth-child(3) {
    transform: none;
  }

  .hero-reel-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}
