/* ==========================================================================
   Neuwark Communications — Design System
   Cinematic progressive agency aesthetic
   Accent: Electric Crimson on near-black
   ========================================================================== */

:root {
  --bg: #070708;
  --bg-elevated: #0e0e10;
  --bg-card: #121214;
  --bg-soft: #18181b;
  --surface: #1c1c20;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --text: #f4f2ef;
  --text-muted: #a8a4a0;
  --text-dim: #6e6a66;
  --accent: #e63946;
  --accent-bright: #ff4d5a;
  --accent-soft: rgba(230, 57, 70, 0.14);
  --accent-glow: rgba(230, 57, 70, 0.35);
  --white: #ffffff;
  --grain-opacity: 0.075;
  --nav-h: 4.5rem;
  --container: 72rem;
  --container-wide: 84rem;
  --radius: 0.75rem;
  --radius-lg: 1.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-cinema: cubic-bezier(0.16, 1, 0.3, 1);
  --font-sans: "Inter", system-ui, -apple-system, sans-serif;
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --font-display-alt: "Syne", var(--font-sans);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul,
ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--white);
}

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 1000;
  background: var(--accent);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 600;
  transition: top 0.2s var(--ease-out);
}

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

/* --------------------------------------------------------------------------
   Film grain + vignette overlays
   -------------------------------------------------------------------------- */

.film-grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  opacity: var(--grain-opacity);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 180px;
  mix-blend-mode: overlay;
}

.vignette {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 899;
  background: radial-gradient(ellipse at center, transparent 28%, rgba(0, 0, 0, 0.72) 100%);
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

.display {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.display-alt {
  font-family: var(--font-display-alt);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.h1 {
  font-size: clamp(2.85rem, 7.5vw, 6rem);
}

.h2 {
  font-size: clamp(2.15rem, 5vw, 3.85rem);
}

.h3 {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-bright);
}

.eyebrow::before {
  content: "";
  width: 1.5rem;
  height: 1px;
  background: var(--accent);
}

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--text-muted);
  max-width: 38rem;
  line-height: 1.7;
}

.section-num {
  font-family: var(--font-display-alt);
  font-size: clamp(4rem, 12vw, 9rem);
  font-weight: 800;
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.12);
  letter-spacing: -0.04em;
  user-select: none;
}

.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 3rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
}

.text-accent {
  color: var(--accent-bright);
}

.muted {
  color: var(--text-muted);
}

.dim {
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   Layout
   -------------------------------------------------------------------------- */

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 2.5rem, var(--container-wide));
  margin-inline: auto;
}

.section {
  padding: clamp(4.5rem, 10vw, 8rem) 0;
  position: relative;
}

.section-sm {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

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

.grid-3 {
  display: grid;
  gap: 1.5rem;
}

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

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

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

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out), background 0.25s, border-color 0.25s, color 0.25s, box-shadow 0.25s;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 0 0 0 var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent-bright);
  box-shadow: 0 8px 32px var(--accent-glow);
}

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

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}

.btn-text {
  background: transparent;
  color: var(--accent-bright);
  padding-inline: 0.25rem;
}

.btn-text:hover {
  color: var(--white);
}

.btn-arrow::after {
  content: "→";
  transition: transform 0.25s var(--ease-out);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 800;
  height: var(--nav-h);
  transition: background 0.35s var(--ease-out), backdrop-filter 0.35s, border-color 0.35s;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(7, 7, 8, 0.72);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  border-bottom-color: var(--border);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 0.15rem;
}

.wordmark-main {
  font-family: var(--font-display-alt);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.wordmark-sub {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--text);
}

.nav-cta {
  display: none;
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 1.1rem;
  height: 1.5px;
  background: var(--text);
  position: relative;
  transition: background 0.2s;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--text);
  transition: transform 0.25s var(--ease-out);
}

.nav-toggle span::before {
  transform: translateY(-5px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

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

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

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

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  background: rgba(7, 7, 8, 0.96);
  backdrop-filter: blur(20px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-120%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.4s var(--ease-cinema), opacity 0.3s;
  z-index: 750;
}

.mobile-nav.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--text);
}

