:root {
  --black: oklch(0.07 0.006 260);
  --black-2: oklch(0.105 0.009 260);
  --charcoal: oklch(0.16 0.012 260);
  --white: oklch(0.97 0 0);
  --ink: oklch(0.13 0.01 260);
  --paper: oklch(0.955 0.002 260);
  --muted: oklch(0.72 0.014 260);
  --line: oklch(0.96 0 0 / 0.16);
  --line-strong: oklch(0.96 0 0 / 0.34);
  --line-dark: oklch(0.13 0.01 260 / 0.24);
  --gold: oklch(0.82 0.115 86);
  --red: oklch(0.58 0.22 30);
  --font-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
  --font-display: "Avenir Next", "Helvetica Neue", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--white);
  background: var(--black);
  font-family: var(--font-sans);
  letter-spacing: 0;
}

body.intro-pending {
  overscroll-behavior: none;
  overflow: hidden;
  height: 100svh;
  touch-action: none;
}

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

img,
video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

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

.site-intro {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  contain: layout paint style;
}

.intro-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 46%, oklch(0.16 0.012 260), transparent 34%),
    linear-gradient(135deg, oklch(0.105 0.009 260), var(--black) 62%),
    var(--black);
  box-shadow: inset 0 0 0 1px oklch(0.96 0 0 / 0.08);
  opacity: 1;
  will-change: opacity;
}

.intro-mark {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: clamp(138px, 18vw, 250px);
  height: auto;
  object-fit: contain;
  transform: translate3d(-50%, -50%, 0);
  backface-visibility: hidden;
  will-change: transform;
}

.site-intro.is-exiting {
  pointer-events: none;
}

.site-intro.is-complete {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-header {
  position: fixed;
  z-index: 30;
  inset: 0 0 auto;
  min-height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(18px, 3vw, 42px);
  border-bottom: 1px solid oklch(0.96 0 0 / 0.1);
  background: oklch(0.07 0.006 260 / 0.9);
  transition:
    min-height 280ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header.is-scrolled {
  min-height: 50px;
  border-bottom-color: oklch(0.96 0 0 / 0.18);
  background: oklch(0.055 0.006 260 / 0.94);
  box-shadow: 0 14px 40px oklch(0 0 0 / 0.24);
}

.home-page .site-header:not(.is-scrolled) {
  border-bottom-color: transparent;
  background: transparent;
  box-shadow: none;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
}

.brand-logo {
  width: 34px;
  height: 38px;
  object-fit: contain;
  transition: opacity 220ms ease, transform 220ms ease;
}

.intro-pending .brand-logo {
  opacity: 0;
  transition: none;
}

.brand-logo.is-intro-ready {
  opacity: 1 !important;
  transition: none !important;
}

.nav-links {
  display: flex;
  gap: clamp(22px, 3vw, 46px);
  color: oklch(0.96 0 0 / 0.78);
  font-size: 13px;
}

.nav-links a,
.language-link {
  position: relative;
  padding-block: 18px;
}

.nav-links a::after,
.language-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: center;
  transition: opacity 220ms ease, transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.language-link:hover::after,
.language-link:focus-visible::after,
.nav-links .is-active::after {
  opacity: 0.72;
  transform: scaleX(1);
}

.language-link {
  justify-self: end;
  color: oklch(0.96 0 0 / 0.72);
  font-size: 13px;
}

.nav-links a,
.language-link,
.plain-heading a,
.services-title a,
.about-copy a,
.news-top a,
.site-footer a {
  transition: color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.language-link:hover,
.plain-heading a:hover,
.services-title a:hover,
.about-copy a:hover,
.news-top a:hover,
.site-footer a:hover {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--black);
}

.hero-video {
  position: absolute;
  inset: 0;
  filter: saturate(1.16) contrast(1.06) brightness(0.98);
  object-position: center top;
  transform: translate3d(0, calc(var(--hero-lift, 0px) - clamp(26px, 4.8svh, 64px)), 0) scale(var(--hero-scale, 1));
  transform-origin: center;
  will-change: transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 48%, oklch(0.07 0.006 260 / 0.16), oklch(0.07 0.006 260 / 0.48)),
    linear-gradient(180deg, oklch(0.07 0.006 260 / 0.2), oklch(0.07 0.006 260 / 0.48));
  pointer-events: none;
}

.hero-copy {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  width: min(860px, calc(100% - 36px));
  transform: translate3d(-50%, -46%, 0);
  text-align: center;
  color: var(--white);
  text-shadow: 0 18px 60px oklch(0 0 0 / 0.54);
}

.hero-copy span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.16em;
}

.hero-copy h1 {
  font-size: clamp(46px, 7.4vw, 112px);
  font-weight: 560;
  line-height: 0.98;
  text-wrap: balance;
}

.hero-copy p {
  max-width: 56ch;
  margin: clamp(20px, 2.4vw, 30px) auto 0;
  color: oklch(0.98 0 0 / 0.86);
  font-size: clamp(15px, 1.25vw, 20px);
  line-height: 1.72;
}

.plain-heading h2,
.services-title h2,
.about-copy h2,
.news-top h2,
.footer-cta h2 {
  font-size: clamp(29px, 4vw, 62px);
  font-weight: 560;
  line-height: 1.12;
  text-wrap: balance;
}

.plain-heading p,
.service-door p,
.about-copy p,
.footer-cta p {
  color: var(--muted);
  font-size: clamp(15px, 1.35vw, 20px);
  line-height: 1.62;
  text-wrap: pretty;
}

.cases {
  padding: clamp(52px, 5.6vw, 84px) clamp(18px, 3vw, 42px) clamp(36px, 4vw, 60px);
  background: var(--black);
}

.plain-heading {
  max-width: 820px;
  margin-bottom: clamp(28px, 4.4vw, 58px);
}

.plain-heading p {
  max-width: 42ch;
  margin-top: 20px;
}

