/* Mango Monks — grid-forward, whitespace-heavy, conversion-minded */

:root {
  --orange: #f26430;
  --orange-dark: #d44f1f;
  --navy: #0c2f33;
  --navy-soft: #143a40;
  --cyan: #00b4d8;
  --cyan-muted: rgba(0, 180, 216, 0.12);
  --cream: #faf8f5;
  --white: #ffffff;
  --text: #0f2326;
  --muted: #4a5f63;
  --border: rgba(12, 47, 51, 0.12);
  --shadow: 0 20px 50px rgba(12, 47, 51, 0.08);
  --radius: 12px;
  --radius-lg: 20px;
  --font-display: "Manrope", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --container: min(1120px, calc(100% - 40px));
  --section-y: clamp(4.5rem, 10vw, 7.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--navy);
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--navy-soft);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.2s ease;
  overflow: visible;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(12, 47, 51, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  flex-wrap: nowrap;
}

@media (max-width: 879px) {
  .header-inner {
    gap: 0.65rem;
    align-items: center;
  }

  .header-inner .brand {
    min-width: 0;
    flex: 1 1 auto;
  }

  .header-inner .nav-toggle {
    flex-shrink: 0;
  }
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  flex: 0 1 auto;
  min-width: 0;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.brand-mark {
  height: 66px;
  width: auto;
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .brand-mark {
    height: 72px;
  }
}

.brand-meta {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.brand-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-kicker-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--orange) 22%, transparent);
  flex-shrink: 0;
}

.brand-lines {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-line-primary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(0.75rem, 1.9vw, 0.9375rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--navy);
  white-space: nowrap;
}

.brand-line-accent {
  color: var(--orange);
}

.brand-line-flair {
  display: none;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.1rem;
}

@media (min-width: 520px) {
  .brand-line-flair {
    display: flex;
  }
}

.brand-flair-chip {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  color: var(--white);
  background: linear-gradient(120deg, var(--orange) 0%, #ff6b35 45%, var(--cyan) 100%);
  background-size: 200% 100%;
  animation: brand-flair-shift 10s ease infinite;
}

.brand-flair-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  font-style: italic;
  color: var(--muted);
  background: linear-gradient(90deg, var(--navy-soft), var(--cyan));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-flair-shift 12s ease infinite;
}

@keyframes brand-flair-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@media (max-width: 400px) {
  .brand-kicker {
    display: none;
  }

  .brand-line-primary {
    white-space: normal;
  }
}

.nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-weight: 500;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--navy-soft);
}

.nav a:hover {
  color: var(--orange);
}