@media (min-width: 960px) {
  .nav-links,
  .nav-cta {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
  .mobile-nav {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 3rem) 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(230, 57, 70, 0.18), transparent 55%),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(230, 57, 70, 0.08), transparent 50%),
    linear-gradient(180deg, #0a0a0c 0%, #070708 60%, #070708 100%);
  overflow: hidden;
}

.hero-cinematic-img,
.hero-cinematic-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-cinematic-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.35) 0%, rgba(7, 7, 8, 0.55) 45%, rgba(7, 7, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(7, 7, 8, 0.75) 0%, rgba(7, 7, 8, 0.25) 45%, rgba(7, 7, 8, 0.55) 100%),
    radial-gradient(ellipse 70% 50% at 75% 30%, rgba(230, 57, 70, 0.22), transparent 60%);
  z-index: 1;
}

.hero-motion-plate {
  position: absolute;
  inset: -8%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.28;
  mix-blend-mode: screen;
  animation: motionPlateDrift 32s ease-in-out infinite alternate, motionPlatePulse 8s ease-in-out infinite;
  will-change: transform, opacity;
}

.hero-motion-plate img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.1) saturate(1.15);
}

.ken-burns-layer,
.ken-burns-layer img {
  animation: kenBurnsHero 36s ease-in-out infinite alternate;
  will-change: transform;
  transform-origin: center center;
}

@keyframes kenBurnsHero {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.18) translate(-2.5%, 2%); }
}

@keyframes motionPlateDrift {
  from { transform: scale(1.1) translate(-2%, 1%) rotate(-0.5deg); }
  to { transform: scale(1.2) translate(3%, -2%) rotate(0.8deg); }
}

@keyframes motionPlatePulse {
  0%, 100% { opacity: 0.18; }
  50% { opacity: 0.34; }
}

.hero-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.5;
  will-change: transform;
}

.hero-shape-1 {
  width: 40vw;
  height: 40vw;
  max-width: 520px;
  max-height: 520px;
  background: var(--accent);
  top: -10%;
  right: 5%;
  opacity: 0.22;
  animation: kenBurns 28s ease-in-out infinite alternate;
}

.hero-shape-2 {
  width: 30vw;
  height: 30vw;
  max-width: 380px;
  max-height: 380px;
  background: #7a1020;
  bottom: 10%;
  left: -5%;
  opacity: 0.35;
  animation: kenBurns 34s ease-in-out infinite alternate-reverse;
}

.hero-shape-3 {
  width: 20vw;
  height: 20vw;
  background: linear-gradient(135deg, var(--accent-bright), transparent);
  top: 40%;
  left: 40%;
  opacity: 0.15;
  animation: floatY 18s ease-in-out infinite;
}

.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 60% 40%, black 20%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.hero-kicker {
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease-cinema) 0.15s forwards;
}

.hero h1 {
  max-width: 14ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 0.3s forwards;
}

.hero h1 .line {
  display: block;
}

.hero h1 .em {
  font-style: italic;
  color: var(--accent-bright);
}

.hero-sub {
  margin-bottom: 2.25rem;
  max-width: 34rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 0.65s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  right: max(1.25rem, calc((100% - var(--container)) / 2));
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 1s forwards;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 2.5rem;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes kenBurns {
  from {
    transform: scale(1) translate(0, 0);
  }
  to {
    transform: scale(1.15) translate(-4%, 3%);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15);
  }
}

/* --------------------------------------------------------------------------
   Trust / metrics strip
   -------------------------------------------------------------------------- */

.trust-strip {
  border-block: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 0;
}