.plain-heading a,
.services-title a,
.about-copy a,
.news-top a {
  position: relative;
  display: inline-flex;
  width: fit-content;
  margin-top: 28px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: 14px;
  line-height: 1.7;
}

.plain-heading a::after,
.services-title a::after,
.about-copy a::after,
.news-top a::after,
.map-copy a::after,
.contact-panel a::after,
.footer-cta a::after {
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transform: translateX(-3px);
  opacity: 0;
  transition: opacity 180ms ease, transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.plain-heading a:hover::after,
.services-title a:hover::after,
.about-copy a:hover::after,
.news-top a:hover::after,
.map-copy a:hover::after,
.contact-panel a:hover::after,
.footer-cta a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.case-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: clamp(210px, 22vw, 340px);
  gap: clamp(10px, 1.2vw, 18px);
}

.case-tile {
  position: relative;
  min-height: 0;
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.case-lead {
  grid-column: span 2;
  grid-row: span 2;
}

.case-slice {
  grid-column: span 1;
  grid-row: span 1;
}

.case-wide {
  grid-column: span 1;
  grid-row: span 1;
}

.case-fill {
  grid-column: span 2;
  grid-row: span 1;
}

.case-tall {
  grid-column: span 1;
  grid-row: span 1;
}

.case-small {
  grid-column: span 1;
  grid-row: span 1;
}

.case-tile img,
.service-door img,
.service-door video {
  filter: saturate(1.12) contrast(1.06) brightness(0.92);
  transform: scale(1.01);
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), filter 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-tile::after,
.service-door::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 38%, oklch(0.07 0.006 260 / 0.82));
  pointer-events: none;
}

.case-tile span,
.case-tile strong {
  position: absolute;
  z-index: 2;
  left: clamp(16px, 2.2vw, 32px);
  right: clamp(16px, 2.2vw, 32px);
}

.case-tile span {
  bottom: clamp(42px, 3.2vw, 62px);
  font-size: clamp(21px, 2.35vw, 36px);
  font-weight: 560;
  line-height: 1.1;
}

.case-tile strong {
  bottom: clamp(17px, 2vw, 28px);
  color: oklch(0.96 0 0 / 0.66);
  font-size: 13px;
  font-weight: 560;
}

.case-tile:hover img,
.service-door:hover img,
.service-door:hover video {
  transform:
    translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -10px), 0)
    scale(1.09);
  filter: saturate(1.36) contrast(1.08) brightness(1.04);
}

.services {
  padding: clamp(38px, 4.5vw, 70px) clamp(18px, 3vw, 42px) clamp(56px, 7vw, 104px);
  background:
    linear-gradient(180deg, oklch(0.12 0.012 260), oklch(0.08 0.006 260));
}

.services-title {
  max-width: 980px;
  margin-bottom: clamp(30px, 4.6vw, 62px);
}

.service-doors {
  display: grid;
  grid-template-columns: 0.86fr 1.28fr 0.86fr;
  align-items: stretch;
  gap: clamp(10px, 1.3vw, 22px);
}

.service-door {
  position: relative;
  min-height: clamp(430px, 58vw, 760px);
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.service-door-hot {
  transform: translateY(clamp(-26px, -3vw, -16px));
}

.service-door span,
.service-door p {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 3vw, 44px);
  right: clamp(18px, 3vw, 44px);
}

.service-door span {
  bottom: clamp(84px, 8vw, 124px);
  font-size: clamp(29px, 4vw, 64px);
  font-weight: 560;
  line-height: 1.04;
  text-wrap: balance;
}

.service-door p {
  bottom: clamp(24px, 3vw, 50px);
  max-width: 25ch;
  color: oklch(0.96 0 0 / 0.72);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.72fr);
  min-height: 92svh;
  background: var(--red);
}

.about-image {
  min-height: 92svh;
  overflow: hidden;
}

.about-image img {
  filter: saturate(1.12) contrast(1.08) brightness(0.82);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.8vw, 70px);
  color: var(--white);
}

.about-copy p {
  max-width: 46ch;
  margin-top: 24px;
  color: oklch(0.98 0 0 / 0.8);
}

.about-copy a {
  color: var(--white);
}

.news {
  color: var(--ink);
  background: var(--paper);
  padding: clamp(36px, 4.2vw, 62px) clamp(18px, 3vw, 42px) clamp(42px, 5vw, 72px);
}

.news-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 42px);
  padding-top: clamp(16px, 2vw, 26px);
  border-top: 2px solid var(--ink);
}

.news-top span {
  display: block;
  margin-bottom: 8px;
  color: oklch(0.2 0.012 260 / 0.52);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.news-top a {
  margin-top: 0;
  color: oklch(0.28 0.018 260);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: clamp(24px, 3vw, 38px);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.news-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: clamp(16px, 1.6vw, 22px);
  min-height: clamp(178px, 18vw, 248px);
  padding: clamp(18px, 2.3vw, 30px);
  border-left: 1px solid var(--line-dark);
  overflow: hidden;
  isolation: isolate;
  background: var(--paper);
  transition:
    color 360ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 360ms cubic-bezier(0.16, 1, 0.3, 1),
    background-color 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:first-child {
  border-left: 0;
}

.news-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--news-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 420ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, oklch(0.07 0.006 260 / 0.18), oklch(0.07 0.006 260 / 0.74));
  opacity: 0;
  transition: opacity 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card time {
  color: oklch(0.32 0.01 260);
  font-size: clamp(13px, 1vw, 16px);
  transition: color 360ms ease;
}

.news-card strong {
  color: var(--ink);
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 560;
  line-height: 1.24;
  text-wrap: pretty;
  transition: color 360ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card-featured strong {
  color: var(--red);
  text-decoration: none;
}

.news-card span {
  width: fit-content;
  border-bottom: 0;
  color: oklch(0.28 0.018 260);
  font-size: 20px;
  line-height: 1;
  opacity: 0.76;
  transition: color 360ms ease, opacity 360ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover,
.news-card:focus-visible {
  color: var(--white);
  transform: translateY(-4px);
  background: var(--black);
}

.news-card:hover::before,
.news-card:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.news-card:hover::after,
.news-card:focus-visible::after {
  opacity: 1;
}

.news-card:hover time,
.news-card:hover strong,
.news-card:hover span,
.news-card:focus-visible time,
.news-card:focus-visible strong,
.news-card:focus-visible span {
  color: var(--white);
}

.news-card:hover strong,
.news-card:hover span,
.news-card:focus-visible strong,
.news-card:focus-visible span {
  transform: translateY(-6px);
}

.site-footer {
  padding: clamp(14px, 1.8vw, 24px) clamp(18px, 3vw, 42px) clamp(18px, 2.4vw, 30px);
  border-top: 1px solid var(--line);
  background: var(--charcoal);
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 3vw, 32px);
  padding-bottom: clamp(12px, 1.8vw, 22px);
  border-bottom: 1px solid oklch(0.96 0 0 / 0.46);
}

.footer-brand img {
  width: clamp(34px, 3.2vw, 48px);
  height: auto;
  object-fit: contain;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: clamp(10px, 1.2vw, 16px);
}

.social-links a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1), opacity 180ms ease;
}

