:root {
  color-scheme: dark;
  --ink: #f3f2ec;
  --paper: #0a0a0a;
  --paper-soft: #11110f;
  --paper-raised: #181815;
  --muted: #a4a49c;
  --line: rgba(243, 242, 236, 0.2);
  --line-strong: rgba(243, 242, 236, 0.5);
  --signal: #d8ff3e;
  --danger: #ff715b;
  --page-pad: clamp(1.25rem, 4vw, 4.5rem);
  --header-height: 5.5rem;
  --display: "Arial Narrow", "Helvetica Neue", Arial, "Noto Sans KR", sans-serif;
  --body: "Helvetica Neue", Arial, "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-family: var(--body);
  font-synthesis: none;
  line-height: 1.45;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  background: var(--signal);
  color: #050505;
}

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

a[href=""],
img[src=""] {
  display: none !important;
}

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

button {
  cursor: pointer;
}

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

h1,
h2,
h3,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  transform: translateY(-160%);
  background: var(--signal);
  color: #050505;
  font-weight: 800;
}

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

:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--page-pad);
  border-bottom: 1px solid transparent;
  color: var(--ink);
  transition: background-color 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.is-filled,
.site-header.menu-active {
  height: 4.75rem;
  border-color: var(--line);
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(18px);
}

.brand {
  position: relative;
  z-index: 102;
  display: inline-grid;
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
  line-height: 0.78;
  letter-spacing: -0.06em;
}

.brand span:last-child {
  color: var(--signal);
}

.desktop-nav {
  display: flex;
  gap: clamp(1.5rem, 3vw, 3rem);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.desktop-nav a {
  position: relative;
  padding: 0.5rem 0;
}

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

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle,
.mobile-menu {
  display: none;
}

main {
  min-height: 70vh;
}

.section-pad {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.section-index {
  display: block;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.display-title,
.page-title,
.hero-title {
  font-family: var(--display);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.display-title {
  max-width: 13ch;
  font-size: clamp(3rem, 7.4vw, 8.5rem);
}

.lead-copy,
.page-intro {
  max-width: 38ch;
  color: #d1d0c8;
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  line-height: 1.55;
  white-space: pre-line;
}

.text-link,
.reel-link,
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.button-link {
  display: inline-flex;
  min-width: min(100%, 15rem);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.05rem 1.25rem;
  border: 1px solid var(--line-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button-link:hover {
  border-color: var(--signal);
  background: var(--signal);
  color: #050505;
}

.home-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
}

.hero-media {
  position: absolute;
  inset: 0;
  isolation: isolate;
}

.hero-media::before,
.hero-media::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 50%;
  filter: blur(2px);
}

.hero-media::before {
  top: 8%;
  right: -8%;
  width: min(68vw, 62rem);
  aspect-ratio: 1;
  background: radial-gradient(circle at 36% 34%, rgba(216, 255, 62, 0.9) 0 4%, rgba(216, 255, 62, 0.2) 20%, rgba(216, 255, 62, 0) 63%);
  animation: hero-drift 10s ease-in-out infinite alternate;
}

.hero-media::after {
  bottom: -30%;
  left: 14%;
  width: min(55vw, 48rem);
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(72, 80, 255, 0.46), rgba(72, 80, 255, 0) 68%);
}

.hero-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.hero-poster-mobile {
  display: none;
}

.hero-grid-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero-grid-art span {
  position: absolute;
  display: block;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
}

.hero-grid-art span:nth-child(1) {
  top: 17%;
  right: 9%;
  width: 34vw;
  aspect-ratio: 1;
}

.hero-grid-art span:nth-child(2) {
  top: 27%;
  right: 19%;
  width: 14vw;
  aspect-ratio: 1;
}

.hero-grid-art span:nth-child(3) {
  right: 5%;
  bottom: 9%;
  width: 0.75rem;
  height: 0.75rem;
  border: 0;
  background: var(--signal);
  box-shadow: -9rem 3rem 0 rgba(216, 255, 62, 0.6), -21rem -1rem 0 rgba(216, 255, 62, 0.25);
}

.hero-copy {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: clamp(5rem, 9vh, 8rem);
  left: var(--page-pad);
}

.eyebrow {
  margin-bottom: clamp(1.5rem, 3vw, 3rem);
  color: #d1d0c8;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.hero-title {
  max-width: 11ch;
  font-size: clamp(4.2rem, 11.5vw, 12rem);
}

.hero-subcopy {
  max-width: 34rem;
  margin-top: 1.5rem;
  color: #d1d0c8;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: clamp(2rem, 4vw, 3.5rem);
}

.scroll-cue {
  position: absolute;
  z-index: 2;
  right: var(--page-pad);
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.scroll-cue i {
  width: 3rem;
  height: 1px;
  background: currentColor;
  transform-origin: left;
  animation: scroll-cue 1.8s ease-in-out infinite;
}

.statement,
.capabilities,
.trust,
.studio-services,
.studio-copy,
.contact-cta,
.contact-details,
.inquiry-section,
.legal-page {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: clamp(2rem, 6vw, 8rem);
}

.statement > div,
.trust > div,
.studio-copy > div {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
}

.statement .text-link {
  justify-self: start;
}

.capabilities {
  background: var(--ink);
  color: #0a0a0a;
}

.capabilities .section-index {
  color: #54544f;
}

.capability-list {
  margin-top: clamp(3rem, 7vw, 7rem);
  border-top: 1px solid rgba(10, 10, 10, 0.35);
}

.capability-list article {
  display: grid;
  grid-template-columns: 4rem minmax(8rem, 0.75fr) 1fr;
  gap: 1rem;
  align-items: baseline;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
}

.capability-list article > span {
  font-size: 0.65rem;
}

.capability-list h3 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 4rem);
  letter-spacing: -0.05em;
}

.capability-list p {
  max-width: 32rem;
  color: #454540;
}

.trust {
  background: var(--paper-soft);
}

.client-references {
  padding-top: 2rem;
  border-top: 1px solid var(--line);
  white-space: pre-line;
}

.optional-field:empty {
  display: none;
}

.optional-section:not(:has(.editor-value:not(:empty))):not(:has(a[href]:not([href=""]))) {
  display: none;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: clamp(2rem, 6vw, 8rem);
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(2rem, 6vw, 7rem) clamp(1rem, 2.2vw, 2.5rem);
}

.project-card {
  grid-column: span 6;
}

.project-card:nth-child(4n + 2),
.project-card:nth-child(4n + 3) {
  grid-column: span 5;
}

.project-card:nth-child(4n + 2) {
  grid-column-start: 8;
  padding-top: 12vw;
}

.project-card a {
  display: block;
}

.project-card-media,
.journal-card-media {
  position: relative;
  overflow: hidden;
  background: var(--paper-raised);
}

.project-card-media {
  aspect-ratio: 16 / 10;
}

.project-card-image,
.project-card-preview,
.project-card-placeholder,
.journal-card-image,
.journal-card-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-card-placeholder,
.journal-card-placeholder {
  background: linear-gradient(135deg, #1a1a18, #25261e 55%, #151515);
}

.project-card-preview {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 220ms ease;
}

.project-card.is-previewing .project-card-preview {
  opacity: 1;
}

.project-card-action,
.journal-card-media > span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: grid;
  width: 4.25rem;
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--signal);
  color: #050505;
  font-size: 0.65rem;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 180ms ease, transform 180ms ease;
}

.project-card a:hover .project-card-action,
.project-card a:focus-visible .project-card-action,
.journal-card a:hover .journal-card-media > span,
.journal-card a:focus-visible .journal-card-media > span {
  opacity: 1;
  transform: scale(1);
}

.project-card-copy,
.journal-card-copy {
  padding-top: 1rem;
}

.project-card-copy > p,
.journal-card-copy > p,
.detail-hero > p:first-child,
.article-detail header > p:first-child {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.project-card-copy h2,
.journal-card-copy h2 {
  margin-top: 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.8vw, 3rem);
  line-height: 1;
  letter-spacing: -0.045em;
}

.project-card-copy > span,
.journal-card-copy > span {
  display: block;
  margin-top: 0.7rem;
  color: var(--muted);
}

.empty-state {
  display: grid;
  min-height: 21rem;
  place-items: center;
  align-content: center;
  gap: 1rem;
  border: 1px solid var(--line);
  color: var(--muted);
  text-align: center;
}

.empty-state span {
  color: var(--signal);
  font-family: var(--display);
  font-size: 3rem;
  font-weight: 800;
}

.contact-cta {
  min-height: 70vh;
  align-content: center;
  background: var(--signal);
  color: #050505;
}

.contact-cta .section-index {
  color: rgba(5, 5, 5, 0.6);
}

.contact-cta > div {
  display: grid;
  align-content: center;
  gap: 2rem;
}

.contact-cta-title {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(4rem, 10vw, 11rem);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.075em;
}

.contact-cta-copy {
  max-width: 34rem;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
}

.contact-cta .button-link {
  justify-self: start;
  border-color: rgba(5, 5, 5, 0.6);
}

.contact-cta .button-link:hover {
  border-color: #050505;
  background: #050505;
  color: var(--signal);
}

.page-hero,
.contact-hero {
  min-height: 78svh;
  display: grid;
  align-content: end;
  padding-top: calc(var(--header-height) + 5rem);
  gap: 2rem;
  background: radial-gradient(circle at 78% 18%, rgba(216, 255, 62, 0.13), transparent 32%), var(--paper);
}

.page-title {
  font-size: clamp(5.5rem, 18vw, 18rem);
}

.page-intro {
  margin-left: min(28vw, 25rem);
}

.collection-toolbar {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}

.all-filter,
.work-filters button {
  padding: 0.35rem 0;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.all-filter[aria-pressed="true"],
.work-filters button[aria-pressed="true"],
.all-filter:hover,
.work-filters button:hover {
  border-color: var(--signal);
  color: var(--ink);
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

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

.filter-empty {
  padding: 4rem 0;
  color: var(--muted);
}

.studio-hero .page-title {
  font-size: clamp(5rem, 16vw, 16rem);
}

.studio-services {
  background: var(--ink);
  color: #0a0a0a;
}

.studio-services .section-index {
  color: #54544f;
}

.studio-services ol {
  padding: 0;
  margin: 4rem 0 0;
  list-style: none;
  border-top: 1px solid rgba(10, 10, 10, 0.35);
}

.studio-services li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.8fr) 1fr;
  gap: 2rem;
  align-items: baseline;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
}

.studio-services li > span {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.studio-services li p {
  color: #4b4b46;
}

.studio-copy:nth-of-type(even) {
  background: var(--paper-soft);
}

.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4vw, 4rem) clamp(1rem, 2vw, 2rem);
}

.journal-card-media {
  aspect-ratio: 4 / 3;
}

.journal-card:nth-child(3n + 2) {
  padding-top: 6vw;
}

.journal-card-copy p time {
  margin-left: auto;
}

.contact-hero {
  min-height: 70svh;
}

