/* ===== Reset & Base ===== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  color: #111214;
  background: #f7f8fa;
}

/* ===== Layout ===== */

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px;
}

.section {
  margin-bottom: 40px;
  padding: 20px;
  background: #ffffff;
  border: 2px dashed #ccc;
  border-radius: 8px;
}

/* ===== Navigation ===== */

.nav {
  display: flex;
  gap: 24px;
  padding: 16px 0;
  margin-bottom: 20px;
  font-size: 14px;
}

.nav a {
  color: #111214;
  text-decoration: none;
  font-weight: 500;
}

.nav a:hover {
  text-decoration: underline;
}

/* ===== Hero ===== */

.hero {
  min-height: 60vh;
  background: linear-gradient(135deg, #ffe0e6 0%, #e0e6ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero h1 {
  font-size: 48px;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 auto;
  max-width: 700px;
}

.hero-sub {
  margin-top: 16px;
  font-size: 18px;
  color: #444;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Hero Intro (full-width panel below hero) ===== */

.hero-intro {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  padding: 32px 20px;
}

.hero-intro p {
  color: #444;
  margin: 0;
}

/* ===== Layout Switcher ===== */

.layout-switcher {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  padding: 16px 0 24px;
}

.layout-switcher__label {
  font-size: 14px;
  color: #666;
  margin-right: 8px;
}

.layout-switcher a {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  border: 1px solid #d0d6e2;
  border-radius: 999px;
  color: #111214;
  text-decoration: none;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
}

.layout-switcher a:hover,
.layout-switcher a.is-active {
  background: #111214;
  border-color: #111214;
  color: #fff;
}

/* ===== Team Layout ===== */

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 32px;
  align-items: center;
}

.team-layout__copy h2 {
  font-size: 32px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 16px;
}

.team-layout__copy p {
  color: #444;
  max-width: 520px;
}

.team-layout__visuals {
  display: grid;
  gap: 16px;
}

.team-layout__visuals--single {
  max-width: 480px;
  width: 100%;
  justify-self: end;
}

.team-layout__photo-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.team-layout__photo {
  min-height: 180px;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  border: 1px solid #d0d6e2;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a8494;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.team-layout__photo--large {
  min-height: 260px;
}

.team-layout__photo--portrait {
  min-height: 360px;
}

.team-layout--visual-top {
  align-items: start;
}

.team-layout--visual-left {
  grid-template-columns: 1.05fr 0.95fr;
}

.team-layout--wide-photo {
  grid-template-columns: 1fr;
}

.team-layout--wide-photo .team-layout__copy {
  max-width: 760px;
}

.team-layout__photo--wide {
  min-height: 300px;
}

/* ===== Service Visuals ===== */

.service-visuals__intro {
  max-width: 700px;
  margin-bottom: 24px;
  color: #444;
}

.service-visuals__grid {
  display: grid;
  gap: 20px;
}

.service-visuals__grid--three-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-visuals__grid--feature-left {
  grid-template-columns: 1.15fr 1fr;
}

.service-visuals__grid--feature-top {
  grid-template-columns: repeat(3, 1fr);
}

.service-visuals__grid--split-band {
  grid-template-columns: 0.9fr 1.1fr 1fr;
}

.service-visuals__item {
  min-height: 240px;
  padding: 24px;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  border: 1px solid #d0d6e2;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.service-visuals__item strong {
  font-size: 18px;
  font-weight: 600;
}

.service-visuals__item span {
  color: #586170;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-visuals__item--span-rows {
  grid-row: span 2;
  min-height: 100%;
}

.service-visuals__item--span-cols {
  grid-column: span 2;
}

/* ===== Services Flow ===== */

.services-flow {
  display: grid;
  gap: 24px;
}

.services-flow__intro {
  max-width: 760px;
  color: #444;
}

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

.service-card {
  padding: 24px;
  background: #f7f8fa;
  border: 1px solid #d9dee8;
  border-radius: 14px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.service-card p {
  color: #444;
}

.service-card--image {
  min-height: 260px;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  border: 1px solid #d0d6e2;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.service-card--image span {
  color: #586170;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.service-card--image-wide {
  grid-column: 1 / -1;
  min-height: 300px;
}

.service-card--image-tall {
  min-height: 100%;
  grid-row: span 2;
}

.service-card--emphasis {
  background: #eef5ff;
}

/* ===== Creative Works ===== */

.creative-intro {
  max-width: 820px;
}

.creative-intro p {
  color: #444;
}

.creative-gallery {
  display: grid;
  gap: 20px;
}

.creative-gallery--three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.creative-gallery--mixed {
  grid-template-columns: 1.15fr 0.85fr;
}

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

.creative-placeholder {
  min-height: 280px;
  padding: 24px;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  border: 1px solid #d0d6e2;
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  color: #586170;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.creative-placeholder--tall {
  min-height: 420px;
}

.creative-placeholder--hero {
  min-height: 360px;
}

.creative-placeholder--wide {
  grid-column: 1 / -1;
  min-height: 320px;
}

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

.creative-copy-card {
  padding: 24px;
  background: #f7f8fa;
  border: 1px solid #d9dee8;
  border-radius: 14px;
}

.creative-copy-card h3 {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.creative-copy-card p {
  color: #444;
}

.creative-statement {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  color: #444;
}

.creative-statement--lead {
  max-width: 900px;
  font-size: 40px;
  line-height: 1.15;
  color: #111214;
}

/* ===== CTA Panel (below hero) ===== */

.cta-panel {
  text-align: center;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-top: none;
  padding-top: 20px;
  padding-bottom: 12px;
}

.intro-lines {
  max-width: 760px;
  margin: 0 auto 20px;
}

.intro-lines p {
  margin-bottom: 10px;
}

/* ===== Buttons ===== */

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: #00acff;
  color: #fff;
  border: none;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
}

.btn-secondary {
  background: #f0f0f0;
  color: #111214;
}

/* ===== Product Grid (homepage 3-col) ===== */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card,
.case-card {
  padding: 24px;
  background: #f0f0f0;
  border-radius: 8px;
}

.product-card h2,
.case-card h3 {
  font-size: 18px;
  line-height: 1.4;
  margin-bottom: 12px;
}

.product-card p,
.case-card p {
  color: #666;
}

.product-card a {
  color: inherit;
  text-decoration: none;
}

.case-card-link {
  color: inherit;
  text-decoration: none;
}

.product-card a:hover h2 {
  text-decoration: underline;
}

.case-card-link:hover h3 {
  text-decoration: none;
}

/* ===== Case Grid ===== */

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ===== Image & Video Placeholders ===== */

.image-box {
  width: 100%;
  height: 200px;
  background: #ddd;
  border-radius: 8px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
}

.video-box {
  width: 100%;
  height: 300px;
  background: #ddd;
  border-radius: 8px;
  margin: 24px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 14px;
  text-align: center;
}

/* ===== Two-Column Layout ===== */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 24px 0;
}

.two-col-panel {
  padding: 24px;
  background: #f0f0f0;
  border-radius: 8px;
}

.two-col-panel h3 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.two-col-panel p {
  margin-bottom: 12px;
  color: #333;
}

.two-col-panel ul {
  margin: 16px 0;
  padding-left: 24px;
}

.two-col-panel li {
  margin-bottom: 8px;
  color: #666;
}

/* ===== Contrast Panel ===== */

.contrast-panel {
  background: #f0f0f5;
  border: 2px dashed #bbb;
  border-radius: 8px;
  padding: 32px;
  margin-bottom: 40px;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.contrast-panel p {
  font-style: italic;
  color: #444;
  margin-bottom: 12px;
}

.contrast-panel p:last-child {
  margin-bottom: 0;
}

/* ===== Connecting Line (text between sections) ===== */

.connecting-line {
  text-align: center;
  font-style: italic;
  color: #666;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 0;
}

/* ===== Process List ===== */

.process-list {
  max-width: 680px;
  margin: 0 auto;
  padding-left: 24px;
}

.process-list li {
  margin-bottom: 16px;
  color: #333;
}

.process-list li strong {
  color: #111214;
}

.process-link {
  text-align: center;
  margin-top: 24px;
}

.process-link a {
  color: #00acff;
  text-decoration: none;
  font-weight: 500;
}

.process-link a:hover {
  text-decoration: underline;
}

/* ===== Hero (text-only variant) ===== */

.hero--text-only {
  min-height: 40vh;
}

/* ===== Need Card (client-perspective sections) ===== */

.need-card h3 {
  font-size: 22px;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 12px;
}

.need-card p {
  color: #444;
}

/* ===== Centered Statement ===== */

.centered-statement {
  text-align: center;
  color: #444;
}

/* ===== Bottom CTA ===== */

.bottom-cta {
  text-align: center;
}

/* ===== Footer ===== */

.footer {
  margin-top: 60px;
  padding: 32px 0;
  border-top: 1px solid #ddd;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  color: #666;
  font-size: 14px;
}

.footer a {
  color: #666;
  text-decoration: none;
  margin-right: 16px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  justify-content: flex-start;
}

.footer__links a {
  margin-right: 0;
}

/* ===== Full-Bleed Homepage ===== */

.page--full-bleed {
  max-width: none;
  padding: 0;
}

.page--full-bleed .section {
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
}

.content-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

.content-wrap--narrow {
  max-width: 860px;
}

.content-wrap--reading {
  max-width: 680px;
}

.content-wrap--wide {
  max-width: none;
  padding: 0 48px;
}

.content-wrap--footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.home-hero {
  min-height: 72vh;
}

.home-hero .hero-content {
  padding: 0 32px;
}

.home-hero h1 {
  max-width: 880px;
  font-size: 64px;
}

.home-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.home-page {
  font-family: "Instrument Sans", "Inter", system-ui, -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.5;
  background: #fff;
}

.home-logo {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  left: calc(16px + env(safe-area-inset-left));
  z-index: 1000;
  display: block;
  width: 76px;
  height: 76px;
}

.home-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.home-hamburger {
  position: fixed;
  top: calc(16px + env(safe-area-inset-top));
  right: calc(16px + env(safe-area-inset-right));
  z-index: 1000;
  width: 48px;
  overflow: visible;
}

.home-hamburger summary {
  list-style: none;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(17, 18, 20, 0.08);
  transition: background 0.2s ease, box-shadow 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.home-hamburger summary:hover {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 4px 16px rgba(17, 18, 20, 0.12);
}

.home-hamburger summary::-webkit-details-marker {
  display: none;
}

.home-hamburger__icon {
  width: 20px;
  height: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}

.home-hamburger__icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111214;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.home-hamburger[open] summary {
  background: #111214;
  box-shadow: 0 4px 20px rgba(17, 18, 20, 0.18);
}

.home-hamburger[open] .home-hamburger__icon span {
  background: #fff;
}

.home-hamburger[open] .home-hamburger__icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.home-hamburger[open] .home-hamburger__icon span:nth-child(2) {
  opacity: 0;
}

.home-hamburger[open] .home-hamburger__icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.home-hamburger__panel {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(17, 18, 20, 0.06);
  border-radius: 14px;
  display: grid;
  gap: 4px;
  box-shadow: 0 12px 40px rgba(17, 18, 20, 0.12), 0 2px 8px rgba(17, 18, 20, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: nav-panel-in 0.2s ease-out;
}

@keyframes nav-panel-in {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes nav-panel-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-6px); }
}

.home-hamburger:not([open]) .home-hamburger__panel {
  animation: nav-panel-out 160ms ease-in both;
}

@media (prefers-reduced-motion: reduce) {
  .home-hamburger__panel,
  .home-hamburger:not([open]) .home-hamburger__panel {
    animation: none;
  }

  .hero-video-link {
    transition: none;
  }
}


.home-hamburger__panel a {
  display: block;
  margin: 0;
  padding: 6px 0;
  color: #111214;
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  white-space: nowrap;
  transition: color 0.15s ease;
}

.home-hamburger__panel a:hover {
  color: #00acff;
  text-decoration: none;
}

.home-hamburger__panel a.nav-heading {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #111214;
  padding-bottom: 10px;
  margin-bottom: 4px;
  border-bottom: 1px solid rgba(17, 18, 20, 0.08);
}

.home-hamburger__panel a.nav-heading:hover {
  color: #00acff;
}

.home-hamburger__panel a.nav-sub {
  padding-left: 16px;
  font-size: 0.95em;
  font-weight: 400;
  color: #444;
  opacity: 0.85;
}

.home-hamburger__panel a.nav-sub:hover {
  color: #00acff;
  opacity: 1;
}

.home-hamburger summary:focus-visible,
.home-hamburger__panel a:focus-visible {
  outline: 2px solid #00acff;
  outline-offset: 2px;
  border-radius: 2px;
}

.home-hamburger__panel a.is-current {
  color: #00acff;
  position: relative;
}

.home-hamburger__panel a.is-current::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 50%;
  width: 3px;
  height: 1em;
  background: #00acff;
  transform: translateY(-50%);
  border-radius: 2px;
  pointer-events: none;
}

.home-hero-media {
  width: 100%;
}

.home-hero-stage {
  position: relative;
  aspect-ratio: 2.39 / 1;
  min-height: 320px;
  border-radius: 0;
  overflow: hidden;
  touch-action: pan-y;
  background: #111214;
}

.hero-video-link {
  position: absolute;
  inset: 0;
  display: block;
  opacity: 0;
  transition: opacity 0.8s ease;
  pointer-events: none;
}

.hero-video-link.active {
  opacity: 1;
  pointer-events: auto;
}

.home-hero-stage video.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-page .home-hero-stage .video-placeholder {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 320px;
  background: rgba(0, 0, 0, 0.08);
  color: rgba(17, 18, 20, 0.5);
}

.home-page .home-hero-stage--dark .video-placeholder {
  background: rgba(17, 18, 20, 0.4);
  color: rgba(255, 255, 255, 0.82);
}

.hero-controls-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 14px 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.45) 0%, transparent 100%);
}