.social-links a:hover img,
.social-links a:focus-visible img {
  opacity: 1;
  transform: scale(1.08);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(280px, 0.88fr) minmax(340px, 0.7fr);
  gap: clamp(42px, 10vw, 148px);
  padding: clamp(38px, 5.2vw, 74px) 0;
}

.footer-cta h2 {
  max-width: 720px;
}

.footer-cta p {
  margin-top: 22px;
}

.footer-cta a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 142px;
  min-height: 52px;
  margin-top: 32px;
  background: var(--red);
  color: var(--white);
  font-size: 17px;
  font-weight: 680;
  overflow: hidden;
  transition:
    background-color 220ms ease,
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px oklch(0 0 0 / 0.26);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 24px clamp(34px, 5vw, 78px);
  align-content: start;
  color: oklch(0.93 0 0 / 0.74);
  font-size: clamp(16px, 1.4vw, 22px);
  font-weight: 650;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  color: oklch(0.93 0 0 / 0.48);
  font-size: 13px;
}

.nav-links .is-active {
  color: var(--gold);
}

.detail-page {
  padding-top: 56px;
  background: var(--black);
}

.detail-hero,
.half-image-hero {
  min-height: calc(84svh - 56px);
}

.detail-hero-split,
.half-image-hero,
.about-statement,
.image-text-band,
.contact-layout,
.map-band {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.detail-hero-copy,
.half-image-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 4.8vw, 72px) clamp(18px, 3.4vw, 52px);
  background:
    linear-gradient(180deg, oklch(0.105 0.009 260), var(--black)),
    var(--black);
}

.detail-hero-copy span,
.half-image-copy span,
.section-head span,
.service-row-copy > span,
.about-statement span,
.image-text-copy span,
.contact-panel span,
.map-copy span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
}

.detail-hero-copy h1,
.half-image-copy h1,
.detail-hero-overlay h1 {
  max-width: 14ch;
  font-size: clamp(34px, 4.4vw, 68px);
  font-weight: 560;
  line-height: 1.08;
  text-wrap: balance;
}

.detail-hero-copy p,
.half-image-copy p,
.about-statement p,
.image-text-copy p,
.contact-panel p,
.map-copy p {
  max-width: 58ch;
  margin-top: 18px;
  color: oklch(0.9 0 0 / 0.72);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.64;
}

.detail-hero-media,
.half-image-media,
.about-hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
}

.detail-hero-media img,
.detail-hero-media video,
.half-image-media img,
.about-hero > img,
.service-row-media img,
.service-row-media video,
.image-text-media img,
.visual-card img,
.team-portrait img {
  filter: saturate(1.16) contrast(1.07) brightness(0.92);
  transform: scale(1.01);
}

.about-hero {
  min-height: calc(84svh - 56px);
}

.about-hero > img {
  position: absolute;
  inset: 0;
}

.about-hero .detail-hero-overlay {
  bottom: clamp(42px, 5vw, 82px);
}

.about-hero .detail-hero-overlay h1 {
  max-width: 15ch;
  font-size: clamp(34px, 4.4vw, 66px);
}

.about-hero::after,
.half-image-media::after,
.detail-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, oklch(0.07 0.006 260 / 0.52), transparent 54%);
  pointer-events: none;
}

.detail-hero-overlay {
  position: absolute;
  left: clamp(18px, 5vw, 78px);
  right: clamp(18px, 5vw, 78px);
  bottom: clamp(42px, 7vw, 110px);
  z-index: 2;
}

.service-matrix,
.featured-cases,
.process-band,
.honors-band,
.team-band,
.news-directory {
  padding: clamp(50px, 6vw, 92px) clamp(18px, 3vw, 42px);
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(24px, 3.8vw, 48px);
}

.section-head h2,
.about-statement h2,
.image-text-copy h2,
.contact-panel h2,
.map-copy h2 {
  font-size: clamp(26px, 3.1vw, 50px);
  font-weight: 560;
  line-height: 1.14;
  text-wrap: balance;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  min-height: clamp(300px, 34vw, 460px);
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row-reverse {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
}

.service-row-reverse .service-row-media {
  order: 2;
}

.service-row-media {
  min-height: clamp(280px, 31vw, 430px);
  overflow: hidden;
  background: var(--black);
}

.service-row-media .service-main-video {
  object-fit: contain;
  background: var(--black);
  transform: none;
}

.service-row-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3.1vw, 44px);
}

.service-row-copy h2 {
  max-width: 12ch;
  font-size: clamp(32px, 4vw, 62px);
  font-weight: 560;
  line-height: 1.1;
  text-wrap: balance;
}

.service-row-copy p {
  max-width: 54ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.66;
}

.service-video-carousel {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: stretch;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 36px);
}