.nav-toggle {
  display: flex;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  position: relative;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bar::before {
  top: -6px;
}

.nav-toggle-bar::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-mobile {
  display: flex;
  flex-direction: column;
  width: 100%;
  box-sizing: border-box;
  padding: 0;
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.nav-mobile[hidden] {
  display: none !important;
}

.nav-mobile.is-open {
  display: flex !important;
}

.nav-mobile__inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0 1.15rem;
  box-sizing: border-box;
}

.nav-mobile a {
  padding: 0.85rem 0;
  font-weight: 500;
  text-decoration: none;
  color: var(--navy);
  -webkit-tap-highlight-color: transparent;
}

.nav-mobile a:active {
  color: var(--orange);
}

.nav-mobile .btn {
  margin-top: 0.35rem;
  text-align: center;
  width: 100%;
}

@media (max-width: 879px) {
  body.nav-open {
    overflow: hidden;
  }
}

@media (min-width: 880px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile,
  .nav-mobile.is-open {
    display: none !important;
  }

  body.nav-open {
    overflow: unset;
    touch-action: unset;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease,
    color 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn--sm {
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
}

.btn--primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
}

/* Talk to a Monk — darker grey border (fill stays subtle / transparent) */
.btn--primary.btn--monk {
  --monk-border: #5a6366;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--monk-border);
  box-shadow: none;
  transition: transform 0.15s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn--primary.btn--monk:hover {
  background: rgba(12, 47, 51, 0.06);
  color: var(--navy);
  border-color: #6e787c;
  box-shadow: none;
}

.btn--primary.btn--monk:focus-visible {
  outline: 2px solid var(--navy-soft);
  outline-offset: 3px;
}

.btn--secondary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn--secondary:hover {
  background: var(--navy-soft);
  border-color: var(--navy-soft);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--navy);
}

.btn--on-dark {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn--on-dark:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--ghost-light:hover {
  border-color: var(--white);
}

/* Hero */

.hero {
  position: relative;
  padding: calc(var(--section-y) * 0.15) 0 calc(var(--section-y) * 0.85);
  overflow: hidden;
}

@media (min-width: 900px) {
  .hero {
    padding-top: 0;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 10%, var(--cyan-muted), transparent 45%),
    repeating-linear-gradient(
      90deg,
      rgba(12, 47, 51, 0.04) 0px,
      rgba(12, 47, 51, 0.04) 1px,
      transparent 1px,
      transparent 64px
    ),
    repeating-linear-gradient(
      rgba(12, 47, 51, 0.035) 0px,
      rgba(12, 47, 51, 0.035) 1px,
      transparent 1px,
      transparent 64px
    );
  mask-image: radial-gradient(ellipse 80% 70% at 70% 30%, black 20%, transparent 75%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.45fr 0.95fr;
  }
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.eyebrow--on-dark {
  color: rgba(255, 255, 255, 0.75);
}

.hero-title-wrap {
  display: flex;
  align-items: stretch;
  gap: clamp(0.65rem, 2vw, 1.1rem);
  margin-bottom: 1.25rem;
}

.hero-title-rule {
  width: 4px;
  flex-shrink: 0;
  border-radius: 2px;
  background: var(--orange);
  margin-top: 0.28em;
  margin-bottom: 0.15em;
}

.hero-title {
  font-size: clamp(2.15rem, 4.4vw, 3.35rem);
  font-weight: 600;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0;
  flex: 1;
  min-width: 0;
  color: #3d5052;
}

.hero-title-rotating {
  display: inline-block;
  vertical-align: baseline;
  max-width: 100%;
}

.hero-title-rotating__text.hero-title-accent {
  display: inline-block;
  transition: opacity 0.48s ease;
  max-width: 100%;
}

.hero-title-rotating__text.hero-title-accent.is-out {
  opacity: 0;
}

.hero-title .hero-title-accent {
  color: #ffac00;
}

@media (prefers-reduced-motion: reduce) {
  .hero-title-rotating__text.hero-title-accent {
    transition: none;
  }
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 38ch;
  margin-bottom: 1.75rem;
}

.hero-sub strong {
  color: var(--text);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero-rule {
  font-size: 0.9375rem;
  color: var(--muted);
  max-width: 44ch;
}

.subtle-humor {
  font-style: italic;
  color: var(--muted);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.hero-mascot {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: min(420px, 100%);
  margin-inline-start: auto;
}

.hero-mascot img {
  margin-inline-start: auto;
  margin-inline-end: 0;
  max-width: 100%;
  height: auto;
  display: block;
}

.mascot-caption {
  margin-top: 1.25rem;
  text-align: right;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.mascot-tag {
  display: block;
  font-size: 0.6875rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 0.35rem;
}

/* Metrics */

.metrics {
  padding: var(--section-y) 0;
  background: var(--white);
  border-block: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 860px) {
  .metrics-grid {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: start;
  }
}

.section-title {
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  margin: 0 0 1rem;
}

.section-title .section-title__soft {
  color: #6f8285;
  font-weight: inherit;
}

.section-lede {
  color: var(--muted);
  margin: 0 0 1rem;
  max-width: 52ch;
}

.text-link {
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}

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

.stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 560px) {
  .stat-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.stat {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--cream);
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  color: var(--orange);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9375rem;
  color: var(--muted);
}

/* Process — dark split + neon accent (reference layout) */

.process {
  --process-accent: #a3ff00;
  --process-bg: #000000;
  background: var(--process-bg);
  color: #fff;
  padding: var(--section-y) 0;
}

.process .section-head--process {
  max-width: 52rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.75rem);
}

.section-head {
  max-width: 720px;
  margin-bottom: 2.75rem;
}

.eyebrow--process {
  color: rgba(255, 255, 255, 0.48);
}

.section-title--process {
  color: #fff;
}

.process .section-title--process .section-title__soft {
  color: rgba(255, 255, 255, 0.42);
}

.section-lede--process {
  color: rgba(255, 255, 255, 0.62);
  max-width: 52ch;
}

.process-split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .process-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
  }
}

.process-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.process-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.65rem 0.85rem 0.65rem 0.95rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 3vw, 3.35rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.process-tab:hover {
  color: rgba(255, 255, 255, 0.68);
}

.process-tab[aria-selected="true"] {
  background: var(--process-accent);
  color: #0a0a0a;
}

.process-tab__arrow {
  flex-shrink: 0;
  font-size: 0.42em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.process-tab[aria-selected="true"] .process-tab__arrow {
  opacity: 1;
}

.process-tab:focus-visible {
  outline: 2px solid var(--process-accent);
  outline-offset: 3px;
}

.process-tab:focus-visible:not([aria-selected="true"]) {
  color: rgba(255, 255, 255, 0.85);
}

.process-panels {
  position: relative;
  min-height: 11rem;
}

.process-panel p {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1rem;
}

.process-panel__fade {
  -webkit-mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to bottom,
    #000 0%,
    #000 48%,
    rgba(0, 0, 0, 0.45) 72%,
    transparent 100%
  );
}

.process-mini--dark {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
}

.process-mini--dark li {
  margin-bottom: 0.35rem;
}

.process-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.75rem;
  padding: 0.75rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.process-cta:hover {
  border-color: var(--process-accent);
  color: var(--process-accent);
  background: rgba(163, 255, 0, 0.07);
}

.card-cta {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  color: var(--orange);
}

.card-cta:hover {
  text-decoration: underline;
}

/* Story */

.story {
  padding: var(--section-y) 0;
  background: var(--white);
  border-block: 1px solid var(--border);
}

.story-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3rem;
    align-items: start;
  }
}

.story-body {
  max-width: 58ch;
}

.story-body .btn {
  margin-top: 1.5rem;
}

.pullquote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.35;
  color: var(--navy);
  margin-bottom: 1.25rem;
}