@media (min-width: 800px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.metric {
  text-align: left;
}

.metric-value {
  font-family: var(--font-display-alt);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 0.35rem;
}

.metric-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.metric-note {
  font-size: 0.7rem;
  color: var(--text-dim);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* --------------------------------------------------------------------------
   Cards
   -------------------------------------------------------------------------- */

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color 0.3s, transform 0.3s var(--ease-out), background 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
  background: linear-gradient(160deg, rgba(230, 57, 70, 0.06), var(--bg-card) 50%);
}

.card-num {
  font-family: var(--font-display-alt);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent-bright);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.card-link::after {
  content: "→";
  transition: transform 0.25s var(--ease-out);
}

.card:hover .card-link::after {
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   Work / showreel strip
   -------------------------------------------------------------------------- */

.work-strip-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.showreel {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding-bottom: 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.showreel-filmic {
  mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 2%, #000 96%, transparent 100%);
  gap: 1.5rem;
}

.showreel-filmic .showreel-card {
  flex: 0 0 min(88vw, 24rem);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.showreel-filmic .showreel-visual::before {
  filter: saturate(1.05) contrast(1.05);
}

.showreel-filmic .showreel-visual {
  aspect-ratio: 21 / 11;
}

.showreel::-webkit-scrollbar {
  height: 4px;
}

.showreel::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 999px;
}

.showreel-card {
  flex: 0 0 min(85vw, 22rem);
  scroll-snap-align: start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.showreel-card:hover {
  border-color: rgba(230, 57, 70, 0.45);
  transform: translateY(-6px);
}

.showreel-visual {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}

.showreel-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--visual-gradient, linear-gradient(135deg, #2a1014, #1a0a0c));
  transition: transform 0.8s var(--ease-cinema);
}

.showreel-card:hover .showreel-visual::before {
  transform: scale(1.08);
}

.showreel-visual::after {
  content: attr(data-label);
  position: absolute;
  inset: auto 1rem 1rem auto;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.55);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: var(--text-muted);
  backdrop-filter: blur(8px);
}

.showreel-body {
  padding: 1.35rem 1.5rem 1.5rem;
}

.showreel-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.showreel-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.showreel-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   Insights cards
   -------------------------------------------------------------------------- */

a.insight-card,
.insight-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
  height: 100%;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

a.insight-card:hover,
.insight-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
}

.insight-card:hover .card-link::after {
  transform: translateX(4px);
}

.insights-header {
  margin-bottom: 2.5rem;
  align-items: flex-end;
  gap: 1.5rem;
}

.insights-header .display.h2 {
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.insights-grid {
  width: 100%;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

.insight-thumb {
  aspect-ratio: 16 / 9;
  background: var(--thumb-gradient, linear-gradient(135deg, #1f1215, #0e0e10));
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

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

.insight-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 7, 8, 0.45), transparent 45%);
  pointer-events: none;
}

.insight-body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: none !important;
  width: 100%;
  box-sizing: border-box;
}

.insight-meta {
  font-size: 0.72rem;
  color: var(--text-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.insight-body h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 1.5vw, 1.35rem);
  margin: 0 0 0.75rem;
  line-height: 1.28;
  color: var(--text);
  font-weight: 500;
}

.insight-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
  margin: 0 0 1.1rem;
}

.insight-body .card-link {
  margin-top: auto;
}

/* --------------------------------------------------------------------------
   Manifesto band
   -------------------------------------------------------------------------- */

.manifesto {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(230, 57, 70, 0.16), transparent 50%),
    var(--bg-elevated);
  border-block: 1px solid var(--border);
}

.manifesto-inner {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 900px) {
  .manifesto-inner {
    grid-template-columns: 1fr 1.2fr;
  }
}

.manifesto-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.manifesto-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.manifesto-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.manifesto-item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.manifesto-item p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 20% 30%;
  background: radial-gradient(circle, var(--accent-glow), transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

.cta-band .h2 {
  max-width: 16ch;
  margin-inline: auto;
  margin-bottom: 1.25rem;
}

.cta-band .lead {
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
  background: #050506;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

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

.footer-brand .wordmark {
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 22rem;
  margin-bottom: 1.25rem;
}

.footer-col h4 {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent-bright);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  padding: calc(var(--nav-h) + 4rem) 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse at 80% 30%, rgba(230, 57, 70, 0.15), transparent 60%);
  pointer-events: none;
}

.page-hero .eyebrow {
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  margin-bottom: 1.25rem;
  max-width: 16ch;
}

.page-hero .lead {
  max-width: 40rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
}

.breadcrumb a:hover {
  color: var(--accent-bright);
}

.breadcrumb span[aria-hidden="true"] {
  opacity: 0.5;
}

/* --------------------------------------------------------------------------
   Service detail
   -------------------------------------------------------------------------- */

.service-detail-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .service-detail-layout {
    grid-template-columns: 1fr 18rem;
    align-items: start;
  }
}

.service-prose h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin: 2.5rem 0 1rem;
}

.service-prose h2:first-child {
  margin-top: 0;
}

.service-prose p,
.service-prose li {
  color: var(--text-muted);
  margin-bottom: 1rem;
  max-width: 42rem;
}