.service-video-cards {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 3);
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline proximity;
  scrollbar-width: none;
}

.service-video-cards::-webkit-scrollbar {
  display: none;
}

.service-video-arrow {
  border: 1px solid var(--line);
  background: oklch(0.96 0 0 / 0.035);
  color: oklch(0.96 0 0 / 0.74);
  font-size: 28px;
  font-weight: 520;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    color 180ms ease,
    background-color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-video-arrow:hover,
.service-video-arrow:focus-visible {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.service-video-card {
  position: relative;
  min-height: clamp(118px, 9vw, 160px);
  border: 1px solid var(--line);
  padding: 0;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  text-align: left;
  scroll-snap-align: start;
  transition:
    border-color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 220ms ease;
}

.service-video-card img {
  object-fit: contain;
  background: var(--black);
  filter: saturate(1.06) contrast(1.06) brightness(0.82);
  transform: none;
  transition: transform 360ms cubic-bezier(0.16, 1, 0.3, 1), filter 360ms ease;
}

.service-video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, oklch(0.07 0.006 260 / 0.78));
}

.service-video-card span {
  position: absolute;
  z-index: 2;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: oklch(0.96 0 0 / 0.88);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 560;
  line-height: 1.25;
}

.service-video-card:hover,
.service-video-card.is-active {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.service-video-card:hover img,
.service-video-card.is-active img {
  filter: saturate(1.26) contrast(1.08) brightness(1);
  transform: scale(1.02);
}

.service-video-card.is-active {
  box-shadow: 0 0 0 1px var(--gold);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(10px, 1.4vw, 22px);
}

.visual-card {
  position: relative;
  min-height: clamp(330px, 34vw, 520px);
  overflow: hidden;
  isolation: isolate;
  background: var(--charcoal);
}

.visual-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 34%, oklch(0.07 0.006 260 / 0.82));
}

.visual-card img {
  transition: transform 560ms cubic-bezier(0.16, 1, 0.3, 1), filter 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.visual-card:hover img {
  transform:
    translate3d(calc(var(--mx, 0) * -10px), calc(var(--my, 0) * -10px), 0)
    scale(1.09);
  filter: saturate(1.32) contrast(1.08) brightness(1.04);
}

.visual-card span,
.visual-card strong {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
}

.visual-card span {
  bottom: 58px;
  font-size: clamp(23px, 2.55vw, 40px);
  font-weight: 560;
  line-height: 1.08;
}

.visual-card strong {
  bottom: 24px;
  color: oklch(0.96 0 0 / 0.68);
  font-size: 13px;
}

.process-band,
.honors-band {
  background: var(--paper);
  color: var(--ink);
}

.honors-band {
  padding-block: clamp(34px, 4.2vw, 64px);
}

.honors-band .section-head {
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

.process-steps,
.honor-list,
.team-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.process-steps-eight,
.capability-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-steps article,
.honor-list article,
.team-grid article,
.contact-panel {
  min-height: 220px;
  padding: clamp(18px, 2vw, 28px);
  border-left: 1px solid var(--line-dark);
}

.process-steps article:first-child,
.honor-list article:first-child,
.team-grid article:first-child,
.contact-panel:first-child {
  border-left: 0;
}

.process-steps span,
.honor-list span,
.team-grid span,
.news-list-item time {
  display: block;
  color: oklch(0.18 0.012 260 / 0.54);
  font-size: 13px;
  font-weight: 620;
}

.process-steps strong,
.honor-list strong,
.team-grid strong {
  display: block;
  margin-top: 24px;
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.15;
}

.process-steps p,
.honor-list p,
.team-grid p {
  margin-top: 16px;
  color: oklch(0.18 0.012 260 / 0.72);
  font-size: 15px;
  line-height: 1.6;
}

.capability-combo {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  min-height: clamp(430px, 38vw, 540px);
  border-top: 1px solid var(--line-dark);
  background: var(--paper);
}

.scenario-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(170px, 0.42fr) repeat(2, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 34px);
  align-items: stretch;
  min-height: 0;
  overflow: hidden;
  padding: clamp(22px, 2.7vw, 38px);
  border-right: 1px solid var(--line-dark);
  background:
    linear-gradient(90deg, oklch(0.16 0.012 260 / 0.055) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.16 0.012 260 / 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.scenario-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0 auto;
  width: min(48%, 460px);
  aspect-ratio: 1;
  border: 1px solid oklch(0.18 0.012 260 / 0.09);
  border-radius: 999px 0 0 0;
  pointer-events: none;
}

.scenario-panel::after {
  content: "";
  position: absolute;
  left: clamp(24px, 3.2vw, 48px);
  right: clamp(24px, 3.2vw, 48px);
  top: clamp(24px, 3.2vw, 48px);
  height: 1px;
  background: var(--line-dark);
  pointer-events: none;
}

.scenario-center,
.scenario-node {
  z-index: 1;
}

.scenario-center {
  position: relative;
  grid-row: 1 / span 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  padding-top: clamp(42px, 4vw, 70px);
  color: var(--ink);
  text-align: left;
}

.scenario-center span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.1em;
}

.scenario-center strong {
  max-width: 6.6em;
  margin-top: 18px;
  color: var(--ink);
  font-size: clamp(32px, 3.6vw, 50px);
  font-weight: 500;
  line-height: 1.04;
  text-wrap: pretty;
}

.scenario-node {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(92px, 7.4vw, 116px);
  padding: clamp(14px, 1.45vw, 18px);
  border-top: 1px solid var(--line-dark);
  background: oklch(0.96 0.004 260 / 0.68);
  color: var(--ink);
  transition:
    background-color 240ms ease,
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.scenario-node::before {
  content: counter(scene, decimal-leading-zero);
  position: absolute;
  right: 18px;
  top: 18px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.scenario-node strong {
  max-width: calc(100% - 42px);
  color: var(--ink);
  font-size: clamp(20px, 1.45vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}

.scenario-node span {
  margin-top: 14px;
  color: oklch(0.18 0.012 260 / 0.56);
  font-size: 13px;
  line-height: 1.3;
}

.scenario-node:hover {
  transform: translateY(-3px);
  background: var(--white);
}

.scenario-panel {
  counter-reset: scene;
}

.scenario-node {
  counter-increment: scene;
}

.scenario-node-brand,
.scenario-node-park,
.scenario-node-drama,
.scenario-node-media,
.scenario-node-ip,
.scenario-node-training {
  position: relative;
}

.capability-summary {
  display: grid;
  align-content: center;
  padding: clamp(22px, 2.8vw, 40px);
  background:
    linear-gradient(180deg, oklch(0.07 0.006 260 / 0.96), oklch(0.04 0.006 260)),
    var(--black);
  color: var(--white);
}

.capability-summary > span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.1em;
}

.capability-summary h3 {
  max-width: 9em;
  margin-top: 18px;
  color: var(--white);
  font-size: clamp(30px, 3.45vw, 48px);
  font-weight: 500;
  line-height: 1.08;
  text-wrap: pretty;
}

.capability-summary p {
  max-width: 34em;
  margin-top: 14px;
  color: oklch(0.96 0 0 / 0.68);
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.62;
}

.asset-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: clamp(16px, 1.8vw, 26px);
}

.asset-pill {
  min-height: 74px;
  padding: 14px;
  border: 1px solid oklch(0.96 0 0 / 0.18);
  border-radius: 8px;
  background: oklch(0.96 0 0 / 0.035);
  transition:
    transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 280ms ease,
    background-color 280ms ease;
}

.asset-pill strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 1.45vw, 25px);
  font-weight: 500;
  line-height: 1.1;
}