.nowrap {
  white-space: nowrap;
}

/* Channels — dark + neon lime (same family as How we work) */

.channels-strip {
  --channels-accent: #a3ff00;
  background: #000;
  color: #fff;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.channels-strip__inner {
  display: grid;
  gap: 0;
  align-items: stretch;
  min-height: 0;
}

.channels-strip__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  min-height: 0;
  padding: var(--section-y) 0;
}

@media (min-width: 900px) {
  .channels-strip__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }

  .channels-strip__copy {
    padding: var(--section-y) clamp(1.5rem, 4vw, 2.5rem) var(--section-y) 0;
  }

  .channels-strip__figures {
    height: 100%;
    min-height: 100%;
  }
}

.eyebrow--channels {
  color: rgba(255, 255, 255, 0.48);
  margin-bottom: 1rem;
}

.channels-strip__title {
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 3.2vw, 2.65rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.94);
}

.channels-strip__title .channels-strip__line {
  display: block;
  margin-bottom: clamp(0.65rem, 2vw, 1.15rem);
}

.channels-strip__title .channels-strip__line:last-child {
  margin-bottom: 0;
}

.channels-strip__accent {
  color: var(--channels-accent);
}

.channels-strip__figures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
}

.channels-strip__figure {
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: #000;
  min-height: 0;
  height: 100%;
}

.channels-strip__figure img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 699px) {
  .channels-strip__figures {
    grid-template-columns: 1fr;
    min-height: clamp(14rem, 55vw, 22rem);
  }

  .channels-strip__figure {
    min-height: clamp(14rem, 55vw, 22rem);
  }

  .channels-strip__figure img {
    min-height: inherit;
  }
}

/* Work */

.work {
  padding: var(--section-y) 0;
}

.section-head--row {
  max-width: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}

@media (min-width: 720px) {
  .section-head--row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.section-head--row .section-lede {
  margin-bottom: 0;
}

.case-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.case {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 2vw, 1.65rem);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.case-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 0.65rem;
}

.case-title {
  font-size: 1.25rem;
  margin: 0 0 0.75rem;
}

.case-desc {
  color: var(--muted);
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 0 0 1.25rem;
  padding: 0.85rem;
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.case-metrics dt {
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin: 0;
}

.case-metrics dd {
  margin: 0.15rem 0 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--navy);
}

/* Studio — solid black, neon accent, split nav + copy (reference layout) */

.studio-spotlight {
  --studio-neon: #a3ff00;
  position: relative;
  padding: calc(var(--section-y) * 1.05) 0 calc(var(--section-y) * 1.1);
  overflow-x: visible;
  overflow-y: visible;
  color: #fff;
  background: #000;
  font-family: var(--font-body);
}

.studio-spotlight__intro {
  position: relative;
  margin-bottom: 0;
}

.studio-spotlight__split {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 860px) {
  .studio-spotlight__split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: clamp(2rem, 5vw, 5rem);
    align-items: center;
  }

  .studio-spotlight__split:has(> .studio-spotlight__copy:only-child) {
    grid-template-columns: 1fr;
  }
}