.hero-controls-bar__arrow {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 18px;
  font-weight: 300;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: border-color 180ms ease, color 180ms ease;
}

.hero-controls-bar__arrow:hover {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
}

.hero-controls-bar__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(255, 255, 255, 0.35);
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease;
}

.hero-dot.active {
  background: #fff;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.6);
}

.hero-dot.active:hover {
  background: #fff;
}

.page--full-bleed .home-hero-statement {
  background: #fff;
  text-align: center;
  margin-top: 0;
  padding: 36px 0 14px;
}

.home-hero-statement h1 {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  margin-top: 0;
  margin-bottom: 0;
  text-wrap: balance;
}

.page--full-bleed .home-intro {
  background: #fff;
  padding: 0 0 48px;
  text-align: center;
}

.home-page .home-intro .intro-lines {
  margin: 12px auto 32px;
}

.home-intro__actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.home-intro__or {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #6a7382;
}

.home-showcase {
  background: #eef2f8;
  margin-top: 0;
  padding: 64px 0;
}

.home-load-more {
  margin-top: 56px;
  text-align: center;
}

.home-load-more__button {
  min-width: 220px;
}

.home-load-more__button[disabled] {
  opacity: 0.6;
  cursor: default;
}

.home-client-logos {
  background: #fff;
  margin-top: 60px;
  padding: 64px 0 64px;
  text-align: center;
}

.home-client-logos__label {
  font-size: 22px;
  font-weight: 400;
  color: #333;
  margin-bottom: 0;
}

.home-client-logos__strip {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 48px;
  flex-wrap: nowrap;
}

.home-client-logos__strip img {
  max-width: calc((100% - 288px) / 7);
  height: auto;
}