.contact-details {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.direct-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.direct-links > div {
  display: grid;
  gap: 0.75rem;
}

.direct-links > div > span {
  color: var(--muted);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

.direct-link {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: clamp(1.25rem, 2.4vw, 2.4rem);
  letter-spacing: -0.035em;
}

.response-note {
  grid-column: 1 / -1;
  color: var(--muted);
}

.inquiry-section {
  background: var(--paper-soft);
}

.inquiry-section > div {
  min-width: 0;
}

.inquiry-form {
  margin-top: clamp(3rem, 6vw, 6rem);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 2rem;
}

.form-grid label {
  display: grid;
  gap: 0.55rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.form-grid label > span {
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  resize: vertical;
}

.form-grid input,
.form-grid select {
  min-height: 2rem;
}

.form-grid input::placeholder,
.form-grid textarea::placeholder {
  color: #676760;
}

.form-grid label:focus-within {
  border-color: var(--signal);
}

.form-wide {
  grid-column: 1 / -1;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  color: var(--muted);
  font-size: 0.82rem;
}

.privacy-check input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
  accent-color: var(--signal);
}

.privacy-check a {
  border-bottom: 1px solid currentColor;
}

.submit-button {
  display: flex;
  width: min(100%, 25rem);
  align-items: center;
  justify-content: space-between;
  margin-top: 2.5rem;
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: #050505;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.55;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1.25rem;
  color: var(--muted);
}

.form-status[data-state="success"] {
  color: var(--signal);
}

.form-status[data-state="error"] {
  color: var(--danger);
}

.legal-page {
  min-height: 80svh;
  padding-top: calc(var(--header-height) + 7rem);
}

.legal-page article {
  max-width: 60rem;
}

.legal-page .page-title {
  font-size: clamp(3rem, 8vw, 8rem);
}

.legal-body {
  margin-top: 3rem;
  color: #d1d0c8;
  font-size: 1rem;
  line-height: 1.9;
  white-space: pre-line;
}

.legal-date {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.78rem;
}

.detail-hero,
.article-detail > header {
  padding: calc(var(--header-height) + 7rem) var(--page-pad) 0;
}

.detail-hero h1,
.article-detail h1 {
  max-width: 14ch;
  margin-top: 1.5rem;
  font-family: var(--display);
  font-size: clamp(4rem, 11vw, 11rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.detail-subtitle,
.detail-lead,
.article-excerpt,
.article-lead {
  max-width: 42rem;
  margin-top: 1.5rem;
  color: #d1d0c8;
  font-size: clamp(1rem, 1.7vw, 1.4rem);
}

.detail-cover,
.article-cover {
  width: 100%;
  margin-top: clamp(4rem, 8vw, 8rem);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--paper-raised);
}

.detail-description,
.credits-section,
.film-section,
.project-story-copy {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: clamp(2rem, 6vw, 8rem);
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.detail-description > span,
.credits-section > span,
.film-section > span,
.project-story-copy > span {
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.detail-description > div,
.article-body {
  max-width: 48rem;
  color: #d1d0c8;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.8;
}

.detail-description > div > * + *,
.article-body > * + * {
  margin-top: 1.5rem;
}

.detail-description h2,
.detail-description h3,
.article-body h2,
.article-body h3,
.project-story-copy h2 {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
}

.detail-description img,
.article-body img {
  width: 100%;
  margin-top: 2rem;
}

.film-section {
  background: var(--paper-soft);
}

.project-player,
.project-main-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  object-fit: contain;
}

.external-player {
  display: grid;
  min-height: 23rem;
  grid-template-columns: 1fr auto;
  align-content: end;
  gap: 1rem;
  padding: 2rem;
  background: linear-gradient(135deg, #202118, #10100f);
}

.external-player > span {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.external-player strong {
  font-family: var(--display);
  font-size: clamp(2rem, 5vw, 5rem);
  line-height: 0.95;
}

.project-story-media,
.project-gallery {
  padding: clamp(2rem, 5vw, 5rem) var(--page-pad);
  border-top: 1px solid var(--line);
}

.project-story-image {
  width: 100%;
  max-height: 90svh;
  object-fit: contain;
}

.project-gallery > div {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.project-gallery-image {
  width: 100%;
  height: 100%;
  min-height: 18rem;
  object-fit: cover;
}

figcaption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.75rem;
}

blockquote {
  padding: clamp(5rem, 10vw, 10rem) var(--page-pad);
  border-top: 1px solid var(--line);
  background: var(--signal);
  color: #050505;
}

blockquote p {
  max-width: 18ch;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.06em;
}

blockquote cite {
  display: block;
  margin-top: 2rem;
  font-style: normal;
}

.credits-section dl {
  border-top: 1px solid var(--line);
}

.credits-section dl > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

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

.article-detail header > p:first-child time {
  margin-left: auto;
}

.article-body {
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 9rem) var(--page-pad);
}

.article-body a {
  border-bottom: 1px solid var(--signal);
}

.back-link {
  margin: 2rem var(--page-pad) clamp(5rem, 10vw, 10rem);
}

.not-found {
  min-height: 80svh;
  display: grid;
  align-content: center;
  gap: 1.5rem;
  padding: calc(var(--header-height) + 4rem) var(--page-pad) 4rem;
}

.not-found > p {
  color: var(--signal);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
}

.not-found h1 {
  max-width: 12ch;
  font-family: var(--display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  line-height: 0.92;
  letter-spacing: -0.06em;
}

.not-found .button-link {
  justify-self: start;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 3rem;
  align-items: end;
  padding: clamp(4rem, 8vw, 8rem) var(--page-pad) 2rem;
  border-top: 1px solid var(--line);
}

.footer-mark {
  font-family: var(--display);
  font-size: clamp(3.5rem, 10vw, 10rem);
  font-weight: 800;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: flex-end;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.site-footer > p {
  grid-column: 1 / -1;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.motion-ready .reveal-group > *,
.motion-ready .reveal-card {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 700ms cubic-bezier(.2,.75,.25,1), transform 700ms cubic-bezier(.2,.75,.25,1);
}

.motion-ready .reveal-group.in-view > *,
.motion-ready .reveal-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .reveal-group.in-view > *:nth-child(2) {
  transition-delay: 90ms;
}

@keyframes hero-drift {
  from { transform: translate3d(-2%, -1%, 0) scale(0.96); }
  to { transform: translate3d(3%, 2%, 0) scale(1.05); }
}

@keyframes scroll-cue {
  0%, 100% { transform: scaleX(0.3); opacity: 0.5; }
  50% { transform: scaleX(1); opacity: 1; }
}

@media (max-width: 900px) {
  :root {
    --header-height: 4.75rem;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 102;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-content: center;
    gap: 0.38rem;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 1.5rem;
    height: 1px;
    background: currentColor;
    transition: transform 220ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
    transform: translateY(0.22rem) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
    transform: translateY(-0.22rem) rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: space-between;
    padding: calc(var(--header-height) + 3rem) var(--page-pad) 2rem;
    background: var(--signal);
    color: #050505;
    opacity: 0;
    transform: translateY(-1rem);
    transition: visibility 0s linear 280ms, opacity 280ms ease, transform 280ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .mobile-menu-links {
    display: grid;
  }

  .mobile-menu-links a {
    display: grid;
    grid-template-columns: 2rem 1fr;
    align-items: baseline;
    padding: 0.45rem 0;
    font-family: var(--display);
    font-size: clamp(3.5rem, 14vw, 7rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.065em;
  }

  .mobile-menu-links a span {
    font-family: var(--body);
    font-size: 0.6rem;
    letter-spacing: 0.08em;
  }

  .mobile-menu-foot {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
  }

  .site-header.menu-active .brand,
  .site-header.menu-active .menu-toggle {
    color: #050505;
  }

  .statement,
  .capabilities,
  .trust,
  .studio-services,
  .studio-copy,
  .contact-cta,
  .contact-details,
  .inquiry-section,
  .legal-page,
  .detail-description,
  .credits-section,
  .film-section,
  .project-story-copy {
    grid-template-columns: 1fr;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

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

  .project-card,
  .project-card:nth-child(4n + 2),
  .project-card:nth-child(4n + 3) {
    grid-column: auto;
    padding-top: 0;
  }

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

  .journal-card:nth-child(3n + 2) {
    padding-top: 0;
  }

  .page-intro {
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  .hero-poster-desktop {
    display: none;
  }

  .hero-poster-mobile {
    display: block;
  }

  .hero-grid-art {
    background-size: 25vw 25vw;
  }

  .hero-grid-art span:nth-child(1) {
    top: 20%;
    right: -20%;
    width: 90vw;
  }

  .hero-grid-art span:nth-child(2) {
    top: 30%;
    right: 7%;
    width: 38vw;
  }

  .hero-title {
    font-size: clamp(3.6rem, 19vw, 7rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 1.25rem;
  }

  .scroll-cue {
    display: none;
  }

  .section-pad {
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }

  .display-title {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .capability-list article {
    grid-template-columns: 2rem 1fr;
  }

  .capability-list article p {
    grid-column: 2;
  }

  .project-grid,
  .journal-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .project-card-action,
  .journal-card-media > span,
  .project-card-preview {
    display: none;
  }

  .page-hero,
  .contact-hero {
    min-height: 66svh;
  }

  .page-title,
  .studio-hero .page-title {
    font-size: clamp(4rem, 24vw, 7rem);
  }

  .studio-services li {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .direct-links,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

  .detail-hero,
  .article-detail > header {
    padding-top: calc(var(--header-height) + 4rem);
  }

  .detail-hero h1,
  .article-detail h1 {
    font-size: clamp(3.3rem, 18vw, 6rem);
  }

  .detail-cover,
  .article-cover {
    aspect-ratio: 4 / 5;
  }

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

  .credits-section dl > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

  .footer-links {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .motion-ready .reveal-group > *,
  .motion-ready .reveal-card {
    opacity: 1;
    transform: none;
  }

  .hero-availability i > b {
    clip-path: inset(0 0 0 0);
  }
}

/* Home / production inquiry */
.home-inquiry {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(20rem, .78fr) minmax(36rem, 1.22fr);
  gap: clamp(4rem, 7vw, 9rem);
  min-height: 110svh;
  align-items: start;
  overflow: hidden;
  padding-top: clamp(8rem, 13vh, 11rem);
  padding-bottom: clamp(8rem, 12vh, 11rem);
  background:
    radial-gradient(circle at 74% 44%, rgba(255,255,255,.055), transparent 37%),
    #070707;
  color: #f4f4f2;
}

.home-inquiry::before,
.home-inquiry::after {
  position: absolute;
  z-index: -1;
  width: min(78vw, 92rem);
  aspect-ratio: 1;
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.home-inquiry::before {
  top: -10%;
  right: -28%;
}

.home-inquiry::after {
  top: 8%;
  right: -40%;
  width: min(64vw, 74rem);
}

.home-inquiry-copy {
  position: sticky;
  top: calc(var(--header-height) + 3rem);
  display: grid;
  align-content: start;
  min-width: 0;
}

.home-inquiry .section-index {
  margin-bottom: clamp(3rem, 8vh, 7rem);
  color: rgba(255,255,255,.46);
}

.home-inquiry-title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3.8rem, 5.4vw, 7.2rem);
  font-weight: 450;
  line-height: .86;
  letter-spacing: -.075em;
  overflow-wrap: normal;
  word-break: keep-all;
  text-wrap: balance;
}

.home-inquiry-lead {
  max-width: 34rem;
  margin: clamp(2.5rem, 5vh, 4.5rem) 0 0;
  color: rgba(255,255,255,.68);
  font-size: clamp(1rem, 1.25vw, 1.35rem);
  line-height: 1.55;
}

.home-inquiry-note {
  max-width: 34rem;
  margin: 1.1rem 0 0;
  color: rgba(255,255,255,.38);
  font-size: .76rem;
  line-height: 1.65;
}

.home-inquiry-form {
  width: 70%;
  min-width: 0;
  margin: 0;
  justify-self: end;
  letter-spacing: normal;
}

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

.home-field {
  display: grid;
  gap: .45rem;
  min-width: 0;
  color: rgba(255,255,255,.9);
  font-size: .78rem;
}

.home-field-wide {
  grid-column: 1 / -1;
}

.home-field > span,
.home-budget-options legend {
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: normal;
}

.home-field input,
.home-field select,
.home-field textarea {
  width: 100%;
  min-height: 3.35rem;
  padding: .78rem .9rem;
  border: 1px solid rgba(255,255,255,.095);
  border-radius: .5rem;
  outline: 0;
  background: rgba(255,255,255,.075);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.025);
  color: #fff;
  font: inherit;
  font-size: .88rem;
  letter-spacing: normal;
  transition: border-color .25s ease, background-color .25s ease;
}

.home-field textarea {
  min-height: 6.3rem;
  resize: vertical;
}

.home-field input::placeholder,
.home-field textarea::placeholder {
  color: rgba(255,255,255,.38);
}

.home-field select {
  padding-inline-end: 3.1rem;
  appearance: none;
  color-scheme: dark;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='m1 1 5 5 5-5' stroke='%23f4f4f2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-position: right 1.1rem center;
  background-repeat: no-repeat;
  background-size: .7rem auto;
}

.home-field:focus-within input,
.home-field:focus-within select,
.home-field:focus-within textarea {
  border-color: rgba(255,255,255,.38);
  background: rgba(255,255,255,.105);
}

.home-budget-options {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  min-width: 0;
  margin: .3rem 0 .15rem;
  padding: 0;
  border: 0;
}

.home-budget-options legend {
  width: 100%;
  margin-bottom: .1rem;
}

.home-budget-options label {
  position: relative;
  cursor: pointer;
}

.home-budget-options input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.home-budget-options span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0 .7rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .45rem;
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: .76rem;
  letter-spacing: normal;
  transition: border-color .22s ease, background-color .22s ease, color .22s ease;
}

.home-budget-options input:checked + span {
  border-color: rgba(255,255,255,.72);
  background: #f1f1ef;
  color: #090909;
}

.home-budget-options input:focus-visible + span {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.home-inquiry .privacy-check {
  margin-top: 1.05rem;
  color: rgba(255,255,255,.48);
  letter-spacing: normal;
}

.home-inquiry .privacy-check a {
  color: rgba(255,255,255,.82);
}

.home-inquiry .submit-button {
  width: min(100%, 10.5rem);
  min-width: 0;
  margin-top: 1.75rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(255,255,255,.82);
  border-radius: .55rem;
  background: #efefed;
  color: #090909;
  letter-spacing: normal;
}

.home-inquiry .form-status {
  color: rgba(255,255,255,.72);
}

@media (max-width: 899px) {
  .home-inquiry {
    grid-template-columns: 1fr;
    gap: 4.5rem;
    min-height: 0;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .home-inquiry-copy {
    position: static;
  }

  .home-inquiry .section-index {
    margin-bottom: 3rem;
  }

  .home-inquiry-title {
    max-width: 10ch;
    font-size: clamp(3.1rem, 14vw, 5.25rem);
  }

  .home-form-grid {
    grid-template-columns: 1fr;
  }

  .home-field-wide {
    grid-column: auto;
  }

  .home-field input,
  .home-field select,
  .home-field textarea {
    min-height: 4.25rem;
  }

  .home-inquiry .submit-button {
    width: 100%;
  }

  .home-inquiry-form {
    width: 100%;
  }

  .home-form-grid {
    gap: 1.15rem;
  }

  .home-field {
    gap: .65rem;
  }

  .home-field textarea {
    min-height: 8rem;
  }

  .home-budget-options {
    gap: .65rem;
  }

  .home-budget-options span {
    min-height: 3rem;
    padding: 0 .9rem;
  }
}

/* Orbus-measured vertical-to-horizontal Home portfolio */
.horizontal-portfolio {
  position: relative;
  min-height: 600svh;
  overflow: visible;
  color: #171717;
  background: #efefec;
}

.horizontal-portfolio-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  overflow: hidden;
  background:
    linear-gradient(rgba(15,15,15,.055) 1px, transparent 1px) 0 4.5rem / 100% calc(100% - 4.5rem) no-repeat,
    repeating-linear-gradient(90deg, transparent 0, transparent calc(16.666vw - 1px), rgba(15,15,15,.045) calc(16.666vw - 1px), rgba(15,15,15,.045) 16.666vw),
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.78), rgba(239,239,236,.94) 58%, #e9e9e6 100%);
}

.horizontal-portfolio-sticky::after {
  position: absolute;
  inset: 0;
  z-index: 10;
  pointer-events: none;
  content: "";
  opacity: .2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.17'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.horizontal-portfolio-intro {
  position: absolute;
  inset: 0;
  z-index: 2;
  will-change: opacity, transform;
}

.horizontal-portfolio-intro > span {
  position: absolute;
  top: 14.5%;
  left: max(2rem, 1.67vw);
  color: #747474;
  font-size: .68rem;
  letter-spacing: .02em;
}

.horizontal-portfolio-intro > h2 {
  position: absolute;
  top: 19%;
  left: max(2rem, 1.67vw);
  max-width: none;
  font-family: var(--display);
  font-size: clamp(3.5rem, 4.2vw, 5.15rem);
  font-weight: 500;
  line-height: .94;
  letter-spacing: -.065em;
  white-space: nowrap;
}

.horizontal-portfolio-intro > div {
  position: absolute;
  bottom: 2.5rem;
  left: max(2rem, 1.67vw);
  display: grid;
  max-width: 29rem;
  gap: 1.75rem;
}

.horizontal-portfolio-intro p {
  color: #414141;
  font-size: 1rem;
  line-height: 1.38;
}

.horizontal-portfolio-intro a,
.horizontal-portfolio-end a {
  justify-self: start;
  padding: .92rem 1.2rem;
  color: #fff;
  border-radius: .35rem;
  background: #111;
  font-size: .8rem;
  text-decoration: none;
}

.horizontal-portfolio-end a {
  justify-self: center;
}

.horizontal-portfolio-track {
  position: absolute;
  top: 9.25svh;
  left: 54.82vw;
  z-index: 3;
  display: flex;
  width: max-content;
  gap: min(10.416vw, 200px);
  will-change: transform;
}

.horizontal-project-card {
  width: 52.083vw;
  height: 81.48svh;
  flex: none;
  transform: translate3d(0, var(--portfolio-card-lift, 190px), 0);
  will-change: transform;
}

.horizontal-project-card:first-child {
  --portfolio-card-lift: 0px;
}

.horizontal-project-card > a {
  display: grid;
  height: 100%;
  grid-template-rows: minmax(0, 1fr) 9.4rem;
  color: inherit;
  text-decoration: none;
}

.horizontal-project-media {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #d6d6d2;
}

.horizontal-project-image,
.horizontal-project-media picture,
.horizontal-project-media picture > img,
.horizontal-project-preview {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.horizontal-project-preview {
  position: absolute;
  inset: 0;
}

.horizontal-project-copy {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(13rem, .75fr);
  grid-template-rows: auto 1fr;
  gap: .5rem 2rem;
  padding: 1.15rem 0 0;
  border-bottom: 1px solid rgba(17,17,17,.25);
}

.horizontal-project-copy > span {
  color: #666;
  font-size: .72rem;
  letter-spacing: .04em;
}

.horizontal-project-copy h3 {
  grid-column: 1;
  font-family: var(--display);
  font-size: clamp(2rem, 2.55vw, 3rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.055em;
}

.horizontal-project-copy p {
  grid-column: 2;
  grid-row: 2;
  max-width: 24rem;
  color: #444;
  font-size: .92rem;
  line-height: 1.4;
}

.horizontal-project-copy i {
  position: absolute;
  right: 0;
  top: 1.15rem;
  font-size: .75rem;
  font-style: normal;
}

.horizontal-portfolio-end {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(52rem, 72vw);
  gap: 2.5rem;
  opacity: 0;
  text-align: center;
  transform: translate3d(0, 36px, 0);
  translate: -50% -50%;
  will-change: opacity, transform;
}

.horizontal-portfolio-end h2 {
  font-family: var(--display);
  font-size: clamp(3.25rem, 5vw, 6rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
}

@media (max-width: 899px) {
  .horizontal-portfolio {
    min-height: auto;
  }

  .horizontal-portfolio-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 7rem 1.5rem;
    overflow: visible;
  }

  .horizontal-portfolio-intro,
  .horizontal-portfolio-track,
  .horizontal-portfolio-end {
    position: relative;
    inset: auto;
    transform: none !important;
    translate: none;
  }

  .horizontal-portfolio-intro > span,
  .horizontal-portfolio-intro > h2,
  .horizontal-portfolio-intro > div {
    position: static;
  }

  .horizontal-portfolio-intro {
    display: grid;
    gap: 1.5rem;
    opacity: 1 !important;
  }

  .horizontal-portfolio-intro > h2 {
    max-width: 9ch;
    font-size: clamp(3rem, 13vw, 4.8rem);
  }

  .horizontal-portfolio-intro > div {
    max-width: 30rem;
  }

  .horizontal-portfolio-track {
    display: grid;
    width: auto;
    gap: 4rem;
    margin-top: 5rem;
  }

  .horizontal-project-card {
    width: 100%;
    height: auto;
    transform: none !important;
  }

  .horizontal-project-card > a {
    display: block;
  }

  .horizontal-project-media {
    aspect-ratio: 1.25 / 1;
  }

  .horizontal-project-copy {
    min-height: 10rem;
    grid-template-columns: 1fr;
  }

  .horizontal-project-copy p {
    grid-column: 1;
    grid-row: auto;
    padding-bottom: 1rem;
  }

  .horizontal-portfolio-end {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .horizontal-portfolio {
    min-height: auto;
  }

  .horizontal-portfolio-sticky {
    position: relative;
    height: auto;
    min-height: 0;
    padding: 8rem var(--page-pad);
    overflow: visible;
  }

  .horizontal-portfolio-intro,
  .horizontal-portfolio-track,
  .horizontal-project-card {
    transform: none !important;
  }

  .horizontal-portfolio-intro {
    position: relative;
    inset: auto;
    min-height: 70svh;
    opacity: 1 !important;
  }

  .horizontal-portfolio-track {
    position: relative;
    inset: auto;
    display: grid;
    width: auto;
    gap: 5rem;
  }

  .horizontal-project-card {
    width: 100%;
    height: auto;
  }

  .horizontal-project-card > a {
    grid-template-rows: minmax(32rem, 62svh) 9.4rem;
  }

  .horizontal-portfolio-end {
    display: none;
  }
}

@media print {
  .site-header,
  .mobile-menu,
  .scroll-cue,
  .site-footer,
  .project-card-preview {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }
}

/* Orbus-inspired Teampros presentation v2: bounded visual override. */
:root {
  color-scheme: dark;
  --ink: #f7f7f4;
  --paper: #000;
  --paper-soft: #0d0d0d;
  --paper-raised: #151515;
  --paper-light: #e8e8e8;
  --ink-light: #333;
  --muted: #8a8a8a;
  --line: rgba(255, 255, 255, 0.18);
  --line-strong: rgba(255, 255, 255, 0.48);
  --signal: #e8e8e8;
  --page-pad: clamp(1.5rem, 2.3vw, 2rem);
  --header-height: 6.25rem;
  --display: "DM Sans", "Pretendard Variable", Pretendard, "Helvetica Neue", Arial, sans-serif;
  --body: "DM Sans", "Pretendard Variable", Pretendard, "Helvetica Neue", Arial, sans-serif;
}

body {
  background: #000;
  color: var(--ink);
  font-weight: 500;
}

body::before {
  position: fixed;
  z-index: 999;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}

.site-header {
  height: var(--header-height);
  padding: 1.5rem var(--page-pad);
  border: 0;
  mix-blend-mode: normal;
}

.site-header.is-filled,
.site-header.menu-active {
  height: var(--header-height);
  border: 0;
  background: transparent;
  backdrop-filter: none;
}

.brand {
  min-width: 7.25rem;
  color: #fff;
  font-size: 1.15rem;
  line-height: 0.78;
  letter-spacing: -0.075em;
}

.brand span:last-child {
  color: inherit;
}

.header-meta {
  position: absolute;
  top: 2rem;
  left: 24%;
  display: flex;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.68rem;
  letter-spacing: -0.02em;
}

.desktop-nav {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  gap: 0;
  padding: 0.45rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0.45rem;
  background: rgba(20, 20, 20, 0.94);
  box-shadow: 0 0.4rem 2rem rgba(0, 0, 0, 0.18);
  transform: translateX(-50%);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.desktop-nav a {
  padding: 0.78rem 1.15rem;
  border-radius: 0.25rem;
  color: rgba(255, 255, 255, 0.65);
}

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

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.header-contact,
.menu-toggle {
  display: inline-flex;
  min-width: 8.75rem;
  height: 3.25rem;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.1rem;
  border: 0;
  border-radius: 0.45rem;
  background: var(--paper-light);
  color: #111;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.menu-toggle {
  display: none;
}

.home-hero {
  min-height: 100svh;
  background: #000;
}

.home-hero::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 28%, transparent 70%, rgba(0, 0, 0, 0.48));
}

.hero-media {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.11), transparent 23%),
    radial-gradient(circle at 26% 72%, rgba(72, 75, 85, 0.32), transparent 31%),
    #000;
}

.hero-media::before {
  top: 10%;
  right: 8%;
  width: min(47vw, 44rem);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-media::after {
  bottom: -18%;
  left: 5%;
  width: min(45vw, 43rem);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
}

.hero-grid-art {
  opacity: 0.7;
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(to bottom, #000, rgba(0, 0, 0, 0.85) 75%, transparent);
}

.hero-grid-art span {
  border-color: rgba(255, 255, 255, 0.13);
}

.hero-grid-art span:nth-child(3) {
  background: #fff;
  box-shadow: -9rem 3rem 0 rgba(255, 255, 255, 0.55), -21rem -1rem 0 rgba(255, 255, 255, 0.2);
}

.hero-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(64vw, 64rem);
  aspect-ratio: 1;
  transform: translate(-50%, -48%);
}

.hero-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.hero-orbit i:nth-child(2) {
  inset: 17%;
}

.hero-orbit i:nth-child(3) {
  inset: 34%;
}

.hero-stage-word {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display);
  font-size: clamp(8rem, 20.8vw, 23rem);
  font-weight: 500;
  line-height: 0.72;
  letter-spacing: -0.095em;
  white-space: nowrap;
  transform: translate(-51.5%, -48%);
  text-shadow: 0 0 4rem rgba(255, 255, 255, 0.12);
}

.hero-kicker {
  position: absolute;
  z-index: 3;
  top: 8rem;
  right: var(--page-pad);
  left: var(--page-pad);
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.66rem;
  letter-spacing: 0.02em;
}

.hero-copy {
  z-index: 3;
  right: auto;
  bottom: clamp(4.6rem, 7vh, 6.5rem);
  left: 50%;
  width: min(90vw, 47rem);
  text-align: center;
  transform: translateX(-50%);
}

.eyebrow {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}

.hero-title {
  max-width: none;
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.hero-subcopy {
  max-width: 38rem;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(0.95rem, 1.1vw, 1.08rem);
  line-height: 1.45;
}

.hero-actions {
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.6rem;
}

.button-link {
  min-width: 12.5rem;
  height: 3.15rem;
  padding: 0 1.1rem;
  overflow: hidden;
  border: 0;
  border-radius: 0.35rem;
  background: var(--paper-light);
  color: #111;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.button-link:hover {
  border: 0;
  background: #fff;
  color: #000;
}

.roll-label {
  position: relative;
  display: grid;
  height: 1.2em;
  overflow: hidden;
  align-items: start;
}

.roll-label > span {
  grid-area: 1 / 1;
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.roll-label > span:last-child {
  transform: translateY(150%) rotateX(-80deg);
}

.button-link:hover .roll-label > span:first-child,
.button-link:focus-visible .roll-label > span:first-child {
  transform: translateY(-150%) rotateX(80deg);
}

.button-link:hover .roll-label > span:last-child,
.button-link:focus-visible .roll-label > span:last-child {
  transform: translateY(0) rotateX(0);
}

.link-arrow {
  transition: transform 360ms cubic-bezier(.22, 1, .36, 1);
}

.button-link:hover .link-arrow,
.button-link:focus-visible .link-arrow {
  transform: rotate(45deg);
}

.reel-link {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.scroll-cue {
  z-index: 3;
  font-weight: 500;
}

.statement {
  min-height: 105svh;
  align-content: center;
  background: var(--paper-light);
  color: var(--ink-light);
}

.statement .section-index,
.statement .lead-copy {
  color: #666;
}

.statement .display-title {
  max-width: 14ch;
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.statement .text-link {
  font-weight: 500;
}

@media (max-width: 1200px) {
  .desktop-nav,
  .header-meta {
    display: none;
  }

  .header-contact {
    margin-left: auto;
    margin-right: 0.6rem;
  }

  .menu-toggle {
    display: inline-flex;
    min-width: 6.25rem;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 5.75rem;
  }

  .site-header {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .header-contact {
    display: none;
  }

  .menu-toggle {
    min-width: 6rem;
    height: 2.9rem;
  }

  .menu-line {
    width: 0.7rem;
    height: 1px;
    background: currentColor;
  }

  .hero-kicker {
    top: 6.6rem;
    font-size: 0.58rem;
  }

  .hero-kicker span:last-child {
    max-width: 9rem;
    text-align: right;
  }

  .hero-stage-word {
    top: 43%;
    font-size: 29vw;
    transform: translate(-52%, -50%) rotate(-90deg);
  }

  .hero-orbit {
    top: 42%;
    width: 130vw;
  }

  .hero-copy {
    bottom: 3rem;
    width: calc(100vw - 3rem);
    text-align: left;
  }

  .hero-title {
    font-size: 2.65rem;
  }

  .hero-subcopy {
    margin-right: 0;
    margin-left: 0;
  }

  .hero-actions {
    align-items: stretch;
    gap: 1rem;
  }

  .button-link {
    width: 100%;
  }

  .reel-link {
    align-self: flex-start;
  }

  .statement {
    min-height: 92svh;
  }
}

/* Full route system */
.site-header.on-light .brand,
.site-header.on-light .header-meta {
  color: #111;
}

.site-header.on-light .header-contact,
.site-header.on-light .menu-toggle {
  background: #111;
  color: #fff;
}

.site-header.menu-active .brand,
.site-header.menu-active .menu-toggle {
  color: #fff;
}

.site-header.menu-active .menu-toggle {
  background: #202020;
}

.section-pad {
  padding: clamp(7rem, 11vw, 10rem) var(--page-pad);
  border-color: rgba(255, 255, 255, 0.16);
}

.section-index {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.display-title {
  max-width: 14ch;
  font-size: clamp(3.2rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.06em;
}

.lead-copy,
.page-intro {
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
}

.capabilities {
  min-height: 100svh;
  align-content: center;
  background: var(--paper-light);
  color: var(--ink-light);
}

.capabilities .section-index {
  color: #777;
}

.capability-list {
  border-color: rgba(0, 0, 0, 0.25);
}

.capability-list article {
  position: relative;
  grid-template-columns: 4rem minmax(12rem, 1fr) minmax(16rem, 1fr) 2rem;
  padding: 2.1rem 0;
  overflow: hidden;
  border-color: rgba(0, 0, 0, 0.25);
}

.capability-list article::after {
  display: none;
}

.capability-arrow {
  display: block;
  font-size: 1.1rem;
  transition: transform 320ms cubic-bezier(.22, 1, .36, 1);
}

.capability-list article:hover .capability-arrow {
  transform: rotate(45deg);
}

.capability-list h3 {
  font-size: clamp(2.2rem, 3.9vw, 3.5rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.055em;
}

.capability-list p {
  color: #666;
  font-size: 1rem;
  line-height: 1.45;
}

.trust {
  min-height: 105svh;
  align-content: center;
  background:
    radial-gradient(circle at 75% 50%, rgba(255,255,255,.08), transparent 28%),
    #000;
}

.trust > div {
  grid-column: 2;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, .8fr);
  align-items: end;
}

.studio-copy > div,
.studio-services > div {
  grid-column: 2;
}

.trust .display-title {
  max-width: 11ch;
}

.trust .lead-copy {
  color: #a6a6a6;
}

.client-references {
  grid-column: 1 / -1;
}

.client-logo-band {
  grid-column: 1 / -1;
  display: grid;
  gap: clamp(2rem, 4vw, 3.25rem);
  margin-top: clamp(3rem, 7vw, 6rem);
  padding-top: clamp(2rem, 3.5vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.client-logo-list {
  display: flex;
  width: max-content;
  gap: clamp(2.5rem, 4vw, 5.5rem);
  align-items: center;
  margin: 0;
  padding: 0 clamp(2.5rem, 4vw, 5.5rem) 0 0;
  list-style: none;
}

.client-logo-carousel {
  width: 100%;
  overflow: hidden;
  padding: .75rem 0 1rem;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.client-logo-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: client-logo-carousel 240s linear infinite;
}

.client-logo-carousel:hover .client-logo-track,
.client-logo-carousel:focus-within .client-logo-track {
  animation-play-state: paused;
}

.client-logo-list li {
  display: grid;
  flex: 0 0 clamp(7.5rem, 10vw, 10.5rem);
  height: clamp(2.25rem, 4vw, 3.25rem);
  place-items: center;
}

.client-logo-list img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 2.2rem;
  opacity: .62;
  filter: grayscale(1) invert(.35);
  transition: opacity 240ms ease, filter 240ms ease;
}

.client-logo-list li:hover img {
  opacity: .9;
  filter: grayscale(1) invert(.22);
}

.client-wordmark {
  display: block;
  color: rgba(255, 255, 255, .52);
  font-size: clamp(.68rem, .86vw, .9rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-align: center;
  white-space: nowrap;
  transition: color 240ms ease;
}

.client-logo-list li:hover .client-wordmark {
  color: rgba(255, 255, 255, .82);
}

@keyframes client-logo-carousel {
  to { transform: translate3d(-50%, 0, 0); }
}

.featured,
.journal-collection,
.work-collection {
  background: var(--paper-light);
  color: var(--ink-light);
  border-color: rgba(0, 0, 0, 0.2);
}

.featured .section-index,
.journal-collection .section-index,
.work-collection .section-index {
  color: #777;
}

.featured .project-grid,
.work-collection .project-grid {
  width: min(100%, 62.5rem);
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: clamp(6rem, 10vw, 9rem);
}

.featured .project-card,
.work-collection .project-card,
.featured .project-card:nth-child(n),
.work-collection .project-card:nth-child(n) {
  grid-column: auto;
  padding: 0;
}

.project-card-media {
  aspect-ratio: 1.53 / 1;
  background: #d2d2d2;
}

.project-card-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem 2rem;
  padding-top: 1.25rem;
}

.project-card-copy > p {
  grid-column: 1 / -1;
  color: #737373;
}

.project-card-copy h2 {
  margin: 0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 500;
  letter-spacing: -0.055em;
}

.project-card-copy > span {
  width: min(24rem, 38vw);
  margin: 0;
  color: #686868;
  line-height: 1.35;
}

.project-card-action,
.journal-card-media > span {
  right: 1.25rem;
  bottom: 1.25rem;
  width: auto;
  min-width: 7.5rem;
  height: 2.8rem;
  padding: 0 1rem;
  border-radius: 0.3rem;
  background: #111;
  color: #fff;
  font-weight: 500;
  transform: translateY(.6rem);
}

.project-card a:hover .project-card-action,
.project-card a:focus-visible .project-card-action,
.journal-card a:hover .journal-card-media > span,
.journal-card a:focus-visible .journal-card-media > span {
  transform: translateY(0);
}

.empty-state {
  min-height: 45rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(17rem, .65fr);
  place-items: stretch;
  align-items: end;
  gap: clamp(2rem, 5vw, 6rem);
  border: 0;
  color: inherit;
  text-align: left;
}

.empty-showcase {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background: #0d0d0d;
}

.empty-showcase::before {
  position: absolute;
  inset: 0;
  content: "TEAMPROS";
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 500;
  letter-spacing: -0.09em;
  transform: rotate(-8deg);
}

.empty-showcase::after {
  position: absolute;
  inset: 8%;
  content: "";
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 6rem rgba(255,255,255,.025), 0 0 0 12rem rgba(255,255,255,.018);
}

.empty-showcase i {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #fff;
}

.empty-showcase i:nth-child(1) { top: 18%; left: 21%; }
.empty-showcase i:nth-child(2) { right: 18%; bottom: 26%; }
.empty-showcase i:nth-child(3) { right: 37%; bottom: 12%; opacity: .4; }

.empty-state-copy {
  padding-bottom: 1rem;
}

.empty-state-copy span {
  color: #6a6a6a;
  font-family: var(--body);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .02em;
}

.empty-state-copy p {
  max-width: 22rem;
  margin-top: 1rem;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -.04em;
}

.journal-grid {
  gap: 2rem;
}

.journal-card-copy h2 {
  font-weight: 500;
}

.empty-journal {
  min-height: 28rem;
}

.empty-journal-lines {
  border-top: 1px solid rgba(0, 0, 0, .22);
}

.empty-journal-lines i {
  display: block;
  height: 8rem;
  border-bottom: 1px solid rgba(0, 0, 0, .22);
  background: linear-gradient(90deg, transparent 0 12%, rgba(0,0,0,.04) 12% 32%, transparent 32%);
}

.contact-cta {
  position: relative;
  min-height: 110svh;
  overflow: hidden;
  background: #000;
  color: #fff;
}

.contact-cta::before {
  position: absolute;
  right: -8vw;
  bottom: -20vw;
  width: 60vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 8vw rgba(255,255,255,.018), 0 0 0 16vw rgba(255,255,255,.012);
}

.contact-cta-title {
  max-width: 10ch;
  font-size: clamp(4rem, 9vw, 9rem);
  font-weight: 500;
  line-height: .88;
  letter-spacing: -.075em;
}

.contact-cta-copy {
  color: #9a9a9a;
}

.contact-cta .button-link {
  border: 0;
  background: var(--paper-light);
  color: #111;
}

.page-hero,
.contact-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  align-content: end;
  padding-top: calc(var(--header-height) + 6rem);
  padding-bottom: 5rem;
  background:
    radial-gradient(circle at 70% 38%, rgba(255,255,255,.1), transparent 25%),
    #000;
}

.page-hero::after {
  position: absolute;
  z-index: 0;
  top: 14%;
  right: -9%;
  width: 46vw;
  aspect-ratio: 1;
  content: "";
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 50%;
}

.page-hero > *,
.contact-hero > * {
  position: relative;
  z-index: 1;
}

.page-title,
.studio-hero .page-title {
  font-size: clamp(5.5rem, 13vw, 12rem);
  font-weight: 500;
  line-height: .76;
  letter-spacing: -.085em;
}

.page-intro {
  max-width: 32rem;
  margin-left: min(43vw, 42rem);
  color: #9a9a9a;
}

main[data-teampros-page="teampros.work"] .page-hero,
main[data-teampros-page="teampros.journal"] .page-hero,
.contact-hero {
  background: var(--paper-light);
  color: var(--ink-light);
}

main[data-teampros-page="teampros.work"] .page-hero::after,
main[data-teampros-page="teampros.journal"] .page-hero::after,
.contact-hero::after {
  border-color: rgba(0,0,0,.18);
}

main[data-teampros-page="teampros.work"] .page-intro,
main[data-teampros-page="teampros.journal"] .page-intro,
.contact-hero .page-intro {
  color: #6a6a6a;
}

.collection-toolbar,
.work-filters {
  border-color: rgba(0,0,0,.25);
}

.all-filter,
.work-filters button {
  color: #747474;
  font-weight: 500;
}

.all-filter[aria-pressed="true"],
.work-filters button[aria-pressed="true"],
.all-filter:hover,
.work-filters button:hover {
  border-color: #111;
  color: #111;
}

.studio-copy:nth-of-type(even),
main[data-teampros-page="teampros.services"] .studio-copy:nth-of-type(odd) {
  background: var(--paper-light);
  color: var(--ink-light);
  border-color: rgba(0,0,0,.2);
}

.studio-copy {
  min-height: 88svh;
  align-content: center;
}

.studio-copy .editor-value.optional-field {
  padding-top: 1.5rem;
  border-top: 1px solid currentColor;
  color: #777;
  font-size: .78rem;
  letter-spacing: .06em;
  white-space: pre-line;
}

.studio-services {
  min-height: 100svh;
  align-content: center;
  background: var(--paper-light);
  color: var(--ink-light);
}

.studio-services li {
  grid-template-columns: minmax(10rem, .75fr) minmax(18rem, 1.25fr);
  padding: 2.4rem 0;
  border-color: rgba(0,0,0,.25);
}

.studio-services li > span {
  font-size: clamp(2rem, 3.4vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.05em;
}

.studio-services li p {
  color: #686868;
}

.contact-ticker {
  position: absolute;
  z-index: 0;
  top: 22%;
  right: 0;
  left: 0;
  display: flex;
  width: max-content;
  color: rgba(0,0,0,.06);
  font-size: clamp(6rem, 18vw, 17rem);
  font-weight: 500;
  line-height: .8;
  letter-spacing: -.08em;
  white-space: nowrap;
  animation: contact-marquee 22s linear infinite;
}

.contact-hero-art {
  position: absolute;
  z-index: 0;
  right: 7%;
  bottom: 12%;
  width: min(35vw, 30rem);
  aspect-ratio: 1;
}

.contact-hero-art i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(0,0,0,.18);
  border-radius: 50%;
}

.contact-hero-art i:nth-child(2) { inset: 22%; }
.contact-hero-art i:nth-child(3) { inset: 44%; background: #111; }

.contact-details,
.inquiry-section,
.legal-page {
  background: var(--paper-light);
  color: var(--ink-light);
  border-color: rgba(0,0,0,.2);
}

.contact-details .section-index,
.inquiry-section .section-index,
.legal-page .section-index {
  color: #747474;
}

.direct-link {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.055em;
}

.inquiry-section {
  padding-bottom: 12rem;
}

.inquiry-form {
  border-top-color: rgba(0,0,0,.26);
}

.form-grid {
  gap: 0;
}

.form-grid label {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(0,0,0,.23);
}

.form-grid label:nth-child(odd):not(.form-wide):not(.honeypot) {
  padding-right: 1.5rem;
}

.form-grid label:nth-child(even):not(.form-wide):not(.honeypot) {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(0,0,0,.23);
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  border: 0;
  background: transparent;
  color: #111;
}

.form-grid label:focus-within {
  background: rgba(0,0,0,.025);
}

.privacy-check a {
  border-color: #111;
}

.submit-button {
  min-width: 14rem;
  border: 0;
  border-radius: .35rem;
  background: #111;
  color: #fff;
}

.legal-page {
  min-height: 100svh;
  padding-top: calc(var(--header-height) + 7rem);
}

.legal-page .page-title {
  color: #111;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
}

.legal-body {
  color: #444;
  font-size: 1.08rem;
  line-height: 1.85;
}

.project-detail,
.article-detail {
  background: #000;
}

.detail-hero,
.article-detail > header {
  padding-top: calc(var(--header-height) + 8rem);
}

.detail-hero h1,
.article-detail h1 {
  font-weight: 500;
  letter-spacing: -.075em;
}

.detail-cover,
.article-cover {
  background:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,.12), transparent 25%),
    linear-gradient(135deg, #171717, #090909);
}

.article-detail {
  background: var(--paper-light);
  color: var(--ink-light);
}

.article-body {
  max-width: 47rem;
  color: #444;
  font-size: 1.08rem;
  line-height: 1.85;
}

.site-footer {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 6rem;
  padding: clamp(6rem, 10vw, 9rem) var(--page-pad) 2rem;
  background: #000;
  color: #fff;
}

.footer-cta > span {
  display: block;
  margin-bottom: 1.5rem;
  color: #777;
  font-size: .68rem;
}

.footer-cta > a {
  position: relative;
  display: inline-block;
  font-size: clamp(6rem, 18vw, 18rem);
  font-weight: 500;
  line-height: .68;
  letter-spacing: -.1em;
}

.footer-cta > a > span {
  position: absolute;
  top: .05em;
  right: -.55em;
  font-size: .16em;
  letter-spacing: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.footer-mark {
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: -.07em;
}

.footer-nav,
.footer-meta,
.footer-links {
  display: grid;
  align-content: start;
  justify-content: start;
  gap: .65rem;
  font-size: .75rem;
}

.footer-meta > span {
  color: #777;
}

.footer-base {
  display: flex;
  justify-content: space-between;
  padding-top: 1.25rem;
  border-top: 1px solid var(--line);
  color: #777;
  font-size: .68rem;
}

.footer-base button {
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
}

.mobile-menu {
  z-index: 100;
  grid-template-columns: minmax(15rem, .9fr) minmax(20rem, 1.1fr);
  gap: 5vw;
  padding: calc(var(--header-height) + 3rem) var(--page-pad) 2rem;
  background:
    radial-gradient(circle at 25% 65%, rgba(255,255,255,.09), transparent 25%),
    #000;
  color: #fff;
}

.mobile-menu-art {
  position: relative;
  min-height: 60vh;
}

.mobile-menu-art span {
  position: absolute;
  width: 46%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.2);
  background: linear-gradient(135deg, #262626, #090909);
}

.mobile-menu-art span:nth-child(1) { top: 2%; left: 4%; transform: rotate(-7deg); }
.mobile-menu-art span:nth-child(2) { top: 18%; left: 32%; transform: rotate(5deg); }
.mobile-menu-art span:nth-child(3) { right: 3%; bottom: 0; transform: rotate(-2deg); }

.mobile-menu-links {
  align-self: center;
}

.mobile-menu-links a {
  grid-template-columns: 2.2rem 1fr;
  padding: .5rem 0;
  color: #fff;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 500;
  line-height: .95;
  letter-spacing: -.06em;
}

.mobile-menu-foot {
  position: absolute;
  right: var(--page-pad);
  bottom: 2rem;
  left: var(--page-pad);
  justify-content: space-between;
  color: #777;
}

@keyframes contact-marquee {
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .mobile-menu {
    grid-template-columns: 1fr;
  }

  .mobile-menu-art {
    position: absolute;
    inset: auto 0 0 38%;
    min-height: 47vh;
    opacity: .62;
  }

  .mobile-menu-links {
    position: relative;
    z-index: 1;
  }

  .mobile-menu-links a {
    font-size: clamp(2.7rem, 9vw, 5rem);
  }

  .trust > div {
    grid-template-columns: 1fr;
  }

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

  .empty-showcase {
    min-height: 30rem;
  }

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

  .footer-meta {
    grid-column: 2;
  }
}

@media (max-width: 767px) {
  .section-pad {
    padding: 5.5rem 1.5rem;
  }

  .display-title,
  .statement .display-title {
    font-size: 3.2rem;
  }

  .statement,
  .capabilities,
  .trust,
  .studio-copy,
  .studio-services,
  .contact-cta {
    min-height: auto;
  }

  .statement,
  .capabilities,
  .trust,
  .studio-copy,
  .studio-services,
  .contact-cta {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }

  .capability-list article {
    grid-template-columns: 2rem 1fr 1.25rem;
    gap: .75rem;
  }

  .capability-list article p {
    grid-column: 2 / -1;
  }

  .featured .project-grid,
  .work-collection .project-grid {
    gap: 4rem;
  }

  .project-card-media {
    aspect-ratio: 1.63 / 1;
  }

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

  .project-card-copy > p {
    grid-column: auto;
  }

  .project-card-copy > span {
    width: auto;
  }

  .empty-state {
    min-height: auto;
  }

  .empty-showcase {
    min-height: 28rem;
  }

  .page-hero,
  .contact-hero {
    min-height: 100svh;
    padding-bottom: 4rem;
  }

  .page-title,
  .studio-hero .page-title {
    font-size: 4.6rem;
  }

  .page-intro {
    margin-left: 0;
  }

  .studio-services li {
    grid-template-columns: 1fr;
  }

  .contact-ticker {
    top: 28%;
    font-size: 8rem;
  }

  .contact-hero-art {
    right: -18%;
    bottom: 22%;
    width: 78vw;
  }

  .form-grid label:nth-child(odd):not(.form-wide):not(.honeypot),
  .form-grid label:nth-child(even):not(.form-wide):not(.honeypot) {
    padding-right: 0;
    padding-left: 0;
    border-left: 0;
  }

  .submit-button {
    width: 100%;
  }

  .footer-cta > a {
    font-size: 6.6rem;
  }

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

  .footer-meta {
    grid-column: auto;
  }

  .footer-base {
    gap: 1rem;
    align-items: flex-start;
    flex-direction: column;
  }

  .mobile-menu {
    padding-top: calc(var(--header-height) + 2.5rem);
  }

  .mobile-menu-links a {
    grid-template-columns: 1.9rem 1fr;
    font-size: 2.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-ticker {
    animation: none;
  }
}

@media (max-width: 1200px) {
  .mobile-menu {
    position: fixed;
    z-index: 101;
    inset: 0;
    display: grid;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: visibility 0s linear 420ms, opacity 420ms cubic-bezier(.22, 1, .36, 1), transform 420ms cubic-bezier(.22, 1, .36, 1);
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .menu-toggle {
    display: inline-flex;
    width: auto;
    place-content: unset;
    gap: .7rem;
    padding: 0 1.1rem;
    background: var(--paper-light);
  }

  .menu-toggle > .menu-toggle-label {
    display: block;
    width: auto;
    height: auto;
    background: transparent;
    font-size: .74rem;
    line-height: 1;
  }

  .menu-toggle > .menu-line {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    background: transparent !important;
  }

  .menu-toggle[aria-expanded="true"] > span:nth-of-type(2),
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(3),
  .menu-toggle[aria-expanded="true"] > span:nth-of-type(4) {
    transform: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-label {
    font-size: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-toggle-label::after {
    content: "CLOSE";
    font-size: .74rem;
  }
}

@media (max-width: 767px) {
  .hero-stage-word {
    top: 29%;
    color: rgba(255, 255, 255, .46);
    font-size: 18vw;
  }
}

/* Orbus-calibrated Teampros presentation v3: measured 1440px representative slice. */
.home-hero {
  min-height: 100svh;
  background: #030303;
}

.home-hero::after {
  background: linear-gradient(180deg, rgba(0, 0, 0, .1), transparent 32%, transparent 75%, rgba(0, 0, 0, .86));
}

.hero-media {
  inset: 0 var(--page-pad);
  background: #030303;
}

.hero-reference-wave {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 8.5%;
  left: 0;
  width: 100%;
  height: 49%;
  object-fit: cover;
  object-position: 50% 56%;
  opacity: .94;
  filter: saturate(.88) contrast(1.04) brightness(.87);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0, #000 20%, #000 83%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0, #000 20%, #000 83%, transparent 100%);
}

.hero-poster:not([src=""]) {
  z-index: 1;
  opacity: .18;
  mix-blend-mode: luminosity;
}

.hero-grid-art {
  z-index: 2;
  opacity: .22;
  background-size: 12.5vw 12.5vw;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-grid-art span,
.hero-media::before,
.hero-media::after {
  display: none;
}

.hero-stage-word {
  z-index: 2;
  top: auto;
  bottom: 2.8%;
  color: rgba(255, 255, 255, .07);
  font-size: clamp(8rem, 20vw, 20rem);
  letter-spacing: -.095em;
  transform: translateX(-52%);
}

.hero-kicker {
  top: 8.2rem;
  color: #8a8a8a;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: -.02em;
}

.hero-copy {
  top: 8.2rem;
  bottom: auto;
  width: min(90vw, 41rem);
  text-align: center;
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: #8a8a8a;
  font-size: 1rem;
  letter-spacing: -.02em;
}

.hero-title {
  max-width: 15ch;
  margin-inline: auto;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.04em;
  text-transform: none;
}

.hero-subcopy {
  max-width: 31rem;
  margin-top: .9rem;
  color: rgba(232, 232, 232, .68);
  font-size: .88rem;
}

.hero-actions {
  margin-top: 1.55rem;
}

.scroll-cue {
  right: 50%;
  bottom: 1.55rem;
  transform: translateX(50%);
  color: #8a8a8a;
  font-size: .7rem;
}

@media (max-width: 767px) {
  .hero-media { inset-inline: .75rem; }
  .hero-kicker { top: 6.7rem; font-size: .7rem; }
  .hero-copy { top: 9.25rem; bottom: auto; text-align: center; }
  .hero-title { font-size: 1.75rem; }
  .hero-subcopy { margin-inline: auto; }
  .hero-actions { align-items: center; }
  .hero-reference-wave { bottom: 10%; height: 47%; }
  .hero-stage-word { top: auto; bottom: 4%; font-size: 24vw; transform: translateX(-52%); }
}

/* Home v3: Orbus section-role parity, Teampros content authority. */
.home-reel {
  position: relative;
  min-height: 523.835svh;
  overflow: clip;
  background: #000;
}

.reel-sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.reel-sticky::before,
.reel-sticky::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, .075);
}

.reel-sticky::before {
  top: 50%;
  right: 0;
  left: 0;
  height: 1px;
}

.reel-sticky::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.reel-meta {
  position: absolute;
  z-index: 2;
  inset: 0;
  color: #777;
  font-size: .72rem;
  letter-spacing: -.02em;
  line-height: 1;
}

.reel-meta span {
  position: absolute;
  left: 50%;
  width: max-content;
  translate: -50% 0;
  will-change: transform;
}

.reel-meta span:first-child { top: calc(50% - 13rem); }
.reel-meta span:last-child { top: calc(50% + 11.5375rem); }

.reel-orbit {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: 0;
  width: 55.34375vw;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232, 232, 232, 0);
  translate: -50% -50%;
  transform: rotate(90deg) scale(1);
  will-change: transform, background-color;
}

.reel-orbit i {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.reel-orbit::before,
.reel-orbit::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: rgba(255, 255, 255, .82);
  content: "+";
  font-size: 1.85rem;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-54%);
}

.reel-orbit::before { left: -.55rem; }
.reel-orbit::after { right: -.55rem; }

.reel-frame {
  position: relative;
  z-index: 3;
  width: calc(min(75.0625rem, 100% - 4rem) * .4);
  height: calc(min(32.5rem, 72.222svh) * .2);
  overflow: hidden;
  border-radius: 0;
  background: #101010;
  box-shadow: none;
  isolation: isolate;
  transform: scale(1);
  transform-origin: 50% 50%;
  will-change: transform;
}

.reel-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  opacity: 0;
  transform-origin: 50% 50%;
}

.reel-slide.is-active {
  z-index: 1;
  opacity: 1;
}

.reel-slide img,
.reel-slide video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.72) contrast(1.03) brightness(.82);
}

.reel-slide:nth-child(1) video { object-position: 50% 48%; }
.reel-slide:nth-child(2) video { object-position: 50% 50%; }

@media (min-width: 1400px) {
  .home-reel { min-height: 420svh; }
  .reel-meta {
    inset: auto max(var(--page-pad), calc((100% - 1500px) / 2));
    top: 50%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
  }
  .reel-meta span {
    position: static;
    width: auto;
    translate: none;
  }
  .reel-orbit {
    width: min(56.25vw, 56.25rem);
    background: transparent;
  }
  .reel-frame {
    width: min(37.5vw, 37.5rem);
    height: auto;
    aspect-ratio: 15 / 7;
  }
}

.proof-strip {
  min-height: auto;
  padding-block: clamp(5rem, 8vw, 8rem);
  background: #0b0b0b;
}

.proof-strip > div {
  grid-template-columns: minmax(0, 1.25fr) minmax(18rem, .75fr);
}

.proof-strip > .client-logo-band {
  grid-template-columns: 1fr;
}

.proof-strip .display-title {
  max-width: 14ch;
  font-size: clamp(2.7rem, 5vw, 4.5rem);
}

.featured-reference-visual {
  width: min(100%, 78rem);
  margin: 0 auto clamp(6rem, 10vw, 9rem);
}

.featured-reference-visual img {
  width: 100%;
  aspect-ratio: 1.58 / 1;
  object-fit: cover;
  filter: saturate(.78) contrast(1.04);
}

.featured-reference-visual figcaption,
.home-people figcaption {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: .85rem;
  color: #686868;
  font-size: .68rem;
  letter-spacing: .03em;
}

.home-process {
  display: grid;
  grid-template-columns: minmax(8rem, 1fr) minmax(0, 3fr);
  gap: clamp(2rem, 6vw, 8rem);
  min-height: 100svh;
  align-content: center;
  background: #050505;
}

.home-process ol {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, .2);
}

.home-process li > span {
  color: #8a8a8a;
  font-size: .7rem;
  font-weight: 500;
}

.home-process {
  background: #0a0a0a;
}

.home-process .display-title {
  margin-bottom: clamp(4rem, 8vw, 7rem);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
}

.home-process ol {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.home-process li {
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  padding: 1rem;
  border-right: 1px solid rgba(255, 255, 255, .2);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.home-process strong {
  font-size: clamp(1.5rem, 2.4vw, 2.4rem);
  font-weight: 500;
  letter-spacing: -.05em;
}

.home-process .text-link {
  margin-top: 2rem;
}

.home-people {
  position: relative;
  min-height: 115svh;
  display: grid;
  align-items: end;
  padding: var(--page-pad);
  overflow: hidden;
  background: #000;
}

.home-people figure {
  position: absolute;
  inset: var(--page-pad);
}

.home-people figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(0, 0, 0, .9), rgba(0, 0, 0, .08) 66%), linear-gradient(0deg, rgba(0,0,0,.7), transparent 45%);
}

.home-people img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.55) contrast(1.08) brightness(.78);
}

.home-people figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: rgba(255,255,255,.68);
}

.home-people-copy {
  position: relative;
  z-index: 3;
  max-width: 56rem;
  padding: clamp(2rem, 5vw, 5rem);
}

.home-people-copy > span {
  color: #aaa;
  font-size: .7rem;
}

.home-people-copy h2 {
  margin: 2rem 0;
  font-size: clamp(3.2rem, 6.3vw, 6rem);
  font-weight: 500;
  line-height: .92;
  letter-spacing: -.07em;
}

.home-people-copy a {
  display: inline-block;
  padding-bottom: .35rem;
  border-bottom: 1px solid currentColor;
  font-size: .75rem;
}

.home-visual-break {
  position: relative;
  min-height: 110svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #000;
}

.home-visual-break::after {
  position: absolute;
  inset: 0;
  content: "";
  background: rgba(0, 0, 0, .34);
}

.home-visual-break > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.12);
}

.home-visual-break > div {
  position: relative;
  z-index: 2;
  width: calc(100% - 2 * var(--page-pad));
  display: flex;
  justify-content: space-between;
  color: rgba(255, 255, 255, .92);
  font-size: clamp(4rem, 12vw, 12rem);
  font-weight: 500;
  letter-spacing: -.09em;
}

.home-visual-break > p {
  position: absolute;
  z-index: 3;
  right: var(--page-pad);
  bottom: var(--page-pad);
  color: rgba(255,255,255,.72);
  font-size: .68rem;
}

/* Match the reference's light editorial pages while retaining route content. */
.page-hero,
.work-collection,
.journal-collection,
.contact-hero,
.contact-details,
.inquiry-section,
.legal-page {
  --ink: #333;
}

.page-hero .page-title,
.contact-hero .page-title {
  font-size: clamp(4rem, 10vw, 9rem);
  font-weight: 500;
  line-height: .9;
  letter-spacing: -.075em;
}

@media (max-width: 900px) {
  .home-reel { min-height: 320svh; }
  .reel-orbit { width: 74vw; }
  .reel-frame { width: min(56vw, 28rem); }
  .reel-meta { right: var(--page-pad); left: var(--page-pad); }
  .client-logo-list { gap: 2.75rem; }
  .home-process { grid-template-columns: 1fr; }
  .trust > div,
  .studio-copy > div,
  .studio-services > div { grid-column: 1; }
  .home-process ol { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .home-reel { min-height: 300svh; }
  .reel-orbit { width: 88vw; }
  .reel-frame { width: min(72vw, 25rem); }
  .reel-meta { top: auto; bottom: 10%; transform: none; }
  .client-logo-list { gap: 2.25rem; }
  .featured-reference-visual figcaption,
  .home-people figcaption { flex-direction: column; }
  .home-process ol { grid-template-columns: 1fr 1fr; }
  .home-process li { min-height: 9rem; }
  .home-people { min-height: 92svh; }
  .home-people-copy { padding: 1rem; }
  .home-visual-break > div { display: grid; justify-items: start; font-size: 24vw; }
}

@media (prefers-reduced-motion: reduce) {
  .home-reel { min-height: 100svh; }
  .reel-sticky { position: relative; }
  .client-logo-track { animation: none; transform: none; }
  .client-logo-list-clone { display: none; }
}

/* Reference header: single centered Menu control with a fullscreen menu. */
.desktop-nav,
.header-meta {
  display: none;
}

.site-header .menu-toggle {
  position: absolute;
  top: 1.25rem;
  left: 50%;
  display: inline-flex;
  width: min(23rem, 34vw);
  min-width: 13rem;
  height: 3.55rem;
  justify-content: space-between;
  padding: 0 1.15rem;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: .45rem;
  background: rgba(22, 22, 22, .94);
  color: #e8e8e8;
  transform: translateX(-50%);
  font-size: .78rem;
  font-weight: 500;
}

.site-header .menu-toggle::after {
  content: "☰";
  color: #aaa;
  font-size: .9rem;
}

.site-header .menu-toggle[aria-expanded="true"]::after {
  content: "×";
}

.site-header.on-light .menu-toggle {
  border-color: rgba(255,255,255,.08);
  background: #171717;
  color: #e8e8e8;
}

@media (max-width: 767px) {
  .site-header .menu-toggle {
    top: 1.1rem;
    width: 8.5rem;
    min-width: 0;
    height: 3rem;
  }
}

/* Fullscreen Menu is an all-viewport interaction, not a mobile-only layer. */
.mobile-menu {
  position: fixed;
  z-index: 101;
  inset: 0;
  display: grid;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-1rem);
  pointer-events: none;
  transition: visibility 0s linear 420ms, opacity 420ms cubic-bezier(.22, 1, .36, 1), transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}

.mobile-menu-links {
  display: grid;
  align-content: center;
}

.mobile-menu-links a {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  align-items: baseline;
}

.mobile-menu-links a > .menu-number {
  font-family: var(--body);
  font-size: .6rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .08em;
}

.mobile-menu-links a > .menu-label {
  min-width: 0;
  font: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}

.mobile-menu-foot {
  display: flex;
  align-items: center;
}

.site-header .menu-toggle {
  z-index: 102;
}

.site-header .menu-toggle[aria-expanded="true"] .menu-toggle-label {
  font-size: 0;
}

.site-header .menu-toggle[aria-expanded="true"] .menu-toggle-label::after {
  content: "CLOSE";
  font-size: .78rem;
}

/* Fullscreen menu v2: an atmospheric, staged overlay over the current page. */
.mobile-menu {
  z-index: 101;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, rgba(7, 8, 10, .72), rgba(8, 11, 18, .58));
  -webkit-backdrop-filter: blur(22px) saturate(.86);
  backdrop-filter: blur(22px) saturate(.86);
  opacity: 1;
  transform: translate3d(0, -100%, 0);
  transition: visibility 0s linear 620ms, transform 620ms linear;
}

.mobile-menu::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    radial-gradient(ellipse at 52% 89%, rgba(232, 78, 36, .16), transparent 31%),
    radial-gradient(ellipse at 83% 88%, rgba(23, 103, 183, .16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, .10), rgba(4, 4, 6, .25));
}

.mobile-menu::after {
  position: absolute;
  z-index: 0;
  right: var(--page-pad);
  bottom: 12%;
  left: var(--page-pad);
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .078);
}

.mobile-menu.is-open {
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}

.mobile-menu-art {
  z-index: 1;
  min-height: min(62vh, 42rem);
  align-self: center;
}

.mobile-menu-art img {
  position: absolute;
  display: block;
  width: 38%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  filter: saturate(.82) contrast(1.04);
  transition: clip-path 650ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu-art img:nth-child(1) { top: 23%; left: 2%; transform: translate3d(-1.5rem, 2.75rem, 0) rotate(-7deg); transition-delay: 0ms; }
.mobile-menu-art img:nth-child(2) { top: 12%; left: 23%; transform: translate3d(-.8rem, 2.25rem, 0) rotate(4deg); transition-delay: 70ms; }
.mobile-menu-art img:nth-child(3) { top: 29%; left: 43%; transform: translate3d(.4rem, 2.5rem, 0) rotate(-3deg); transition-delay: 140ms; }
.mobile-menu-art img:nth-child(4) { top: 4%; right: 2%; transform: translate3d(1.1rem, 2.1rem, 0) rotate(5deg); transition-delay: 210ms; }

.mobile-menu.is-open .mobile-menu-art img {
  opacity: .94;
  clip-path: inset(0);
}

.mobile-menu.is-open .mobile-menu-art img:nth-child(1) { transform: rotate(-7deg); }
.mobile-menu.is-open .mobile-menu-art img:nth-child(2) { transform: rotate(4deg); }
.mobile-menu.is-open .mobile-menu-art img:nth-child(3) { transform: rotate(-3deg); }
.mobile-menu.is-open .mobile-menu-art img:nth-child(4) { transform: rotate(5deg); }

.mobile-menu-links {
  position: relative;
  z-index: 1;
}

.mobile-menu-links a,
.mobile-menu-foot {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
  transition: opacity 220ms ease, transform 620ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu.is-open .mobile-menu-links a,
.mobile-menu.is-open .mobile-menu-foot {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.mobile-menu-links a:nth-child(1) { transition-delay: 190ms; }
.mobile-menu-links a:nth-child(2) { transition-delay: 250ms; }
.mobile-menu-links a:nth-child(3) { transition-delay: 310ms; }
.mobile-menu-links a:nth-child(4) { transition-delay: 370ms; }
.mobile-menu-links a:nth-child(5) { transition-delay: 430ms; }
.mobile-menu-foot { transition-delay: 500ms; }

.mobile-menu-links a > .menu-label {
  position: relative;
  display: block;
  height: .95em;
  overflow: hidden;
}

.mobile-menu-links a > .menu-label > span {
  display: block;
  line-height: .95;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu-links a > .menu-label > span + span {
  position: absolute;
  inset: 0 auto auto 0;
  transform: translate3d(0, 108%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .mobile-menu:not(.motion-hover-ready) .mobile-menu-links a:hover > .menu-label > span:first-child,
  .mobile-menu:not(.motion-hover-ready) .mobile-menu-links a:focus-visible > .menu-label > span:first-child {
    transform: translate3d(0, -108%, 0);
  }

  .mobile-menu:not(.motion-hover-ready) .mobile-menu-links a:hover > .menu-label > span + span,
  .mobile-menu:not(.motion-hover-ready) .mobile-menu-links a:focus-visible > .menu-label > span + span {
    transform: translate3d(0, 0, 0);
  }
}

.mobile-menu.motion-hover-ready .mobile-menu-links a > .menu-label > span {
  transition: none;
}

/* Motion owns enabled presentation movement; these are the readable CSS fallbacks. */
html.motion-reveal-ready .motion-ready .reveal-group > *,
html.motion-reveal-ready .motion-ready .reveal-card,
html.motion-reveal-ready .motion-ready .reveal-group.in-view > *,
html.motion-reveal-ready .motion-ready .reveal-card.in-view {
  transition: none;
}

html.motion-interactions-ready .button-link .roll-label > span,
html.motion-interactions-ready .button-link .link-arrow,
html.motion-interactions-ready .project-card-action,
html.motion-interactions-ready .journal-card-media > span,
html.motion-interactions-ready .capability-arrow {
  transition: none;
}

html.motion-interactions-ready .button-link:hover .roll-label > span:first-child,
html.motion-interactions-ready .button-link:focus-visible .roll-label > span:first-child {
  transform: none;
}

html.motion-interactions-ready .button-link:hover .roll-label > span:last-child,
html.motion-interactions-ready .button-link:focus-visible .roll-label > span:last-child {
  transform: translateY(150%) rotateX(-80deg);
}

html.motion-interactions-ready .button-link:hover .link-arrow,
html.motion-interactions-ready .button-link:focus-visible .link-arrow,
html.motion-interactions-ready .capability-list article:hover .capability-arrow {
  transform: none;
}

html.motion-interactions-ready .project-card a:hover .project-card-action,
html.motion-interactions-ready .project-card a:focus-visible .project-card-action,
html.motion-interactions-ready .journal-card a:hover .journal-card-media > span,
html.motion-interactions-ready .journal-card a:focus-visible .journal-card-media > span {
  opacity: 0;
  transform: scale(.7);
}

.mobile-menu.motion-menu-ready .mobile-menu-art img,
.mobile-menu.motion-menu-ready .mobile-menu-links a,
.mobile-menu.motion-menu-ready .mobile-menu-foot {
  transition: none;
}

.mobile-menu.motion-menu-ready {
  transition: none;
}

.mobile-menu.motion-menu-ready.is-open {
  transform: translate3d(0, -100%, 0);
}

.mobile-menu.motion-menu-ready.is-open .mobile-menu-art img {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.mobile-menu.motion-menu-ready.is-open .mobile-menu-links a {
  opacity: 0;
  transform: translate3d(0, 1rem, 0);
}

html.motion-loops-ready .scroll-cue i,
html.motion-loops-ready .hero-availability i > b,
html.motion-loops-ready .contact-ticker {
  animation: none;
}

.site-header .menu-toggle[aria-expanded="true"] {
  right: max(1.25rem, var(--page-pad));
  left: auto;
  display: grid;
  width: 3rem;
  min-width: 3rem;
  padding: 0;
  place-items: center;
  border-color: rgba(255, 255, 255, .14);
  background: rgba(16, 16, 18, .42);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: none;
}

.site-header .menu-toggle[aria-expanded="true"]::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.25rem;
  line-height: 1;
}

.site-header .menu-toggle[aria-expanded="true"] > .menu-toggle-label,
.site-header .menu-toggle[aria-expanded="true"] > .menu-line {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.site-header .menu-toggle[aria-expanded="true"] .menu-toggle-label::after {
  content: "";
}

@media (max-width: 900px) {
  .mobile-menu {
    padding: calc(var(--header-height) + 2.5rem) var(--page-pad) 2rem;
  }

  .mobile-menu-art {
    position: relative;
    inset: auto;
    min-height: min(40vh, 23rem);
    opacity: 1;
  }

  .mobile-menu-art img { width: 29%; }
  .mobile-menu-links a { font-size: clamp(2.7rem, 9vw, 5rem); }
}

@media (max-width: 767px) {
  .site-header .menu-toggle[aria-expanded="true"] {
    top: 1.1rem;
    right: 1.1rem;
  }

  .mobile-menu-art { min-height: 32vh; }
  .mobile-menu-art img { width: 34%; }
  .mobile-menu-art img:nth-child(1) { top: 17%; }
  .mobile-menu-art img:nth-child(2) { top: 3%; }
  .mobile-menu-art img:nth-child(3) { top: 22%; }
  .mobile-menu-art img:nth-child(4) { top: 0; }
}

/* Home hero v5: retain the original iridescent image with bounded motion. */
.home-hero {
  min-height: 100svh;
  overflow: hidden;
  background: #030303;
}

.hero-parallax {
  position: absolute;
  inset: 0;
  transform: translate3d(0, var(--hero-scroll, 0), 0);
  will-change: transform;
}

.hero-media {
  inset: 2rem var(--page-pad);
  overflow: hidden;
  border-radius: 0;
  background: #030303;
  box-shadow: inset 0 0 8rem rgba(0, 0, 0, .72);
}

.home-hero::after {
  z-index: 5;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .32), transparent 9%, transparent 91%, rgba(0, 0, 0, .32)),
    linear-gradient(180deg, rgba(0, 0, 0, .12), transparent 32%, transparent 77%, rgba(0, 0, 0, .74));
}

.hero-aurora {
  display: none;
}

.hero-aurora svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero-aurora::after {
  position: absolute;
  z-index: 2;
  right: -3%;
  bottom: -5%;
  left: -3%;
  height: 28%;
  content: "";
  background: #030303;
  clip-path: polygon(0 58%, 10% 72%, 22% 55%, 35% 64%, 48% 52%, 61% 69%, 72% 58%, 82% 38%, 91% 53%, 100% 70%, 100% 100%, 0 100%);
  filter: blur(12px);
  transform: scale(1.04);
}

.hero-aurora-field {
  opacity: .98;
  animation: hero-aurora-breathe 8s ease-in-out infinite alternate;
}

.hero-aurora-core {
  opacity: .88;
  animation: hero-aurora-core 10s ease-in-out infinite alternate;
}

.hero-reference-wave {
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
  transform: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.hero-poster:not([src=""]) {
  z-index: 0;
  opacity: .07;
  filter: grayscale(1) contrast(1.2);
  mix-blend-mode: luminosity;
}

.hero-grid-art {
  z-index: 4;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, .026);
  background-image: linear-gradient(90deg, rgba(255, 255, 255, .032) 0 1px, transparent 1px 32px, rgba(255, 255, 255, .032) 32px 33px, transparent 33px);
  background-repeat: repeat-x;
  background-size: 32rem 100%;
  background-position: 2rem 0;
  mask-image: none;
}

.hero-grid-art::before,
.hero-grid-art::after {
  position: absolute;
  right: 0;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 255, 255, .1);
}

.hero-grid-art::before {
  display: none;
}

.hero-grid-art::after {
  bottom: 12%;
  background: rgba(255, 255, 255, .078);
}

.hero-grid-art span {
  display: none;
}

.hero-stage-word {
  z-index: 3;
  right: auto;
  bottom: 5.2%;
  left: 49.2%;
  color: rgba(255, 255, 255, .075);
  font-size: clamp(8rem, 18.6vw, 22rem);
  line-height: .7;
  letter-spacing: -.095em;
  mix-blend-mode: normal;
  transform: translateX(-50%);
  text-shadow: none;
}

.hero-kicker {
  z-index: 6;
  top: 9.5rem;
  color: rgba(232, 232, 232, .58);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: -.025em;
}

.hero-copy {
  z-index: 6;
  top: 9.3rem;
  right: auto;
  bottom: auto;
  left: 26.2%;
  width: min(28rem, 32vw);
  text-align: left;
  transform: none;
}

.hero-copy .eyebrow {
  display: none;
}

.hero-title {
  max-width: 18ch;
  margin: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.04em;
  text-transform: none;
}

.hero-subcopy {
  max-width: 28rem;
  margin: .85rem 0 0;
  color: rgba(232, 232, 232, .64);
  font-size: .82rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1.45rem;
}

.hero-cta-cluster {
  display: flex;
  min-width: 22rem;
  align-items: center;
  padding-right: 1rem;
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: .4rem;
  background: rgba(22, 22, 22, .86);
  box-shadow: 0 .8rem 2.5rem rgba(0, 0, 0, .22);
  backdrop-filter: blur(10px);
}

.hero-cta-cluster .button-link {
  position: relative;
  isolation: isolate;
  width: auto;
  min-width: 10.6rem;
  height: 2.75rem;
  flex: none;
  border-radius: .35rem;
  background: var(--paper-light);
  transition: color 220ms cubic-bezier(.22, 1, .36, 1), background-color 220ms cubic-bezier(.22, 1, .36, 1);
}

.hero-cta-cluster .button-link::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  background: linear-gradient(110deg, #087cf0, #1595ff 62%, #0b7bea);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 420ms cubic-bezier(.22, 1, .36, 1);
}

.hero-cta-cluster .button-link::after {
  position: absolute;
  z-index: 0;
  inset: 0;
  content: "";
  opacity: 0;
  background: linear-gradient(105deg, transparent 25%, rgba(255, 255, 255, .28) 47%, transparent 63%);
  transform: translateX(-120%);
}

.hero-cta-cluster .button-link .roll-label,
.hero-cta-cluster .button-link .link-arrow {
  position: relative;
  z-index: 1;
}

.hero-cta-cluster:hover .button-link,
.hero-cta-cluster .button-link:hover,
.hero-cta-cluster .button-link:focus-visible {
  background: #0b82f7;
  color: #fff;
}

.hero-cta-cluster:hover .button-link::before,
.hero-cta-cluster .button-link:hover::before,
.hero-cta-cluster .button-link:focus-visible::before {
  transform: scaleX(1);
}

.hero-cta-cluster:hover .button-link::after,
.hero-cta-cluster .button-link:hover::after,
.hero-cta-cluster .button-link:focus-visible::after {
  opacity: 1;
  transform: translateX(120%);
  transition: opacity 0s, transform 720ms cubic-bezier(.22, 1, .36, 1);
}

.hero-cta-cluster .roll-label {
  perspective: 28rem;
}

.hero-cta-cluster .roll-label > span {
  transform-origin: 50% 100%;
}

.hero-availability {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding-left: 1rem;
  white-space: nowrap;
}

.hero-availability i {
  position: relative;
  display: block;
  width: 1.55rem;
  height: 1.35rem;
  overflow: hidden;
  opacity: 1;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, .22) 0 2px, transparent 2px 5px);
}

.hero-availability i > b {
  position: absolute;
  inset: 0;
  display: block;
  content: "";
  background: repeating-linear-gradient(90deg, #fff 0 2px, transparent 2px 5px);
  clip-path: inset(0 100% 0 0);
  animation: hero-inquiry-strokes 2.8s steps(5, end) infinite;
}

@keyframes hero-inquiry-strokes {
  0%, 18% { clip-path: inset(0 100% 0 0); }
  82%, 100% { clip-path: inset(0 0 0 0); }
}

.hero-reel-link {
  color: rgba(232, 232, 232, .78);
  font-size: .66rem;
  font-weight: 500;
  letter-spacing: -.01em;
  text-decoration: none;
  white-space: nowrap;
}

.hero-reel-link:hover,
.hero-reel-link:focus-visible {
  color: #fff;
}

/* Home Studio statement: reference proportions, Teampros-owned fields. */
.statement {
  display: block;
  position: relative;
  min-height: 100svh;
  padding: 0 var(--page-pad);
  overflow: hidden;
  border-color: rgba(16, 16, 16, .14);
  background: #f5f5f2;
  color: #111;
}

.statement-layout {
  position: relative;
  min-height: 100svh;
}

.statement-layout::before,
.statement-layout::after {
  position: absolute;
  z-index: 0;
  content: "";
  background: rgba(16, 16, 16, .14);
}

.statement-layout::before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
}

.statement-layout::after {
  top: 50%;
  right: calc(var(--page-pad) * -1);
  left: calc(var(--page-pad) * -1);
  height: 1px;
}

.statement .section-index {
  position: absolute;
  z-index: 1;
  top: 14.2%;
  left: calc(20.2vw - var(--page-pad));
  max-width: 12rem;
  color: rgba(17, 17, 17, .54);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: -.015em;
}

.statement-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  display: block;
  width: min(40vw, 62rem);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, .13);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.statement .display-title {
  position: absolute;
  z-index: 1;
  top: 14.2%;
  right: 17%;
  left: calc(41.9vw - var(--page-pad));
  max-width: none;
  margin: 0;
  color: #111;
  font-size: clamp(2.7rem, 2.6vw, 4.25rem);
  font-weight: 500;
  line-height: .98;
  letter-spacing: -.065em;
  text-transform: none;
}

.statement .lead-copy {
  position: absolute;
  z-index: 1;
  top: 69.7%;
  right: 19%;
  bottom: auto;
  left: calc(41.9vw - var(--page-pad));
  max-width: 28rem;
  margin: 0;
  color: rgba(17, 17, 17, .65);
  font-size: clamp(.82rem, 1vw, 1rem);
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -.025em;
}

.statement-cta {
  position: absolute;
  z-index: 1;
  top: 71.8%;
  bottom: auto;
  left: calc(20.2vw - var(--page-pad));
  display: inline-flex;
  align-items: center;
  min-width: 12rem;
  min-height: 2.5rem;
  justify-content: center;
  padding: .56rem .85rem;
  border: 1px solid #111;
  border-radius: .38rem;
  background: #111;
  color: #fff;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: -.02em;
  text-decoration: none;
  transition: background-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.statement-cta:hover,
.statement-cta:focus-visible {
  background: transparent;
  color: #111;
  transform: translateY(-2px);
}

.site-header .brand {
  display: inline-flex;
  width: 5.425rem;
  min-width: 5.425rem;
  align-items: center;
  line-height: 0;
}

.brand-logo {
  display: block;
  width: 100%;
  height: auto;
  filter: none;
  transition: filter 180ms ease;
}

.site-header.on-light:not(.menu-active) .brand-logo {
  filter: invert(1);
}

.site-header.menu-active .brand-logo {
  filter: none;
}

.site-header .header-contact {
  min-width: 8.5rem;
  height: 2.2rem;
  margin-top: .7rem;
  border-radius: .35rem;
  font-size: .68rem;
}

.scroll-cue {
  z-index: 7;
}

@keyframes hero-aurora-breathe {
  from { transform: translate3d(-1.5%, 1.5%, 0) scale(1.01, .98); }
  to { transform: translate3d(1.5%, -1%, 0) scale(1.025, 1.035); }
}

@keyframes hero-aurora-core {
  from { transform: translate3d(1%, -1%, 0) scale(1.02, 1); opacity: .76; }
  to { transform: translate3d(-1.5%, 1%, 0) scale(1.04, 1.035); opacity: .96; }
}

@media (max-width: 1000px) {
  .hero-copy {
    left: 24%;
    width: min(29rem, 42vw);
  }

  .hero-cta-cluster {
    min-width: 20rem;
  }

  .hero-availability {
    font-size: .58rem;
  }

  .hero-reel-link {
    font-size: .58rem;
  }
}

@media (max-width: 767px) {
  .hero-media {
    inset: .75rem .75rem 0;
  }

  .hero-kicker {
    top: 6.6rem;
    right: 1.5rem;
    left: 1.5rem;
    font-size: .62rem;
  }

  .hero-copy {
    top: 9.2rem;
    left: 1.5rem;
    width: calc(100vw - 3rem);
    text-align: center;
  }

  .hero-title {
    max-width: 16ch;
    margin-inline: auto;
    font-size: 1.65rem;
  }

  .hero-subcopy {
    max-width: 23rem;
    margin-inline: auto;
    font-size: .76rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: .75rem;
  }

  .hero-cta-cluster {
    width: min(100%, 22rem);
    min-width: 0;
  }

  .hero-cta-cluster .button-link {
    width: auto;
    min-width: 9.7rem;
  }

  .hero-availability {
    min-width: 0;
    padding-left: .7rem;
    overflow: visible;
  }

  .hero-reel-link {
    font-size: .53rem;
  }

  .statement {
    min-height: auto;
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .statement-layout {
    display: grid;
    min-height: 0;
    gap: 2rem;
  }

  .statement-layout::before,
  .statement-layout::after,
  .statement-orbit {
    display: none;
  }

  .statement .section-index,
  .statement .display-title,
  .statement .lead-copy,
  .statement-cta {
    position: static;
  }

  .statement .section-index {
    max-width: none;
  }

  .statement .display-title {
    max-width: 12ch;
    font-size: clamp(2.55rem, 12vw, 3.7rem);
  }

  .statement .lead-copy {
    max-width: 28rem;
    font-size: .92rem;
  }

  .statement-cta {
    justify-self: start;
  }

  .hero-aurora {
    right: -22%;
    bottom: 2%;
    left: -22%;
    height: 58%;
  }

  .hero-reference-wave {
    inset: 0;
    width: 100%;
    height: 100%;
    object-position: 50% 50%;
  }

  .hero-stage-word {
    bottom: 8%;
    left: 50%;
    font-size: 24vw;
  }

  .site-header .brand {
    width: 4.025rem;
    min-width: 4.025rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-parallax,
  .hero-aurora,
  .hero-aurora-field,
  .hero-aurora-core,
  .hero-reference-wave,
  .hero-availability i > b,
  .mobile-menu,
  .mobile-menu-art img,
  .mobile-menu-links a,
  .mobile-menu-links a .menu-label > span,
  .mobile-menu-foot {
    animation: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Work / keep the complete intro group in the upper-left editorial position. */
main[data-teampros-page="teampros.work"] {
  position: relative;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--paper-light);
}

.work-hero {
  min-height: calc(var(--header-height) + 26rem);
  padding-bottom: 2rem;
}

.work-hero::after {
  display: none;
}

.work-hero > .section-index {
  position: absolute;
  top: calc(var(--header-height) + 5rem);
  left: var(--page-pad);
  margin: 0;
}

.work-hero > .page-title {
  position: absolute;
  top: calc(var(--header-height) + 8rem);
  left: var(--page-pad);
  margin: 0;
}

.work-hero > .page-intro {
  position: absolute;
  top: calc(var(--header-height) + 20rem);
  left: var(--page-pad);
  max-width: 30rem;
  margin: 0;
}

@media (max-width: 900px) {
  .work-hero {
    min-height: 0;
    padding-bottom: 4rem;
  }

  .work-hero > .section-index,
  .work-hero > .page-title,
  .work-hero > .page-intro {
    position: static;
  }

  .work-hero > .page-title {
    margin-top: 2rem;
  }

  .work-hero > .page-intro {
    max-width: 28rem;
    margin: 2rem 0 0;
  }
}

/* Work / Orbus-inspired portfolio index without a full-height hero. */
.work-portfolio-intro,
.work-portfolio-stream {
  --work-side: var(--page-pad);
  padding-right: var(--work-side);
  padding-left: var(--work-side);
  background: transparent;
  color: var(--ink-light);
  border-color: rgba(0,0,0,.16);
}

.work-portfolio-intro {
  display: grid;
  grid-template-columns: minmax(9rem, .55fr) minmax(0, 2.45fr) auto;
  gap: clamp(2rem, 5vw, 7rem);
  align-items: end;
  min-height: 0;
  padding-top: calc(var(--header-height) + clamp(7rem, 10vw, 11rem));
  padding-bottom: clamp(5rem, 8vw, 8rem);
}

.work-portfolio-intro .section-index,
.work-portfolio-toolbar,
.work-index-mark {
  color: #747474;
  letter-spacing: normal;
}

.work-portfolio-intro > div {
  display: grid;
  gap: 1.4rem;
}

.work-portfolio-title {
  max-width: none;
  margin: 0;
  font-size: clamp(5rem, 10vw, 10rem);
  font-weight: 500;
  line-height: .78;
  letter-spacing: -.075em;
}

.work-portfolio-lead {
  max-width: 33rem;
  margin: 0;
  color: #686868;
  font-size: clamp(1rem, 1.3vw, 1.35rem);
  line-height: 1.45;
  letter-spacing: normal;
}

.work-index-mark {
  align-self: start;
  font-size: .75rem;
}

.work-portfolio-stream {
  padding-top: 1rem;
  padding-bottom: clamp(9rem, 14vw, 15rem);
  border-top: 0;
}

.work-portfolio-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,.22);
  font-size: .7rem;
}

.work-portfolio-toolbar .all-filter {
  color: #555;
  letter-spacing: normal;
}

.work-portfolio-stream .work-filters {
  width: min(100%, 62.5rem);
  margin: 0 auto clamp(5rem, 8vw, 8rem);
}

.work-portfolio-stream .project-grid {
  display: flex;
  width: 100%;
  max-width: none;
  flex-direction: column;
  gap: clamp(8rem, 11.72vw, 18.75rem);
  margin: 0;
}

.work-portfolio-stream .project-card,
.work-portfolio-stream .project-card:nth-child(n) {
  position: relative;
  isolation: isolate;
  width: min(39.0625vw, 62.5rem);
  padding: 0;
}

.work-card-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  display: block;
  width: min(35.2vw, 56rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0);
  pointer-events: none;
  translate: 0 -50%;
  transform: rotate(90deg) scale(1);
  will-change: transform, background-color;
}

.work-card-orbit b {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(0, 0, 0, .18);
  border-radius: 50%;
}

.work-card-orbit::before,
.work-card-orbit::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: rgba(0, 0, 0, .68);
  content: "+";
  font-size: 1.85rem;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-54%);
}

.work-card-orbit::before { left: -.55rem; }
.work-card-orbit::after { right: -.55rem; }

.work-portfolio-stream .project-card > a {
  position: relative;
  z-index: 1;
}

.work-portfolio-stream .project-card:nth-child(5n + 1),
.work-portfolio-stream .project-card:nth-child(5n + 3) {
  align-self: flex-start;
}

.work-portfolio-stream .project-card:nth-child(5n + 1) .work-card-orbit,
.work-portfolio-stream .project-card:nth-child(5n + 3) .work-card-orbit {
  left: calc(100vw - (var(--work-side) * 2) - min(35.2vw, 56rem));
}

.work-portfolio-stream .project-card:nth-child(5n + 2),
.work-portfolio-stream .project-card:nth-child(5n + 4) {
  align-self: flex-end;
}

.work-portfolio-stream .project-card:nth-child(5n + 2) .work-card-orbit,
.work-portfolio-stream .project-card:nth-child(5n + 4) .work-card-orbit {
  right: calc(100vw - (var(--work-side) * 2) - min(35.2vw, 56rem));
}

.work-portfolio-stream .project-card:nth-child(5n) {
  align-self: center;
}

.work-portfolio-stream .project-card:nth-child(5n) .work-card-orbit {
  left: 50%;
  translate: -50% -50%;
}

.work-portfolio-stream .project-card-media {
  aspect-ratio: 1.527 / 1;
  background: #d1d1cf;
}

.project-card-title-row {
  display: flex;
  align-items: center;
  gap: clamp(.8rem, 1.2vw, 1.4rem);
  min-width: 0;
}

.project-award-mark {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex: 0 0 auto;
  color: #e30613;
  line-height: 1;
  white-space: nowrap;
}

.project-award-mark > img {
  width: clamp(1.5rem, 1.8vw, 2rem);
  height: auto;
  flex: 0 0 auto;
}

.project-award-mark strong {
  font-size: clamp(.85rem, 1.1vw, 1.1rem);
  font-weight: 500;
  letter-spacing: -.02em;
}

.work-portfolio-stream .project-card-image,
.work-portfolio-stream .project-card-preview {
  transition: transform .75s cubic-bezier(.22,1,.36,1), opacity .28s ease;
}

.work-portfolio-stream .project-card a:hover .project-card-image,
.work-portfolio-stream .project-card a:focus-visible .project-card-image {
  transform: scale(1.025);
}

.work-portfolio-stream .project-card-copy {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(11rem, .8fr);
  gap: clamp(2rem, 4vw, 6rem);
  min-height: 10rem;
  padding-top: 1.5rem;
}

.work-portfolio-stream .project-card-copy p,
.work-portfolio-stream .project-card-copy h2,
.work-portfolio-stream .project-card-copy span {
  letter-spacing: normal;
}

.work-portfolio-stream .project-card-copy h2 {
  font-size: clamp(2rem, 2.4vw, 3rem);
}

.work-portfolio-stream .project-card-info > p {
  max-width: 31rem;
  margin: 1.35rem 0 0;
  color: #555;
  font-size: clamp(.9rem, 1.05vw, 1.05rem);
  font-weight: 400;
  line-height: 1.45;
}

.work-portfolio-stream .project-card-link {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-self: start;
  margin: 0;
  padding: .55rem 0 1.15rem;
  border-bottom: 1px solid rgba(0, 0, 0, .24);
  color: #1b1b1b;
  font-size: clamp(.68rem, .75vw, .78rem);
  font-weight: 500;
  line-height: 1;
}

.work-portfolio-stream .project-card-link b {
  font-size: 1rem;
  font-weight: 400;
}

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

.work-project-viewer {
  position: fixed;
  z-index: 200;
  inset: 0;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  background: #050505;
  color: #fff;
}

.work-project-viewer-media,
.work-project-viewer-media > img,
.work-project-viewer-media > video,
.work-project-viewer-media > [data-work-viewer-frame],
.work-project-viewer-media > [data-work-viewer-frame] > iframe {
  width: 100%;
  height: 100%;
}

.work-project-viewer-media > img,
.work-project-viewer-media > video {
  object-fit: cover;
}

.work-project-viewer-media > [data-work-viewer-frame] > iframe {
  border: 0;
  background: #000;
}

.work-project-viewer-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), transparent 35%, rgba(0,0,0,.72));
  content: "";
  pointer-events: none;
}

.work-project-viewer-chrome {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  gap: 2rem;
  padding: clamp(1.25rem, 2.5vw, 3rem);
  pointer-events: none;
}

.work-project-viewer-chrome > a {
  display: flex;
  min-width: 11rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: .9rem;
  border-bottom: 1px solid rgba(255,255,255,.55);
  font-size: .72rem;
  pointer-events: auto;
}

.work-project-viewer-chrome > a:last-child {
  grid-column: 2;
  grid-row: 1;
}

.work-project-viewer-chrome > div {
  grid-column: 1 / -1;
  align-self: end;
  max-width: 52rem;
}

.work-project-viewer-chrome > div > span {
  color: rgba(255,255,255,.7);
  font-size: .68rem;
}

.work-project-viewer-chrome h2 {
  margin: .65rem 0 0;
  font-size: clamp(3.5rem, 8vw, 9rem);
  font-weight: 500;
  line-height: .82;
  letter-spacing: -.075em;
}

.work-project-viewer-chrome p {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.78);
  font-size: clamp(.95rem, 1.15vw, 1.15rem);
}

body.work-project-viewer-open {
  overflow: hidden;
}

/* Contact Us: representative showreel + the shared Home inquiry surface */
.contact-split {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(22rem, 2fr);
  min-height: 100svh;
  padding: 0;
  background: #0d0d0e;
  color: #f4f4f2;
}

.contact-split-media {
  position: sticky;
  top: 0;
  display: block;
  height: 100svh;
  margin: 0;
  overflow: hidden;
  background: #060606;
}

.contact-split-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .34));
  content: "";
  pointer-events: none;
}

.contact-split-media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-split-panel {
  min-width: 0;
  padding: calc(var(--header-height) + 2.75rem) clamp(1.75rem, 3vw, 4rem) 5rem;
  background: #0d0d0e;
}

.contact-split-heading {
  margin-bottom: 2.5rem;
}

.contact-split-title {
  max-width: 9ch;
  margin: 0;
  font-size: clamp(2.7rem, 4.4vw, 5rem);
  font-weight: 450;
  line-height: .88;
  letter-spacing: -.075em;
}

.contact-split-lead {
  max-width: 32rem;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, .62);
  font-size: .95rem;
  line-height: 1.55;
}

.contact-split-form.inquiry-form {
  width: 100%;
  margin: 0;
  border-top: 0;
  letter-spacing: normal;
}

.contact-split .privacy-check {
  margin-top: 1.05rem;
  color: rgba(255, 255, 255, .48);
  letter-spacing: normal;
}

.contact-split .privacy-check a {
  color: rgba(255, 255, 255, .82);
}

.contact-split .submit-button {
  width: min(100%, 10.5rem);
  min-width: 0;
  margin-top: 1.75rem;
  padding: .8rem .9rem;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: .55rem;
  background: #efefed;
  color: #090909;
  letter-spacing: normal;
}

.contact-split .form-status {
  color: rgba(255, 255, 255, .72);
}

/* Journal board: Teampros articles in the approved editorial index structure. */
.journal-board-hero {
  min-height: min(48rem, 72svh);
  display: grid;
  align-items: end;
  padding: calc(var(--header-height) + 5rem) var(--page-pad) 5rem;
  background: #f4f4f2;
  color: #151515;
}

.journal-board-hero-copy {
  width: min(100%, 74rem);
  margin-inline: auto;
}

.journal-board-title {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(4rem, 9vw, 8.5rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.08em;
}

.journal-board-description {
  max-width: 38rem;
  margin: 1.65rem 0 0;
  color: #707070;
  font-size: clamp(1rem, 1.2vw, 1.2rem);
  line-height: 1.55;
}

.journal-board {
  background: #fff;
  color: #171717;
}

.journal-board-layout {
  width: min(100%, 74rem);
  display: grid;
  grid-template-columns: 10.5rem minmax(0, 1fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  margin-inline: auto;
}

.journal-board-nav {
  position: sticky;
  top: calc(var(--header-height) + 2rem);
  align-self: start;
}

.journal-board-nav nav {
  display: grid;
  gap: .15rem;
}

.journal-board-nav button {
  min-height: 2.45rem;
  padding: .5rem .75rem;
  border: 0;
  border-radius: .45rem;
  background: transparent;
  color: #777;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: normal;
  text-align: left;
  transition: background-color .2s ease, color .2s ease;
}

.journal-board-nav button:hover,
.journal-board-nav button[aria-pressed="true"] {
  background: #ececea;
  color: #161616;
}

.journal-board-feature {
  min-height: 20rem;
  overflow: hidden;
  border-radius: 1rem;
  background: #f2f2f0;
}

.journal-board-feature[hidden],
.journal-board-card[hidden] {
  display: none;
}

.journal-board-feature > a {
  min-height: 20rem;
  display: grid;
  grid-template-columns: 52% 48%;
  color: inherit;
}

.journal-board-feature-link {
  min-height: 20rem;
  display: grid;
  grid-template-columns: 52% 48%;
}

.journal-board-feature-media,
.journal-board-card-media {
  display: block;
  overflow: hidden;
  background: #e5e5e2;
}

.journal-board-feature-image,
.journal-board-card-image,
.journal-board-feature-media .journal-card-placeholder,
.journal-board-card-media .journal-card-placeholder {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2, .75, .25, 1);
}

.journal-board-feature > a:hover .journal-board-feature-image,
.journal-board-card > a:hover .journal-board-card-image {
  transform: scale(1.035);
}

.journal-board-feature-copy {
  min-width: 0;
  padding: clamp(2rem, 3vw, 3.25rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.journal-board-feature-copy small,
.journal-board-card > a > small,
.journal-board-card-link > small {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  color: #777;
  font-size: .68rem;
  font-weight: 650;
  letter-spacing: .06em;
}

.journal-board-feature-copy h2 {
  margin: 1rem 0 .85rem;
  font-size: clamp(1.7rem, 2.3vw, 2.7rem);
  font-weight: 500;
  line-height: 1.22;
  letter-spacing: -.05em;
}

.journal-board-feature-copy p,
.journal-board-card p {
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: #717171;
  font-size: .84rem;
  line-height: 1.65;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.journal-board-feature-copy b {
  margin-top: 1.5rem;
  font-size: .7rem;
  letter-spacing: .02em;
}

.journal-board-feature-copy i {
  margin-left: .45rem;
  font-style: normal;
}

.journal-board-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 3.6rem 1.5rem;
  margin-top: 4rem;
}

.journal-board-card > a {
  display: block;
  color: inherit;
}

.journal-board-card-link {
  display: block;
}

.journal-board-card-media {
  aspect-ratio: 16 / 10;
}

.journal-board-card > a > small {
  margin-top: 1rem;
}

.journal-board-card-link > small {
  margin-top: 1rem;
}

.journal-board-card h2 {
  margin: .65rem 0 .55rem;
  font-size: 1.16rem;
  font-weight: 550;
  line-height: 1.45;
  letter-spacing: -.035em;
}

.journal-board-empty {
  min-height: 13rem;
  margin-top: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-top: 1px solid rgba(0, 0, 0, .16);
  border-bottom: 1px solid rgba(0, 0, 0, .16);
  color: #747474;
}

.journal-board-empty[hidden] {
  display: none;
}

.journal-board-empty span {
  color: #e6e6e4;
  font-size: clamp(4rem, 8vw, 7rem);
  font-weight: 600;
  letter-spacing: -.08em;
}

.journal-board-empty p {
  max-width: 24rem;
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 900px) {
  .work-portfolio-intro {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-top: calc(var(--header-height) + 6rem);
  }

  .work-portfolio-title {
    font-size: clamp(4.5rem, 24vw, 7rem);
  }

  .work-index-mark {
    display: none;
  }

  .work-portfolio-toolbar {
    margin-bottom: 5rem;
  }

  .work-portfolio-stream .project-grid {
    gap: 5rem;
  }

  .work-portfolio-stream .project-card,
  .work-portfolio-stream .project-card:nth-child(n) {
    width: 100%;
    align-self: stretch;
  }

  .work-portfolio-stream .project-card:nth-child(n) .work-card-orbit {
    right: auto;
    left: 50%;
    width: 62.4vw;
    translate: -50% -50%;
  }

  .work-portfolio-stream .project-card-copy {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
  }

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

  .work-project-viewer-chrome > a {
    min-width: 0;
  }

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

  .contact-split-media {
    position: relative;
    height: min(64svh, 44rem);
  }

  .contact-split-panel {
    padding: 4.5rem var(--page-pad) 6rem;
  }

  .contact-split-title {
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .contact-split .submit-button {
    width: 100%;
  }

  .journal-board-hero {
    min-height: 30rem;
    padding-top: calc(var(--header-height) + 3.5rem);
  }

  .journal-board-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-board-nav {
    position: static;
  }

  .journal-board-nav nav {
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
  }

  .journal-board-nav button {
    min-height: 2.2rem;
  }

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

@media (max-width: 640px) {
  .journal-board-title {
    font-size: clamp(3.4rem, 18vw, 5.5rem);
  }

  .journal-board-feature > a {
    grid-template-columns: 1fr;
  }

  .journal-board-feature-media {
    aspect-ratio: 16 / 10;
  }

  .journal-board-feature-copy {
    padding: 1.6rem;
  }

  .journal-board-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
  }
}

/* Fine-matched Journal board dimensions. */
.journal-board-page {
  min-height: calc(100svh - var(--header-height));
  padding: 8.75rem var(--page-pad) 6.5rem;
  background: #fff;
  color: #111;
}

.journal-board-page .journal-board-layout {
  width: min(100%, 73rem);
  grid-template-columns: 11.25rem minmax(0, 1fr);
  gap: 3.5rem;
}

.journal-board-page .journal-board-nav {
  top: 6.5rem;
}

.journal-board-page .journal-board-nav nav {
  gap: 1px;
}

.journal-board-page .journal-board-nav button {
  min-height: 2.45rem;
  padding: .56rem .9rem;
  border-radius: .5rem;
  font-size: .875rem;
  font-weight: 400;
}

.journal-board-page .journal-board-main {
  min-width: 0;
}

.journal-board-page .journal-board-title {
  max-width: none;
  margin: 0;
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.045em;
}

.journal-board-page .journal-board-description {
  max-width: 40.625rem;
  margin: 1rem 0 0;
  color: #777;
  font-size: .875rem;
  line-height: 1.7;
}

.journal-board-page .journal-board-feature,
.journal-board-page .journal-board-feature > a,
.journal-board-page .journal-board-feature-link {
  height: 19.375rem;
  min-height: 0;
}

.journal-board-page .journal-board-feature {
  margin-top: 2.25rem;
  border-radius: 1.25rem;
}

.journal-board-page .journal-board-feature-copy {
  padding: 2.125rem 2.375rem;
}

.journal-board-page .journal-board-feature-copy small,
.journal-board-page .journal-board-card > a > small,
.journal-board-page .journal-board-card-link > small {
  font-size: .6875rem;
  font-weight: 650;
  letter-spacing: .06em;
}

.journal-board-page .journal-board-feature-copy h2 {
  margin: .75rem 0;
  font-size: 1.6875rem;
  line-height: 1.4;
  letter-spacing: -.04em;
}

.journal-board-page .journal-board-feature-copy p,
.journal-board-page .journal-board-card p {
  font-size: .8125rem;
  line-height: 1.65;
}

.journal-board-page .journal-board-feature-copy b {
  margin-top: 1.375rem;
  font-size: .75rem;
}

.journal-board-page .journal-board-grid {
  gap: 3.625rem 1.5rem;
  margin-top: 4rem;
}

.journal-board-page .journal-board-card h2 {
  margin: .625rem 0 .5625rem;
  font-size: 1.1875rem;
  line-height: 1.45;
}

.journal-board-page .empty-journal {
  min-height: 19.375rem;
  margin-top: 2.25rem;
}

@media (max-width: 900px) {
  .journal-board-page {
    padding: calc(var(--header-height) + 4rem) var(--page-pad) 5rem;
  }

  .journal-board-page .journal-board-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .journal-board-page .journal-board-nav {
    position: static;
  }
}

@media (max-width: 640px) {
  .journal-board-page {
    padding-top: calc(var(--header-height) + 3rem);
  }

  .journal-board-page .journal-board-title {
    font-size: clamp(2.25rem, 10vw, 2.625rem);
  }

  .journal-board-page .journal-board-feature,
  .journal-board-page .journal-board-feature > a,
  .journal-board-page .journal-board-feature-link {
    height: auto;
  }
}

/* Measured light-palette parity for the Journal board. */
.journal-board-page {
  color: #171717;
}

.journal-board-page .journal-board-nav button:hover,
.journal-board-page .journal-board-nav button[aria-pressed="true"] {
  background: #f0f0f0;
  color: #171717;
}

.journal-board-page .journal-board-description,
.journal-board-page .journal-board-feature-copy p,
.journal-board-page .journal-board-card p {
  color: #555;
  font-size: .875rem;
}

.journal-board-page .journal-board-feature {
  background: #f5f5f5;
  color: #171717;
}

.journal-board-page .journal-board-feature-copy small,
.journal-board-page .journal-board-card > a > small,
.journal-board-page .journal-board-card-link > small {
  color: #777;
  font-size: .875rem;
}

.journal-board-page .journal-board-feature-copy h2 {
  font-weight: 700;
}

body:has(main[data-teampros-page="teampros.journal"]) .site-header.on-light:not(.menu-active) {
  border-bottom: 1px solid rgba(10, 10, 10, .07);
  background: rgba(255, 255, 255, .96);
  color: #171717;
}
}

/* About Us — Teampros company portfolio editorial translation */
main[data-teampros-page="teampros.studio"] {
  --about-paper: #efefec;
  --about-ink: #101010;
  overflow: clip;
  background: #080808;
}

.studio-about-hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #080808;
  color: #f3f3ef;
}

.studio-about-hero-media,
.studio-about-hero-media::after {
  position: absolute;
  inset: 0;
}

.studio-about-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(.48);
  transform: scale(1.035);
}

.studio-about-hero-media::after {
  content: "";
  background:
    linear-gradient(90deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 48%, rgba(0,0,0,.62) 100%),
    linear-gradient(180deg, rgba(0,0,0,.38), transparent 35%, rgba(0,0,0,.74));
}

.studio-about-hero-media > span {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: url("/assets/teampros/media/hero-iridescent-wave.jpg");
  background-position: 50% 75%;
  background-size: cover;
  mix-blend-mode: screen;
  filter: grayscale(1);
}

.studio-about-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: auto 1fr auto;
  min-height: 100svh;
  padding: calc(var(--header-height) + 2rem) var(--page-pad) clamp(2rem, 4vw, 4.5rem);
}

.studio-about-hero-grid::before,
.studio-about-hero-grid::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  content: "";
  background: rgba(255,255,255,.12);
}

