:root {
  --black: #050608;
  --soft-black: #0b0d11;
  --navy: #101427;
  --violet: #8c59ff;
  --lavender: #c7a7ff;
  --white: #f2f4f8;
  --gray: #7b7f88;
  --silver: #c9ccd3;
  --line: rgba(242, 244, 248, 0.18);
  --max: 1440px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--black); }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Satoshi", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }

.site-shell { min-height: 100vh; overflow: hidden; }
.top-label {
  width: 100%;
  padding: 22px 32px 0;
  min-height: 48px;
  color: var(--white);
  font-size: 14px;
  line-height: 1;
}
.site-header {
  position: relative;
  z-index: 20;
  width: 100%;
  min-height: 92px;
  padding: 18px 32px 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
}
.brand-lockup {
  justify-self: start;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.8px;
}
.degree { font-size: 15px; vertical-align: top; margin-left: 1px; }
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  font-size: 12px;
  line-height: 1;
}
.desktop-nav a, .menu-trigger, .eyebrow, .footer-column span, .footer-bottom, .footer-links { letter-spacing: 0.04em; }
.desktop-nav a, .menu-trigger { opacity: 0.96; transition: opacity 180ms ease; }
.desktop-nav a:hover, .menu-trigger:hover { opacity: 0.55; }
.menu-trigger {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 0;
  padding: 0;
  background: none;
  cursor: pointer;
  font-size: 12px;
}
.menu-trigger img { width: 20px; height: 20px; object-fit: contain; }
.menu-panel {
  position: fixed;
  z-index: 15;
  inset: 0;
  padding: 165px 32px 60px;
  background: var(--black);
}
.menu-panel-inner { max-width: 760px; margin: 0 auto; }
.menu-panel .eyebrow { margin: 0 0 40px; color: var(--gray); font-size: 12px; }
.menu-panel nav { border-top: 1px solid var(--line); }
.menu-panel nav a {
  display: flex;
  justify-content: space-between;
  padding: 20px 0 22px;
  border-bottom: 1px solid var(--line);
  font-size: 34px;
  line-height: 1;
}
.menu-panel nav span { color: var(--gray); font-size: 12px; align-self: center; }

.eyebrow { margin: 0; color: var(--silver); font-size: 12px; line-height: 1.2; }
.section-rule { border-top: 1px solid var(--line); }
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  padding: 34px 0 40px;
}
.section-heading h2 { margin: 0; font-size: 16px; font-weight: 500; line-height: 1; }
.section-heading a, .text-link { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; }
.text-link::after { content: "↗"; font-size: 19px; line-height: 0.8; }

.hero {
  position: relative;
  min-height: 780px;
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--black);
  overflow: hidden;
}
.hero-copy {
  position: relative;
  z-index: 3;
  width: min(44vw, 560px);
  padding: 115px 20px 130px 6.5vw;
}
.hero h1 {
  max-width: 520px;
  margin: 0;
  color: var(--white);
  font-size: 60px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.92;
}
.hero-lede {
  margin: 24px 0 30px;
  color: var(--silver);
  font-size: 19px;
  line-height: 1.15;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  font-size: 12px;
  transition: color 180ms ease;
}
.hero-cta:hover { color: var(--lavender); }
.hero-cta img { width: 46px; height: 46px; object-fit: contain; }
.hero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--black);
}
.hero-media::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(90deg, rgba(5, 6, 8, 0.9) 0%, rgba(5, 6, 8, 0.72) 24%, rgba(5, 6, 8, 0.12) 48%, rgba(5, 6, 8, 0) 72%);
}
.hero-media > img:first-child {
  position: absolute;
  top: 0;
  right: 0;
  width: 92%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.hero-star { position: absolute; z-index: 2; width: 14px; height: 14px; opacity: 0.8; }
.hero-star.one { left: 63%; top: 17%; }
.hero-star.two { right: 10%; top: 22%; width: 10px; height: 10px; }
.hero-caption {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 42px;
  color: var(--silver);
  font-size: 11px;
  letter-spacing: 0.06em;
}

.work-section, .about-section { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.work-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; padding-bottom: 88px; }
.work-card { min-width: 0; }
.work-card-image {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--soft-black);
}
.work-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms cubic-bezier(.2,.6,.2,1); }
.work-card:hover .work-card-image img { transform: scale(1.035); }
.work-card-meta { padding: 17px 4px 0; }
.work-index { margin: 0 0 8px; color: var(--silver); font-size: 14px; }
.work-card h3 { margin: 0; font-size: 20px; font-weight: 500; line-height: 1; }
.work-card p { margin: 7px 0 0; color: var(--silver); font-size: 12px; line-height: 1.2; }