@media (max-width: 768px) {
  .home-client-logos {
    padding: 48px 0;
    margin-top: 40px;
  }

  .home-client-logos__label {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .home-client-logos__strip {
    flex-wrap: wrap;
    gap: 28px 20px;
  }

  .home-client-logos__strip img {
    max-width: calc((100% - 60px) / 4);
    max-height: 40px;
    object-fit: contain;
  }
}

@media (max-width: 480px) {
  .home-client-logos__strip {
    gap: 24px 16px;
  }

  .home-client-logos__strip img {
    max-width: calc((100% - 32px) / 3);
    max-height: 36px;
  }
}

.home-services {
  background: #fff;
  padding: 80px 0;
}

.home-cta-band {
  background: linear-gradient(135deg, #ffe0e6 0%, #e0e6ff 100%);
  margin-top: 56px;
  padding: 92px 0;
}

.home-footer {
  margin-top: 48px;
  padding: 52px 0 36px;
  background: #111214;
  display: block;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.75);
}

.services-page .home-footer,
.comms-page .home-footer,
.immersive-page .home-footer,
.showcase-page .home-footer,
.creative-page .home-footer,
.project-page .home-footer,
.booking-page .home-footer,
.pricing-page .home-footer,
.contact-page .home-footer,
.about-page .home-footer,
.legal-page .home-footer {
  margin-top: 0;
  padding: 56px 0 36px;
}

.home-footer .content-wrap--footer {
  grid-template-columns: minmax(220px, 1fr) 2fr;
  align-items: start;
}

.home-footer__logo {
  width: 128px;
  max-width: 100%;
  margin-bottom: 14px;
}

.home-footer__logo img {
  width: 100%;
  height: auto;
  display: block;
  filter: invert(1);
}

.home-footer__nav {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.home-footer__group-title {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
}

.home-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-footer__copyright {
  margin: 16px 0 0;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
}

.home-footer__copyright:hover {
  color: #fff;
  text-decoration: underline;
}

.home-footer__group a {
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 16px;
}

.home-footer__group a:hover {
  color: #fff;
  text-decoration: underline;
}

.home-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.home-footer__list li {
  margin: 0;
}

.home-footer__group a:focus-visible {
  outline: 2px solid #00acff;
  outline-offset: 2px;
  border-radius: 2px;
}

.home-footer__group a:active {
  color: #fff;
  text-decoration: underline;
}

.home-section__header {
  max-width: 760px;
  margin-bottom: 36px;
}

.home-section__eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #586170;
  margin-bottom: 12px;
}

.home-section__header h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.1;
}

.home-page .case-grid,
.home-page .product-grid {
  gap: 32px;
}

.home-page .case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.home-page .case-card,
.home-page .product-card,
.services-page .product-card {
  padding: 0;
  background: transparent;
  border-radius: 0;
}

.home-page .case-card-link,
.home-page .product-card a,
.services-page .product-card a {
  display: block;
}

.home-page .case-card-link[hidden] {
  display: none;
}

.home-page .product-card h2,
.services-page .product-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 12px;
}

.home-page .case-card {
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.home-page .case-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 0;
}

.home-page .case-card__media .image-box {
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  display: block;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
}

.home-page .case-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  background: linear-gradient(180deg, rgba(17, 18, 20, 0.05) 0%, rgba(17, 18, 20, 0.72) 100%);
  color: #fff;
  transition: opacity 180ms ease;
}

.home-page .case-card__overlay-inner {
  max-width: 36ch;
}

.home-page .case-card__overlay h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 10px;
  color: #fff;
  text-decoration: none;
}

.home-page .case-card .case-card__overlay p {
  color: #fff;
  font-size: 16px;
  margin: 0;
}

.home-page .case-card-link:hover .case-card__overlay,
.home-page .case-card-link:focus-visible .case-card__overlay {
  opacity: 1;
}

.home-page .case-card-link:focus-visible {
  outline: none;
}

.home-page .case-card-link:focus-visible .case-card__media {
  box-shadow: inset 0 0 0 3px #00acff;
}

@media (hover: hover) and (pointer: fine) {
  .home-page .case-card-link .case-card__overlay {
    opacity: 0;
  }
}

.home-page .case-card h3,
.home-page .product-card h2,
.services-page .product-card h2 {
  font-size: 28px;
  line-height: 1.15;
  margin-bottom: 6px;
}

.home-page .case-card p,
.home-page .product-card p,
.services-page .product-card p {
  color: #444;
  font-size: 18px;
  max-width: none;
}

.services-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.services-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
}

.services-page .services-hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  min-height: 100%;
  background: rgba(17, 18, 20, 0.5);
}

.services-page .services-hero-backdrop img,
.services-page .services-hero-backdrop video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-page .services-headline {
  background: #fff;
  padding: 64px 0 16px;
  text-align: center;
}

.services-page .services-headline h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.services-page .services-headline__byline {
  margin-top: 16px;
  font-size: 20px;
  font-weight: 400;
  color: #586170;
}

.services-page .home-services {
  background: #fff;
  margin-top: 0;
  /* Bottom padding matches CTA vertical padding so image→CTA gap equals CTA→footer gap */
  padding: 64px 0 56px;
}

.services-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
}

body.services-page {
  background: #fff;
}

.services-page .services-pillars {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  align-items: stretch;
}

.services-page .services-pillar {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.services-page .services-pillar--wide {
  grid-column: 1 / -1;
}

.services-page .services-pillar--wide .services-pillar__media .image-box {
  height: auto;
  aspect-ratio: 1920 / 480;
  object-fit: cover;
}

.services-page .services-pillar--wide:first-child {
  margin-bottom: 24px;
}

.services-page .services-pillar--wide:first-child .services-pillar__intro {
  padding-top: 0;
}

.services-page .services-pillar--wide:last-child {
  margin-top: 24px;
}

.services-page .home-services .content-wrap--wide {
  padding: 0;
}

.services-page .services-pillar__intro {
  padding: 64px 48px 20px;
}

.services-page .services-pillar__media {
  flex: 0 0 auto;
}

.services-page .services-pillar__media .image-box {
  width: 100%;
  height: auto;
  aspect-ratio: 1200 / 698;
  margin-bottom: 0;
  border-radius: 0;
  object-fit: cover;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  color: #586170;
  font-size: 14px;
}

/* ===== Communication Strategy page ===== */

body.comms-page {
  background: #fff;
}

.comms-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.comms-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
  background: #fff;
}

.comms-page .home-hero-stage .video-placeholder {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: rgba(17, 18, 20, 0.4);
  color: rgba(255, 255, 255, 0.82);
}

.comms-page .section {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.comms-page .comms-headline {
  background: #fff;
  padding: 64px 0 48px;
}

.comms-page .comms-headline h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
}

.comms-page .comms-team {
  background: #fff;
  padding: 0;
}

.comms-page .comms-team__banner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0;
  background: #fff;
}