.studio-spotlight__tablist {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.studio-spotlight__tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin: 0;
  padding: 0.55rem 0.85rem 0.55rem 0.95rem;
  border: none;
  border-radius: 2px;
  background: transparent;
  color: rgba(255, 255, 255, 0.38);
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.6vw, 2.85rem);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.studio-spotlight__tab:hover {
  color: rgba(255, 255, 255, 0.68);
}

.studio-spotlight__tab[aria-selected="true"] {
  background: var(--studio-neon);
  color: #0a0a0a;
}

.studio-spotlight__tab-arrow {
  flex-shrink: 0;
  font-size: 0.42em;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.studio-spotlight__tab[aria-selected="true"] .studio-spotlight__tab-arrow {
  opacity: 1;
}

.studio-spotlight__tab:focus-visible {
  outline: 2px solid var(--studio-neon);
  outline-offset: 3px;
}

.studio-spotlight__copy {
  max-width: 52ch;
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.eyebrow--studio {
  font-family: var(--font-body);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.48);
}

.studio-spotlight__title {
  font-family: var(--font-body);
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
  color: #fff;
  margin: 0 0 1.25rem;
}

.studio-spotlight__accent {
  color: var(--studio-neon);
}

.studio-spotlight__lede-wrap {
  /* subtle bottom fade only — avoids clipping readable text */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.studio-spotlight__lede {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
  max-width: 48ch;
}

/* Studio carousel — full-bleed strip, 3-up desktop, flush slides */

.studio-spotlight__carousel-shell {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  padding-bottom: 0.25rem;
}

.studio-spotlight__carousel {
  position: relative;
  --studio-slide-gap: 0;
  touch-action: pan-y;
}

.studio-spotlight__viewport {
  overflow: hidden;
  width: 100%;
  border-radius: 0;
}

.studio-spotlight__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--studio-slide-gap);
  width: max-content;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.studio-spotlight__slide {
  flex: 0 0 var(--slide-w, 100%);
  width: var(--slide-w, 100%);
  min-width: 0;
}

.studio-spotlight__carousel-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(2, 6, 8, 0.45);
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.studio-spotlight__carousel-arrow:hover {
  color: var(--studio-neon);
  background: rgba(255, 255, 255, 0.1);
}

.studio-spotlight__carousel-arrow:focus-visible {
  outline: 2px solid var(--studio-neon);
  outline-offset: 2px;
}

.studio-spotlight__carousel-arrow--prev {
  left: clamp(0.35rem, 1.5vw, 0.75rem);
}

.studio-spotlight__carousel-arrow--next {
  right: clamp(0.35rem, 1.5vw, 0.75rem);
}

@media (min-width: 640px) {
  .studio-spotlight__carousel-arrow--prev {
    left: clamp(0.5rem, 2vw, 1rem);
  }

  .studio-spotlight__carousel-arrow--next {
    right: clamp(0.5rem, 2vw, 1rem);
  }
}

.studio-loc-card {
  position: relative;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 10;
  max-height: min(320px, 40vh);
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.studio-spotlight__slide:last-child .studio-loc-card {
  border-right: none;
}

.studio-loc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.65s ease;
}

.studio-spotlight__slide:is(:hover, :focus-within) .studio-loc-card img {
  transform: scale(1.05);
}

.studio-loc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(2, 6, 8, 0.82) 100%);
  pointer-events: none;
}

.studio-loc-card figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}

@media (prefers-reduced-motion: reduce) {
  .studio-spotlight__track {
    transition: none;
  }

  .studio-loc-card img {
    transition: none;
  }
}

/* CTA band */

.cta-band {
  padding: calc(var(--section-y) * 0.95) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #0a2428 55%, var(--navy-soft) 100%);
                     color: rgba(255, 255, 255, 0.92);
}

.cta-inner {
  display: grid;
  gap: 2rem;
}

@media (min-width: 860px) {
  .cta-inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
}

.cta-title {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--white);
  margin: 0 0 0.75rem;
}

