:root {
  color-scheme: light;
  --black: #050505;
  --ink: #111111;
  --muted: #5f5f5f;
  --line: #dedede;
  --soft: #f4f4f4;
  --white: #ffffff;
  --header-height: 72px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font: 400 17px/1.55 -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.dialog-open {
  overflow: hidden;
}

body.stage-open,
body.is-loading {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

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

.loader {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: clamp(14px, 2.4vw, 30px);
  padding: clamp(16px, 3vw, 40px);
  overflow: hidden;
  background: var(--white);
  color: var(--black);
  transition: opacity 900ms cubic-bezier(0.65, 0, 0.35, 1), visibility 900ms ease;
}

.loader::after {
  content: "";
  position: absolute;
  z-index: 2;
  right: clamp(16px, 3vw, 40px);
  bottom: clamp(16px, 3vw, 40px);
  left: clamp(16px, 3vw, 40px);
  height: 1px;
  background: var(--black);
  opacity: 0.22;
  transform: scaleX(0);
  transform-origin: left center;
  animation: introProgress 4200ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  background: var(--black);
  transform: translateY(100%);
  pointer-events: none;
}

.loader.is-transitioning::before {
  animation: introExit 760ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader.is-transitioning .intro-splash-images,
.loader.is-transitioning .intro-splash-copy {
  animation: introFadeOut 620ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro-splash-images {
  min-height: 0;
  width: min(1500px, 100%);
  max-height: clamp(330px, 55svh, 600px);
  justify-self: center;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(26px, 8vw, 120px);
  align-items: center;
  opacity: 0;
  transform: translateY(14px) scale(0.992);
  animation: introImages 1800ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.intro-splash-images img {
  width: 100%;
  height: auto;
  max-height: clamp(300px, 50svh, 560px);
  min-height: 0;
  object-fit: contain;
  background: var(--white);
}

.intro-splash-images img:first-child {
  clip-path: inset(0 0 18% 0);
}

.intro-splash-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
  justify-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  animation: introCopy 1800ms 360ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.intro-wordmark {
  width: clamp(82px, 7vw, 126px);
  height: auto;
  margin-bottom: 2px;
  opacity: 0.76;
}

.intro-splash-copy p,
.intro-splash-copy span {
  margin: 0;
  color: var(--muted);
  font-size: clamp(10px, 0.9vw, 12px);
  font-weight: 600;
  text-transform: uppercase;
}

.intro-splash-copy h2 {
  width: min(920px, 100%);
  margin: 0;
  font-size: clamp(15px, 2vw, 24px);
  line-height: 1.1;
  letter-spacing: 0;
  font-weight: 600;
}

.intro-status {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.page-transition {
  position: fixed;
  z-index: 90;
  inset: 0;
  background: var(--black);
  pointer-events: none;
  transform: translateY(100%);
}

.page-transition.is-active {
  animation: pageSweep 760ms cubic-bezier(0.65, 0, 0.35, 1);
}

.cursor {
  position: fixed;
  z-index: 95;
  top: 0;
  left: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  mix-blend-mode: difference;
  pointer-events: none;
  transform: translate3d(-50%, -50%, 0) scale(0);
  transition: width 180ms ease, height 180ms ease, transform 120ms ease, background 180ms ease;
}

.cursor.is-visible {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.cursor.is-active {
  width: 72px;
  height: 72px;
  background: rgba(255, 255, 255, 0.08);
}

@keyframes pageSweep {
  0% {
    transform: translateY(100%);
  }
  45% {
    transform: translateY(0);
  }
  55% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes introProgress {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes introExit {
  0% {
    transform: translateY(100%);
  }
  48% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes introFadeOut {
  0% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.985);
  }
}

@keyframes introImages {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes introCopy {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: clamp(94px, 11vw, 132px);
  line-height: 0;
}

.brand img {
  width: 100%;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.72);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 72px) clamp(22px, 6.5vw, 104px) clamp(46px, 7.2vw, 92px);
  overflow: hidden;
  isolation: isolate;
  background: var(--black);
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
  transition: background-image 700ms ease, opacity 700ms ease, transform 700ms ease;
}

.hero::after {
  position: absolute;
  content: "";
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.56)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.06) 54%);
}

.hero-content {
  width: min(940px, 100%);
}

.eyebrow,
.section-kicker,
.profile-role {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
  text-transform: uppercase;
}

.section-kicker {
  color: var(--muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(92px, 16vw, 230px);
  line-height: 0.84;
  letter-spacing: 0;
  font-weight: 650;
}

.hero-copy {
  max-width: 780px;
  margin: 30px 0 0;
  font-size: clamp(30px, 4.4vw, 66px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 40px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-weight: 600;
  font-size: 14px;
}

.text-link::after {
  content: ">";
  font-size: 0.9em;
}

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

.text-link-light {
  color: rgba(255, 255, 255, 0.78);
}

.hero-panel {
  position: absolute;
  right: clamp(22px, 6.5vw, 104px);
  bottom: clamp(32px, 5.5vw, 72px);
  width: min(380px, calc(100% - 44px));
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  text-transform: uppercase;
}

.hero-panel strong {
  font-size: 18px;
  line-height: 1.25;
  color: var(--white);
}

.index-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.index-strip div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.index-strip div:last-child {
  border-right: 0;
}

.index-strip strong {
  display: block;
  margin-bottom: 14px;
  font-size: clamp(22px, 2.2vw, 34px);
  line-height: 1.06;
  font-weight: 600;
}

.index-strip span {
  display: block;
  max-width: 330px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 11vw, 148px) clamp(20px, 6vw, 88px);
}

.intro-grid,
.section-heading,
.studio {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
}

.intro h2,
.section-heading h2,
.strategy h2,
.studio h2,
.contact h2 {
  margin: 0;
  max-width: 960px;
  font-size: clamp(42px, 5.9vw, 92px);
  line-height: 1;
  letter-spacing: 0;
  font-weight: 600;
}

.intro-copy {
  color: var(--muted);
  font-size: clamp(18px, 1.8vw, 26px);
  line-height: 1.48;
}

.intro-copy p {
  margin: 0 0 24px;
}

.about-section {
  overflow: hidden;
}

.about-hero {
  margin-bottom: clamp(46px, 7vw, 92px);
}

.about-lead {
  max-width: 860px;
  font-size: clamp(17px, 1.38vw, 21px);
  line-height: 1.6;
}

.about-lead p:first-child {
  color: var(--ink);
}

.about-rail-shell {
  margin-inline: calc(clamp(20px, 6vw, 88px) * -1);
}

.about-rail-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(20px, 6vw, 88px) 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 clamp(20px, 6vw, 88px) 26px;
  overflow: visible;
}

.about-rail:focus-visible {
  outline: 1px solid var(--ink);
  outline-offset: 6px;
}

.about-rail.is-dragging {
  cursor: default;
  user-select: auto;
}

.about-card {
  min-width: 0;
  min-height: clamp(450px, 34vw, 560px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(24px, 2.5vw, 36px);
  border: 1px solid var(--line);
  background: var(--white);
  overflow: visible;
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.about-card:hover {
  transform: translateY(-6px);
  border-color: var(--ink);
}

.about-card-wide {
  grid-column: auto;
}

.about-card-dark {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.about-card-duo {
  gap: 22px;
}

.about-duo {
  display: grid;
  gap: 20px;
}

.about-duo div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-duo h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(22px, 1.9vw, 31px);
  line-height: 1.02;
}

.about-duo p {
  margin: 0;
}

.about-duo .about-thai {
  margin-top: 10px;
}

.about-number,
.about-label {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.about-card-dark .about-number,
.about-card-dark .about-label {
  color: rgba(255, 255, 255, 0.58);
}

.about-label {
  margin: 10px 0 0;
}

.about-card h3,
.about-card blockquote {
  margin: 0;
  max-width: 610px;
  font-size: clamp(21px, 1.8vw, 31px);
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 600;
}

.about-card p,
.about-list span,
.about-service-grid span,
.about-choice p {
  color: var(--muted);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.5;
}

.about-card-dark p,
.about-card-dark .about-list span,
.about-card-dark .about-choice p {
  color: rgba(255, 255, 255, 0.68);
}

.about-thai {
  margin-top: 18px;
}

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

.about-list li {
  display: grid;
  gap: 5px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
}

.about-list strong,
.about-service-grid span {
  display: block;
  color: var(--ink);
  font-size: clamp(17px, 1.22vw, 21px);
  line-height: 1.2;
}

.about-service-grid {
  display: grid;
  gap: 10px;
}

.about-service-grid span {
  min-height: 62px;
  display: flex;
  align-items: center;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}

.about-service-grid span:last-child {
  border-bottom: 0;
}

.about-choice {
  display: grid;
  gap: 18px;
}

.about-choice div {
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.about-choice h3 {
  margin-bottom: 8px;
  font-size: clamp(18px, 1.28vw, 23px);
}

.work-section {
  background: #fafafa;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  margin-bottom: clamp(34px, 5vw, 72px);
}

.section-heading p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
}

.filter {
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.filter:hover,
.filter:focus-visible,
.filter[aria-selected="true"] {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2vw, 26px);
}

.project-card {
  grid-column: span 4;
  min-width: 0;
  overflow: hidden;
  border: 1px solid #d8d8d8;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-card:nth-child(1),
.project-card:nth-child(6) {
  grid-column: span 8;
}

.project-card:hover,
.project-card:focus-within {
  transform: perspective(900px) rotateX(var(--tilt-y, 0deg)) rotateY(var(--tilt-x, 0deg)) translateY(-8px);
  border-color: #a6a6a6;
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.12);
}

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

.project-image {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #e9e9e9;
  isolation: isolate;
}

.project-card:nth-child(1) .project-image,
.project-card:nth-child(6) .project-image {
  aspect-ratio: 16 / 8.5;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.04);
}

.project-body {
  display: grid;
  gap: 18px;
  padding: 22px;
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.project-body h3 {
  margin: 0;
  min-height: 2.5em;
  font-size: clamp(21px, 2.05vw, 32px);
  line-height: 1.08;
  letter-spacing: 0;
}

.project-meta {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.project-meta span {
  min-width: 0;
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
}

.project-meta strong {
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.strategy {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
  background: var(--black);
  color: var(--white);
}

.strategy .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.strategy-copy p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(18px, 1.55vw, 24px);
  line-height: 1.46;
}

.strategy-list {
  display: grid;
  border-top: 1px solid rgba(255, 255, 255, 0.26);
}

.strategy-list article {
  display: grid;
  grid-template-columns: 54px minmax(0, 0.72fr) minmax(220px, 1fr);
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.strategy-list span,
.service-grid span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.strategy-list h3,
.service-grid h3,
.studio-profile h3 {
  margin: 0;
  font-size: clamp(21px, 2.1vw, 32px);
  line-height: 1.1;
  letter-spacing: 0;
}

.strategy-list p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.5;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-grid article {
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--white);
  overflow: hidden;
}

.service-grid article img {
  width: 100%;
  height: clamp(220px, 15vw, 300px);
  flex: 0 0 auto;
  object-fit: cover;
  filter: saturate(1.02) contrast(1.03);
  transition: transform 420ms ease;
}

.service-grid article:hover img {
  transform: scale(1.035);
}

.service-grid article > div {
  flex: 1;
  min-height: clamp(160px, 12vw, 210px);
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: clamp(22px, 3vw, 34px);
}

.studio {
  background: var(--soft);
  border-top: 1px solid var(--line);
}

.md-message {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.studio-profile {
  display: grid;
  gap: 18px;
  padding-top: 8px;
}

.md-message-card {
  grid-template-columns: 1fr;
  align-items: start;
  gap: 0;
  padding-top: 0;
}

.director-portrait {
  width: min(260px, 56vw);
  margin: 0 0 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f5f5f5;
}

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

.studio-profile p:not(.profile-role) {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.5;
}

.md-message-copy {
  display: grid;
  gap: 16px;
  max-width: 1040px;
}

.md-message-copy .profile-role {
  margin-bottom: 0;
}

.md-message-copy blockquote {
  margin: 12px 0 0;
  max-width: 980px;
  color: var(--ink);
  font-size: clamp(28px, 3.1vw, 54px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: 0;
}

.studio-profile dl,
.dialog-copy dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.studio-profile dl div,
.dialog-copy dl div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, 0.14);
}

dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

dd {
  margin: 0;
  font-size: 17px;
  line-height: 1.45;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.55fr);
  gap: clamp(28px, 6vw, 84px);
  padding: clamp(72px, 11vw, 144px) clamp(20px, 6vw, 88px) clamp(42px, 7vw, 78px);
  background: var(--black);
  color: var(--white);
}

.contact .section-kicker {
  color: rgba(255, 255, 255, 0.62);
}

.contact-actions {
  display: grid;
  align-content: start;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-actions a {
  min-height: 78px;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 600;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.06);
}

.contact-actions svg {
  width: 22px;
  height: 22px;
  justify-self: center;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-actions a:last-child svg {
  fill: currentColor;
  stroke: none;
}

.contact-actions span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.contact-actions small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact address {
  grid-column: 1 / -1;
  max-width: 780px;
  color: rgba(255, 255, 255, 0.68);
  font-style: normal;
  font-size: clamp(17px, 1.2vw, 20px);
  line-height: 1.55;
}

.people {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.news-section {
  overflow: hidden;
  background: #f5f5f7;
  border-top: 0;
}

.news-section .section-heading {
  margin-bottom: clamp(28px, 4.5vw, 58px);
}

.news-section .section-heading h2 {
  max-width: 980px;
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: 1;
}

.news-grid {
  display: flex;
  gap: clamp(16px, 2vw, 24px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  padding: 8px 4px clamp(18px, 2.4vw, 30px);
  margin-inline: -4px;
  background: transparent;
  border: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.28) transparent;
}

.news-grid::-webkit-scrollbar {
  height: 8px;
}

.news-grid::-webkit-scrollbar-track {
  background: transparent;
}

.news-grid::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
}

.news-card {
  flex: 0 0 clamp(340px, 31vw, 500px);
  min-height: clamp(520px, 54vw, 680px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.08);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.news-card:hover,
.news-card:focus-within {
  transform: translateY(-6px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.13);
}

.news-card button {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: minmax(230px, 44%) minmax(0, 1fr);
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.news-card-media {
  overflow: hidden;
  background: #e8e8e8;
}

.news-card-media img,
.news-card-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.news-card:hover img,
.news-card:hover video {
  transform: scale(1.035);
}

.news-card-copy {
  display: grid;
  align-content: start;
  gap: clamp(18px, 2.2vw, 34px);
  padding: clamp(26px, 3vw, 42px);
}

.news-card-copy span,
.news-detail-copy .eyebrow {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.news-card-copy h3 {
  margin: 0;
  font-size: clamp(34px, 3.2vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.news-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.15vw, 19px);
  line-height: 1.48;
}

.news-stage-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(300px, 0.34fr) minmax(0, 0.66fr);
}

.news-detail-copy {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 68px);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.news-detail-copy h2 {
  margin: 0;
  font-size: clamp(48px, 6.2vw, 112px);
  line-height: 0.92;
}

.news-detail-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 22px);
  line-height: 1.55;
}

.news-body {
  display: grid;
  gap: 18px;
}

.news-detail-copy .text-link.is-hidden {
  display: none;
}

.news-detail-media {
  height: 100%;
  overflow: auto;
  display: grid;
  gap: 1px;
  background: var(--line);
  padding: clamp(14px, 2vw, 28px);
}

.news-detail-media img,
.news-detail-media video {
  display: block;
  width: 100%;
  height: auto;
  background: #e8e8e8;
}

.people-grid {
  display: grid;
  grid-template-columns: repeat(16, minmax(0, 1fr));
  gap: clamp(10px, 1.25vw, 18px);
}

.person-card {
  grid-column: span 2;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f7f7f7;
  transform: translateY(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.person-card:hover,
.person-card:focus-within {
  transform: translateY(-6px);
  border-color: #b8b8b8;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.person-image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ededed;
}

.person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08);
  transition: transform 420ms ease, filter 420ms ease;
}

.person-card:hover img {
  transform: scale(1.04);
  filter: grayscale(1) contrast(1.18);
}

.person-copy {
  display: grid;
  gap: 6px;
  min-height: 98px;
  padding: 13px;
}

.person-copy h3 {
  margin: 0;
  font-size: clamp(14px, 1vw, 17px);
  line-height: 1.14;
}

.person-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
}

.project-stage {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: none;
  background: var(--white);
  color: var(--ink);
  overflow: hidden;
}

.project-stage.is-open {
  display: block;
  animation: stageIn 520ms cubic-bezier(0.65, 0, 0.35, 1);
}

.project-stage.is-closing {
  animation: stageOut 360ms cubic-bezier(0.65, 0, 0.35, 1) forwards;
}

.project-stage-shell {
  height: 100%;
  display: grid;
  grid-template-rows: 72px minmax(0, 1fr);
}

.project-stage-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 clamp(18px, 4vw, 56px);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
}

.back-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-weight: 650;
}

.back-button span {
  position: relative;
  width: 34px;
  height: 34px;
  border: 1px solid var(--black);
  border-radius: 50%;
}

.back-button span::before,
.back-button span::after {
  position: absolute;
  content: "";
  top: 16px;
  left: 10px;
  width: 13px;
  height: 1px;
  background: var(--black);
  transform-origin: left center;
}

.back-button span::before {
  transform: rotate(38deg);
}

.back-button span::after {
  transform: rotate(-38deg);
}

.project-count {
  color: var(--muted);
  font-size: 13px;
}

.project-stage-layout {
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(320px, 0.38fr) minmax(0, 0.62fr);
}

.project-info {
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 68px);
  border-right: 1px solid var(--line);
  background: var(--white);
}

.project-info h2 {
  margin: 0;
  font-size: clamp(46px, 5.8vw, 104px);
  line-height: 0.93;
  letter-spacing: 0;
}

.project-info p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.52;
}

.project-info dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.project-info dl div {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
}

.project-gallery {
  height: 100%;
  overflow: auto;
  overscroll-behavior: contain;
  padding: clamp(14px, 2vw, 28px);
  background: #f7f7f7;
  scroll-behavior: smooth;
}

.gallery-cluster {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(24px, 4vw, 54px);
}

.gallery-label {
  position: sticky;
  top: 0;
  z-index: 1;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

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

.gallery-item {
  overflow: hidden;
  border-radius: 8px;
  background: #e7e7e7;
  cursor: zoom-in;
}

.gallery-item:nth-child(3n + 1) {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  max-height: 78vh;
  object-fit: cover;
  transition: transform 560ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-item.is-expanded {
  position: fixed;
  z-index: 110;
  inset: clamp(70px, 8vw, 94px) clamp(14px, 4vw, 52px) clamp(14px, 4vw, 52px);
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 0;
  background: transparent;
  cursor: zoom-out;
}

.gallery-item.is-expanded img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform: none;
  border-radius: 8px;
}

@keyframes stageIn {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes stageOut {
  to {
    opacity: 0;
    transform: translateY(28px);
  }
}

.project-dialog {
  width: min(1180px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
}

.project-dialog::backdrop {
  background: rgba(0, 0, 0, 0.62);
}

.project-dialog[open] {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
}

.dialog-close {
  position: absolute;
  z-index: 2;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.48);
  cursor: pointer;
}

.dialog-close::before,
.dialog-close::after {
  position: absolute;
  content: "";
  top: 20px;
  left: 11px;
  width: 18px;
  height: 1px;
  background: var(--white);
}

.dialog-close::before {
  transform: rotate(45deg);
}

.dialog-close::after {
  transform: rotate(-45deg);
}

.dialog-media {
  min-height: 520px;
  background: #e9e9e9;
}

.dialog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-copy {
  display: grid;
  align-content: center;
  gap: 22px;
  padding: clamp(28px, 5vw, 56px);
}

.dialog-copy h2 {
  margin: 0;
  font-size: clamp(34px, 4.4vw, 64px);
  line-height: 0.96;
  letter-spacing: 0;
}

.dialog-copy p {
  margin: 0;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@media (max-width: 1080px) {
  .hero {
    height: auto;
    min-height: 100svh;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(6) {
    grid-column: span 6;
  }

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

  .about-card {
    min-height: 460px;
    padding: 24px;
  }

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

  .news-card {
    flex-basis: min(430px, 82vw);
  }

  .news-stage-layout {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .news-detail-copy {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .strategy,
  .intro-grid,
  .section-heading,
  .studio,
  .contact {
    grid-template-columns: 1fr;
  }

  .people-grid {
    grid-template-columns: repeat(8, minmax(0, 1fr));
  }

  .person-card {
    grid-column: span 2;
  }

  .project-stage-layout {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .project-info {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .project-gallery {
    height: auto;
    overflow: visible;
  }

  .hero-panel {
    position: static;
    margin-top: 54px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .site-header {
    padding: 0 18px;
  }

  .nav-toggle {
    position: relative;
    z-index: 30;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 0;
    background: transparent;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 220ms ease;
  }

  .nav-toggle span + span {
    margin-top: -12px;
  }

  .site-header.nav-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  .site-header.nav-open .nav-toggle span:last-child {
    transform: translateY(-7px) rotate(-45deg);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto;
    display: grid;
    gap: 0;
    padding: 16px 18px 22px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    transform: translateY(-120%);
    transition: transform 220ms ease;
  }

  .site-header.nav-open .site-nav {
    transform: translateY(0);
  }

  .site-nav a {
    padding: 14px 0;
    font-size: 16px;
  }

  .hero {
    height: auto;
    min-height: 100svh;
    padding: calc(var(--header-height) + 52px) 20px 34px;
  }

  .hero h1 {
    font-size: clamp(76px, 24vw, 126px);
  }

  .loader {
    grid-template-rows: minmax(0, 1fr) auto;
    padding: 16px;
  }

  .intro-splash-images {
    grid-template-columns: 1fr;
    gap: 6px;
    max-height: 62svh;
  }

  .intro-splash-images img {
    max-height: 29svh;
  }

  .intro-wordmark {
    width: 88px;
  }

  .intro-splash-copy h2 {
    font-size: clamp(15px, 5vw, 22px);
  }

  .hero-copy {
    max-width: 430px;
    font-size: clamp(25px, 8vw, 42px);
    line-height: 1.04;
  }

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

  .md-message-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .director-portrait {
    width: min(220px, 70vw);
  }

  .md-message-copy blockquote {
    font-size: clamp(24px, 8vw, 36px);
    line-height: 1.12;
  }

  .index-strip {
    grid-template-columns: 1fr;
  }

  .index-strip div {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .index-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 70px 20px;
  }

  .about-rail-shell {
    margin-inline: -20px;
  }

  .about-rail {
    grid-template-columns: 1fr;
    padding-inline: 20px;
  }

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

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

  .cursor {
    display: none;
  }

  .project-card,
  .project-card:nth-child(1),
  .project-card:nth-child(6) {
    grid-column: span 1;
  }

  .project-card:nth-child(1) .project-image,
  .project-card:nth-child(6) .project-image,
  .project-image {
    aspect-ratio: 4 / 3;
  }

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

  .strategy-list article {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .strategy-list p {
    grid-column: 2;
  }

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

  .news-grid,
  .news-stage-layout {
    grid-template-columns: 1fr;
  }

  .news-card button {
    grid-template-rows: minmax(220px, auto) minmax(180px, auto);
  }

  .news-card {
    flex-basis: min(340px, 88vw);
    min-height: 500px;
    border-radius: 20px;
  }

  .news-detail-media {
    overflow: visible;
  }

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

  .person-card {
    grid-column: span 1;
  }

  .person-copy {
    min-height: 124px;
    padding: 14px;
  }

  .service-grid article {
    min-height: 190px;
  }

  .service-grid article img {
    height: clamp(190px, 48vw, 260px);
  }

  .service-grid article > div {
    min-height: 150px;
  }

  .project-stage {
    overflow: auto;
  }

  .project-stage-shell {
    height: auto;
    min-height: 100%;
    grid-template-rows: 64px auto;
  }

  .project-stage-header {
    position: sticky;
    top: 0;
    z-index: 3;
  }

  .project-count {
    display: none;
  }

  .project-info dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

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

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

  .gallery-item img {
    max-height: none;
  }

  .project-dialog[open] {
    grid-template-columns: 1fr;
    overflow: auto;
  }

  .dialog-media {
    min-height: 280px;
  }

  .dialog-copy {
    align-content: start;
  }

  .studio-profile dl div,
  .dialog-copy dl div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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