.comms-page .comms-team__img {
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.comms-page .comms-team__text {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.comms-page .comms-team__text h2 {
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 16px;
}

.comms-page .comms-team__text p {
  color: #444;
}

.comms-page .comms-mosaic {
  background: #fff;
  padding: 0 0 80px;
}

.comms-page .comms-mosaic__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.comms-page .comms-mosaic__card {
  padding: 36px 32px;
  background: transparent;
}

.comms-page .comms-mosaic__card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

.comms-page .comms-mosaic__card p {
  color: #444;
  font-size: 18px;
  line-height: 1.55;
}

.comms-page .comms-mosaic__img {
  min-height: 260px;
  background: linear-gradient(135deg, #eceef3 0%, #dfe4ee 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.comms-page .comms-mosaic__img span {
  color: #586170;
  font-size: 14px;
}

.comms-page .comms-statement {
  background: #fff;
  text-align: center;
  padding: 24px 0;
}

.comms-page .comms-statement p {
  color: #444;
  font-size: 22px;
  max-width: 820px;
  margin: 0 auto;
}

.comms-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

/* ===== Immersive Storytelling page ===== */

body.immersive-page {
  background: #f7f8fa;
}

/* --- Immersive landing: hero --- */

.immersive-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.immersive-page .home-hero-stage {
  aspect-ratio: 1920 / 804;
  min-height: 320px;
}

.landing-hero {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  background: transparent;
  color: #111214;
  padding: 40px 24px 80px;
}

.landing-hero__content {
  max-width: 700px;
}

.landing-hero__logo {
  width: 160px;
  height: auto;
  margin-bottom: 28px;
  opacity: 0.9;
}

.landing-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 20px;
  text-wrap: balance;
}

.immersive-page .landing-hero h1 {
  color: #fff;
  transition: opacity 0.8s ease-in-out;
}

.immersive-page .landing-hero h1.hero-text-hidden {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .immersive-page .landing-hero h1 {
    transition: none;
  }
}

.landing-hero__sub {
  font-size: 19px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.landing-hero__cta {
  background: #fff;
  color: #111214;
}

.landing-hero__cta:hover {
  background: #e8e8e8;
}

/* --- Immersive landing: value strip --- */

.immersive-page .landing-value-strip {
  background: #111214;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  margin-bottom: 0;
}

.immersive-page .landing-value-strip__row {
  display: flex;
  align-items: center;
  gap: 40px;
  width: fit-content;
  margin: 0 auto;
  text-align: left;
}

.immersive-page .landing-value-strip__logo {
  width: 130px;
  height: auto;
  flex-shrink: 0;
}

.immersive-page .landing-value-strip__text {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 680px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.immersive-page .landing-value-strip .landing-hero__cta {
  display: inline-block;
  margin-top: 32px;
  background: #fff;
  color: #111214;
}

@media (max-width: 600px) {
  .immersive-page .landing-value-strip__row {
    flex-direction: column;
    gap: 20px;
  }
}

/* --- Immersive landing: sections --- */

.immersive-page .landing-section {
  padding: 80px 0;
  background: #f7f8fa;
}

.immersive-page .landing-section--dark {
  background: #111214;
  color: #fff;
}

.immersive-page .landing-section--dark .landing-h2 {
  color: #fff;
}

.immersive-page .landing-section--dark .landing-body {
  color: rgba(255, 255, 255, 0.75);
}

.immersive-page .landing-section--alt {
  background: #fff;
}

.landing-h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  text-wrap: balance;
}

.landing-body {
  font-size: 18px;
  color: #444;
  max-width: 760px;
  line-height: 1.7;
}

/* --- Immersive landing: pill lists --- */

.landing-pills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.landing-pills li {
  padding: 14px 24px;
  background: #f0f1f4;
  border: 1px solid #e2e4e8;
  border-radius: 50px;
  font-size: 16px;
  color: #333;
}

.landing-section--alt .landing-pills li {
  background: #f7f8fa;
  border-color: #d4d5da;
}

/* --- Immersive landing: platform --- */

.landing-platform {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.landing-platform__media {
  display: block;
  border-radius: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #eceef3, #dfe4ee);
}

.landing-platform__media img {
  display: block;
  width: 100%;
  height: auto;
}

.landing-platform__video {
  display: block;
  width: 100%;
  height: auto;
}

/* --- Immersive landing: quote --- */

.landing-quote {
  text-align: center;
  background: #111214 !important;
  color: #fff;
}

.landing-blockquote {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 16px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.landing-cite {
  font-style: normal;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}

.landing-quote__link {
  display: inline-block;
  margin-top: 24px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.landing-quote__link:hover {
  color: #fff;
  border-color: #fff;
}

/* --- Immersive landing: pricing --- */

.landing-pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.landing-pricing-card {
  background: #fff;
  border: 1px solid #d0d0d4;
  border-radius: 12px;
  padding: 32px 24px;
}

.landing-section--alt .landing-pricing-card {
  background: #f7f8fa;
}

.landing-pricing-card h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
  color: #555;
}

.landing-pricing-card__price {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 8px;
}

.landing-pricing-card__price span {
  font-size: 16px;
  color: #555;
}

.landing-pricing-card__detail {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.landing-pricing-card__row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
}

.landing-pricing-card__row:last-child {
  border-bottom: none;
}

.landing-extras {
  margin-top: 40px;
}

.landing-extras h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 4px;
}

/* --- Immersive landing: form --- */

.landing-form-section {
  background: #f7f8fa !important;
  color: #111214;
}

.landing-form-section .landing-h2 {
  color: #111214;
}

.landing-form-intro {
  color: #666;
  margin-bottom: 32px;
}

.landing-form-section .contact-form__field label {
  color: #555;
}

.landing-form-section .contact-form__optional {
  color: #999;
}

.landing-form-section .contact-form__field input,
.landing-form-section .contact-form__field textarea {
  background: #fff;
  border-color: #ddd;
  color: #111214;
}

.landing-form-section .contact-form__field input:focus,
.landing-form-section .contact-form__field textarea:focus {
  border-color: #888;
  box-shadow: none;
}

.landing-form-section .contact-form__field input::placeholder,
.landing-form-section .contact-form__field textarea::placeholder {
  color: #aaa;
}

.landing-form-section .btn {
  background: #111214;
  color: #fff;
}

.landing-form-section .btn:hover {
  background: #333;
}

.cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ===== Showcase Solutions page ===== */

body.showcase-page {
  background: #f7f8fa;
}

.showcase-page .section {
  border: none;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
}

.showcase-page .landing-section {
  padding: 80px 0;
  background: #f7f8fa;
}

.showcase-page .landing-section--alt {
  background: #fff;
}

.showcase-page .landing-value-strip {
  background: #111214;
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  margin-bottom: 0;
}

.showcase-page .landing-value-strip__text {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  line-height: 1.5;
  max-width: 1020px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.9);
}

.showcase-page .landing-value-strip .landing-hero__cta {
  display: inline-block;
  background: #fff;
  color: #111214;
}

.showcase-hero-endcard {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s ease;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-right: 5%;
}

.showcase-hero-endcard.visible {
  opacity: 1;
  pointer-events: auto;
}

@media (prefers-reduced-motion: reduce) {
  .showcase-hero-endcard {
    transition: none;
  }
}

.showcase-hero-endcard h1 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 500;
  max-width: 420px;
  text-wrap: balance;
}

.showcase-hero-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 32px;
}

.showcase-hero-logos__item {
  height: 48px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

/* --- Showcase: product cards --- */

.showcase-product-section {
  padding: 0;
  background: #fff;
}


.showcase-product-header {
  margin-bottom: 20px;
  text-align: left;
}

.showcase-product-header__logo {
  height: 80px;
  width: auto;
  display: inline-block;
  margin-top: 36px;
  margin-bottom: 12px;
  margin-left: -2px;
}

.showcase-product-header__logo--robo {
  height: 100px;
}

.showcase-product-header__title {
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 400;
  color: #333;
  line-height: 1.3;
  white-space: nowrap;
  margin-bottom: 8px;
  text-wrap: balance;
}

.showcase-diagonal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 0;
}

.showcase-diagonal__cubox-media {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

.showcase-diagonal__cubox-copy {
  grid-column: 2;
  grid-row: 1;
  padding: 20px 0 0 60px;
}

.showcase-diagonal__robo-copy {
  grid-column: 1;
  grid-row: 2;
  padding: 20px 60px 0 0;
}

.showcase-diagonal__robo-media {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
}

.showcase-diagonal__cubox-media video,
.showcase-diagonal__robo-media video {
  width: 100%;
  height: auto;
  display: block;
}

.showcase-diagonal__cubox-copy p,
.showcase-diagonal__robo-copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 20px;
}

.showcase-diagonal__cubox-copy .landing-pills,
.showcase-diagonal__robo-copy .landing-pills {
  justify-content: flex-start;
}

.showcase-product-feature__heading {
  padding-top: 24px;
  font-size: 20px;
  font-weight: 500;
  color: #111214;
  margin-bottom: 12px;
}


.showcase-product-feature__copy p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 28px;
}