.about-section { padding-bottom: 105px; }
.about-grid { display: grid; grid-template-columns: minmax(210px, 0.6fr) minmax(0, 1.4fr); gap: 56px; align-items: start; padding: 0 0 0; }
.about-copy { padding-top: 22px; }
.about-copy h2 { margin: 0 0 30px; font-size: 26px; font-weight: 500; line-height: 1; }
.about-copy p { max-width: 255px; margin: 0 0 50px; color: var(--silver); font-size: 18px; line-height: 1.38; }
.about-visual { aspect-ratio: 16 / 9; overflow: hidden; background: var(--soft-black); }
.about-visual img { width: 100%; height: 100%; object-fit: cover; }

.site-footer { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
.footer-main { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 34px; padding: 34px 0 70px; border-top: 1px solid var(--line); }
.footer-brand img { width: 118px; height: auto; max-height: 46px; object-fit: contain; object-position: left center; margin-bottom: 25px; }
.footer-brand p, .footer-column p { margin: 0; color: var(--silver); font-size: 14px; line-height: 1.5; }
.footer-column span { display: block; margin: 0 0 16px; color: var(--silver); font-size: 11px; }
.footer-column a:hover, .footer-links a:hover { color: var(--lavender); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; min-height: 76px; border-top: 1px solid var(--line); color: var(--silver); font-size: 11px; }
.footer-links { display: flex; justify-content: center; gap: 30px; }
.sound-toggle { justify-self: end; display: inline-flex; align-items: center; gap: 10px; padding: 0; border: 0; background: none; cursor: pointer; color: inherit; font-size: 11px; }
.sound-toggle img { width: 20px; height: 20px; }
.sound-toggle[aria-pressed="true"] { color: var(--lavender); }

.inner-page { max-width: var(--max); margin: 0 auto; padding: 40px 32px 110px; }
.inner-page-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; padding: 80px 0 100px; border-bottom: 1px solid var(--line); }
.inner-page-heading h1 { margin: 0; font-size: 76px; font-weight: 500; letter-spacing: -2.4px; line-height: 0.92; }
.inner-page-heading > div:last-child { align-self: end; max-width: 360px; color: var(--silver); font-size: 18px; }
.inner-page-heading p { margin: 0; }
.project-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 60px 28px; padding-top: 70px; }
.project-list .work-card h3 { font-size: 24px; }
.project-list .work-card-meta { display: flex; justify-content: space-between; align-items: flex-start; }
.project-list .work-card-meta p { text-align: right; }
.studio-layout { display: grid; grid-template-columns: minmax(210px, .6fr) minmax(0, 1.4fr); gap: 56px; padding-top: 80px; }
.studio-layout h1 { margin: 0; font-size: 28px; font-weight: 500; line-height: 1; }
.studio-copy { max-width: 720px; }
.studio-copy .lead { margin: 0 0 48px; font-size: 40px; line-height: 1.04; letter-spacing: -1px; }
.studio-copy p { max-width: 520px; margin: 0 0 20px; color: var(--silver); font-size: 18px; line-height: 1.45; }
.studio-image { margin-top: 70px; aspect-ratio: 16 / 9; overflow: hidden; }
.studio-image img { width: 100%; height: 100%; object-fit: cover; }
.lab-intro { padding: 80px 0 58px; max-width: 700px; }
.lab-intro h1 { margin: 0 0 24px; font-size: 76px; font-weight: 500; letter-spacing: -2px; line-height: .92; }
.lab-intro p { max-width: 430px; margin: 0; color: var(--silver); font-size: 18px; }
.lab-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.lab-card { background: var(--soft-black); }
.lab-card-image { aspect-ratio: 1 / 1; overflow: hidden; }
.lab-card-image img { width: 100%; height: 100%; object-fit: cover; }
.lab-card p { min-height: 68px; margin: 0; padding: 16px; color: var(--silver); font-size: 13px; }
.contact-layout { display: grid; grid-template-columns: minmax(210px, .6fr) minmax(0, 1.4fr); gap: 56px; padding-top: 80px; }
.contact-layout h1 { margin: 0; font-size: 28px; font-weight: 500; }
.contact-copy h2 { max-width: 660px; margin: 0 0 56px; font-size: 54px; font-weight: 500; letter-spacing: -1.6px; line-height: .98; }
.contact-form { max-width: 620px; }
.field { display: grid; gap: 9px; margin-bottom: 22px; }
.field label { color: var(--silver); font-size: 12px; }
.field input, .field textarea { width: 100%; padding: 13px 0; border: 0; border-bottom: 1px solid var(--line); outline: none; background: transparent; color: var(--white); border-radius: 0; }
.field textarea { min-height: 94px; resize: vertical; }
.form-submit { display: inline-flex; align-items: center; gap: 14px; margin-top: 18px; padding: 0; border: 0; background: transparent; cursor: pointer; }
.form-submit img { width: 42px; height: 42px; }
.form-status { min-height: 22px; margin: 20px 0 0; color: var(--lavender); }
.legal-page { max-width: 880px; margin: 0 auto; padding: 80px 32px 130px; }
.legal-page h1 { margin: 0 0 60px; font-size: 72px; font-weight: 500; letter-spacing: -2px; line-height: .95; }
.legal-page h2 { margin: 42px 0 12px; font-size: 18px; font-weight: 500; }
.legal-page p { margin: 0; color: var(--silver); font-size: 16px; line-height: 1.6; }
.career-list { margin-top: 56px; border-top: 1px solid var(--line); }
.career-row { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.career-row span:last-child { color: var(--silver); font-size: 12px; }

.project-detail { max-width: var(--max); margin: 0 auto; padding: 44px 32px 110px; }
.project-detail-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; padding: 55px 0 40px; }
.project-detail-head h1 { margin: 0; font-size: 90px; font-weight: 500; letter-spacing: -3px; line-height: .9; }
.project-detail-head p { margin: 0; color: var(--silver); font-size: 13px; text-align: right; }
.project-detail-hero { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(190px, .75fr); gap: 14px; }
.project-detail-main-image { aspect-ratio: 3 / 4; overflow: hidden; background: var(--soft-black); }
.project-detail-main-image img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-side { display: grid; grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 14px; }
.project-detail-side div { overflow: hidden; background: var(--soft-black); }
.project-detail-side img { width: 100%; height: 100%; object-fit: cover; }
.project-detail-copy { display: grid; grid-template-columns: minmax(190px, .75fr) minmax(0, 1.25fr); gap: 56px; padding: 70px 0 0; }
.project-detail-copy h2 { margin: 0; font-size: 26px; font-weight: 500; }
.project-detail-copy p { max-width: 600px; margin: 0 0 18px; color: var(--silver); font-size: 18px; line-height: 1.5; }
.back-link { display: inline-flex; gap: 10px; margin-top: 24px; font-size: 12px; }