.studio-about-hero-grid::before { left: 25%; }
.studio-about-hero-grid::after { left: 75%; }

.studio-about-eyebrow {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.68);
  font-size: clamp(.66rem, .68vw, .82rem);
  font-weight: 500;
  letter-spacing: -.01em;
}

.studio-about-hero-stage {
  position: relative;
  grid-column: 1 / 12;
  align-self: center;
  padding: clamp(5rem, 11vh, 10rem) 0 clamp(4rem, 8vh, 7rem);
}

.studio-about-title {
  position: relative;
  z-index: 2;
  max-width: none;
  font-family: var(--display);
  font-size: clamp(4rem, 7.8vw, 9.8rem);
  font-weight: 500;
  line-height: .89;
  letter-spacing: -.072em;
  white-space: pre;
  word-break: keep-all;
}

.studio-about-intro {
  grid-column: 8 / 12;
  align-self: end;
  max-width: 31rem;
  color: rgba(255,255,255,.7);
  font-size: clamp(.95rem, 1.08vw, 1.2rem);
  line-height: 1.6;
  word-break: keep-all;
}

.studio-about-scroll {
  grid-column: 1 / 5;
  align-self: end;
  display: flex;
  align-items: center;
  gap: .9rem;
  color: rgba(255,255,255,.5);
  font-size: .68rem;
  font-weight: 500;
}