.showcase-inline-pricing {
  margin-top: 16px;
  background: #f7f8fa;
  border-radius: 8px;
  padding: 20px;
}

.showcase-inline-pricing .showcase-pricing-note {
  font-size: 14px;
  color: #aaa;
  margin: 6px 0 0;
  line-height: 1.4;
}

.showcase-inline-pricing h4 {
  font-size: 18px;
  font-weight: 500;
  color: #333;
  margin-bottom: 16px;
}

.showcase-inline-pricing dl {
  margin: 0;
}

.showcase-inline-pricing dl div {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}

.showcase-inline-pricing dl div + div {
  border-top: 1px solid #e8e8e8;
}

.showcase-inline-pricing dt {
  font-size: 18px;
  color: #333;
  font-weight: 300;
}

.showcase-inline-pricing dd {
  font-size: 18px;
  font-weight: 300;
  color: #333;
  margin: 0;
}

.showcase-product-feature__copy .landing-pills {
  justify-content: flex-start;
}

/* --- Showcase: pricing groups --- */

.showcase-pricing-group {
  margin-bottom: 48px;
}

.showcase-pricing-group__header {
  margin-bottom: 24px;
  text-align: center;
}

.showcase-pricing-group__logo {
  height: 40px;
  width: auto;
}

/* --- Showcase: form (light bg, same as immersive) --- */

.showcase-page .landing-form-section {
  background: #f7f8fa !important;
  color: #111214;
}

.showcase-page .landing-form-section .landing-h2 {
  color: #111214;
}

.showcase-page .landing-form-section .contact-form__field label {
  color: #555;
}

.showcase-page .landing-form-section .contact-form__optional {
  color: #999;
}

.showcase-page .landing-form-section .contact-form__field input,
.showcase-page .landing-form-section .contact-form__field textarea {
  background: #fff;
  border-color: #ddd;
  color: #111214;
}

.showcase-page .landing-form-section .contact-form__field input:focus,
.showcase-page .landing-form-section .contact-form__field textarea:focus {
  border-color: #888;
  box-shadow: none;
}

.showcase-page .landing-form-section .contact-form__field input::placeholder,
.showcase-page .landing-form-section .contact-form__field textarea::placeholder {
  color: #aaa;
}

.showcase-page .landing-form-section .btn {
  background: #111214;
  color: #fff;
}

.showcase-page .landing-form-section .btn:hover {
  background: #333;
}

.showcase-page .landing-quote {
  background: #111214 !important;
  color: #fff;
}

/* ===== Creative Works page ===== */

body.creative-page {
  background: #fff;
}

.creative-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.creative-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
}

.creative-page .home-hero-stage picture {
  display: block;
  width: 100%;
  height: 100%;
}

.creative-page .home-hero-stage .video-placeholder {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: rgba(17, 18, 20, 0.4);
  color: rgba(255, 255, 255, 0.82);
}

.creative-page .creative-headline {
  background: #fff;
  padding: 64px 0 16px;
}

.creative-page .creative-headline--dark {
  background: #111214;
  color: #fff;
  padding: 80px 0 24px;
  margin-bottom: 0;
}

.creative-page .creative-headline h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
  text-wrap: balance;
}

.creative-page .creative-headline--dark h1 {
  color: #fff;
}

.creative-page .creative-headline__sub {
  font-size: 22px;
  color: #444;
  margin-top: 20px;
  margin-bottom: 48px;
  max-width: 620px;
}

.creative-page .creative-headline--dark .creative-headline__sub {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
  max-width: none;
}

.creative-page .creative-showcases {
  background: #fff;
  padding: 48px 0 0;
}

.creative-page .creative-showcases--dark {
  background: #111214;
  padding: 0;
  margin-bottom: 0;
}

.creative-showcases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.creative-showcase-card {
  display: block;
  color: inherit;
  text-decoration: none;
  position: relative;
  background: #1a1c20;
  overflow: hidden;
}

.creative-showcase-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  position: relative;
}

.creative-showcase-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.creative-showcase-card--game .creative-showcase-card__image {
  background: linear-gradient(160deg, #3a3550 0%, #2a2540 50%, #1e1a30 100%);
}

.creative-showcase-card--book .creative-showcase-card__image {
  background: linear-gradient(160deg, #3d3a30 0%, #2e2b22 50%, #1f1d18 100%);
}

.creative-showcase-card--film .creative-showcase-card__image {
  background: linear-gradient(160deg, #1a2a3e 0%, #152238 50%, #0f1a2e 100%);
}

.creative-showcase-card__body {
  padding: 24px 24px 28px;
}

.creative-showcase-card__body h2 {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 10px;
}

.creative-showcase-card__body p {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.creative-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

/* ===== Project / Case Study pages ===== */

body.project-page {
  background: #fff;
}

.project-page .home-hero {
  background: transparent;
  padding: 0;
  min-height: 0;
}

.project-page .home-hero-stage {
  aspect-ratio: auto;
  min-height: 0;
}

.project-page .home-hero-stage video.hero-video {
  position: static;
}

.project-page .home-hero-stage .video-placeholder {
  min-height: 280px;
}

.project-header {
  background: #fff;
  padding: 80px 0 12px;
  text-align: center;
}

.project-header .project-meta {
  margin-bottom: 48px;
}

.project-back {
  font-size: 14px;
  margin-bottom: 24px;
}

.project-back a {
  color: #586170;
  text-decoration: none;
}

.project-back a:hover {
  color: #111214;
}

.project-header h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  text-wrap: balance;
}

.project-header .project-meta {
  color: #586170;
  font-size: 16px;
  font-weight: 500;
}

.project-content {
  background: #fff;
  padding: 64px 0;
}

.project-content h2 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}

.project-content p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 24px;
}

.project-award-laurel {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px 0;
}

.project-award-laurel img {
  max-width: 190px;
  height: auto;
}

.project-awards {
  list-style: none;
  padding: 0;
  margin: 32px 0 40px;
}

.project-awards li {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  padding: 12px 0;
  border-bottom: 1px solid #e8e8e8;
}

.project-awards li:first-child {
  border-top: 1px solid #e8e8e8;
}

.project-awards li strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #111214;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.project-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 48px 0;
}

.project-gallery__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  overflow: hidden;
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

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

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

.project-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 32px 0 48px;
}

.project-specs__card {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
  text-align: center;
}

.project-specs__value {
  font-size: 24px;
  font-weight: 700;
  color: #00acff;
  display: block;
  margin-bottom: 6px;
}

.project-specs__label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.project-designer-band {
  background: #f7f8fa;
  padding: 80px 0;
}

.project-designer-band .designer-profile {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 40px;
}

.project-designer-band .designer-profile__portrait {
  width: 320px;
  height: 320px;
  border-radius: 0;
  display: flex;
  overflow: hidden;
}

.project-designer-band .designer-profile__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 13px;
  text-align: center;
  padding: 16px;
}

.project-designer-band .designer-profile__info h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 4px;
}

.project-designer-band .designer-profile__role {
  font-size: 14px;
  color: #00acff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.project-designer-band .designer-profile__info p {
  font-size: 17px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 16px;
}

.project-designer-band .quote-block {
  border-left: 4px solid #00acff;
  padding-left: 24px;
  margin: 40px 0;
  font-size: 24px;
  font-style: italic;
  color: #111214;
  line-height: 1.5;
}

.project-designer-band p {
  font-size: 18px;
  line-height: 1.65;
  color: #333;
  margin-bottom: 24px;
}

.project-image {
  width: 100%;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 32px;
  overflow: hidden;
}

.project-image img {
  max-width: 360px;
  height: auto;
  display: block;
  margin: 0 auto;
  padding: 24px;
  box-sizing: border-box;
}

.project-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

.project-full-bleed {
  padding: 48px 0;
}