@media (max-width: 1100px) {
  .desktop-nav { gap: 28px; }
  .hero { min-height: 690px; }
  .hero-copy { width: min(48vw, 500px); padding: 110px 20px 110px 5vw; }
  .hero h1 { font-size: 54px; }
  .hero-media > img:first-child { width: 94%; }
  .work-grid { gap: 18px; }
  .footer-main { gap: 20px; }
  .studio-copy .lead { font-size: 34px; }
}
@media (max-width: 780px) {
  .top-label { padding: 18px 20px 0; min-height: 38px; font-size: 11px; }
  .site-header { min-height: 72px; padding: 16px 20px 22px; grid-template-columns: 1fr auto; }
  .brand-lockup { font-size: 23px; }
  .desktop-nav { display: none; }
  .menu-trigger span { display: none; }
  .menu-trigger img { width: 24px; height: 24px; }
  .menu-panel { padding: 125px 20px 30px; }
  .menu-panel nav a { font-size: 28px; }
  .hero { min-height: 720px; }
  .hero-copy { width: auto; padding: 70px 20px 390px; }
  .hero h1 { max-width: 490px; font-size: 58px; letter-spacing: 0; }
  .hero-lede { font-size: 16px; }
  .hero-media::after { background: linear-gradient(180deg, rgba(5, 6, 8, 0.72) 0%, rgba(5, 6, 8, 0.2) 42%, rgba(5, 6, 8, 0) 70%); }
  .hero-media > img:first-child { width: 120%; right: -24%; object-position: center center; }
  .hero-caption { right: 20px; bottom: 20px; }
  .work-section, .about-section, .site-footer { padding-left: 20px; padding-right: 20px; }
  .section-heading { padding: 28px 0 28px; }
  .work-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 34px 12px; padding-bottom: 70px; }
  .work-card-meta { padding-top: 12px; }
  .work-card h3 { font-size: 17px; }
  .work-card p { font-size: 11px; }
  .about-section { padding-bottom: 72px; }
  .about-grid, .studio-layout, .contact-layout, .project-detail-copy { grid-template-columns: 1fr; gap: 30px; }
  .about-copy { padding-top: 0; }
  .about-copy h2 { margin-bottom: 20px; }
  .about-copy p { max-width: 460px; margin-bottom: 28px; font-size: 16px; }
  .footer-main { grid-template-columns: repeat(2, 1fr); gap: 34px 18px; padding-bottom: 48px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; padding: 22px 0; }
  .footer-links { order: 3; width: 100%; justify-content: flex-start; gap: 20px; }
  .inner-page, .project-detail { padding-left: 20px; padding-right: 20px; }
  .inner-page-heading { grid-template-columns: 1fr; gap: 30px; padding: 48px 0 60px; }
  .inner-page-heading h1, .lab-intro h1 { font-size: 58px; }
  .project-list { gap: 44px 12px; padding-top: 46px; }
  .project-list .work-card h3 { font-size: 19px; }
  .studio-layout, .contact-layout { padding-top: 48px; }
  .studio-copy .lead { font-size: 30px; }
  .studio-copy p { font-size: 16px; }
  .studio-image { margin-top: 40px; }
  .lab-intro { padding: 48px 0 38px; }
  .lab-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
  .lab-card p { min-height: 76px; padding: 12px; font-size: 12px; }
  .contact-copy h2 { margin-bottom: 40px; font-size: 38px; }
  .legal-page { padding: 48px 20px 90px; }
  .legal-page h1 { margin-bottom: 42px; font-size: 56px; }
  .project-detail { padding-top: 20px; }
  .project-detail-head { display: block; padding: 46px 0 30px; }
  .project-detail-head h1 { font-size: 64px; }
  .project-detail-head p { margin-top: 18px; text-align: left; }
  .project-detail-hero { grid-template-columns: 1fr; }
  .project-detail-side { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-template-rows: none; min-height: 170px; }
  .project-detail-copy { padding-top: 48px; }
}
@media (max-width: 420px) {
  .hero h1 { font-size: 43px; }
  .hero { min-height: 690px; }
  .hero-copy { padding-bottom: 360px; }
  .hero-media > img:first-child { width: 132%; right: -36%; object-position: center center; }
  .section-heading a { font-size: 10px; }
  .work-card h3 { font-size: 15px; }
  .inner-page-heading h1, .lab-intro h1 { font-size: 50px; }
  .project-detail-head h1 { font-size: 54px; }
  .contact-copy h2 { font-size: 32px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