.studio-about-scroll i {
  width: 3.4rem;
  height: 1px;
  overflow: hidden;
  background: rgba(255,255,255,.24);
}

.studio-about-scroll i::after {
  display: block;
  width: 44%;
  height: 100%;
  content: "";
  background: #fff;
  animation: about-scroll-cue 2.4s ease-in-out infinite;
}

@keyframes about-scroll-cue {
  0%, 100% { transform: translateX(-110%); }
  55% { transform: translateX(230%); }
}

.studio-orbit {
  position: absolute;
  z-index: 0;
  top: 50%;
  right: -2vw;
  display: block;
  width: min(43vw, 48rem);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(232,232,232,0);
  pointer-events: none;
  translate: 0 -50%;
  transform: rotate(90deg) scale(1);
  will-change: transform, background-color;
}

.studio-orbit b {
  position: absolute;
  inset: 0;
  display: block;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}

.studio-orbit::before,
.studio-orbit::after {
  position: absolute;
  top: 50%;
  z-index: 1;
  color: rgba(255,255,255,.68);
  content: "+";
  font-size: 1.55rem;
  font-weight: 200;
  line-height: 1;
  transform: translateY(-54%);
}

.studio-orbit::before { left: -.48rem; }
.studio-orbit::after { right: -.48rem; }