.project-full-bleed__gallery {
  display: flex;
  width: 100%;
  gap: 0;
}

.project-full-bleed__gallery img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.project-full-bleed__gallery--two img {
  width: 50%;
}

.project-full-bleed__gallery--three img {
  width: 33.333%;
}

.project-cta-button {
  margin: 32px 0 48px;
  text-align: center;
}

@media (max-width: 768px) {
  .project-cta-button {
    margin: 24px 0 32px;
  }
}

.project-pull-quote {
  border-left: 4px solid #00acff;
  padding-left: 24px;
  margin: 40px 0;
  font-size: 24px;
  font-style: italic;
  color: #111214;
  line-height: 1.5;
}

/* ===== Rich text prose (case-study rich_text block) ===== */

.project-prose h1 {
  font-size: 36px;
  font-weight: 400;
  line-height: 1.15;
  margin: 40px 0 16px;
}

.project-prose h3 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 32px 0 12px;
}

.project-prose h4 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  margin: 24px 0 8px;
}

.project-prose h5,
.project-prose h6 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #586170;
  margin: 20px 0 8px;
}

.project-prose ul,
.project-prose ol {
  padding-left: 24px;
  margin: 0 0 24px;
  color: #333;
  font-size: 18px;
  line-height: 1.65;
}

.project-prose li {
  margin-bottom: 8px;
}

.project-prose blockquote {
  border-left: 4px solid #00acff;
  padding-left: 24px;
  margin: 32px 0;
  font-style: italic;
  color: #111214;
}

.project-prose img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 24px auto;
}

.project-prose a {
  color: #00acff;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.project-prose a:hover {
  color: #0090d8;
}

/* ===== Booking Page ===== */

body.booking-page {
  background: #fff;
}

.booking-page .booking-hero {
  background: #fff;
  padding: 80px 0 24px;
}

.booking-page .booking-hero h1 {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.05;
}

.booking-page .booking-hero__sub {
  font-size: 18px;
  color: #444;
  margin-top: 20px;
  max-width: 560px;
}

.booking-page .booking-form-section {
  background: #fff;
  padding: 40px 0 64px;
}

.booking-form {
  max-width: 560px;
}

.booking-form__field {
  margin-bottom: 24px;
}

.booking-form__field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111214;
}

.booking-form__field input {
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid #d0d6e2;
  border-radius: 10px;
  background: #f7f8fa;
  color: #111214;
  transition: border-color 150ms ease;
}

.booking-form__field input:focus {
  outline: none;
  border-color: #00acff;
  background: #fff;
}

.booking-form__field input::placeholder {
  color: #8a94a6;
}

.booking-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form__note {
  margin-bottom: 28px;
  padding: 16px 20px;
  background: #f7f8fa;
  border-radius: 10px;
  border-left: 3px solid #00acff;
}

.booking-form__note p {
  font-size: 15px;
  color: #586170;
  margin: 0;
  line-height: 1.55;
}

.booking-form__submit {
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 18px;
}

.booking-form__pricing-link {
  margin-top: 20px;
  font-size: 15px;
  color: #586170;
}

.booking-form__pricing-link a {
  color: #00acff;
  text-decoration: none;
}

.booking-form__pricing-link a:hover {
  text-decoration: underline;
}

.booking-page .booking-international {
  background: #f7f8fa;
  padding: 64px 0;
  text-align: center;
}

.booking-page .booking-international h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 12px;
}

.booking-page .booking-international p {
  color: #444;
  font-size: 18px;
  margin-bottom: 24px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.booking-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

/* ===== Pricing Page ===== */

body.pricing-page {
  background: #fff;
}

.pricing-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.pricing-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
}

.pricing-page .home-hero-stage .video-placeholder {
  position: static;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: rgba(17, 18, 20, 0.4);
  color: rgba(255, 255, 255, 0.82);
}

.pricing-page .pricing-hero {
  background: #fff;
  padding: 64px 0 16px;
}

.pricing-page .pricing-hero h1 {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.05;
}

.pricing-page .pricing-hero__sub {
  font-size: 18px;
  color: #444;
  margin-top: 20px;
  max-width: none;
}

.pricing-page .pricing-rates {
  background: #fff;
  padding: 48px 0;
}

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pricing-cards--three {
  grid-template-columns: 1fr 1fr 1fr;
}

.pricing-card {
  padding: 36px 32px;
  background: #f7f8fa;
  border-radius: 16px;
}

.pricing-card--highlight {
  background: #111214;
  color: #fff;
  display: flex;
  flex-direction: column;
}

.pricing-card__step {
  display: block;
  font-size: 48px;
  font-weight: 300;
  line-height: 1;
  color: #d0d6e2;
  margin-bottom: 20px;
}

.pricing-card--highlight .pricing-card__step {
  color: rgba(255, 255, 255, 0.2);
}

.pricing-card h2 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 16px;
}

.pricing-card__price {
  font-size: 44px;
  font-weight: 400;
  line-height: 1.1;
}

.pricing-card__price span {
  font-size: 18px;
  font-weight: 400;
  color: #586170;
}

.pricing-card--highlight .pricing-card__price span {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-card__detail {
  margin-top: 16px;
  font-size: 15px;
  color: #586170;
  line-height: 1.6;
}

.pricing-card__detail--light {
  color: rgba(255, 255, 255, 0.5);
  margin-top: auto;
  padding-top: 24px;
}

.pricing-card__transport {
  display: flex;
  flex-direction: column;
}

.pricing-card__transport-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e4ea;
  font-size: 16px;
  color: #444;
}

.pricing-card__transport-row:last-child {
  border-bottom: none;
}

.pricing-card__transport-row span:last-child {
  font-weight: 600;
}

.pricing-card__transport-free {
  color: #1bad5a;
}

.pricing-card__transport-row--contact a {
  color: #00acff;
  text-decoration: none;
  font-weight: 600;
}

.pricing-card__transport-row--contact a:hover {
  text-decoration: underline;
}


.pricing-page .pricing-included {
  background: #f7f8fa;
  padding: 64px 0;
}

.pricing-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.pricing-column h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 24px;
}

.pricing-column ul {
  list-style: none;
  padding: 0;
}

.pricing-column li {
  padding: 10px 0;
  border-bottom: 1px solid #e0e4ea;
  color: #444;
  font-size: 17px;
}

.pricing-column li:last-child {
  border-bottom: none;
}

.pricing-page .pricing-faq {
  background: #fff;
  padding: 64px 0;
}

.pricing-page .pricing-faq h2 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 36px;
}

.pricing-faq__item {
  margin-bottom: 32px;
  max-width: 640px;
}

.pricing-faq__item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-faq__item p {
  color: #444;
  font-size: 17px;
  line-height: 1.6;
}

.pricing-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

/* ===== Contact page ===== */

body.contact-page {
  background: #fff;
}

.contact-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
}

.contact-page .home-hero-stage picture {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-page .contact-headline {
  text-align: center;
  padding: 64px 0 40px;
}

.contact-headline h1 {
  font-size: 52px;
  font-weight: 700;
  line-height: 1.15;
  text-wrap: balance;
}

.contact-page .contact-form-section {
  padding: 0 0 100px;
  border: none;
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-form__field label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111214;
}

.contact-form__optional {
  font-weight: 400;
  color: #8a919c;
}

.contact-form__field input,
.contact-form__field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 17px;
  line-height: 1.5;
  color: #111214;
  background: #f7f8fa;
  border: 1.5px solid #dfe1e6;
  border-radius: 4px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.contact-form__field input:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: #00acff;
  box-shadow: 0 0 0 3px rgba(0, 172, 255, 0.15);
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact-form__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.contact-form__actions {
  padding-top: 16px;
  text-align: center;
}

.contact-form__actions .btn {
  cursor: pointer;
  font-family: inherit;
  padding: 18px 64px;
  font-size: 20px;
}

@media (max-width: 768px) {

  .contact-page .home-hero-stage {
    aspect-ratio: 4/3;
    min-height: 0;
  }

  .contact-page .contact-headline {
    padding: 48px 0 24px;
  }

  .contact-headline h1 {
    font-size: 36px;
  }

  .contact-page .contact-form-section {
    padding: 0 0 72px;
  }
}

@media (max-width: 768px) {
  .booking-page .booking-hero h1,
  .pricing-page .pricing-hero h1 {
    font-size: 38px;
  }

  .booking-form__row {
    grid-template-columns: 1fr;
  }

  .pricing-cards,
  .pricing-cards--three {
    grid-template-columns: 1fr;
  }

  .pricing-card__price {
    font-size: 36px;
  }

  .pricing-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 12px;
  }

  .pricing-page .home-hero-stage,
  .pricing-page .home-hero-stage .video-placeholder {
    min-height: 220px;
  }

}