.asset-pill span {
  display: block;
  margin-top: 8px;
  color: oklch(0.96 0 0 / 0.52);
  font-size: 13px;
  line-height: 1.35;
}

.asset-pill:hover {
  transform: translateY(-4px);
  border-color: oklch(0.75 0.12 80 / 0.78);
  background: oklch(0.96 0 0 / 0.07);
}

.about-statement {
  gap: clamp(24px, 4.8vw, 66px);
  padding: clamp(52px, 6vw, 94px) clamp(18px, 4vw, 66px);
  align-items: end;
}

.image-text-band {
  min-height: 82svh;
  background: var(--red);
}

.image-text-media {
  min-height: 64svh;
  overflow: hidden;
}

.image-text-copy,
.map-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4.8vw, 68px);
}

.team-band {
  background: var(--black);
}

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

.team-grid article {
  border-color: var(--line);
}

.team-grid span,
.team-grid p {
  color: var(--muted);
}

.team-grid strong {
  color: var(--white);
}

.team-portrait {
  aspect-ratio: 1;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 50%;
  background: var(--charcoal);
}

.news-directory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 42px);
  background: var(--paper);
  color: var(--ink);
}

.news-column {
  padding-top: 18px;
  border-top: 2px solid var(--ink);
}

.news-column-dark {
  color: var(--white);
  background: var(--charcoal);
  border-top-color: var(--white);
  padding: clamp(18px, 2vw, 28px);
}

.news-column-dark .section-head h2,
.news-column-dark .news-list-item strong {
  color: var(--white);
}

.news-column-dark .news-list-item {
  border-color: oklch(0.96 0 0 / 0.18);
}

.news-list-item {
  display: grid;
  grid-template-columns: minmax(120px, 0.24fr) 1fr auto;
  gap: clamp(14px, 2vw, 28px);
  align-items: start;
  padding: clamp(16px, 1.8vw, 26px) 0;
  border-top: 1px solid var(--line-dark);
}

.news-list-item strong {
  color: var(--ink);
  font-size: clamp(18px, 1.65vw, 26px);
  line-height: 1.28;
  text-wrap: pretty;
}

.news-list-item > span {
  border-bottom: 0;
  color: var(--gold);
  font-size: 22px;
  line-height: 1;
  white-space: nowrap;
}

.article-page {
  background: var(--paper);
  color: var(--ink);
  padding-top: var(--header-height);
}

.article-wrap {
  width: min(920px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(42px, 5vw, 80px) 0 clamp(58px, 7vw, 110px);
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 58px);
  color: oklch(0.26 0.012 260 / 0.76);
  font-size: 14px;
}

.article-back:hover {
  color: var(--ink);
}

.article-header {
  padding-bottom: clamp(26px, 3.5vw, 44px);
  border-bottom: 1px solid var(--line-dark);
}

.article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: clamp(18px, 2vw, 26px);
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.article-kicker::before {
  content: "";
  width: 28px;
  height: 1px;
  background: currentColor;
}

.article-header h1 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 520;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: pretty;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: clamp(18px, 2vw, 26px);
  color: oklch(0.32 0.012 260 / 0.68);
  font-size: 14px;
}

.article-cover {
  margin: clamp(26px, 4vw, 54px) 0;
  overflow: hidden;
  background: var(--charcoal);
}

.article-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-body {
  width: min(760px, 100%);
  margin: 0 auto;
  color: oklch(0.24 0.012 260);
}

.article-lead {
  margin-bottom: clamp(28px, 3.5vw, 46px);
  color: oklch(0.2 0.012 260);
  font-size: clamp(19px, 1.6vw, 23px);
  line-height: 1.72;
}

.article-body h2 {
  margin: clamp(38px, 4.8vw, 62px) 0 14px;
  color: var(--ink);
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 560;
  line-height: 1.18;
}

.article-body p {
  margin: 16px 0;
  font-size: clamp(16px, 1.18vw, 18px);
  line-height: 1.92;
  text-align: justify;
}

.article-body blockquote {
  margin: clamp(28px, 4vw, 48px) 0;
  padding: clamp(22px, 3vw, 34px);
  border-left: 3px solid var(--gold);
  background: oklch(0.96 0.006 260);
  color: oklch(0.18 0.012 260);
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.72;
}