.studio-about-scope {
  min-height: 100svh;
  padding-top: clamp(8rem, 12vw, 13rem);
  padding-bottom: clamp(8rem, 12vw, 13rem);
  background: #efefec;
  color: #101010;
}

.studio-about-scope > header,
.studio-about-scope > ol {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.studio-about-scope > header > span,
.studio-about-process-head > span,
.studio-about-people-copy > span,
.studio-about-proof-grid > span {
  font-size: clamp(.68rem, .7vw, .82rem);
  font-weight: 500;
  letter-spacing: -.01em;
}

.studio-about-scope > header > span { grid-column: 1 / 4; }

.studio-about-display {
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.2vw, 8.4rem);
  font-weight: 500;
  line-height: .87;
  letter-spacing: -.072em;
  white-space: pre-line;
}

.studio-about-scope > header .studio-about-display {
  grid-column: 4 / -1;
  max-width: 9ch;
}

.studio-about-scope > ol {
  padding: 0;
  margin: clamp(5rem, 9vw, 9rem) 0 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,.28);
}

.studio-about-scope li {
  grid-column: 4 / -1;
  display: grid;
  grid-template-columns: minmax(14rem, .8fr) minmax(20rem, 1fr);
  gap: 3rem;
  align-items: start;
  padding: clamp(1.7rem, 2.4vw, 2.7rem) 0;
  border-bottom: 1px solid rgba(0,0,0,.28);
}