.cta-copy {
  color: rgba(255, 255, 255, 0.82);
  max-width: 52ch;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.cta-micro {
  font-size: 0.9rem;
  margin-top: 0.25rem;
  color: rgba(255, 255, 255, 0.65);
}

.subtle-humor--light {
  font-style: italic;
}

/* Footer — dark band, creative-apes–style wordmark + meta row */

.site-footer {
  --footer-bg: #111111;
  --footer-neon: #a3ff00;
  --footer-neon-orange: #ffea00;
  background: var(--footer-bg);
  color: rgba(255, 255, 255, 0.88);
  border-top: none;
  padding: 0;
  font-family: var(--font-body);
}

.footer-wordmark-block {
  padding: clamp(2.25rem, 7vw, 4rem) 1rem clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
}

.footer-wordmark {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.045em;
}

.footer-wordmark__strip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(0.5rem, 2.5vw, 1.5rem);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(3rem, 11vw, 12rem);
  text-transform: lowercase;
  color: rgba(255, 255, 255, 0.96);
}

.footer-wordmark__logo {
  height: clamp(3.15rem, 9.5vw, 7.85rem);
  width: auto;
  max-width: min(52vw, 340px);
  object-fit: contain;
  flex-shrink: 0;
  align-self: center;
  transform: translateY(clamp(0.4rem, 1.5vw, 1.1rem));
}

.footer-wordmark__text {
  display: inline-block;
  line-height: 0.92;
  white-space: nowrap;
}

.footer-wordmark__mango {
  color: var(--footer-neon-orange);
  text-shadow: none;
}

.footer-wordmark__rest {
  color: rgba(255, 255, 255, 0.96);
}

.footer-wordmark__tail {
  position: relative;
  display: inline-block;
}

.footer-wordmark__dot {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.06em);
  width: 0.22em;
  height: 0.22em;
  margin-left: -0.11em;
  border-radius: 50%;
  background: var(--footer-neon);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

@media (max-width: 380px) {
  .footer-wordmark__strip {
    font-size: clamp(2.65rem, 9.2vw, 12rem);
  }

  .footer-wordmark__logo {
    height: clamp(2.65rem, 8.2vw, 7.85rem);
  }
}

.footer-divider {
  height: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
  padding: 1.5rem 0 2.75rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.35rem;
}

.footer-nav a {
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.55);
}

.footer-nav a:hover {
  color: var(--footer-neon);
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.footer-tag {
  margin: 0;
  max-width: 42ch;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
}

.footer-rule {
  margin: 0;
  max-width: 36ch;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.42);
  text-align: right;
}

@media (max-width: 640px) {
  .footer-meta {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-rule {
    text-align: center;
  }
}

/* Project enquiry page (Lollypop-style brief + details) */

.page-enquiry {
  background: var(--white);
}

.enquiry-hero {
  padding: calc(var(--section-y) * 0.55) 0 calc(var(--section-y) * 0.45);
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.enquiry-hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--navy);
  margin: 0 0 1rem;
  max-width: 18ch;
}

.enquiry-hero__lede {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 52ch;
}

.enquiry-body {
  padding: var(--section-y) 0 calc(var(--section-y) * 1.1);
}

.enquiry-layout {
  max-width: min(720px, 100%);
}

.enquiry-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.enquiry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.35rem, 3vw, 1.85rem);
  box-shadow: 0 1px 0 rgba(12, 47, 51, 0.04);
}

.enquiry-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.4rem);
  font-weight: 600;
  color: var(--navy);
  margin: 0 0 0.65rem;
}

.enquiry-card__intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 56ch;
}

.enquiry-card__intro--tight {
  margin-bottom: 1.25rem;
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field:last-child {
  margin-bottom: 0;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.45rem;
}

.form-label__req {
  color: var(--orange);
}

.form-label__opt {
  font-weight: 500;
  color: var(--muted);
  font-size: 0.8125rem;
}

.form-hint {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-hint--important {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(242, 100, 48, 0.08);
  border: 1px solid rgba(242, 100, 48, 0.2);
  color: var(--navy-soft);
  font-weight: 500;
}

.form-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.95rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px var(--cyan-muted);
}

.form-input--textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.55;
}

.form-input--file {
  padding: 0.55rem;
  font-size: 0.9375rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 560px) {
  .form-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.enquiry-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.enquiry-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.5rem;
  padding-top: 0.25rem;
}

.enquiry-submit {
  min-width: 12rem;
}

.enquiry-back {
  font-weight: 600;
  color: var(--navy-soft);
  text-decoration: none;
}

.enquiry-back:hover {
  color: var(--orange);
}

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

  .btn {
    transition: none;
  }

  .brand-flair-chip,
  .brand-flair-text {
    animation: none;
  }

  .brand-flair-chip {
    background: var(--orange);
  }

  .brand-flair-text {
    color: var(--muted);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }
}