.service-prose ul {
  margin: 1rem 0 1.5rem;
  padding-left: 0;
}

.service-prose li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
}

.service-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.5rem;
  height: 1px;
  background: var(--accent);
}

.service-aside {
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.service-aside h3 {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}

.service-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.service-aside a {
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.35rem 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s;
}

.service-aside a:hover,
.service-aside a[aria-current="page"] {
  color: var(--accent-bright);
}

/* --------------------------------------------------------------------------
   Work grid
   -------------------------------------------------------------------------- */

.work-grid {
  display: grid;
  gap: 1.5rem;
}

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

.work-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-card);
  transition: border-color 0.3s, transform 0.3s var(--ease-out);
}

.work-card:hover {
  border-color: rgba(230, 57, 70, 0.4);
  transform: translateY(-4px);
}

.work-card.featured {
  grid-column: 1 / -1;
}

@media (min-width: 900px) {
  .work-card.featured {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
  }
  .work-card.featured .work-visual {
    aspect-ratio: auto;
    min-height: 100%;
  }
}

.work-visual {
  aspect-ratio: 16 / 10;
  background: var(--visual-gradient);
  position: relative;
}

.work-visual .badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  color: var(--text-muted);
}

.work-content {
  padding: 1.75rem;
}

.work-content .tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-bright);
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.work-content h2,
.work-content h3 {
  font-family: var(--font-display);
  margin-bottom: 0.75rem;
}

.work-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.work-content h3 {
  font-size: 1.35rem;
}

.work-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.work-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

.work-stats div strong {
  display: block;
  font-family: var(--font-display-alt);
  font-size: 1.25rem;
  margin-bottom: 0.15rem;
}

.work-stats div span {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* --------------------------------------------------------------------------
   About
   -------------------------------------------------------------------------- */

.about-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.values-grid .card {
  min-height: auto;
}

.team-note {
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 1rem;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Contact form
   -------------------------------------------------------------------------- */

.contact-layout {
  display: grid;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.contact-info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  max-width: 28rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.contact-details dt {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}

.contact-details dd {
  font-size: 1.05rem;
}

.contact-details a:hover {
  color: var(--accent-bright);
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

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

@media (min-width: 600px) {
  .form-row.two {
    grid-template-columns: 1fr 1fr;
  }
}

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: var(--text-muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-field textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-note {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 1rem;
}

.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(230, 57, 70, 0.35);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
  color: var(--text);
}

.form-success.is-visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Article
   -------------------------------------------------------------------------- */

.article-header {
  max-width: 42rem;
  margin-inline: auto;
  text-align: center;
  padding-bottom: 2rem;
}

.article-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.15;
  margin: 1rem 0 1.25rem;
}

.article-meta {
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.article-hero-visual {
  aspect-ratio: 21 / 9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #3a1218, #12080a 50%, #1a1014);
  margin: 0 auto 3rem;
  max-width: var(--container);
  width: min(100% - 2.5rem, var(--container));
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.article-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(230, 57, 70, 0.35), transparent 45%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05), transparent 40%);
}

.article-body {
  max-width: 40rem;
  margin-inline: auto;
  padding-bottom: 4rem;
}

.article-body p {
  color: var(--text-muted);
  margin-bottom: 1.35rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
}

.article-body blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.35;
  color: var(--text);
  border-left: 3px solid var(--accent);
  padding-left: 1.5rem;
  margin: 2.5rem 0;
}

.article-body ul {
  margin: 0 0 1.5rem 1.25rem;
  list-style: disc;
}

.article-body li {
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Scroll reveal
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 1.1s var(--ease-cinema), transform 1.1s var(--ease-cinema), filter 1.1s var(--ease-cinema);
  filter: blur(2px);
}

.reveal-mask {
  clip-path: inset(8% 8% 8% 8%);
  transition: clip-path 1.2s var(--ease-cinema), opacity 1.1s var(--ease-cinema), transform 1.1s var(--ease-cinema), filter 1.1s var(--ease-cinema);
}

.reveal-mask.is-visible {
  clip-path: inset(0 0 0 0);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* --------------------------------------------------------------------------
   Spotlight cursor (desktop)
   -------------------------------------------------------------------------- */

.spotlight {
  pointer-events: none;
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.14), rgba(230, 57, 70, 0.04) 40%, transparent 68%);
  transform: translate(-50%, -50%);
  z-index: 850;
  opacity: 0;
  transition: opacity 0.4s;
  mix-blend-mode: screen;
}