.studio-about-scope li > span {
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.3vw, 2.65rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -.052em;
}

.studio-about-scope li p {
  max-width: 36rem;
  color: rgba(0,0,0,.6);
  font-size: clamp(.92rem, 1vw, 1.08rem);
  line-height: 1.62;
  word-break: keep-all;
}

.studio-about-process {
  position: relative;
  min-height: 112svh;
  padding-top: clamp(8rem, 12vw, 13rem);
  padding-bottom: clamp(6rem, 9vw, 10rem);
  overflow: hidden;
  background: #080808;
  color: #f3f3ef;
}

.studio-about-process-head {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  min-height: 62svh;
}

.studio-about-process-head > span { grid-column: 1 / 4; }

.studio-about-process-head .studio-about-display {
  position: relative;
  z-index: 2;
  grid-column: 4 / 12;
  max-width: 10ch;
}

.studio-about-process-copy {
  position: relative;
  z-index: 2;
  grid-column: 8 / 12;
  align-self: end;
  max-width: 34rem;
  color: rgba(255,255,255,.62);
  font-size: clamp(.92rem, 1vw, 1.08rem);
  line-height: 1.65;
  word-break: keep-all;
}

.studio-about-process .studio-orbit {
  right: auto;
  left: 5vw;
  width: min(42vw, 47rem);
}