.article-note {
  margin-top: clamp(38px, 5vw, 66px);
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line-dark);
  color: oklch(0.34 0.012 260 / 0.78);
  font-size: 14px;
  line-height: 1.8;
}

.article-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 4vw, 52px);
}

.article-actions a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--line-dark);
  color: var(--ink);
  font-size: 14px;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.article-actions a:hover {
  transform: translateY(-2px);
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.case-category {
  padding: clamp(50px, 6vw, 92px) clamp(18px, 3vw, 42px);
  background: var(--paper);
  color: var(--ink);
}

.case-category-dark {
  background: var(--black);
  color: var(--white);
}

.case-category-dark .section-head h2 {
  color: var(--white);
}

.case-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
}

.case-text-card {
  min-height: clamp(220px, 20vw, 310px);
  padding: clamp(20px, 2.2vw, 32px);
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: oklch(1 0 0 / 0.22);
  transition:
    background-color 260ms ease,
    color 260ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.case-category-dark .case-text-card {
  background: oklch(0.96 0 0 / 0.035);
}

.case-text-card span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 620;
}

.case-text-card strong {
  display: block;
  margin-top: clamp(24px, 3vw, 40px);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.14;
  text-wrap: balance;
}

.case-text-card p {
  margin-top: 18px;
  color: currentColor;
  opacity: 0.68;
  font-size: 15px;
  line-height: 1.66;
}

.case-text-card:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-5px);
}

.case-text-card:hover span,
.case-text-card:hover p {
  color: var(--black);
  opacity: 0.78;
}

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

.principle-grid article {
  min-height: 220px;
  padding: clamp(20px, 2.2vw, 32px);
  background: var(--black);
  transition: background-color 260ms ease, transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.principle-grid strong {
  display: block;
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.18;
}

.principle-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.principle-grid article:hover {
  background: var(--charcoal);
  transform: translateY(-4px);
}

.creator-feature {
  display: grid;
  grid-template-columns: minmax(220px, 0.32fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 78px);
  align-items: center;
  max-width: 1180px;
}

.creator-feature .team-portrait {
  margin: 0;
}

.creator-feature span {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 620;
  letter-spacing: 0.08em;
}

.creator-feature h3 {
  margin: 18px 0 0;
  color: var(--white);
  font-size: clamp(36px, 5vw, 76px);
  font-weight: 560;
  line-height: 1.04;
}

.creator-feature p {
  max-width: 68ch;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.72;
}

.contact-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 clamp(18px, 3vw, 42px) clamp(72px, 8vw, 126px);
}

.contact-page {
  background:
    linear-gradient(180deg, oklch(0.105 0.009 260), var(--black) 46%),
    var(--black);
}

.contact-hero-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.46fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 64px);
  min-height: calc(88svh - 56px);
  padding: clamp(46px, 5.6vw, 82px) clamp(18px, 4vw, 70px) clamp(30px, 4vw, 58px);
  align-items: center;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, oklch(0.96 0 0 / 0.045) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.96 0 0 / 0.035) 1px, transparent 1px);
  background-size: 76px 76px;
}

.contact-hero-copy span,
.contact-brief span,
.contact-response span {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.12em;
}

.contact-hero-copy h1 {
  max-width: 10ch;
  font-size: clamp(38px, 4.5vw, 68px);
  font-weight: 560;
  line-height: 1.08;
  text-wrap: balance;
}

.contact-hero-copy p {
  max-width: 38ch;
  margin-top: clamp(18px, 2vw, 26px);
  color: oklch(0.9 0 0 / 0.76);
  font-size: clamp(15px, 1.16vw, 18px);
  line-height: 1.68;
}

.contact-direct {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(12px, 1.4vw, 20px);
}

.contact-direct .contact-panel {
  min-height: clamp(198px, 18vw, 264px);
  padding: clamp(20px, 2.2vw, 32px);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, oklch(0.96 0 0 / 0.055), oklch(0.96 0 0 / 0.018));
}

.contact-direct .contact-panel-wide {
  grid-column: span 2;
  min-height: clamp(160px, 13vw, 210px);
}

.contact-direct .contact-panel h2 {
  font-size: clamp(24px, 2.45vw, 38px);
  line-height: 1.1;
}

.contact-direct .contact-panel a {
  font-size: clamp(24px, 2.65vw, 42px);
  font-weight: 560;
  line-height: 1.08;
  white-space: nowrap;
}

.contact-empty {
  display: block;
  margin-top: 24px;
  color: oklch(0.96 0 0 / 0.62);
  font-size: clamp(24px, 2.65vw, 42px);
  line-height: 1.08;
}

.contact-brief {
  padding: clamp(22px, 2.8vw, 38px);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
  background: oklch(0.96 0 0 / 0.035);
}

.contact-brief strong {
  display: block;
  color: var(--white);
  font-size: clamp(22px, 2.35vw, 34px);
  font-weight: 560;
  line-height: 1.16;
}

.contact-brief ul {
  display: grid;
  gap: 14px;
  margin: clamp(24px, 3vw, 38px) 0 0;
  padding: 0;
  list-style: none;
}