.spotlight.is-active {
  opacity: 1;
}

/* --------------------------------------------------------------------------
   Utility
   -------------------------------------------------------------------------- */

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: 0;
}

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

.stack-sm > * + * {
  margin-top: 0.75rem;
}

.stack-md > * + * {
  margin-top: 1.25rem;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-2 {
  margin-top: 2rem;
}

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

.flex-between {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.example-badge {
  display: inline-block;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  border: 1px solid var(--border-strong);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  margin-left: 0.5rem;
  vertical-align: middle;
}


/* --------------------------------------------------------------------------
   Cinematic immersive system (2026 upgrade)
   -------------------------------------------------------------------------- */

.letterbox {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 920;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.letterbox span {
  display: block;
  height: clamp(0.55rem, 1.4vh, 1.1rem);
  background: #000;
  opacity: 0.55;
}

.light-leak {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 880;
  background:
    radial-gradient(ellipse 40% 30% at 92% 8%, rgba(230, 57, 70, 0.12), transparent 55%),
    radial-gradient(ellipse 35% 28% at 8% 92%, rgba(255, 77, 90, 0.07), transparent 50%);
  mix-blend-mode: screen;
  animation: lightLeakPulse 14s ease-in-out infinite;
}

@keyframes lightLeakPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.95; }
}

.kinetic-type .line {
  display: block;
}

.hero-cinematic .hero-content {
  text-shadow: 0 8px 40px rgba(0, 0, 0, 0.45);
}

.hero-cinematic .hero-shapes {
  z-index: 2;
  opacity: 0.85;
}

.hero-cinematic .hero-grid {
  z-index: 2;
  opacity: 0.65;
}

.hero-cinematic .hero-content,
.hero-cinematic .hero-scroll {
  z-index: 3;
}

/* Full-bleed cinematic page heroes (About, etc.) */
.cinematic-hero {
  position: relative;
  min-height: min(92vh, 56rem);
  min-height: min(92dvh, 56rem);
  display: flex;
  align-items: flex-end;
  padding: calc(var(--nav-h) + 4rem) 0 4.5rem;
  overflow: hidden;
}

.cinematic-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cinematic-hero-plate,
.cinematic-hero-plate img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinematic-hero-veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(7, 7, 8, 0.25) 0%, rgba(7, 7, 8, 0.5) 40%, rgba(7, 7, 8, 0.94) 100%),
    linear-gradient(105deg, rgba(7, 7, 8, 0.8) 0%, rgba(7, 7, 8, 0.2) 50%, rgba(230, 57, 70, 0.18) 100%);
}

.cinematic-hero-parallax {
  position: absolute;
  inset: -10% 20% auto auto;
  width: min(48vw, 520px);
  height: min(48vw, 520px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.35), transparent 68%);
  filter: blur(40px);
  z-index: 2;
  opacity: 0.7;
}

.cinematic-hero-content {
  position: relative;
  z-index: 3;
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.about-cinematic-hero .h1 {
  max-width: 14ch;
  margin-bottom: 1.35rem;
  opacity: 0;
  animation: fadeUp 1s var(--ease-cinema) 0.25s forwards;
}

.about-cinematic-hero .hero-kicker {
  margin-bottom: 1.35rem;
}

.about-cinematic-hero .hero-sub {
  max-width: 36rem;
}

/* About story + MB attribution */
.about-story-grid {
  display: grid;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 900px) {
  .about-story-grid {
    grid-template-columns: 1fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
}

.source-line {
  margin-top: 1.25rem;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 36rem;
}

.source-line a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
  text-decoration-color: rgba(230, 57, 70, 0.55);
}

.source-line a:hover {
  color: var(--accent-bright);
}

.mb-pullquote {
  border: 1px solid rgba(230, 57, 70, 0.35);
  background:
    linear-gradient(135deg, rgba(230, 57, 70, 0.1), transparent 55%),
    var(--bg-card);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  position: relative;
  overflow: hidden;
}

.mb-pullquote::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent-bright), var(--accent));
}

.mb-pullquote p {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  max-width: 38rem;
  color: var(--text);
}