/* ===== About Page ===== */

body.about-page {
  background: #fff;
}

.about-page .home-hero {
  min-height: auto;
  background: transparent;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
}

.about-page .home-hero-stage {
  aspect-ratio: 4/1;
  min-height: 180px;
}

.about-page .home-hero-stage picture {
  display: block;
  width: 100%;
  height: 100%;
}

.about-page .about-body {
  background: #fff;
  padding: 64px 0 48px;
}

.about-page .about-headline__title {
  font-size: 52px;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 32px;
  text-wrap: balance;
}

.about-page .about-body h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 48px;
  margin-bottom: 16px;
}

.about-page .about-body p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 32px;
}

.about-page .about-body p:last-child {
  margin-bottom: 0;
}

.about-page .about-location {
  margin-top: 0;
}

.about-page .home-cta-band {
  margin-top: 0;
  padding: 56px 0;
  text-align: center;
}

@media (max-width: 768px) {
  .about-page .about-headline__title {
    font-size: 38px;
  }

  .about-page .about-body {
    padding: 48px 0 40px;
  }

  .about-page .about-body h2 {
    font-size: 24px;
  }

  .about-page .home-hero-stage {
    aspect-ratio: 4/3;
    min-height: 0;
  }
}

@media (max-width: 400px) {
  .about-page .about-headline__title {
    font-size: 30px;
  }
}

/* ===== Legal Pages ===== */

.legal-hero {
  min-height: 34vh;
}

.legal-meta {
  margin-top: 16px;
  font-size: 14px;
  color: #586170;
}

.legal-content {
  max-width: 860px;
  margin: 0 auto 40px;
}

.legal-content h2 {
  font-size: 28px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 16px;
}

.legal-content h3 {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.3;
  margin: 28px 0 12px;
}

.legal-content p,
.legal-content ul,
.legal-content ol,
.legal-content table {
  margin-bottom: 16px;
  color: #333;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: #444;
}

.legal-content a {
  color: #00acff;
  text-decoration: none;
}

