:root {
  --primary-teal: #9DBDB8;
  --deep-teal: #5F7F7A;
  --cream: #F0E7D6;
  --sand: #D8CBB5;
  --charcoal: #2A2A2A;
  --signal-red: #EA2E00;
  --burnt-red: #A61E00;
  --ink-teal: #0D3540;
  --shadow: 0 24px 80px rgba(17, 25, 24, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: var(--charcoal);
  background: var(--cream);
  opacity: 0;
  overflow-x: hidden;
  transition: opacity 0.42s ease;
}

body .chat-bubble,
body .chat-panel {
  opacity: 1;
}

body.page-ready {
  opacity: 1;
}

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

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

button,
textarea {
  font: inherit;
}

button {
  border: 0;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 22px clamp(22px, 4vw, 56px);
  color: white;
  background: linear-gradient(180deg, rgba(13, 53, 64, 0.84), rgba(13, 53, 64, 0));
}

.brand img {
  width: 82px;
}

.nav-links {
  justify-self: end;
  display: flex;
  gap: clamp(18px, 3vw, 42px);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.nav-cta,
.button.primary {
  color: white;
  background: var(--signal-red);
  box-shadow: 0 12px 32px rgba(234, 46, 0, 0.28);
}

.nav-cta:hover,
.button.primary:hover {
  transform: translateY(-2px);
  background: var(--burnt-red);
  box-shadow: 0 16px 38px rgba(234, 46, 0, 0.34);
}

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  color: var(--cream);
  background: rgba(13, 53, 64, 0.58);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  top: 88px;
  right: 18px;
  z-index: 19;
  display: none;
  width: min(280px, calc(100vw - 36px));
  padding: 12px;
  border: 1px solid rgba(240, 231, 214, 0.16);
  border-radius: 20px;
  background: rgba(13, 53, 64, 0.95);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

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

.mobile-menu a,
.mobile-menu button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 12px;
  color: var(--cream);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: rgba(234, 46, 0, 0.18);
}

.mobile-menu button {
  margin-top: 6px;
  color: white;
  background: var(--signal-red);
}

.button.secondary {
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.hero .button.secondary:hover {
  background: rgba(234, 46, 0, 0.25);
  border-color: rgba(234, 46, 0, 0.55);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px clamp(24px, 6vw, 86px) clamp(92px, 12vh, 132px);
  color: white;
  background: var(--ink-teal);
}

.hero-video,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-video {
  object-fit: cover;
  opacity: 0.9;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(13, 53, 64, 0.72), rgba(13, 53, 64, 0.24) 48%, rgba(13, 53, 64, 0.08)),
    linear-gradient(0deg, rgba(42, 42, 42, 0.36), transparent 52%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  transform: none;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--signal-red);
  font-size: clamp(10px, 0.85vw, 12px);
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.mobile-eyebrow {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.nav-links,
.nav-cta,
.button,
.eyebrow,
.intro-kicker,
.service-item-trigger span,
.work-card span,
.process-content li span,
.person-card p,
.chat-title strong {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
}

p,
.hero-copy,
.intro-grid p,
.service-item-panel p,
.process-subcopy,
.process-content li,
.chat-title span,
.chat-msg,
.chat-note,
.chat-form textarea {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 400;
}

h1 {
  margin-bottom: 24px;
  max-width: 760px;
  font-size: clamp(52px, 6.35vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

h1 span {
  color: var(--primary-teal);
}

.hero-copy {
  max-width: 560px;
  padding-left: 12px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(18px, 1.45vw, 22px);
  line-height: 1.48;
}

.hero-content > .eyebrow {
  padding-left: 12px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.intro-section,
.section,
.process-section,
.cta-section {
  padding: clamp(76px, 10vw, 132px) clamp(22px, 6vw, 86px);
}

.intro-section {
  background: var(--cream);
}

.intro-kicker {
  margin-bottom: 36px;
  color: var(--deep-teal);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(40px, 7vw, 108px);
  align-items: start;
}

.intro-grid h2,
.section-heading h2,
.experience-intro h2,
.cta-section h2 {
  margin-bottom: 0;
  max-width: 900px;
  color: var(--charcoal);
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.intro-grid p {
  max-width: 620px;
  color: rgba(42, 42, 42, 0.7);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.52;
}

.logo-band {
  padding: 34px clamp(22px, 6vw, 86px);
  background: var(--sand);
  border-block: 1px solid rgba(42, 42, 42, 0.08);
}

.logo-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(100px, 1fr));
  gap: 24px;
  align-items: center;
}

.logo-track img {
  max-height: 72px;
  margin: auto;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.22s ease, filter 0.22s ease, transform 0.22s ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-2px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 42px;
  margin-bottom: 48px;
}

.section-heading.narrow {
  display: block;
  max-width: 880px;
}

.work-section {
  background: var(--charcoal);
}

.work-section .section-heading h2 {
  color: var(--cream);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.work-card {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 22px;
  background: var(--deep-teal);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.work-card.large {
  grid-column: span 2;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 100px rgba(17, 25, 24, 0.28);
}

.work-card:hover img {
  transform: scale(1.055);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 53, 64, 0.86), transparent 56%);
}

.work-card div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}

.work-card p {
  max-width: 28rem;
  margin: 12px 0 0;
  color: rgba(240, 231, 214, 0.82);
  font-size: 15px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.work-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

.work-card span {
  color: var(--primary-teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.work-card h3 {
  margin: 8px 0 0;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1;
}

.services-section {
  background: linear-gradient(180deg, var(--cream), #eadfcb);
}

.services-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(380px, 0.92fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: start;
}

.services-intro-copy {
  max-width: 820px;
}

.services-intro-copy .eyebrow,
.services-intro-copy p:not(.eyebrow) {
  padding-left: 12px;
}

.section-heading > .eyebrow,
.people-heading .eyebrow,
.experience-intro > .eyebrow,
.process-subcopy {
  padding-left: 12px;
}

.services-intro-copy h2 {
  margin: 0 0 24px;
  color: var(--charcoal);
  font-size: clamp(46px, 7vw, 92px);
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.services-intro-copy p:not(.eyebrow) {
  margin: 0;
  color: rgba(42, 42, 42, 0.74);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.52;
}

.service-preview {
  position: sticky;
  top: 128px;
  overflow: hidden;
  margin-top: 34px;
  aspect-ratio: 16 / 9;
  min-height: 0;
  border-radius: 28px;
  background: #111;
  box-shadow:
    0 28px 72px rgba(42, 42, 42, 0.24),
    0 10px 26px rgba(13, 53, 64, 0.14);
}

.service-preview > img,
.service-preview > video,
.service-preview > iframe,
.service-preview > .service-preview-stack {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-preview img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  opacity: 1;
}

.service-preview video,
.service-preview iframe {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  opacity: 1;
  border: 0;
}

.service-preview video.service-default-video {
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  margin: -4px;
  max-width: none;
}

.service-preview-media {
  transform: translate3d(0, 0, 0);
  opacity: 1;
  z-index: 1;
  transition: transform 0.86s cubic-bezier(.18,.78,.18,1);
  will-change: transform;
}

.service-preview-media.preview-enter {
  transform: translate3d(100%, 0, 0);
  opacity: 1;
  z-index: 3;
}

.service-preview-media.preview-exit {
  transform: translate3d(-100%, 0, 0);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
}

.service-preview-stack {
  position: absolute;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #111;
}

.service-preview-stack .service-preview-poster,
.service-preview-stack iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.service-preview-stack .service-preview-poster {
  z-index: 1;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.service-preview-stack iframe {
  z-index: 2;
  opacity: 1;
}

.service-preview-stack.is-loaded iframe {
  opacity: 1;
}

.service-preview-stack.is-loaded .service-preview-poster {
  opacity: 0;
}

.service-preview > div:not(.service-audio-control):not(.service-volume-control) {
  position: absolute;
  inset: auto 24px 24px;
  max-width: 86%;
  color: var(--cream);
}

.service-video-preload-bin {
  position: fixed;
  left: -1px;
  top: -1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.service-video-preload-bin iframe {
  width: 1px;
  height: 1px;
  border: 0;
}

.service-preview span {
  display: block;
  margin-bottom: 8px;
  color: var(--signal-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-preview strong {
  display: block;
  font-size: clamp(22px, 2.6vw, 38px);
  line-height: 1;
}

.service-play-toggle,
.service-audio-toggle {
  position: absolute;
  bottom: 18px;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--cream);
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  opacity: 1;
}

.service-preview video.preview-active {
  cursor: pointer;
}

.service-play-toggle {
  left: 18px;
}

.service-preview .service-audio-control {
  --volume-fill: var(--primary-teal);
  --volume-rest: rgba(255, 255, 255, 0.78);
  position: absolute;
  inset: auto 18px 18px auto;
  right: 18px;
  bottom: 18px;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: 158px;
  height: 36px;
  padding: 0 10px 0 8px;
  border-radius: 999px;
  max-width: none;
  color: var(--cream);
  background: rgba(240, 231, 214, 0.78);
  box-shadow: 0 10px 24px rgba(13, 53, 64, 0.14);
  backdrop-filter: blur(8px);
}

.service-preview .service-audio-control::before {
  content: none;
}

.service-audio-control[hidden] {
  display: none;
}

.service-play-toggle,
.service-audio-control {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 6px, 0);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.service-preview.controls-visible .service-play-toggle:not([hidden]),
.service-preview.controls-visible .service-audio-control:not([hidden]) {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
}

.service-audio-toggle {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 2;
  order: 1;
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
}

.service-play-toggle span {
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(240, 231, 214, 0.82);
}

.service-play-toggle.is-playing span {
  width: 20px;
  height: 24px;
  margin-left: 0;
  border: 0;
  background:
    linear-gradient(to right,
      rgba(240, 231, 214, 0.82) 0 7px,
      transparent 7px 13px,
      rgba(240, 231, 214, 0.82) 13px 20px);
}

.service-audio-toggle img {
  width: 23px;
  height: 23px;
  object-fit: contain;
  opacity: 0.86;
  filter: brightness(0) saturate(100%) invert(13%) sepia(5%) saturate(570%) hue-rotate(349deg) brightness(94%) contrast(89%);
}

.service-preview.controls-visible .service-play-toggle:hover,
.service-preview.controls-visible .service-audio-toggle:hover {
  opacity: 0.86;
}

.service-audio-toggle.audio-on {
  opacity: 1;
}

.service-preview .service-volume-control {
  position: relative;
  inset: auto;
  z-index: 1;
  order: 2;
  flex: 1 1 auto;
  width: auto;
  height: 18px;
  max-width: none;
  padding: 0;
  border-radius: 0;
  color: var(--cream);
  background: transparent;
  box-shadow: none;
  opacity: 1;
  pointer-events: auto;
  transform: none;
  transition: none;
}

.service-audio-control:hover .service-volume-control,
.service-audio-control:focus-within .service-volume-control,
.service-volume-control.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.service-volume-slider {
  position: relative;
  left: auto;
  top: auto;
  width: 100%;
  height: 18px;
  margin: 0;
  accent-color: var(--primary-teal);
  cursor: pointer;
  outline: none;
  appearance: none;
  transform: none;
  background: transparent;
}

.service-volume-slider:focus,
.service-volume-slider:focus-visible {
  outline: none;
}

.service-volume-slider::-webkit-slider-runnable-track {
  height: 5px;
  border-radius: 999px;
  background:
    linear-gradient(to right,
      var(--volume-fill) 0 var(--volume-percent, 65%),
      var(--volume-rest) var(--volume-percent, 65%) 100%);
}

.service-volume-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  margin-top: -6.5px;
  border: 0;
  border-radius: 50%;
  background: var(--volume-fill);
  box-shadow: 0 2px 12px rgba(13, 53, 64, 0.24);
}

.service-volume-slider::-moz-range-track {
  height: 5px;
  border-radius: 999px;
  background: var(--volume-rest);
}

.service-volume-slider::-moz-range-progress {
  height: 5px;
  border-radius: 999px;
  background: var(--volume-fill);
}

.service-volume-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  background: var(--volume-fill);
  box-shadow: 0 2px 12px rgba(13, 53, 64, 0.24);
}

.service-play-toggle[hidden],
.service-audio-control[hidden] {
  display: none;
}

.service-accordion {
  margin-top: clamp(88px, 8.2vw, 118px);
  border-top: 1px solid rgba(42, 42, 42, 0.22);
}

.service-item {
  position: relative;
  border-bottom: 1px solid rgba(42, 42, 42, 0.22);
  overflow: visible;
}

.service-item::before {
  content: "";
  position: absolute;
  top: 0;
  right: -18px;
  bottom: auto;
  left: 0;
  z-index: 0;
  height: var(--service-active-highlight-height, 100%);
  background: linear-gradient(to right, rgba(234, 46, 0, 0.1) calc(100% - 86px), rgba(234, 46, 0, 0));
  opacity: 0;
  transition: opacity 0.55s ease, height 0.82s cubic-bezier(.2,.82,.2,1);
  pointer-events: none;
}

.service-item.active::before {
  opacity: 1;
}

.service-item-trigger {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  width: 100%;
  min-height: 0;
  padding: 22px 0 18px;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.service-item-trigger:focus {
  outline: none;
}

.service-item-trigger:focus-visible {
  box-shadow: inset 0 0 0 2px rgba(234, 46, 0, 0.32);
}

.service-static-list .service-item-trigger {
  cursor: default;
}

.service-item.active {
  background: transparent;
}

.service-item-trigger span {
  margin-left: 10px;
  transform: translateY(-6px);
  color: var(--signal-red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-item-trigger strong {
  font-size: clamp(32px, 4.7vw, 58px);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.service-item-trigger em {
  align-self: center;
  color: var(--signal-red);
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  transition: transform 0.24s ease;
}

.service-item.active .service-item-trigger em {
  transform: rotate(45deg);
}

.service-item-panel {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.82s cubic-bezier(.2,.82,.2,1), opacity 0.58s ease;
}

.service-item.active .service-item-panel {
  opacity: 1;
}

.service-item-panel p {
  margin: 0;
  padding: 0 0 22px 42px;
  color: rgba(42, 42, 42, 0.74);
  font-size: 18px;
  line-height: 1.5;
}

.service-item-panel p strong {
  color: var(--charcoal);
}

.service-subaccordion {
  margin: 8px 0 26px 42px;
  border-top: 1px solid rgba(42, 42, 42, 0.16);
}

.service-subitem {
  border-bottom: 1px solid rgba(42, 42, 42, 0.16);
}

.service-subitem-trigger {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 0;
  color: var(--charcoal);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.service-subitem-trigger span {
  color: var(--signal-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.service-subitem-trigger strong {
  font-size: clamp(19px, 2vw, 27px);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

.service-subitem-trigger em {
  color: var(--signal-red);
  font-size: 22px;
  font-style: normal;
  font-weight: 900;
  transition: transform 0.24s ease;
}

.service-subitem.active .service-subitem-trigger em {
  transform: rotate(45deg);
}

.service-subitem-panel {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.72s cubic-bezier(.2,.82,.2,1), opacity 0.5s ease;
}

.service-subitem.active .service-subitem-panel {
  opacity: 1;
}

.service-subitem-panel p {
  padding: 0 0 18px 36px;
  font-size: 16px;
}

.film-service-slider {
  position: relative;
  display: block;
  margin: 0 0 0 64px;
  padding: 0 0 22px 18px;
  border-top: 1px solid rgba(42, 42, 42, 0.16);
  border-bottom: 0;
  background: linear-gradient(to right, rgba(157, 189, 184, 0.2) calc(100% - 28px), rgba(157, 189, 184, 0));
}

.film-service-viewport {
  overflow: hidden;
}

.film-service-track {
  display: flex;
  transition: transform 0.96s cubic-bezier(.18,.78,.18,1);
  will-change: transform;
}

.film-service-slide {
  flex: 0 0 100%;
  box-sizing: border-box;
  padding: 22px 104px 22px 0;
  opacity: 0.72;
  transition:
    opacity 0.96s ease,
    filter 0.96s ease;
}

.film-service-slide.is-active {
  opacity: 1;
  filter: saturate(1);
}

.film-service-slider.is-sliding .film-service-slide:not(.is-active) {
  opacity: 0.42;
}

.film-service-slide > * {
  opacity: 0;
  transform: translate3d(18px, 0, 0);
  transition:
    opacity 0.88s ease,
    transform 0.96s cubic-bezier(.18,.78,.18,1);
  will-change: opacity, transform;
}

.film-service-slide.is-active > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.film-service-slide.is-outgoing > * {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
}

.film-service-slide span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--signal-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.film-service-slide h3 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.film-service-slide p {
  max-width: 680px;
  padding: 0;
  font-size: 16px;
}

.film-service-next {
  position: absolute;
  top: 50%;
  right: 19px;
  display: grid;
  place-items: center;
  width: 72px;
  height: 44px;
  border-radius: 0;
  color: var(--signal-red);
  background: transparent;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(calc(-50% + 18px));
  transition: transform 0.48s cubic-bezier(.2,.82,.2,1);
  animation: filmArrowColorPulse 2.1s ease-in-out infinite;
}

.film-service-slider.arrow-ready .film-service-next {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.film-service-next span {
  position: relative;
  display: block;
  width: 42px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center center;
  animation: filmArrowLaunch 1.95s cubic-bezier(.42, 0, .2, 1) infinite;
}

.film-service-next span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border-top: 3px solid currentColor;
  border-right: 3px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.film-service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 13px;
  max-width: calc(100% - 112px);
  margin: -4px 104px 0 0;
  padding: 0;
}

.film-service-jump-nav button {
  appearance: none;
  border: 0;
  padding: 0;
  color: rgba(42, 42, 42, 0.48);
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  cursor: pointer;
  transition: color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.film-service-jump-nav button:hover,
.film-service-jump-nav button.is-active {
  color: var(--signal-red);
}

.film-service-jump-nav button:hover {
  transform: translateY(-1px);
}

@keyframes filmArrowLaunch {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
  }
  38% {
    transform: translateX(-10px) scaleX(0.78);
  }
  60% {
    transform: translateX(8px) scaleX(1.16);
  }
  76% {
    transform: translateX(2px) scaleX(1.03);
  }
}

@keyframes filmArrowColorPulse {
  0%, 100% {
    color: var(--burnt-red);
  }
  50% {
    color: var(--signal-red);
  }
}

.service-example-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-height: 42px;
  margin: 0 0 28px 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--signal-red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.service-subservices {
  display: grid;
  gap: 16px;
  padding: 0 0 24px 42px;
}

.service-subservices div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 6px 12px;
}

.service-subservices span {
  grid-row: span 2;
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-subservices strong {
  color: var(--charcoal);
  font-size: 18px;
}

.service-subservices p {
  padding: 0;
  font-size: 16px;
}

.process-section {
  background:
    radial-gradient(circle at var(--quote-x, 50%) var(--quote-y, 45%), rgba(234, 46, 0, 0.22), transparent 28%),
    linear-gradient(135deg, var(--deep-teal), #143d46 48%, var(--charcoal));
}

.experience-section {
  position: relative;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(900px, 92vh, 1060px);
  color: var(--cream);
}

.experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 53, 64, 0.95), rgba(13, 53, 64, 0.6) 48%, rgba(42, 42, 42, 0.46)),
    radial-gradient(circle at 82% 14%, rgba(157, 189, 184, 0.22), transparent 26%),
    radial-gradient(circle at 28% 78%, rgba(234, 46, 0, 0.16), transparent 32%);
  transition: background 0.7s ease, opacity 0.7s ease;
  pointer-events: none;
}

.experience-section::after {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background: url("assets/generated/experience-production-bg.jpg") center / cover no-repeat;
  opacity: 0.32;
  filter: blur(5px) saturate(0.82) contrast(0.96);
  transform: scale(1.04);
  transition: opacity 0.85s ease, filter 0.85s ease, transform 0.85s ease;
  -webkit-mask-image: radial-gradient(circle at 58% 48%, #000 0 40%, rgba(0, 0, 0, 0.74) 56%, transparent 84%);
  mask-image: radial-gradient(circle at 58% 48%, #000 0 40%, rgba(0, 0, 0, 0.74) 56%, transparent 84%);
  pointer-events: none;
}

.experience-section.has-quote-hovered::before,
.experience-section:has(.quote-bubble:hover)::before,
.experience-section:has(.quote-bubble.is-focused)::before,
.experience-section:has(.quote-detail.is-visible)::before {
  background:
    linear-gradient(90deg, rgba(13, 53, 64, 0.88), rgba(13, 53, 64, 0.44) 48%, rgba(42, 42, 42, 0.34)),
    radial-gradient(circle at 82% 14%, rgba(157, 189, 184, 0.16), transparent 28%),
    radial-gradient(circle at 28% 78%, rgba(234, 46, 0, 0.12), transparent 34%);
}

.experience-section.has-quote-hovered::after,
.experience-section:has(.quote-bubble:hover)::after,
.experience-section:has(.quote-bubble.is-focused)::after,
.experience-section:has(.quote-detail.is-visible)::after {
  opacity: 0.64;
  filter: blur(2.5px) saturate(0.96) contrast(1.04);
  transform: scale(1.025);
}

.experience-intro {
  position: relative;
  z-index: 20;
  max-width: min(860px, 66vw);
  isolation: isolate;
  margin: auto;
  text-align: center;
  text-shadow: 0 20px 48px rgba(0, 0, 0, 0.42);
  pointer-events: none;
}

.experience-section .experience-intro > .eyebrow,
.experience-section .process-subcopy {
  padding-left: 0;
}

.experience-section .experience-intro > .eyebrow {
  display: block;
  width: min(880px, 100%);
  margin: 0 auto 14px;
  text-align: left;
}

.experience-intro::before {
  content: "";
  position: absolute;
  inset: -86px -150px -92px;
  z-index: -1;
  border-radius: 48%;
  background:
    radial-gradient(ellipse at 50% 46%, rgba(5, 27, 34, 0.82) 0, rgba(5, 27, 34, 0.58) 36%, rgba(5, 27, 34, 0.28) 60%, rgba(5, 27, 34, 0) 82%);
  filter: blur(36px);
  backdrop-filter: none;
  pointer-events: none;
}

.experience-intro::after {
  content: "";
  position: absolute;
  inset: -34px -54px -40px;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(13, 53, 64, 0.46) 0, rgba(13, 53, 64, 0.22) 52%, rgba(13, 53, 64, 0) 78%);
  filter: blur(18px);
  pointer-events: none;
}

.experience-intro h2 {
  margin-inline: auto;
  max-width: 880px;
  color: var(--primary-teal);
  font-size: clamp(44px, 7vw, 96px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  text-shadow:
    0 20px 44px rgba(0, 0, 0, 0.46),
    0 4px 12px rgba(0, 0, 0, 0.36);
}

.process-subcopy {
  margin: 24px auto 0;
  max-width: 680px;
  color: rgba(240, 231, 214, 0.82);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.45;
}

.quote-field {
  position: absolute;
  z-index: auto;
  inset: clamp(42px, 4vw, 74px);
  width: auto;
  height: auto;
  min-height: 0;
  margin-top: 0;
  pointer-events: none;
}

.mobile-review-carousel {
  display: none;
}

.quote-bubble {
  --bubble-bg: rgba(74, 78, 78, 0.72);
  --bubble-tail-bg: var(--bubble-bg);
  --bubble-blur: 12px;
  --quote-shift-x: 0px;
  --quote-shift-y: 0px;
  position: absolute;
  z-index: 8;
  overflow: visible;
  width: min(286px, 18vw);
  padding: 16px 18px;
  border: 1px solid rgba(240, 231, 214, 0.24);
  border-radius: 24px;
  background: var(--bubble-bg);
  color: rgba(240, 231, 214, 0.94);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(var(--bubble-blur));
  pointer-events: auto;
  transform: translate3d(var(--quote-shift-x), var(--quote-shift-y), 0);
  transition:
    opacity 0.56s ease,
    box-shadow 0.5s ease,
    transform 1.45s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.quote-bubble::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(13, 53, 64, 0.1), rgba(13, 53, 64, 0.1)),
    url("assets/generated/experience-production-bg.jpg") center / cover no-repeat;
  opacity: 0;
  filter: blur(2px) saturate(0.92) contrast(1.02);
  transition: none;
  pointer-events: none;
}

.quote-bubble::after {
  content: none;
}

.quote-bubble:hover,
.quote-bubble.is-focused {
  z-index: 32;
  box-shadow: 0 34px 96px rgba(0, 0, 0, 0.38);
}

.quote-bubble:hover::before,
.quote-bubble.is-focused::before,
.quote-field.has-detail .quote-bubble.is-focused::before {
  opacity: 0;
}

.quote-bubble:nth-child(n) { right: auto; }
.quote-bubble:nth-child(1) { top: 7%; left: 4%; }
.quote-bubble:nth-child(2) { bottom: 6%; left: 50%; transform: translateX(-50%) translate3d(var(--quote-shift-x), var(--quote-shift-y), 0); }
.quote-bubble:nth-child(3) { top: 3%; right: 4%; left: auto; }
.quote-bubble:nth-child(4) { top: 23%; right: 0; left: auto; }
.quote-bubble:nth-child(5) { bottom: 25%; right: 2%; left: auto; }
.quote-bubble:nth-child(6) { bottom: 22%; left: 2%; }
.quote-bubble:nth-child(7) { top: 30%; left: 0; width: min(250px, 16vw); }
.quote-bubble:nth-child(8) { bottom: 5%; left: 20%; }
.quote-bubble:nth-child(9) { bottom: 7%; right: 17%; left: auto; }
.quote-bubble:nth-child(10) { top: 1%; left: 31%; }
.quote-bubble:nth-child(11) { top: 13%; right: 28%; left: auto; }

.quote-large {
  --bubble-bg: rgba(74, 78, 78, 0.72);
  --bubble-tail-bg: var(--bubble-bg);
  width: min(370px, 24vw);
  border-radius: 28px;
  color: var(--cream);
}

.quote-bubble p {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(13px, 0.95vw, 17px);
  font-weight: 700;
  line-height: 1.34;
  transition: opacity 0.22s ease;
}

.quote-bubble.is-resizing p,
.quote-bubble.is-resizing .quote-read-more {
  opacity: 0;
}

.quote-bubble.is-source-hidden {
  opacity: 0 !important;
  pointer-events: none;
}

.quote-bubble .quote-more {
  display: none;
}

.quote-bubble.quote-long.is-expanded {
  z-index: 18;
  top: clamp(118px, 12vh, 170px) !important;
  right: clamp(22px, 4vw, 72px) !important;
  width: min(640px, 44vw);
  max-height: min(620px, 70vh);
  overflow: auto;
  padding: 24px 26px;
  --bubble-bg: rgba(74, 78, 78, 0.72);
  --bubble-tail-bg: rgba(74, 78, 78, 0.72);
  --bubble-blur: 12px;
  border-color: rgba(240, 231, 214, 0.24);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
}

.quote-bubble.quote-long.is-expanded .quote-more {
  display: inline;
}

.quote-bubble.quote-long:not(.is-expanded) .quote-preview::after {
  content: " ...";
}

.quote-read-more {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  padding: 0;
  border: 0;
  color: var(--signal-red);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.22s ease, color 0.22s ease;
}

.quote-expanded-card {
  position: absolute;
  z-index: 30;
  top: var(--expanded-top, 46%);
  left: var(--expanded-left, auto);
  right: auto;
  width: min(480px, 32vw);
  max-height: none;
  overflow: visible;
  padding: 22px 26px;
  border: 1px solid rgba(240, 231, 214, 0.24);
  border-radius: 28px;
  background: rgba(74, 78, 78, 0.78);
  color: rgba(240, 231, 214, 0.94);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
  transform: translate3d(18px, -50%, 0) scale(0.98);
  transition:
    opacity 0.68s ease,
    transform 0.82s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.quote-expanded-card.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, -50%, 0) scale(1);
}

.quote-expanded-card p {
  margin: 0;
  font-size: clamp(13px, 0.84vw, 16px);
  font-weight: 750;
  line-height: 1.42;
}

.quote-expanded-card button {
  margin-top: 18px;
  padding: 0;
  border: 0;
  color: var(--signal-red);
  background: transparent;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.quote-detail {
  display: none;
  position: absolute;
  z-index: 40;
  top: 50%;
  left: 50%;
  width: min(680px, 94%);
  max-height: min(520px, 86%);
  padding: clamp(24px, 2.4vw, 38px);
  overflow: auto;
  border: 1px solid rgba(234, 46, 0, 0.46);
  border-radius: 28px;
  background:
    linear-gradient(rgba(13, 53, 64, 0.14), rgba(13, 53, 64, 0.14)),
    rgba(42, 42, 42, 0.58);
  color: var(--cream);
  box-shadow: 0 34px 110px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.96);
  transition:
    opacity 0.36s ease,
    transform 0.5s cubic-bezier(0.2, 0.82, 0.2, 1);
}

.quote-detail.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.quote-detail p {
  margin: 0;
  color: rgba(240, 231, 214, 0.94);
  font-size: clamp(18px, 1.45vw, 28px);
  font-weight: 800;
  line-height: 1.34;
  text-wrap: pretty;
}

.quote-detail-close {
  position: sticky;
  top: 0;
  float: right;
  width: 34px;
  height: 34px;
  margin: -8px -8px 10px 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(240, 231, 214, 0.14);
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.quote-field.has-detail .quote-bubble {
  opacity: 0.62;
}

.quote-field.has-detail .quote-bubble.is-focused {
  opacity: 1;
}

@media (min-width: 901px) {
  .experience-section .experience-intro > .eyebrow {
    display: none;
  }
}

@media (min-width: 901px) and (max-width: 1240px) {
  .experience-section {
    min-height: clamp(900px, 98vh, 1040px);
    padding-bottom: clamp(76px, 10vw, 132px);
  }

  .experience-intro {
    max-width: min(700px, 58vw);
    text-align: center;
  }

  .experience-intro h2 {
    font-size: clamp(54px, 7.4vw, 86px);
  }

  .process-subcopy {
    max-width: 560px;
  }

  .quote-field {
    position: absolute;
    inset: 34px 28px 42px;
    width: auto;
    height: auto;
    min-height: 0;
    margin: 0;
  }

  .quote-bubble {
    width: min(230px, 20vw);
    padding: 14px 16px;
  }

  .quote-large {
    width: min(270px, 24vw);
  }

  .quote-bubble p {
    font-size: clamp(12px, 1.15vw, 15px);
  }

  .quote-bubble:nth-child(n) {
    right: auto;
  }

  .quote-bubble:nth-child(1) { top: 6%; left: 1%; }
  .quote-bubble:nth-child(2) { bottom: 5%; left: 50%; transform: translateX(-50%) translate3d(var(--quote-shift-x), var(--quote-shift-y), 0); }
  .quote-bubble:nth-child(3) { top: 4%; right: 1%; left: auto; }
  .quote-bubble:nth-child(4) { top: 22%; right: 0; left: auto; }
  .quote-bubble:nth-child(5) { bottom: 24%; right: 1%; left: auto; }
  .quote-bubble:nth-child(6) { bottom: 24%; left: 1%; }
  .quote-bubble:nth-child(7) { top: 31%; left: 0; width: min(210px, 19vw); }
  .quote-bubble:nth-child(8) { bottom: 5%; left: 16%; }
  .quote-bubble:nth-child(9) { bottom: 6%; right: 13%; left: auto; }
  .quote-bubble:nth-child(10) { top: 2%; left: 28%; }
  .quote-bubble:nth-child(11) { top: 12%; right: 24%; left: auto; }
}

.team-section,
.people-section {
  background: var(--sand);
}

.people-section {
  position: relative;
  border-top: 0;
  background:
    linear-gradient(180deg, rgba(216, 203, 181, 0.78) 0, rgba(216, 203, 181, 0.52) 118px, rgba(240, 231, 214, 0.94) 300px),
    var(--sand);
  box-shadow: inset 0 34px 78px rgba(42, 42, 42, 0.018);
  padding-bottom: max(24px, calc(clamp(76px, 10vw, 132px) - 100px));
}

.people-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 156px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(240, 231, 214, 0.36), rgba(240, 231, 214, 0));
}

.people-section > * {
  position: relative;
  z-index: 1;
}

.people-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
  margin-bottom: 48px;
}

.people-heading h2 {
  margin-bottom: 0;
  max-width: 900px;
  color: var(--charcoal);
  font-size: clamp(40px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -0.045em;
}

.people-heading .eyebrow,
.people-heading h2,
.people-toggle span {
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2,.82,.2,1);
}

.people-section.is-copy-switching .people-heading .eyebrow,
.people-section.is-copy-switching .people-heading h2,
.people-section.is-copy-switching .people-toggle span {
  opacity: 0;
  transform: translateX(16px);
}

.people-section[data-people-view="clients"].is-copy-switching .people-heading .eyebrow,
.people-section[data-people-view="clients"].is-copy-switching .people-heading h2,
.people-section[data-people-view="clients"].is-copy-switching .people-toggle span {
  transform: translateX(-16px);
}

.people-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px 0 22px;
  border: 1px solid rgba(42, 42, 42, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  color: var(--deep-teal);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.people-toggle svg {
  width: 42px;
  color: var(--signal-red);
  transform-origin: center;
  animation: peopleArrowPulse 2.8s ease-in-out infinite;
  transition: transform 0.42s ease;
}

.people-section[data-people-view="clients"] .people-toggle svg {
  transform: rotate(180deg);
  animation-name: peopleArrowPulseBack;
}

@keyframes peopleArrowPulse {
  0%, 100% {
    translate: 0 0;
    opacity: 0.82;
  }
  50% {
    translate: 5px 0;
    opacity: 1;
  }
}

@keyframes peopleArrowPulseBack {
  0%, 100% {
    translate: 0 0;
    opacity: 0.82;
  }
  50% {
    translate: -5px 0;
    opacity: 1;
  }
}

.people-stage {
  position: relative;
  min-height: 500px;
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}

.people-panel {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: transform 1s cubic-bezier(.2,.82,.2,1), opacity 1s ease;
}

.people-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.people-section[data-people-view="clients"] .people-panel-team {
  transform: translateX(-22px);
}

.people-section[data-people-view="team"] .people-panel-clients {
  transform: translateX(22px);
}

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

.people-panel::before {
  left: 0;
}

.people-panel::after {
  right: 0;
}

.people-viewport {
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 34px 0 116px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 54px, #000 calc(100% - 54px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 54px, #000 calc(100% - 54px), transparent 100%);
}

.people-panel-clients .people-viewport {
  padding-top: 48px;
  padding-bottom: 132px;
}

.people-track {
  display: flex;
  gap: 22px;
  width: max-content;
  will-change: transform;
  touch-action: pan-y;
}

.person-card,
.client-card {
  flex: 0 0 clamp(210px, 21vw, 280px);
  width: clamp(210px, 21vw, 280px);
  padding: 18px;
  border-radius: 24px;
  background: var(--sand);
  text-align: center;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.person-card:hover,
.client-card:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow:
    0 28px 68px rgba(42, 42, 42, 0.26),
    0 8px 18px rgba(42, 42, 42, 0.16);
}

.client-card:hover {
  box-shadow: 0 24px 62px rgba(42, 42, 42, 0.18);
}

.person-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 0;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 16px 22px rgba(42, 42, 42, 0.18));
}

.person-card h3 {
  margin: 18px 0 4px;
  font-size: 22px;
}

.person-card p {
  margin-bottom: 0;
  color: var(--burnt-red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.client-card {
  display: grid;
  place-items: center;
  aspect-ratio: 1;
  background: transparent;
  box-shadow: none;
}

.client-card img {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.client-card:hover img {
  filter: none;
  opacity: 1;
  transform: scale(1.025);
}

.people-arrow {
  z-index: 2;
  display: none;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 42, 42, 0.1);
  color: var(--charcoal);
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.people-arrow:hover {
  background: rgba(234, 46, 0, 0.14);
  transform: scale(1.04);
}

.cta-section {
  text-align: center;
  background: var(--ink-teal);
  color: white;
}

.cta-section h2 {
  margin: 0 auto 34px;
  color: white;
}

.site-footer {
  padding: 14px clamp(22px, 6vw, 86px);
  color: rgba(240, 231, 214, 0.72);
  background: #161616;
  border-top: 1px solid rgba(240, 231, 214, 0.08);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.footer-social {
  justify-self: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.8vw, 22px);
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(240, 231, 214, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  transition: color 0.22s ease, transform 0.22s ease;
}

.footer-social a img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  border-radius: 6px;
  background: transparent;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.footer-social a:hover {
  color: var(--signal-red);
  transform: translateY(-2px);
}

.footer-social a:hover img {
  opacity: 0.92;
  transform: scale(1.06);
}

.site-footer p {
  margin: 0;
  color: rgba(240, 231, 214, 0.52);
  font-size: 11px;
  text-align: right;
}

.chat-bubble {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1200;
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  color: var(--cream);
  background: var(--ink-teal);
  box-shadow: 0 18px 52px rgba(13, 53, 64, 0.36);
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease;
}

body:not(.chat-popup-open) .chat-bubble.js-open-chat {
  display: grid;
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

body.chat-open .chat-bubble.js-open-chat {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px) scale(0.92);
}

.chat-bubble:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--deep-teal);
}

.chat-bubble svg {
  width: 26px;
  height: 26px;
}

.chat-dot {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--signal-red);
  opacity: 0;
  transform: scale(0.4);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.2s ease, width 0.2s ease, height 0.2s ease, background 0.2s ease, border-radius 0.2s ease;
}

.chat-bubble.has-unread .chat-dot,
.chat-bubble.is-typing .chat-dot {
  opacity: 1;
  transform: scale(1);
}

.chat-bubble.has-unread .chat-dot::before {
  content: "1";
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
}

.chat-bubble.is-typing .chat-dot {
  top: -9px;
  right: -14px;
  width: 36px;
  height: 22px;
  border-radius: 999px;
  background: #8c8a84;
  animation: chatTypingIndicatorFade 1.15s ease-in-out infinite;
}

.chat-bubble.is-typing .chat-dot::before {
  content: "...";
  margin-top: -5px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

@keyframes chatTypingIndicatorFade {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.96);
  }
  50% {
    opacity: 1;
    transform: translateY(-1px) scale(1);
  }
}

.chat-panel {
  position: fixed;
  right: 24px;
  bottom: 104px;
  z-index: 1000;
  display: none;
  flex-direction: column;
  width: min(420px, calc(100vw - 32px));
  max-height: min(660px, calc(100svh - 132px));
  overflow: hidden;
  border-radius: 22px;
  background: #181818;
  box-shadow: 0 30px 120px rgba(0, 0, 0, 0.36);
}

.chat-panel.open {
  display: flex;
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--cream);
  background: var(--ink-teal);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.18);
}

.chat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1 1 auto;
  min-width: 0;
}

.chat-title > div {
  min-width: 0;
}

.chat-title img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.chat-title strong,
.chat-title span {
  display: block;
  white-space: nowrap;
}

.chat-title strong {
  font-size: 15px;
}

.chat-title span {
  margin-top: 3px;
  color: rgba(240, 231, 214, 0.74);
  font-size: 13px;
}

.chat-title span.pulsing {
  animation: subtlePulse 2s ease infinite;
}

@keyframes subtlePulse {
  0%, 100% { opacity: 0.58; }
  50% { opacity: 1; }
}

.chat-title .chat-status-name {
  display: inline;
  color: var(--signal-red);
  font-weight: 700;
}

.chat-close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  color: rgba(240, 231, 214, 0.78);
  background: transparent;
  font-size: 36px;
  line-height: 1;
  cursor: pointer;
}

.chat-messages {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
  overflow: auto;
  overflow-x: hidden;
  padding: 18px;
  overscroll-behavior: contain;
}

.chat-msg {
  max-width: 84%;
  padding: 13px 15px;
  border-radius: 16px;
  color: var(--cream);
  font-size: 15px;
  line-height: 1.42;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.chat-msg.bot {
  align-self: flex-start;
  background: rgba(240, 231, 214, 0.09);
}

.chat-msg.status {
  align-self: center;
  max-width: 100%;
  padding: 0;
  border-radius: 0;
  color: rgba(240, 231, 214, 0.46);
  background: transparent;
  font-size: 13px;
  line-height: 1.35;
  text-align: center;
}

.chat-msg.status.austin-entered {
  color: var(--primary-teal);
  font-weight: 700;
}

.chat-msg.user {
  align-self: flex-end;
  background: var(--deep-teal);
}

.chat-note {
  align-self: center;
  color: var(--primary-teal);
  font-size: 13px;
  font-weight: 700;
}

.chat-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 5px;
  width: fit-content;
  padding: 13px 15px;
  border-radius: 16px;
  background: rgba(240, 231, 214, 0.09);
}

.chat-typing span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(240, 231, 214, 0.62);
  animation: chatPulse 0.9s ease-in-out infinite;
}

.chat-typing span:nth-child(2) {
  animation-delay: 0.12s;
}

.chat-typing span:nth-child(3) {
  animation-delay: 0.24s;
}

@keyframes chatPulse {
  0%, 80%, 100% { opacity: 0.35; transform: translateY(0); }
  40% { opacity: 1; transform: translateY(-3px); }
}

.chat-form {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid rgba(240, 231, 214, 0.08);
  background: #181818;
}

.chat-fallback-form {
  display: none;
  flex-direction: column;
  flex-shrink: 0;
  gap: 8px;
  max-height: min(320px, 48vh);
  overflow-y: auto;
  padding: 14px;
  border-top: 1px solid rgba(240, 231, 214, 0.08);
  background: rgba(240, 231, 214, 0.03);
}

.chat-fallback-form.open {
  display: flex;
}

.chat-fallback-note {
  margin-bottom: 4px;
  color: rgba(240, 231, 214, 0.68);
  font-size: 12px;
  line-height: 1.5;
}

.chat-fallback-form input,
.chat-fallback-form textarea {
  width: 100%;
  padding: 11px 12px;
  resize: vertical;
  border: 1px solid rgba(157, 189, 184, 0.32);
  border-radius: 10px;
  color: var(--cream);
  background: rgba(240, 231, 214, 0.04);
  font-size: 14px;
  outline: none;
}

.chat-fallback-form input:focus,
.chat-fallback-form textarea:focus {
  border-color: var(--primary-teal);
}

.chat-fallback-submit {
  min-height: 42px;
  border-radius: 10px;
  color: white;
  background: var(--signal-red);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.chat-form textarea {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 46px;
  max-height: 110px;
  padding: 12px 13px;
  resize: none;
  border: 1px solid rgba(157, 189, 184, 0.42);
  border-radius: 12px;
  color: var(--cream);
  background: rgba(240, 231, 214, 0.04);
  font-size: 16px;
  line-height: 1.35;
  outline: none;
}

.chat-form textarea:focus {
  border-color: var(--primary-teal);
}

.chat-form button {
  flex: 0 0 auto;
  width: 48px;
  min-height: 46px;
  border-radius: 12px;
  color: var(--cream);
  background: var(--ink-teal);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 900px) {
  html,
  body,
  main {
    width: 100%;
    min-width: 0;
    max-width: none;
    overflow-x: hidden;
  }

  .section,
  .intro-section,
  .process-section,
  .cta-section,
  .logo-band,
  .site-footer {
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    overflow-x: hidden;
  }

  .site-header {
    width: 100%;
    max-width: none;
    grid-template-columns: auto auto;
    padding: 16px 18px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    gap: 5px;
    display: flex;
    justify-self: end;
  }

  .mobile-menu-toggle span {
    width: 19px;
  }

  .mobile-menu {
    top: 74px;
    right: 14px;
    width: min(320px, calc(100vw - 28px));
    border-radius: 16px;
  }

  .hero {
    align-items: end;
    width: 100%;
    min-width: 0;
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    min-height: 100svh;
    padding: 112px 22px 94px;
  }

  .hero-video,
  .hero-shade {
    left: 0;
    right: 0;
    width: 100%;
    min-width: 100%;
    max-width: none;
  }

  .hero-content {
    transform: translateY(0);
  }

  h1 {
    max-width: 650px;
    font-size: clamp(42px, 9vw, 64px);
    line-height: 0.94;
    margin-bottom: 14px;
  }

  .hero-copy {
    max-width: 34rem;
    font-size: clamp(17px, 2.1vw, 20px);
    line-height: 1.22;
  }

  .eyebrow {
    margin-bottom: 8px;
  }

  .desktop-eyebrow {
    display: none;
  }

  .mobile-eyebrow {
    display: inline;
  }

  .hero-actions {
    display: flex;
    margin-top: 24px;
  }

  .intro-grid,
  .section-heading,
  .services-layout,
  .process-section {
    grid-template-columns: 1fr;
    min-width: 0;
  }

  .services-layout {
    display: grid;
    gap: 18px;
  }

  .services-intro-copy {
    display: contents;
  }

  .services-intro-copy .eyebrow {
    order: 1;
  }

  .services-intro-copy h2 {
    order: 2;
  }

  .services-intro-copy > p:not(.eyebrow) {
    order: 3;
  }

  .experience-section {
    min-height: auto;
    padding-bottom: 64px;
    display: block;
  }

  .experience-intro {
    max-width: 760px;
    text-align: left;
    text-shadow: 0 14px 34px rgba(0, 0, 0, 0.38);
  }

  .experience-section .experience-intro > .eyebrow {
    margin-left: 0;
  }

  .experience-intro h2 {
    max-width: 680px;
    font-size: clamp(38px, 10vw, 58px);
  }

  .quote-field {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    display: flex;
    gap: 14px;
    width: calc(100% + 44px);
    height: auto;
    min-height: 0;
    margin: 34px -22px 0;
    padding: 2px 22px 20px;
    align-items: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    overscroll-behavior-x: contain;
    scroll-behavior: smooth;
    scroll-padding-inline: 22px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    pointer-events: auto;
    perspective: none;
    perspective-origin: 50% 50%;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .quote-field::-webkit-scrollbar {
    display: none;
  }

  .quote-bubble,
  .quote-bubble:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    display: block;
    flex: 0 0 min(82vw, 340px) !important;
    width: min(82vw, 340px) !important;
    max-width: min(82vw, 340px) !important;
    min-height: 0;
    margin: 0;
    padding: 18px 18px 16px;
    border: 1px solid rgba(240, 231, 214, 0.72);
    border-radius: 16px;
    scroll-snap-align: center;
    color: var(--charcoal);
    background: rgba(250, 246, 236, 0.96);
    box-shadow:
      0 22px 54px rgba(0, 0, 0, 0.32),
      0 6px 18px rgba(13, 53, 64, 0.16);
    opacity: 1 !important;
    filter: none !important;
    backdrop-filter: none;
    transform: none !important;
    transition:
      transform 220ms ease,
      box-shadow 460ms ease;
    will-change: auto;
  }

  .quote-bubble.is-stack-active,
  .quote-bubble.is-focused {
    z-index: 1;
  }

  .quote-bubble.is-stack-near {
    z-index: 1;
  }

  .quote-bubble.is-stack-far {
    z-index: 1;
  }

  .quote-bubble p {
    display: block;
    min-height: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    color: rgba(42, 42, 42, 0.88);
    font-size: clamp(14px, 3.8vw, 16px);
    line-height: 1.48;
  }

  .quote-bubble .quote-more {
    display: none;
  }

  .quote-bubble.quote-long:not(.is-expanded) .quote-preview::after {
    content: " ...";
  }

  .quote-read-more {
    display: block;
    margin-top: 10px;
    font-size: 10px;
  }

  .quote-bubble.is-source-hidden {
    opacity: 1 !important;
    pointer-events: auto;
  }

  .quote-bubble::after,
  .quote-bubble:nth-child(even)::after,
  .quote-large::after {
    content: none;
  }

  .quote-bubble::before,
  .quote-bubble:nth-child(even)::before,
  .quote-large::before {
    content: "★★★★★";
    position: relative;
    inset: auto;
    z-index: 1;
    display: block;
    margin: 0 0 10px;
    color: #f6b800;
    background: none;
    filter: none;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.12em;
    opacity: 1;
  }

  .quote-bubble:hover,
  .quote-bubble.is-focused {
    transform: none !important;
    box-shadow:
      0 24px 60px rgba(0, 0, 0, 0.34),
      0 8px 22px rgba(13, 53, 64, 0.18);
  }

  .quote-expanded-card {
    position: fixed;
    inset: auto auto 50% 50%;
    z-index: 1300;
    width: min(88vw, 380px);
    max-height: 70vh;
    overflow: auto;
    padding: 20px;
    border: 1px solid rgba(240, 231, 214, 0.72);
    border-radius: 18px;
    color: var(--charcoal);
    background: rgba(250, 246, 236, 0.98);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.42),
      0 8px 24px rgba(13, 53, 64, 0.18);
    backdrop-filter: none;
    transform: translate(-50%, 54%) scale(0.94);
  }

  .quote-expanded-card::before {
    content: "★★★★★";
    display: block;
    margin: 0 0 12px;
    color: #f6b800;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.12em;
  }

  .quote-expanded-card.is-visible {
    transform: translate(-50%, 50%) scale(1);
  }

  .quote-expanded-card p {
    color: rgba(42, 42, 42, 0.88);
    font-size: clamp(14px, 3.9vw, 16px);
    line-height: 1.5;
  }

  .quote-expanded-card button {
    color: var(--signal-red);
  }

  .quote-bubble.is-focused {
    z-index: 1;
  }

  .quote-detail {
    position: fixed;
    top: 50%;
    left: 50%;
    width: min(92vw, 620px);
    max-height: 70vh;
    padding: 24px;
  }

  .quote-detail p {
    font-size: clamp(16px, 4vw, 22px);
  }

  .quote-expanded-card {
    position: fixed;
    top: 50%;
    right: auto;
    left: 50%;
    width: min(92vw, 620px);
    max-height: 76vh;
    overflow: auto;
    transform: translate(-50%, calc(-50% + 14px)) scale(0.98);
  }

  .quote-expanded-card.is-visible {
    transform: translate(-50%, -50%) scale(1);
  }

  .service-accordion {
    order: 4;
    margin-top: 4px;
    min-width: 0;
    border-top-color: rgba(42, 42, 42, 0.16);
  }

  .service-preview {
    order: 5;
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    min-height: 0;
    margin-top: 8px;
    border-radius: 18px;
    background: transparent;
  }

  .service-preview > img,
  .service-preview > video,
  .service-preview > iframe,
  .service-preview > .service-preview-stack {
    max-width: none;
  }

  .service-preview video,
  .service-preview iframe {
    object-fit: cover;
  }

  .service-preview video.service-default-video {
    width: 100%;
    height: 100%;
    margin: 0;
  }

  .logo-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 10px 8px 16px;
    scroll-padding-inline: 22px;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .logo-track::-webkit-scrollbar,
  .people-viewport::-webkit-scrollbar {
    display: none;
  }

  .logo-track img {
    flex: 0 0 min(42vw, 170px);
    max-height: none;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.28);
    scroll-snap-align: center;
  }

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

  .service-item-trigger {
    min-height: 0;
    padding: 9px 0 8px;
    gap: 8px;
    align-items: center;
  }

  .services-intro-copy,
  .service-item,
  .service-item-panel,
  .film-service-slider,
  .film-service-viewport,
  .film-service-track,
  .film-service-slide {
    min-width: 0;
    max-width: 100%;
  }

  .services-intro-copy p:not(.eyebrow),
  .service-item-panel p,
  .service-subservices p {
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .service-item-trigger strong {
    font-size: clamp(17px, 4.8vw, 22px);
    line-height: 1.02;
    letter-spacing: -0.02em;
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .service-item-trigger span {
    margin-left: 4px;
    transform: none;
    font-size: 9px;
  }

  .service-item-trigger em {
    font-size: 22px;
  }

  .service-item-panel p {
    padding-bottom: 10px;
    font-size: 14px;
    line-height: 1.36;
  }

  .service-item-panel {
    display: none;
  }

  .service-item-film.active .service-item-panel {
    display: block;
  }

  .service-item::before {
    right: 0;
    background: linear-gradient(to right, rgba(234, 46, 0, 0.08), rgba(234, 46, 0, 0));
  }

  .service-item-panel p,
  .service-subservices {
    padding-left: 0;
  }

  .service-example-button {
    margin-left: 0;
  }

  .film-service-slider {
    margin-left: 0;
    padding: 8px 0 12px 0;
    border-top-color: rgba(42, 42, 42, 0.12);
    background: transparent;
  }

  .film-service-viewport,
  .film-service-next {
    display: none;
  }

  .film-service-next {
    pointer-events: none !important;
  }

  .film-service-slide {
    padding: 12px 42px 12px 0;
  }

  .film-service-slide h3 {
    margin-bottom: 6px;
    font-size: 20px;
  }

  .film-service-slide p {
    font-size: 13px;
    line-height: 1.35;
  }

  .film-service-jump-nav {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: auto;
    scroll-snap-type: none;
    touch-action: auto;
    max-width: none;
    margin-right: 0;
    padding: 6px 0 6px;
    gap: 8px;
  }

  .film-service-jump-nav::-webkit-scrollbar {
    display: none;
  }

  .film-service-jump-nav button {
    flex: 0 0 auto;
    user-select: none;
    min-height: 32px;
    padding: 0 11px;
    border: 1px solid rgba(42, 42, 42, 0.18);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.24);
    color: rgba(42, 42, 42, 0.58);
    font-size: 10px;
    line-height: 1;
    white-space: nowrap;
  }

  .film-service-jump-nav button.is-active {
    border-color: rgba(234, 46, 0, 0.42);
    background: rgba(234, 46, 0, 0.1);
    color: var(--signal-red);
  }

  .people-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 30px;
  }

  .people-heading h2 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .people-toggle {
    justify-self: start;
  }

  .people-stage {
    min-height: 390px;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }

  .people-panel {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .people-arrow {
    display: none;
  }

  .people-viewport {
    overflow: hidden;
    width: 100vw;
    margin-inline: 0;
    padding: 10px 0 26px;
    scrollbar-width: none;
    -webkit-mask-image: none;
    mask-image: none;
  }

  .people-track {
    gap: 18px;
    touch-action: pan-y;
  }

  .people-panel::before,
  .people-panel::after {
    width: 86px;
  }

  .people-panel::before {
    left: 0;
  }

  .people-panel::after {
    right: 0;
  }

  .person-card,
  .client-card {
    flex-basis: min(72vw, 300px);
    width: min(72vw, 300px);
  }

  .person-card:hover,
  .person-card:active,
  .person-card:focus,
  .person-card:focus-visible,
  .client-card:hover,
  .client-card:active,
  .client-card:focus,
  .client-card:focus-visible {
    transform: none;
    box-shadow: none;
    outline: 0;
  }

  .client-card:hover img,
  .client-card:active img,
  .client-card:focus img,
  .client-card:focus-visible img {
    transform: none;
  }

  .clients-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    grid-auto-columns: min(38vw, 150px);
    align-items: center;
  }

  .clients-track .client-card {
    width: min(38vw, 150px);
    min-width: min(38vw, 150px);
    padding: 10px;
  }

  .clients-track .client-card img {
    width: 96%;
    max-height: 96%;
  }

  .work-card,
  .work-card.large,
  .work-card.wide {
    grid-column: auto;
    min-height: 360px;
  }

  .work-card p {
    opacity: 1;
    transform: none;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
    justify-items: center;
    text-align: center;
  }

  .footer-social {
    gap: 12px 16px;
  }

  .site-footer p {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .brand img {
    width: 56px;
  }

  .hero {
    padding: 104px 18px 76px;
  }

  .hero-content {
    transform: none;
  }

  .nav-cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 10px;
  }

  h1 {
    font-size: clamp(42px, 14vw, 58px);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
  }

  .hero-copy {
    font-size: 17px;
  }

  .hero-actions .button {
    min-height: 42px;
    padding-inline: 18px;
  }

  .logo-track {
    margin-inline: -22px;
    padding-inline: 22px;
  }

  .people-stage {
    min-height: 350px;
  }

  .person-card,
  .client-card {
    flex-basis: min(72vw, 270px);
    width: min(72vw, 270px);
  }

  .clients-track {
    grid-auto-columns: min(40vw, 138px);
  }

  .clients-track .client-card {
    width: min(40vw, 138px);
    min-width: min(40vw, 138px);
  }

  .services-layout {
    gap: 14px;
  }

  .service-accordion {
    margin-top: 2px;
  }

  .services-intro-copy h2 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .services-intro-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.42;
  }

  .service-preview,
  .service-preview img,
  .service-preview video {
    min-height: 0;
  }

  .service-item-trigger {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 0;
    padding: 8px 0 7px;
  }

  .service-item-trigger strong {
    font-size: clamp(16px, 4.6vw, 20px);
  }

  .film-service-slide {
    padding: 10px 38px 10px 0;
  }

  .film-service-next {
    right: 2px;
    width: 48px;
  }

  .film-service-jump-nav {
    gap: 5px 9px;
  }

  .film-service-jump-nav button {
    font-size: 9px;
  }

  .quote-field {
    height: auto;
    min-height: 0;
    margin-inline: -20px;
    padding-inline: 20px;
    scroll-padding-inline: 20px;
  }

  .quote-bubble,
  .quote-bubble:nth-child(n) {
    position: relative;
    top: auto;
    left: auto;
    flex: 0 0 min(84vw, 320px) !important;
    width: min(84vw, 320px) !important;
    max-width: min(84vw, 320px) !important;
    min-height: 0;
    margin-right: 0;
    padding: 16px;
  }

  .quote-bubble p {
    min-height: 0;
    -webkit-line-clamp: unset;
    font-size: clamp(13px, 3.7vw, 15px);
  }

  .quote-read-more {
    font-size: 9px;
  }

  .quote-expanded-card {
    width: calc(100vw - 28px);
    padding: 20px;
  }

  .quote-expanded-card p {
    font-size: 14px;
    line-height: 1.45;
  }

  .service-item-panel p,
  .service-subservices {
    padding-left: 0;
  }

  .service-example-button {
    margin-left: 0;
  }

  .chat-bubble {
    right: 18px;
    bottom: 18px;
    width: 50px;
    height: 50px;
  }

  .chat-bubble svg {
    width: 24px;
    height: 24px;
  }

  .chat-panel {
    right: 12px;
    bottom: 88px;
    width: calc(100vw - 24px);
    max-height: min(620px, calc(100svh - 112px));
    border-radius: 18px;
  }

  body.chat-popup-open .chat-panel.open {
    display: flex;
  }

  body.chat-keyboard-open .chat-panel {
    top: var(--chat-viewport-top, max(8px, env(safe-area-inset-top)));
    bottom: var(--chat-keyboard-bottom, 8px);
    max-height: none;
  }

  body.chat-keyboard-open .chat-messages {
    min-height: 0;
  }

  .chat-header {
    gap: 10px;
    padding: 14px;
  }

  .chat-title {
    gap: 10px;
    overflow: hidden;
  }

  .chat-title img {
    width: 36px;
    height: 36px;
  }

  .chat-title strong {
    font-size: 13px;
  }

  .chat-title span {
    display: block;
    max-width: calc(100vw - 162px);
    overflow: hidden;
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .chat-close {
    width: 32px;
    height: 32px;
    font-size: 32px;
  }

  .chat-messages {
    min-height: 240px;
    padding: 14px;
  }

  .chat-msg {
    font-size: 14px;
  }
}

@media (max-width: 900px) {
  .experience-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-height: auto !important;
    padding: 96px 22px 64px !important;
    overflow: hidden !important;
  }

  .experience-section .experience-intro {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    text-align: left !important;
  }

  .experience-section .quote-field {
    display: none !important;
  }

  .mobile-review-carousel {
    position: relative;
    z-index: 4;
    display: block;
    width: calc(100% + 44px);
    max-width: calc(100% + 44px);
    margin: 30px 0 0;
    margin-inline: -22px;
    padding: 26px 0 92px;
    overflow-x: hidden;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    touch-action: pan-y;
    background: transparent;
  }

  .mobile-review-carousel::before,
  .mobile-review-carousel::after {
    content: none;
  }

  .mobile-review-track {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    gap: 16px;
    width: max-content;
    will-change: transform;
  }

  .mobile-review-card {
    flex: 0 0 min(78vw, 330px);
    width: min(78vw, 330px);
    min-width: min(78vw, 330px);
    max-height: 56vh;
    overflow: hidden;
    padding: 18px 18px 16px;
    border: 1px solid rgba(240, 231, 214, 0.72);
    border-radius: 18px;
    color: var(--charcoal);
    background: rgba(250, 246, 236, 0.97);
    box-shadow:
      0 18px 34px rgba(0, 0, 0, 0.18),
      0 5px 14px rgba(13, 53, 64, 0.1);
  }

  .mobile-review-card::before {
    content: "★★★★★";
    display: block;
    margin-bottom: 12px;
    color: #f6b800;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }

  .mobile-review-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
    color: rgba(42, 42, 42, 0.9);
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 800;
    line-height: 1.42;
  }

  .mobile-review-card.is-expanded p {
    display: block;
    -webkit-line-clamp: unset;
    max-height: min(36vh, 320px);
    overflow-y: auto;
    padding-right: 4px;
  }

  .mobile-review-card button {
    margin-top: 12px;
    color: var(--signal-red);
    background: transparent;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .mobile-review-card button[hidden] {
    display: none;
  }

  .mobile-review-card button:focus,
  .mobile-review-card button:focus-visible {
    outline: none;
  }

  .mobile-review-detail {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1400;
    width: min(88vw, 420px);
    max-height: min(72vh, 640px);
    overflow-y: auto;
    padding: 22px;
    border: 1px solid rgba(240, 231, 214, 0.74);
    border-radius: 20px;
    color: var(--charcoal);
    background: rgba(250, 246, 236, 0.98);
    box-shadow:
      0 34px 88px rgba(0, 0, 0, 0.42),
      0 10px 26px rgba(13, 53, 64, 0.18);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -48%) scale(0.96);
    transition: opacity 0.24s ease, transform 0.24s ease;
  }

  .mobile-review-detail::before {
    content: "★★★★★";
    display: block;
    margin-bottom: 12px;
    color: #f6b800;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.1em;
  }

  .mobile-review-detail.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
  }

  .mobile-review-detail p {
    margin: 0;
    color: rgba(42, 42, 42, 0.9);
    font-size: clamp(15px, 4vw, 17px);
    font-weight: 800;
    line-height: 1.45;
  }

  .mobile-review-detail button {
    margin-top: 14px;
    color: var(--signal-red);
    background: transparent;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .experience-section .quote-field {
    display: none !important;
    flex-flow: row nowrap !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 30px 0 0 !important;
    padding: 8px 0 30px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    scroll-padding-inline: 22px !important;
    scrollbar-width: none !important;
    outline: none !important;
    -webkit-overflow-scrolling: touch !important;
  }

  .experience-section .quote-field::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
  }

  .experience-section .quote-bubble,
  .experience-section .quote-bubble:nth-child(n) {
    position: relative !important;
    inset: auto !important;
    flex: 0 0 min(78vw, 330px) !important;
    width: min(78vw, 330px) !important;
    min-width: min(78vw, 330px) !important;
    max-width: min(78vw, 330px) !important;
    align-self: flex-start !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    transform: none !important;
    scroll-snap-align: center !important;
  }
}

@media (max-width: 640px) {
  .experience-section .quote-field {
    width: 100% !important;
    max-width: 100% !important;
    margin-inline: 0 !important;
    padding-inline: 0 !important;
    scroll-padding-inline: 0 !important;
  }

  .experience-section .quote-bubble,
  .experience-section .quote-bubble:nth-child(n) {
    flex-basis: min(76vw, 300px) !important;
    width: min(76vw, 300px) !important;
    min-width: min(76vw, 300px) !important;
    max-width: min(76vw, 300px) !important;
  }
}