.mb-pullquote footer {
  margin-top: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.leadership-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(160deg, rgba(230, 57, 70, 0.12), transparent 45%),
    var(--bg-elevated);
  overflow: hidden;
}

.leadership-accent {
  position: absolute;
  top: -20%;
  right: -5%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.28), transparent 70%);
  filter: blur(20px);
  pointer-events: none;
}

.about-philosophy {
  background:
    radial-gradient(ellipse 60% 50% at 10% 0%, rgba(230, 57, 70, 0.08), transparent 55%),
    linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.015));
  border-block: 1px solid var(--border);
}

.about-philosophy-inner {
  gap: 3rem;
}

.portfolio-facts .card h3,
.portfolio-campaigns .card h3 {
  font-size: 1.35rem;
}

.image-reveal {
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.image-reveal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease-cinema);
}

.image-reveal.is-visible img,
.reveal.is-visible .image-reveal img {
  transform: scale(1);
}

.typo-moment {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  line-height: 0.95;
}


/* --------------------------------------------------------------------------
   Reduced motion
   -------------------------------------------------------------------------- */

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

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

  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .reveal-mask {
    clip-path: none;
  }

  .hero-kicker,
  .hero h1,
  .hero-sub,
  .hero-actions,
  .hero-scroll,
  .about-cinematic-hero .h1 {
    opacity: 1;
    animation: none;
  }

  .hero-shape,
  .ken-burns-layer,
  .ken-burns-layer img,
  .hero-motion-plate,
  .light-leak {
    animation: none !important;
  }

  .hero-motion-plate {
    opacity: 0.2;
    transform: none;
  }

  .spotlight {
    display: none;
  }

  .letterbox {
    opacity: 0.35;
  }

  .film-grain {
    opacity: 0.03;
  }
}

/* ==========================================================================
   WordPress block theme adaptations
   ========================================================================== */

.wp-site-blocks {
  padding: 0;
}

.wp-block-group.alignfull,
.alignfull {
  width: 100%;
  max-width: 100%;
}

body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
  max-width: var(--container);
}

.entry-content a:not(.btn):not(.card):not(.insight-card):not(.card-link) {
  color: var(--accent-bright);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.entry-content a:not(.btn):not(.card):not(.insight-card):hover {
  color: var(--white);
}

.wp-block-post-title a,
.wp-block-query .wp-block-post-title a {
  text-decoration: none;
}

.wp-block-query .insight-card,
.nw-insight-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.nw-page-content {
  padding-bottom: 4rem;
}

.nw-article .article-body {
  max-width: 42rem;
  margin-inline: auto;
}

.nw-search-form input[type="search"] {
  width: 100%;
  max-width: 28rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  color: var(--text);
}

.nw-404 {
  text-align: center;
  padding: 6rem 1.5rem 4rem;
}

.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Pattern wrappers inside editor / front */
.nw-pattern-section {
  position: relative;
}


/* === mobile article breathing room === */
@media (max-width: 767px) {
  .article-header,
  .nw-article .article-header {
    max-width: none;
    width: 100%;
    padding-inline: 1.25rem;
    padding-bottom: 1.75rem;
  }

  .article-header h1,
  .nw-article .article-header h1,
  .nw-article .wp-block-post-title {
    font-size: clamp(1.75rem, 7.5vw, 2.35rem);
    line-height: 1.2;
    margin-inline: 0;
    padding-inline: 0;
  }

  .article-body,
  .nw-article .article-body,
  .nw-article .wp-block-post-content,
  .nw-article .entry-content {
    max-width: none !important;
    width: 100%;
    margin-inline: auto;
    padding-inline: 1.25rem;
    padding-bottom: 3rem;
    box-sizing: border-box;
  }

  .article-body p,
  .nw-article .article-body p,
  .nw-article .wp-block-post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .article-body h2,
  .nw-article .article-body h2,
  .nw-article .wp-block-post-content h2 {
    font-size: 1.45rem;
    margin: 2rem 0 0.85rem;
  }

  .article-body h3,
  .nw-article .wp-block-post-content h3 {
    font-size: 1.2rem;
    margin: 1.6rem 0 0.7rem;
  }

  .article-body figure,
  .nw-article .wp-block-post-content figure,
  .nw-article .wp-block-image {
    margin-inline: 0;
    max-width: 100%;
  }

  .article-body img,
  .nw-article .wp-block-post-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
  }

  .article-body blockquote,
  .nw-article .wp-block-post-content blockquote {
    padding-left: 1rem;
    margin-inline: 0;
  }

  .nw-article .section {
    padding-inline: 1.25rem;
  }

  .nw-article .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)) {
    max-width: none !important;
  }

  body .nw-article .is-layout-constrained {
    padding-inline: 1.25rem;
  }
}