.studio-about-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  padding: 0;
  margin: clamp(4rem, 8vw, 8rem) 0 0;
  list-style: none;
  border-top: 1px solid rgba(255,255,255,.22);
}

.studio-about-steps li {
  min-height: 9rem;
  padding: 1.2rem 1rem 1.2rem 0;
  border-right: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.64);
  font-size: clamp(.66rem, .72vw, .82rem);
  font-weight: 500;
}

.studio-about-steps li:last-child { border-right: 0; }

.studio-about-people {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 100svh;
  background: #efefec;
  color: #101010;
}

.studio-about-people figure {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
}

.studio-about-people figure::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,.55));
}

.studio-about-people figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.04);
}

.studio-about-people figcaption {
  position: absolute;
  z-index: 1;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  color: rgba(255,255,255,.72);
  font-size: .68rem;
  font-weight: 500;
}

.studio-about-people-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: clamp(8rem, 10vw, 12rem);
  padding-bottom: clamp(6rem, 8vw, 9rem);
}

.studio-about-people-copy .studio-about-display {
  max-width: 8ch;
  margin: clamp(3rem, 5vw, 5rem) 0;
  font-size: clamp(3.3rem, 6vw, 7rem);
}

.studio-about-body {
  max-width: 35rem;
  color: rgba(0,0,0,.62);
  font-size: clamp(.93rem, 1.02vw, 1.1rem);
  line-height: 1.66;
  word-break: keep-all;
}