.legal-content a:hover {
  text-decoration: underline;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.legal-content th,
.legal-content td {
  padding: 12px;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: top;
}

.legal-content th {
  background: #f7f8fa;
  font-weight: 600;
}

.legal-note {
  margin: 24px 0;
  padding: 20px;
  background: #f7f8fa;
  border-left: 4px solid #00acff;
  border-radius: 8px;
  color: #333;
}

/* ===== Legal Pages — mobile polish ===== */

.legal-page .legal-content {
  padding-left: 20px;
  padding-right: 20px;
}

.legal-page .legal-hero .hero-content {
  padding-left: 20px;
  padding-right: 20px;
}

.legal-page .legal-content h2 {
  text-wrap: balance;
}

.legal-page .legal-hero h1 {
  text-wrap: balance;
}

.legal-page .legal-content a,
.legal-page .legal-content code {
  overflow-wrap: anywhere;
}

.legal-page .legal-content code {
  font-size: 0.95em;
}

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .product-grid,
  .case-grid,
  .two-col,
  .team-layout,
  .service-visuals__grid--three-col,
  .service-visuals__grid--feature-left,
  .service-visuals__grid--feature-top,
  .service-visuals__grid--split-band,
  .services-flow__grid,
  .creative-gallery--three-col,
  .creative-gallery--mixed,
  .creative-gallery--stacked,
  .creative-copy-grid,
  .team-layout__photo-row,
  .footer {
    grid-template-columns: 1fr;
  }

  .team-layout__visuals--single {
    max-width: none;
    justify-self: stretch;
  }

  .service-visuals__item--span-rows,
  .service-visuals__item--span-cols,
  .service-card--image-wide,
  .service-card--image-tall,
  .creative-placeholder--wide {
    grid-row: auto;
    grid-column: auto;
    min-height: 240px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .content-wrap,
  .home-hero .hero-content {
    padding: 0 20px;
  }

  .home-logo {
    top: calc(10px + env(safe-area-inset-top));
    left: calc(10px + env(safe-area-inset-left));
    width: 64px;
    height: 64px;
  }

  .home-hamburger {
    top: calc(10px + env(safe-area-inset-top));
    right: calc(10px + env(safe-area-inset-right));
  }

  .home-hamburger__panel {
    min-width: 220px;
    padding: 20px;
  }

  .content-wrap--wide {
    padding: 0 20px;
  }

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

  .home-footer .content-wrap--footer {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .home-footer__brand {
    align-items: flex-start;
  }

  .home-hero {
    min-height: 56vh;
  }

  .home-hero h1,
  .home-section__header h2 {
    font-size: 38px;
  }

  .home-hero-stage,
  .home-page .home-hero-stage .video-placeholder,
  .services-page .home-hero-stage {
    min-height: 220px;
  }

  .home-page:not(.project-page) .home-hero-stage {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .project-page .home-hero-stage {
    min-height: 0;
  }

  .project-page .home-hero-stage .video-placeholder {
    min-height: 0;
  }

  .hero-controls-bar {
    gap: 10px;
    padding: 12px 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, transparent 100%);
  }

  .hero-controls-bar__arrow {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .hero-dot {
    width: 24px;
    height: 24px;
    background: transparent;
    display: grid;
    place-items: center;
  }

  .hero-dot::before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.35);
    transition: background 200ms ease;
  }

  .hero-dot.active::before {
    background: #fff;
  }

  .hero-dot:hover::before {
    background: rgba(255, 255, 255, 0.6);
  }

  .hero-dot.active:hover::before {
    background: #fff;
  }

  .home-hamburger__panel a {
    padding: 10px 0;
  }

  .home-footer__group a {
    padding: 8px 0;
    margin-bottom: 4px;
  }

  .page--full-bleed .home-hero-statement {
    margin-top: 0;
    padding: 48px 0 38px;
  }

  .home-hero-statement h1 {
    font-size: 42px;
  }

  .services-page .services-headline h1 {
    font-size: 42px;
  }

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

  .home-showcase,
  .home-cta-band {
    padding: 64px 0;
  }

  .page--full-bleed .home-intro {
    padding: 0 0 36px;
  }

  .home-page .home-intro .intro-lines {
    margin: 10px auto 24px;
  }

  .home-intro__actions {
    flex-direction: column;
    gap: 12px;
  }

  .home-load-more__button {
    min-width: min(220px, 100%);
  }

  .home-showcase {
    margin-top: 0;
    padding: 48px 0;
  }

  .services-page .home-services {
    margin-top: 0;
    padding: 40px 0 40px;
  }

  .home-load-more {
    margin-top: 38px;
  }

  .home-cta-band {
    margin-top: 32px;
    padding: 68px 0;
  }

  .services-page .home-cta-band {
    margin-top: 0;
    padding: 40px 0;
  }

  .home-footer {
    margin-top: 28px;
    padding: 36px 0 calc(52px + env(safe-area-inset-bottom));
  }

  .services-page .home-footer {
    margin-top: 0;
    padding: 40px 0 52px;
  }

  .home-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
  }

  .home-footer__nav .home-footer__group:nth-child(1) { grid-column: 1; grid-row: 1; }
  .home-footer__nav .home-footer__group:nth-child(3) { grid-column: 2; grid-row: 1; }
  .home-footer__nav .home-footer__group:nth-child(2) { grid-column: 1 / -1; grid-row: 2; }

  .home-page .case-card__media {
    aspect-ratio: 1 / 1;
  }

  .services-page .services-pillar__media .image-box {
    aspect-ratio: 1200 / 698;
  }

  .services-page .services-pillar--wide .services-pillar__media .image-box {
    aspect-ratio: 1200 / 698;
  }

  .services-page .services-pillar--wide:first-child { margin-bottom: 0; }
  .services-page .services-pillar--wide:last-child  { margin-top: 0; }

  .services-page .services-headline__byline {
    font-size: 17px;
  }

  .services-page .services-pillars {
    grid-template-columns: 1fr;
    row-gap: 56px;
  }

  .services-page .services-pillar__intro {
    padding: 0 20px 20px;
  }


  .home-page .case-card__overlay {
    opacity: 1;
    padding: 20px;
    background: linear-gradient(180deg, rgba(17, 18, 20, 0.1) 0%, rgba(17, 18, 20, 0.88) 100%);
  }

  .home-page .case-card .case-card__overlay p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .project-prose h1 { font-size: 30px; }
  .project-prose h3 { font-size: 20px; }
  .project-prose ul,
  .project-prose ol { font-size: 17px; }

  .legal-content h2 {
    font-size: 24px;
  }

  .legal-content h3 {
    font-size: 20px;
  }

  .legal-content table {
    display: block;
    overflow-x: auto;
  }

  .legal-page .legal-hero h1 {
    font-size: 32px;
  }

  .legal-page .legal-content table {
    box-shadow: inset -12px 0 12px -12px rgba(0, 0, 0, 0.18);
  }

  .comms-page .home-hero-stage {
    aspect-ratio: 4/3;
  }

  .comms-page .comms-headline h1 {
    font-size: 42px;
  }

  .comms-page .comms-team__banner {
    grid-template-columns: 1fr;
  }

  .comms-page .comms-team__img {
    aspect-ratio: 3/2;
    min-height: 0;
  }

  .comms-page .comms-team__text {
    padding: 32px;
  }

  .comms-page .comms-team__text h2 {
    font-size: 24px;
  }

  .comms-page .comms-mosaic__grid {
    grid-template-columns: 1fr;
  }

  .comms-page .comms-mosaic__img {
    aspect-ratio: 3/2;
    min-height: 0;
  }

  .comms-page .comms-mosaic {
    padding: 40px 0 48px;
  }

  .comms-page .comms-statement {
    padding: 48px 0;
  }

  .landing-platform {
    grid-template-columns: 1fr;
  }

  .landing-pricing-cards {
    grid-template-columns: 1fr;
  }

  .immersive-page .landing-section {
    padding: 56px 0;
  }

  .immersive-page .landing-pricing-card__row {
    gap: 12px;
    flex-wrap: wrap;
  }

  .creative-page .home-hero-stage {
    aspect-ratio: 4/3;
  }

  .creative-page .creative-headline h1 {
    font-size: 42px;
  }

  .creative-page .creative-headline__sub {
    font-size: 18px;
  }

  .creative-showcases__grid {
    grid-template-columns: 1fr;
  }

  .creative-showcase-card__image {
    aspect-ratio: 1 / 1;
  }

  .project-header h1 {
    font-size: 36px;
  }

  .content-wrap--reading {
    max-width: none;
  }

  /* On mobile, ignore the per-block "Video Max Width" cap so embedded
     videos (Vimeo/YouTube) fill the available width. Desktop is
     unaffected and still respects the admin-set max-width. */
  .video-embed__bounded {
    max-width: 100% !important;
  }

  .project-gallery {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .project-gallery__item {
    min-height: 0;
  }

  .project-gallery__item img {
    height: auto;
  }

  .project-page .home-hero-stage video.hero-video,
  .project-page .home-hero-stage img {
    max-height: 90vh;
  }

  .project-designer-band .quote-block {
    font-size: 20px;
    margin: 24px 0;
    padding-left: 20px;
  }

  .project-specs {
    grid-template-columns: repeat(2, 1fr);
  }

  .project-designer-band .designer-profile {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .project-designer-band .designer-profile__info {
    text-align: left;
  }

  .project-designer-band {
    padding: 48px 0;
  }

  .project-content {
    padding: 40px 0;
  }

  .project-header {
    padding: 48px 0 8px;
  }

  .project-header .project-meta {
    margin-bottom: 32px;
  }

  .project-award-laurel {
    gap: 20px;
  }

  .project-award-laurel img {
    max-width: 140px;
  }

  .project-full-bleed {
    padding: 24px 0;
  }

  .project-full-bleed__gallery {
    flex-direction: column;
  }

  .project-full-bleed__gallery--two img,
  .project-full-bleed__gallery--three img {
    width: 100%;
  }

  .project-designer-band .designer-profile__portrait {
    width: 100%;
    max-width: 320px;
    height: auto;
    aspect-ratio: 1;
  }

  .project-pull-quote {
    font-size: 20px;
    padding-left: 20px;
    margin: 28px 0;
  }
}

@media (max-width: 1100px) and (min-width: 769px) {
  .home-hero-stage,
  .home-page .home-hero-stage .video-placeholder,
  .services-page .home-hero-stage {
    min-height: 280px;
  }

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

  .home-page .case-card__media {
    aspect-ratio: 1 / 1;
  }

  .services-page .services-pillar__media .image-box {
    aspect-ratio: 1200 / 698;
  }

  .home-footer .content-wrap--footer {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .home-footer__nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .project-header h1 {
    font-size: 44px;
  }
}

/* ===== Cookie Consent Banner ===== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: #111214;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  padding-bottom: env(safe-area-inset-bottom);
}

body.cookie-banner-active {
  padding-bottom: 180px;
}

@media (min-width: 601px) {
  body.cookie-banner-active {
    padding-bottom: 96px;
  }
}

.cookie-banner--hidden {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.cookie-banner--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.cookie-banner--hiding {
  transform: translateY(100%);
  opacity: 0;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 20px;
  padding-bottom: 20px;
}

.cookie-banner__text {
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
}

.cookie-banner__text a {
  color: #00acff;
  text-decoration: underline;
}

.cookie-banner__text a:hover {
  color: #fff;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__btn {
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 999px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__btn--outline {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-banner__btn--outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
}

@media (max-width: 400px) {
  .home-hero-statement h1 {
    font-size: 34px;
  }

  .project-header h1 {
    font-size: 30px;
  }

  .services-page .services-headline h1,
  .comms-page .comms-headline h1,
  .creative-page .creative-headline h1 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {
  .showcase-diagonal {
    grid-template-columns: 1fr;
    gap: 48px 0;
  }

  .showcase-diagonal__cubox-media { grid-column: 1; grid-row: 1; }
  .showcase-diagonal__cubox-copy  { grid-column: 1; grid-row: 2; padding: 0; }
  .showcase-diagonal__robo-media  { grid-column: 1; grid-row: 3; }
  .showcase-diagonal__robo-copy   { grid-column: 1; grid-row: 4; padding: 0; }

  .showcase-product-header__logo {
    height: 60px;
  }

  .showcase-hero-logos {
    gap: 24px;
  }

  .showcase-hero-logos__item {
    height: 36px;
  }

  .showcase-pricing-group__logo {
    height: 32px;
  }

  .showcase-hero-endcard {
    padding-right: 11%;
  }

  .showcase-hero-endcard h1 {
    font-size: 24px;
    max-width: 66vw;
  }

  .showcase-product-header__title {
    white-space: normal;
  }

  .showcase-page .landing-section {
    padding: 56px 0;
  }

  .showcase-inline-pricing dl div {
    gap: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .cookie-banner__actions {
    justify-content: stretch;
  }

  .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}