@media (max-width: 380px) {
  .article-body,
  .nw-article .article-body,
  .nw-article .wp-block-post-content,
  .article-header,
  .nw-article .section,
  body .nw-article .is-layout-constrained {
    padding-inline: 1rem;
  }
}

/* Site logo image — full wordmark, never cropped */
.wordmark .site-logo,
.site-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: min(220px, 55vw);
  border-radius: 0;
  object-fit: contain;
  object-position: left center;
}
.site-logo-footer {
  height: 72px !important;
  width: auto !important;
  max-width: min(280px, 100%);
  margin-bottom: 0.85rem;
}
.footer-brand .wordmark {
  overflow: visible;
  line-height: 0;
}
.wordmark.wordmark-logo,
a.wordmark:has(.site-logo) {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  overflow: visible;
}
@media (max-width: 700px) {
  .wordmark .site-logo,
  .site-logo {
    height: 40px;
  }
  .site-logo-footer {
    height: 56px !important;
  }
}

/* 5-metric trust strip */
.trust-grid-5 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 700px) {
  .trust-grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (min-width: 1100px) {
  .trust-grid-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Footer offices */
.footer-offices {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  line-height: 1.55;
  color: var(--text-muted);
}
.footer-offices strong {
  color: var(--text);
  font-weight: 600;
}

/* Ensure grids always expand full container width */
.grid-3,
.footer-grid,
.trust-grid,
.trust-grid-5 {
  width: 100%;
}
.insight-card {
  min-width: 0;
}


/* === LAYOUT REPAIR: Insights query + footer full width === */
.wp-block-query.grid-3,
.wp-block-query {
  width: 100% !important;
  max-width: 100% !important;
}

ul.wp-block-post-template.is-layout-grid,
.wp-block-post-template.is-layout-grid,
.wp-block-post-template.columns-3 {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box;
  grid-template-columns: 1fr !important;
  gap: 1.5rem !important;
}

@media (min-width: 640px) {
  ul.wp-block-post-template.is-layout-grid.columns-3,
  .wp-block-post-template.columns-3.is-layout-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 900px) {
  ul.wp-block-post-template.is-layout-grid.columns-3,
  .wp-block-post-template.columns-3.is-layout-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

.wp-block-post-template > .wp-block-post {
  min-width: 0;
  width: 100%;
}

.wp-block-post-template .insight-card {
  width: 100% !important;
  max-width: 100% !important;
  height: 100%;
}

.wp-block-post-template .insight-body,
.wp-block-post-template .insight-body.is-layout-constrained,
.wp-block-post-template .insight-body.has-global-padding {
  max-width: none !important;
  width: 100% !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  box-sizing: border-box;
}

.wp-block-post-template .insight-body.is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.wp-block-post-template .insight-body > * {
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.section.is-layout-constrained > .wp-block-query,
.wp-block-group.section .wp-block-query {
  max-width: none !important;
  width: min(100% - 2.5rem, var(--container)) !important;
  margin-inline: auto !important;
}

/* Homepage custom insight cards grid */
.grid-3 {
  width: 100%;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 900px) {
  .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.footer-grid {
  width: 100%;
  max-width: 100%;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  max-width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
}


/* === Service card cinematic illustrations === */
a.card.service-card,
.card.service-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.service-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #0a0a0c;
  flex-shrink: 0;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s var(--ease-out, ease);
}
.service-card:hover .service-card-media img {
  transform: scale(1.04);
}
.service-card-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.service-card-body .card-num {
  margin-bottom: 0.65rem;
}
.service-card-body h3 {
  margin-bottom: 0.65rem;
}
.service-card-body p {
  flex: 1;
}
.service-card-body .card-link {
  margin-top: 0.75rem;
}
.card.service-card:hover .card-link::after {
  transform: translateX(4px);
}