.studio-about-people-copy ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0;
  margin: clamp(3rem, 5vw, 5rem) 0 0;
  list-style: none;
  border-top: 1px solid rgba(0,0,0,.26);
}

.studio-about-people-copy li {
  padding: 1rem .8rem 1rem 0;
  border-bottom: 1px solid rgba(0,0,0,.2);
  color: rgba(0,0,0,.6);
  font-size: clamp(.65rem, .72vw, .82rem);
  font-weight: 500;
}

.studio-about-proof {
  min-height: 96svh;
  align-content: center;
  padding-top: clamp(8rem, 11vw, 12rem);
  padding-bottom: clamp(8rem, 11vw, 12rem);
  background: #080808;
  color: #f3f3ef;
}

.studio-about-proof-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.studio-about-proof-grid > span { grid-column: 1 / 4; }

.studio-about-proof .studio-about-display {
  grid-column: 4 / -1;
  max-width: 9ch;
}

.studio-about-proof .studio-about-body {
  grid-column: 8 / 12;
  margin-top: clamp(3rem, 5vw, 5rem);
  color: rgba(255,255,255,.6);
}

.studio-about-proof-rail {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(6rem, 10vw, 10rem);
  border-top: 1px solid rgba(255,255,255,.22);
  border-bottom: 1px solid rgba(255,255,255,.22);
}

.studio-about-proof-rail span {
  min-height: 8rem;
  padding: 1.15rem 1rem 1rem 0;
  border-right: 1px solid rgba(255,255,255,.16);
  color: rgba(255,255,255,.68);
  font-size: clamp(.72rem, .82vw, .92rem);
  font-weight: 500;
}

.studio-about-proof-rail span:last-child { border-right: 0; }

main[data-teampros-page="teampros.studio"] .contact-cta-title { white-space: pre-line; }

@media (prefers-reduced-motion: reduce) {
  .studio-about-scroll i::after { animation: none; }
  .studio-orbit { transform: rotate(0deg) scale(1); }
}

@media (max-width: 900px) {
  .studio-about-hero-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto auto;
    padding-top: calc(var(--header-height) + 1rem);
  }
  .studio-about-hero-grid::before { left: var(--page-pad); }
  .studio-about-hero-grid::after { right: var(--page-pad); left: auto; }
  .studio-about-eyebrow,
  .studio-about-hero-stage,
  .studio-about-intro,
  .studio-about-scroll { grid-column: 1; }
  .studio-about-eyebrow span:last-child { display: none; }
  .studio-about-hero-stage { padding: 5rem 0 3rem; }
  .studio-about-title { max-width: 10ch; font-size: clamp(3.3rem, 15vw, 6.2rem); white-space: pre-line; }
  .studio-about-intro { max-width: 27rem; }
  .studio-about-scroll { margin-top: 2.5rem; }
  .studio-about-hero-stage .studio-orbit { right: -35vw; width: 82vw; }

  .studio-about-scope > header,
  .studio-about-scope > ol,
  .studio-about-process-head,
  .studio-about-proof-grid { display: block; }
  .studio-about-scope > header > span,
  .studio-about-process-head > span,
  .studio-about-people-copy > span,
  .studio-about-proof-grid > span { display: block; margin-bottom: 2rem; }
  .studio-about-scope > header .studio-about-display,
  .studio-about-process-head .studio-about-display,
  .studio-about-proof .studio-about-display { max-width: 10ch; }
  .studio-about-scope li { grid-column: auto; grid-template-columns: 1fr; gap: 1.3rem; }

  .studio-about-process { min-height: auto; }
  .studio-about-process-head { min-height: 60svh; }
  .studio-about-process-copy { max-width: 32rem; margin: 3rem 0 0 auto; }
  .studio-about-process .studio-orbit { top: 45%; left: -32vw; width: 85vw; }
  .studio-about-steps { grid-template-columns: 1fr; }
  .studio-about-steps li { min-height: auto; padding: 1.1rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }

  .studio-about-people { grid-template-columns: 1fr; }
  .studio-about-people figure { min-height: 70svh; }
  .studio-about-people-copy { min-height: auto; }

  .studio-about-proof .studio-about-body { max-width: 34rem; margin: 3rem 0 0 auto; }
  .studio-about-proof-rail { grid-template-columns: 1fr; }
  .studio-about-proof-rail span { min-height: auto; padding: 1.1rem 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .studio-about-proof-rail span:last-child { border-bottom: 0; }
}

@media (max-width: 560px) {
  .studio-about-title { font-size: clamp(3rem, 14.5vw, 4.7rem); letter-spacing: -.075em; }
  .studio-about-display { font-size: clamp(3rem, 14vw, 4.8rem); }
  .studio-about-scope,
  .studio-about-process,
  .studio-about-proof { padding-top: 7rem; padding-bottom: 7rem; }
  .studio-about-scope > ol { margin-top: 4rem; }
  .studio-about-people figure { min-height: 58svh; }
  .studio-about-people-copy ul { grid-template-columns: 1fr; }
  .studio-about-scroll { display: none; }
}

/* Korean editorial wrapping: preserve words, then balance by text role. */
html[lang="ko"] :where(main, .site-footer, .mobile-menu) :where(h1, h2, h3, h4, p, li, dd, dt, blockquote, figcaption, label, legend, .legal-body) {
  overflow-wrap: break-word;
  word-break: keep-all;
}

html[lang="ko"] :where(main, .site-footer, .mobile-menu) :where(h1, h2, h3, h4) {
  text-wrap: balance;
}

html[lang="ko"] :where(main, .site-footer, .mobile-menu) :where(p, li, dd, blockquote, figcaption, label, legend, .legal-body) {
  text-wrap: pretty;
}

/* Front-review release visuals: code-owned, deterministic, and artifact-safe. */
[data-release-visual] {
  display: block;
  overflow: hidden;
  background-color: #08080a;
}

.hero-reference-wave[data-release-visual="hero"] {
  background:
    radial-gradient(ellipse at 16% 59%, rgba(34, 97, 255, .96) 0 8%, transparent 37%),
    radial-gradient(ellipse at 49% 57%, rgba(77, 225, 255, .86) 0 7%, transparent 31%),
    radial-gradient(ellipse at 71% 69%, rgba(255, 103, 40, .98) 0 8%, transparent 34%),
    radial-gradient(ellipse at 91% 60%, rgba(255, 20, 92, .88) 0 6%, transparent 27%),
    linear-gradient(165deg, #03030b 14%, #102f8d 40%, #f5f3df 56%, #ff572f 70%, #07070b 91%);
  box-shadow: inset 0 0 7rem rgba(0, 0, 0, .52);
}

.reel-release-visual,
.home-people-image,
.home-visual-image,
.studio-about-hero-visual,
.studio-about-people-visual,
.contact-release-visual,
.journal-release-visual {
  width: 100%;
  height: 100%;
}

.reel-release-visual {
  background:
    linear-gradient(115deg, transparent 0 34%, rgba(255,255,255,.2) 35% 36%, transparent 37% 100%),
    radial-gradient(circle at 70% 32%, rgba(255,255,255,.2), transparent 22%),
    linear-gradient(145deg, #0c0d11, #313743 46%, #050506);
  filter: saturate(.82) contrast(1.06) brightness(.88);
}

.reel-release-visual[data-tone="2"] {
  background:
    linear-gradient(25deg, transparent 0 47%, rgba(255,94,32,.68) 48% 53%, transparent 54%),
    radial-gradient(circle at 35% 50%, #244da4, transparent 38%),
    #07080c;
}

.reel-release-visual[data-tone="3"] {
  background:
    radial-gradient(ellipse at 22% 72%, rgba(18,113,255,.92), transparent 36%),
    radial-gradient(ellipse at 72% 35%, rgba(248,244,210,.76), transparent 26%),
    radial-gradient(ellipse at 70% 74%, rgba(255,54,69,.88), transparent 33%),
    #07070a;
}

.reel-release-visual[data-tone="4"] {
  background:
    repeating-linear-gradient(117deg, transparent 0 9%, rgba(255,255,255,.12) 10% 11%, transparent 12% 21%),
    linear-gradient(140deg, #051642, #4b216e 42%, #f65038 70%, #09090c);
}

.home-people-image,
.studio-about-people-visual {
  background:
    linear-gradient(112deg, rgba(0,0,0,.84), transparent 42%, rgba(0,0,0,.28)),
    radial-gradient(circle at 68% 32%, rgba(255,255,255,.22) 0 2%, transparent 21%),
    repeating-linear-gradient(90deg, #101114 0 13%, #27292e 13% 14%, #111216 14% 29%);
}

.home-visual-image,
.studio-about-hero-visual {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 0 24%, rgba(255,255,255,.38) 25% 26%, transparent 27% 48%, rgba(255,68,32,.42) 49% 51%, transparent 52%),
    radial-gradient(ellipse at 54% 54%, rgba(70,101,255,.62), transparent 38%),
    linear-gradient(145deg, #030304, #191d27 52%, #050506);
}

.contact-release-visual {
  background:
    linear-gradient(126deg, transparent 0 43%, rgba(255,255,255,.24) 44% 45%, transparent 46%),
    radial-gradient(circle at 72% 28%, rgba(255,70,35,.84), transparent 26%),
    radial-gradient(circle at 30% 70%, rgba(45,99,255,.86), transparent 33%),
    #07070a;
}

.journal-release-visual {
  background:
    linear-gradient(135deg, transparent 0 47%, rgba(255,255,255,.5) 48% 49%, transparent 50%),
    linear-gradient(155deg, #16171a, #686d79 47%, #121316);
}

.journal-release-visual[data-tone="2"] { background: linear-gradient(145deg, #07142f, #2f68b8 48%, #101116); }
.journal-release-visual[data-tone="3"] { background: linear-gradient(145deg, #171717, #e6d8c1 48%, #932e20); }
.journal-release-visual[data-tone="4"] { background: linear-gradient(145deg, #08090c, #683b85 48%, #e85b39); }

.mobile-menu-art > [data-release-visual="menu"] {
  position: absolute;
  display: block;
  width: 38%;
  aspect-ratio: 4 / 5;
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: clip-path 650ms cubic-bezier(.22, 1, .36, 1), opacity 180ms ease, transform 760ms cubic-bezier(.22, 1, .36, 1);
}

.mobile-menu-art > [data-release-visual="menu"]:nth-child(1) { top: 23%; left: 2%; transform: translate3d(-1.5rem, 2.75rem, 0) rotate(-7deg); background: linear-gradient(145deg, #07142f, #3768c0); }
.mobile-menu-art > [data-release-visual="menu"]:nth-child(2) { top: 12%; left: 23%; transform: translate3d(-.8rem, 2.25rem, 0) rotate(4deg); background: linear-gradient(145deg, #171717, #e6d8c1 55%, #932e20); }
.mobile-menu-art > [data-release-visual="menu"]:nth-child(3) { top: 29%; left: 43%; transform: translate3d(.4rem, 2.5rem, 0) rotate(-3deg); background: linear-gradient(145deg, #08090c, #683b85 52%, #e85b39); }
.mobile-menu-art > [data-release-visual="menu"]:nth-child(4) { top: 4%; right: 2%; transform: translate3d(1.1rem, 2.1rem, 0) rotate(5deg); background: linear-gradient(145deg, #111216, #686d79 47%, #141519); }
.mobile-menu.is-open .mobile-menu-art > [data-release-visual="menu"] { opacity: .94; clip-path: inset(0); }
.mobile-menu.is-open .mobile-menu-art > [data-release-visual="menu"]:nth-child(1) { transform: rotate(-7deg); }
.mobile-menu.is-open .mobile-menu-art > [data-release-visual="menu"]:nth-child(2) { transform: rotate(4deg); }
.mobile-menu.is-open .mobile-menu-art > [data-release-visual="menu"]:nth-child(3) { transform: rotate(-3deg); }
.mobile-menu.is-open .mobile-menu-art > [data-release-visual="menu"]:nth-child(4) { transform: rotate(5deg); }

.inquiry-review-fields {
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 0;
  opacity: 1;
}

[data-inquiry-disabled="true"] .submit-button {
  cursor: default;
  opacity: 1;
}

[data-inquiry-disabled="true"] .form-status[data-state="review"] {
  color: rgba(255, 255, 255, .7);
}

/* Approved front-review media layers; code visuals remain visible while media loads. */
.hero-approved-media {
  z-index: 3;
}

.reel-slide > .reel-release-visual,
.reel-slide > video,
.home-people figure > .home-people-image,
.home-people figure > img,
.home-visual-break > .home-visual-image,
.home-visual-break > img,
.studio-about-people figure > .studio-about-people-visual,
.studio-about-people figure > img,
.contact-split-media > .contact-release-visual,
.contact-split-media > video,
.journal-board-feature-media > .journal-release-visual,
.journal-board-feature-media > .journal-approved-media,
.journal-board-card-media > .journal-release-visual,
.journal-board-card-media > .journal-approved-media {
  position: absolute;
  inset: 0;
}

.reel-slide > video,
.home-people figure > img,
.home-visual-break > img,
.studio-about-people figure > img,
.contact-split-media > video,
.journal-approved-media {
  z-index: 1;
}

.home-visual-break > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.7) contrast(1.12);
}

.studio-about-hero-media > .studio-approved-media {
  position: absolute;
  z-index: 1;
  inset: 0;
}

.journal-board-feature-media,
.journal-board-card-media {
  position: relative;
}