.contact-brief li {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: oklch(0.9 0 0 / 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.contact-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(16px, 2.4vw, 32px);
  padding: clamp(42px, 5vw, 76px) clamp(18px, 3vw, 42px);
  border-bottom: 1px solid var(--line);
}

.contact-response {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(22px, 3.2vw, 42px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-response h2 {
  max-width: 22ch;
  font-size: clamp(28px, 3.35vw, 52px);
  font-weight: 560;
  line-height: 1.14;
  text-wrap: balance;
}

.contact-response p {
  max-width: 58ch;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.64;
}

.contact-panel {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-panel a,
.map-copy a {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  font-size: clamp(18px, 1.8vw, 28px);
  font-weight: 560;
}

.map-band {
  min-height: 72svh;
  background: var(--paper);
  color: var(--ink);
}

.map-card {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 520px;
  overflow: hidden;
  background:
    linear-gradient(90deg, oklch(0.12 0.012 260 / 0.12) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.12 0.012 260 / 0.12) 1px, transparent 1px),
    oklch(0.91 0.006 260);
  background-size: 42px 42px;
}

.map-card-static {
  isolation: isolate;
  background:
    radial-gradient(circle at 52% 46%, oklch(0.58 0.22 30 / 0.18), transparent 18%),
    linear-gradient(135deg, oklch(0.96 0 0), oklch(0.86 0.006 260));
}

.map-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(0.12 0.012 260 / 0.12) 1px, transparent 1px),
    linear-gradient(180deg, oklch(0.12 0.012 260 / 0.12) 1px, transparent 1px),
    linear-gradient(24deg, transparent 46%, oklch(0.12 0.012 260 / 0.12) 47%, transparent 48%),
    linear-gradient(152deg, transparent 52%, oklch(0.12 0.012 260 / 0.1) 53%, transparent 54%);
  background-size: 42px 42px, 42px 42px, 180px 180px, 220px 220px;
}

.map-pin {
  position: absolute;
  left: 54%;
  top: 45%;
  width: clamp(96px, 12vw, 168px);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 1px solid var(--red);
  border-radius: 50%;
}

.map-pin span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 0 10px oklch(0.58 0.22 30 / 0.16);
}

.map-place {
  position: absolute;
  z-index: 2;
  left: clamp(22px, 3vw, 44px);
  top: clamp(22px, 3vw, 44px);
  max-width: min(420px, calc(100% - 44px));
}

.map-place span {
  position: static;
  display: block;
  width: auto;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  color: var(--red);
  font-size: 12px;
  font-weight: 620;
  letter-spacing: 0.14em;
}

.map-place strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: clamp(30px, 4.2vw, 62px);
  font-weight: 560;
  line-height: 1.06;
  text-align: left;
}

.map-place small {
  display: block;
  margin-top: 14px;
  color: oklch(0.18 0.012 260 / 0.64);
  font-size: clamp(15px, 1.2vw, 18px);
}

.map-fallback {
  position: absolute;
  z-index: 2;
  left: clamp(18px, 2.4vw, 34px);
  bottom: clamp(18px, 2.4vw, 34px);
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  background: var(--black);
  color: var(--white);
  font-size: 14px;
  font-weight: 620;
  box-shadow: 0 14px 34px oklch(0 0 0 / 0.22);
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-fallback:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.has-interactions .reveal-item {
  opacity: 0;
  translate: 0 34px;
}

.has-interactions.interactions-ready .reveal-item {
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    translate 860ms cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.has-interactions .reveal-item.is-visible {
  opacity: 1;
  translate: 0 0;
}

.has-interactions .case-tile,
.has-interactions .service-door,
.has-interactions .visual-card,
.has-interactions .detail-hero-media,
.has-interactions .half-image-media,
.has-interactions .about-hero,
.has-interactions .service-row-media,
.has-interactions .image-text-media,
.has-interactions .map-card {
  --mx: 0;
  --my: 0;
}

.has-interactions .case-tile img,
.has-interactions .service-door img,
.has-interactions .service-door video,
.has-interactions .visual-card img,
.has-interactions .detail-hero-media img,
.has-interactions .detail-hero-media video,
.has-interactions .half-image-media img,
.has-interactions .about-hero > img,
.has-interactions .service-row-media img,
.has-interactions .service-row-media video,
.has-interactions .image-text-media img {
  transform:
    translate3d(calc(var(--mx, 0) * -5px), calc(var(--my, 0) * -5px), 0)
    scale(1.025);
  transition:
    transform 620ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 620ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.service-row,
.contact-panel,
.news-list-item,
.process-steps article,
.honor-list article,
.team-grid article {
  transition:
    background-color 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-row:hover,
.contact-panel:hover,
.process-steps article:hover,
.honor-list article:hover,
.team-grid article:hover {
  background: oklch(0.96 0 0 / 0.035);
}

.process-steps article:hover,
.honor-list article:hover {
  background: oklch(1 0 0 / 0.76);
  transform: translateY(-4px);
}

.team-grid article:hover,
.contact-panel:hover {
  transform: translateY(-4px);
}

.news-list-item {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.news-list-item::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--news-image);
  background-position: center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition:
    opacity 320ms ease,
    transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.news-list-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, oklch(0.07 0.006 260 / 0.82), oklch(0.07 0.006 260 / 0.48));
  opacity: 0;
  transition: opacity 320ms ease;
}

.news-list-item:hover {
  transform: translateX(8px);
  color: var(--white);
}

.news-list-item:hover::before {
  opacity: 1;
  transform: scale(1);
}

.news-list-item:hover::after {
  opacity: 1;
}

.news-list-item:hover time,
.news-list-item:hover strong,
.news-list-item:hover > span {
  color: var(--white);
}

.news-list-item:hover > span {
  transform: translateX(4px);
}

.news-list-item > span {
  transition: transform 220ms cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-panel:hover {
  border-color: oklch(0.96 0 0 / 0.36);
}

.map-card {
  transform:
    perspective(900px)
    rotateX(calc(var(--my, 0) * -2deg))
    rotateY(calc(var(--mx, 0) * 2deg));
  transition: transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.map-pin {
  animation: map-pulse 3.8s ease-in-out infinite;
}

.map-pin::before,
.map-pin::after {
  content: "";
  position: absolute;
  inset: -18%;
  border: 1px solid var(--red);
  border-radius: inherit;
  opacity: 0.26;
  animation: map-ring 3.8s ease-out infinite;
}

.map-pin::after {
  animation-delay: 1.25s;
}

@keyframes map-pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.98);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.03);
  }
}

@keyframes map-ring {
  0% {
    opacity: 0.34;
    transform: scale(0.78);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

@media (max-width: 1120px) {
  .case-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(210px, 34vw, 340px);
  }

  .case-lead {
    grid-column: span 2;
    grid-row: span 2;
  }

  .case-slice,
  .case-wide,
  .case-fill,
  .case-tall,
  .case-small {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-doors,
  .about,
  .footer-main,
  .capability-combo {
    grid-template-columns: 1fr;
  }

  .service-door,
  .service-door-hot {
    min-height: clamp(320px, 52vw, 560px);
    transform: none;
  }

  .scenario-panel {
    min-height: clamp(560px, 78vw, 720px);
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .about-image {
    min-height: 62svh;
  }

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

  .news-card,
  .news-card:first-child,
  .news-card:last-child {
    min-height: 176px;
    padding: 24px 0;
    border-left: 0;
    border-top: 1px solid var(--line-dark);
  }

  .news-card:first-child {
    padding-top: 0;
    border-top: 0;
  }

  .detail-hero-split,
  .half-image-hero,
  .contact-hero-panel,
  .contact-support,
  .about-statement,
  .image-text-band,
  .map-band,
  .service-row,
  .service-row-reverse,
  .news-directory {
    grid-template-columns: 1fr;
  }

  .detail-hero-copy h1,
  .half-image-copy h1,
  .detail-hero-overlay h1 {
    max-width: 13ch;
  }

  .detail-hero-media,
  .half-image-media,
  .image-text-media {
    min-height: clamp(300px, 48vw, 520px);
  }

  .service-row-media {
    min-height: clamp(220px, 42vw, 390px);
  }

  .service-row-reverse .service-row-media {
    order: 0;
  }

  .detail-card-grid,
  .process-steps,
  .honor-list,
  .process-steps-eight,
  .capability-list,
  .case-list-grid,
  .principle-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-grid,
  .contact-layout,
  .creator-feature {
    grid-template-columns: 1fr;
  }

  .contact-hero-panel {
    min-height: auto;
    align-items: start;
  }

  .contact-hero-copy h1 {
    max-width: 12ch;
  }

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

  .contact-direct .contact-panel-wide {
    grid-column: span 1;
  }

  .contact-panel,
  .contact-panel:first-child {
    border-left: 0;
  }

  .news-list-item {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 860px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 52px;
    padding-inline: 14px;
  }

  .brand-logo {
    width: 32px;
    height: 36px;
  }

  .case-wall {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(240px, 66vw);
  }

  .case-lead,
  .case-slice,
  .case-wide,
  .case-fill,
  .case-tall,
  .case-small,
  .case-tile {
    grid-column: span 1;
    grid-row: span 1;
  }

  .service-video-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .service-video-cards {
    gap: 8px;
    grid-auto-columns: calc((100% - 16px) / 3);
  }

  .service-video-card {
    min-height: 92px;
  }

  .service-video-card span {
    inset-inline: 8px;
    bottom: 8px;
    font-size: 11px;
  }

  .footer-top {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .detail-page {
    padding-top: 52px;
  }

  .detail-hero,
  .half-image-hero,
  .about-hero {
    min-height: auto;
  }

  .detail-hero-copy,
  .half-image-copy,
  .contact-hero-panel,
  .service-row-copy,
  .image-text-copy,
  .map-copy {
    padding: 32px 18px;
  }

  .contact-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1.04;
  }

  .contact-hero-copy p {
    max-width: 100%;
    font-size: 15px;
  }

  .contact-brief {
    padding: 22px 0 0;
    border-bottom: 0;
    background: transparent;
  }

  .contact-direct .contact-panel {
    min-height: 188px;
  }

  .contact-direct .contact-panel h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .contact-direct .contact-panel a {
    font-size: clamp(28px, 9vw, 42px);
  }

  .contact-empty {
    font-size: clamp(28px, 9vw, 42px);
  }

  .contact-support {
    padding: 32px 18px;
  }

  .contact-response {
    padding: 22px 0 0;
    border-bottom: 0;
  }

  .detail-card-grid,
  .process-steps,
  .honor-list,
  .process-steps-eight,
  .capability-list,
  .case-list-grid,
  .principle-grid,
  .team-grid,
  .contact-layout,
  .creator-feature {
    grid-template-columns: 1fr;
  }

  .process-steps article,
  .honor-list article,
  .team-grid article,
  .contact-panel,
  .process-steps article:first-child,
  .honor-list article:first-child,
  .team-grid article:first-child,
  .contact-panel:first-child {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .process-band .process-steps article,
  .honors-band .honor-list article {
    border-top-color: var(--line-dark);
  }

  .visual-card {
    min-height: 360px;
  }

  .hero-copy {
    width: min(520px, calc(100% - 28px));
    transform: translate3d(-50%, -42%, 0);
  }

  .hero-copy h1 {
    font-size: clamp(42px, 15vw, 68px);
  }

  .hero-copy p {
    font-size: 14px;
  }

  .case-text-card,
  .principle-grid article {
    min-height: 230px;
  }

  .case-list-grid {
    border-left: 0;
  }

  .case-text-card {
    border-left: 0;
    border-right: 0;
  }

  .map-card {
    min-height: 360px;
  }

  .capability-combo {
    min-height: 0;
  }

  .scenario-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    min-height: 0;
    padding: 18px;
  }

  .scenario-panel::before,
  .scenario-panel::after,
  .scenario-node::before {
    content: none;
  }

  .scenario-center,
  .scenario-node {
    position: static;
    width: auto;
    translate: none;
  }

  .scenario-center {
    aspect-ratio: auto;
    min-height: 124px;
    border-radius: 8px;
  }

  .scenario-center strong {
    margin-top: 6px;
  }

  .capability-summary {
    padding: 32px 18px;
  }

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

  .article-page {
    padding-top: 52px;
  }

  .article-wrap {
    width: min(100% - 28px, 920px);
    padding-top: 30px;
  }

  .article-back {
    margin-bottom: 26px;
  }

  .article-header h1 {
    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.12;
  }

  .article-cover {
    margin: 24px 0 30px;
  }

  .article-body p {
    text-align: left;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
