/* ==========================================================================
   Chapter Red — vanilla HTML/CSS/JS build
   Translated from the original Next.js + Tailwind + framer-motion source.
   ========================================================================== */

/* ── Aspekta variable font ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Aspekta';
  src: url('font/aspekta-main/fonts/variable/AspektaVF.woff2') format('woff2 supports variations'),
       url('font/aspekta-main/fonts/variable/AspektaVF.woff2') format('woff2');
  font-weight: 100 1000;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-page: #F0F0F0;
  --bg-panel-alt: #E5E5E5;
  --bg-dark: #121212;
  --text-primary: #121212;
  --text-secondary: #4F4F4F;
  --text-tertiary: #A1A1A1;
  --accent-orange: #F24202;
  --accent-green: #00BA1F;
  --white: #FFFFFF;
  --border-dashed: rgba(0, 0, 0, 0.12);
  --red: #E42222;
}

/* ── Reset / base ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

* { margin: 0; padding: 0; }

html {
  font-size: 16px;
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
}

body {
  background: var(--bg-page);
  color: var(--text-primary);
  font-family: 'Aspekta', sans-serif;
  overflow-x: hidden;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; color: inherit; }
input, textarea { font-family: inherit; }
ul { list-style: none; }

/* ── Shared helpers ────────────────────────────────────────────────────── */
.container-1280 { max-width: 80rem; margin: 0 auto; }
.section-pad { padding: 6rem 1.5rem; }
.border-t-solid { border-top: 1px solid rgba(0, 0, 0, 0.1); }
.border-t-dashed { border-top: 1px dashed rgba(0, 0, 0, 0.1); }

/* Two-tone section heading */
.heading-2 {
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.125rem;
  font-size: clamp(36px, 4.5vw, 58px);
}
.heading-2 .dark { color: #121212; }
.heading-2 .red { color: var(--red); }

/* Reveal-on-scroll (replaces framer whileInView) */
.reveal {
  opacity: 0;
  transform: translateY(1.875rem);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* On-load fade-up (replaces framer initial/animate on blog pages) */
.load-up { opacity: 0; animation: loadUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes loadUp { from { opacity: 0; transform: translateY(1.5rem); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .load-up { animation: none; opacity: 1; }
  html { scroll-behavior: auto; }
}

/* ── Page grid overlay (decorative dashed columns, desktop only) ────────── */
.page-grid {
  display: none;
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}
.page-grid span {
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px dashed rgba(0, 0, 0, 0.06);
}
@media (min-width: 768px) { .page-grid { display: block; } }

/* ── Intro: R draws on, then dissolves into the hero's dust ─────────────── */
.intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #F0F0F0;
  overflow: hidden;
  transition: opacity 0.55s cubic-bezier(0.16,1,0.3,1);
}
.intro-overlay.exit { opacity: 0; pointer-events: none; }
#intro-canvas { display: block; width: 100%; height: 100%; }

.site-root {
  opacity: 0;
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1);
}
.site-root.reveal-now { opacity: 1; }
.site-root.instant { transition: none; opacity: 1; }

.page-bg { position: relative; min-height: 100vh; background: #F0F0F0; }
.page-z { position: relative; z-index: 10; }

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: #F0F0F0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}
.navbar.scrolled {
  background: rgba(240, 240, 240, 0.95);
  backdrop-filter: blur(4px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.navbar-inner {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 0 3.5rem;
  height: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar-logo img { height: 1.375rem; width: auto; }
.navbar-nav { display: none; align-items: center; gap: 2rem; }
.navbar-link {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #121212;
  letter-spacing: 0.06em;
  transition: color 0.15s;
}
.navbar-link:hover { color: var(--red); }
.btn-call {
  display: none;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  transition: background 0.2s;
}
.btn-call:hover { background: #c91c1c; }
/* Full nav + CTA only once there's room for them; hamburger covers below. */
@media (min-width: 1000px) {
  .navbar-nav { display: flex; }
  .btn-call { display: inline-flex; }
}
@media (max-width: 640px) { .navbar-inner { padding: 0 1.5rem; } }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 4.5rem;
  background: #F0F0F0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.hero canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 10;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}
.hero-logo { margin-bottom: 1.5rem; }
.hero-logo img { height: 1.875rem; width: auto; margin: 0 auto; }
.hero h1 {
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  margin-bottom: 1.25rem;
  font-size: clamp(28px, 4vw, 58px);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.hero h1 .dark { color: #121212; }
.hero h1 .red { color: var(--red); }
.hero-sub {
  font-size: 1.0625rem;
  font-weight: 450;
  color: #121212;
  line-height: 1.625;
  margin-bottom: 1.75rem;
  max-width: 44rem;
}
.hero-cta { margin-bottom: 2rem; display: flex; align-items: center; gap: 1.75rem; flex-wrap: wrap; }
.btn-text-link {
  display: inline-flex;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #888;
  letter-spacing: 0.01em;
  padding-bottom: 0.3rem;
  border-bottom: 1.5px solid #ccc;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text-link:hover { color: #121212; border-color: #121212; }
.btn-call-lg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  transition: background 0.2s;
}
.btn-call-lg:hover { background: #c91c1c; }
.hero-trust { display: flex; align-items: center; gap: 0.75rem; }
.hero-avatars { display: flex; }
.hero-avatars img {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 2px solid #F0F0F0;
  object-fit: cover;
  margin-left: -0.85rem;
}
.hero-avatars img:first-child { margin-left: 0; }
.hero-clutch { display: flex; align-items: center; }
.hero-clutch img { height: 2.5rem; width: auto; }
.hero-divider { position: relative; z-index: 10; border-top: 1px solid rgba(0, 0, 0, 0.1); }

/* Animated intro for hero items (replaces framer initial/animate) */
.hero-anim { opacity: 0; transform: translateY(1.25rem); }
.hero-anim.play { animation: heroFadeUp 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes heroFadeUp { to { opacity: 1; transform: translateY(0); } }

/* Navbar entrance — the link rail wipes open from the centre, links stagger in */
.nav-expand { clip-path: inset(0 50% 0 50%); opacity: 0; }
.nav-expand.play { animation: navExpand 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.12s forwards; }
@keyframes navExpand { to { clip-path: inset(0 0 0 0); opacity: 1; } }
.nav-expand .navbar-link { opacity: 0; transform: translateY(0.5rem); }
.nav-expand.play .navbar-link { animation: heroFadeUp 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.nav-expand.play .navbar-link:nth-child(1) { animation-delay: 0.22s; }
.nav-expand.play .navbar-link:nth-child(2) { animation-delay: 0.28s; }
.nav-expand.play .navbar-link:nth-child(3) { animation-delay: 0.34s; }
.nav-expand.play .navbar-link:nth-child(4) { animation-delay: 0.40s; }
.nav-expand.play .navbar-link:nth-child(5) { animation-delay: 0.46s; }

/* No intro theatrics when the visitor asks for less motion */
@media (prefers-reduced-motion: reduce) {
  .intro-overlay { display: none; }
  .hero-anim, .nav-expand, .nav-expand .navbar-link {
    opacity: 1; transform: none; clip-path: none; animation: none;
  }
}

/* ==========================================================================
   LOGO MARQUEE
   ========================================================================== */
.logo-strip {
  background: #F0F0F0;
  position: relative;
  overflow: hidden;
  height: 6.25rem;
}
.logo-set {
  position: absolute;
  inset: 0;
  display: grid;
  animation: logoFade 0.4s ease-in-out;
}
@keyframes logoFade { from { opacity: 0; transform: translateY(0.625rem); } to { opacity: 1; transform: translateY(0); } }
.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.5rem;
}
.logo-cell:not(:last-child) { border-right: 1px solid rgba(0, 0, 0, 0.1); }
.logo-cell img {
  max-height: 2.75rem;
  max-width: 8.125rem;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.15) opacity(0.9);
}
.logo-strip .edge-top { position: absolute; left: 0; right: 0; top: 0; border-top: 1px solid rgba(0,0,0,0.1); pointer-events: none; }
.logo-strip .edge-bottom { position: absolute; left: 0; right: 0; bottom: 0; border-bottom: 1px solid rgba(0,0,0,0.1); pointer-events: none; }

/* ==========================================================================
   SHOWREEL
   ========================================================================== */
.showreel { position: relative; width: 100%; background: #F0F0F0; padding: 4rem 0; }
.showreel-frame {
  position: relative;
  width: 92vw;
  margin: 0 auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  transform: scale(0.35);
  border-radius: 1.25rem;
  will-change: transform, border-radius;
}
.showreel-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.showreel-controls {
  position: absolute;
  bottom: 1.25rem; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  z-index: 10;
  pointer-events: none;
}
.sr-btn {
  width: 2.75rem; height: 2.75rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s;
  pointer-events: auto;
  cursor: pointer;
}
.sr-btn:hover { background: rgba(0, 0, 0, 0.68); }
.sr-icon { display: block; }

/* ==========================================================================
   WHY / SCROLL-HIGHLIGHT TEXT
   ========================================================================== */
.process {
  padding: 6rem 3.5rem;
  max-width: 94.5rem;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.process-head { margin: 0 0 4.5rem; }
.process-head h2 { margin: 1rem 0 1.5rem; white-space: nowrap; }
.process-head p { font-size: 1.0625rem; color: #4F4F4F; line-height: 1.625; max-width: 46rem; }

/* ── Process rings ────────────────────────────────────────────────────────
   Six rings filling with red as the brand takes shape. The wave loops
   forever; the fill level rises once, when the row scrolls into view. */
.pr-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: start;
}
.pr-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.pr-ring { width: 72%; max-width: 11.5rem; height: auto; overflow: visible; }
.pr-ring .pr-out { fill: none; stroke: var(--red); stroke-width: 1.2; }
.pr-ring path { fill: var(--red); }

/* Two elements ride the same rise: the clipped liquid and the figure on it.
   Kept separate from the horizontal loop so the transforms don't fight. */
.pr-rise { transform: translateY(110px); transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1); }
.pr-track.play .pr-rise { transform: translateY(var(--rise)); }

/* Stem down from each ring to its dot on the timeline. */
.pr-stem { width: 1px; height: 3.25rem; background: rgba(0,0,0,0.35); }
/* The rule is a per-column segment rather than one bar across the track, so
   it self-aligns to the dots however tall the rings render. The outer halves
   of 01 and 06 are cut, so the line starts and ends on a dot. */
.pr-linerow { position: relative; width: 100%; height: 1px; margin-bottom: 2.25rem; background: rgba(0,0,0,0.35); }
.pr-step:first-child .pr-linerow { background: linear-gradient(to right, transparent 50%, rgba(0,0,0,0.35) 50%); }
.pr-step:last-child  .pr-linerow { background: linear-gradient(to right, rgba(0,0,0,0.35) 50%, transparent 50%); }
.pr-dot {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 0.6875rem; height: 0.6875rem; border-radius: 50%; background: #121212;
}
.pr-num { font-size: 1.375rem; color: var(--red); font-weight: 500; margin-bottom: 0.5rem; }
.pr-title {
  font-size: 1.0625rem; font-weight: 800; letter-spacing: -0.02em;
  line-height: 1.25; color: #121212; margin: 0 0 0.875rem; max-width: 9.5rem;
}
.pr-rule { width: 2.5rem; height: 1px; background: rgba(0,0,0,0.25); margin-bottom: 0.875rem; }
.pr-tag { font-size: 0.75rem; line-height: 1.5; color: #4F4F4F; max-width: 10.5rem; }

@media (prefers-reduced-motion: reduce) {
  .pr-rise { transition: none; transform: translateY(var(--rise)); }
}

/* ==========================================================================
   BRANDS WE'VE BUILT WITH
   ========================================================================== */
.brands {
  position: relative;
  z-index: 10;
  background: var(--bg-page);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.brands-inner {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 6rem 3.5rem;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.brands-intro .heading-2 { text-transform: uppercase; font-size: clamp(44px, 5vw, 68px); }
.brands-sub {
  margin-top: 1.75rem;
  max-width: 23rem;
  font-size: 1.0625rem;
  font-weight: 450;
  line-height: 1.625;
  color: #121212;
}
.brands-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.125rem;
}
.brands-grid .brand-cell {
  background: #fff;
  border-radius: 0.75rem;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  /* Percentage padding resolves against the card's width on every side, so the
     logo box scales with the card instead of being pinned to a rem value. */
  padding: 14% 17%;
  /* Minor hover only — this section has no scroll animation of any kind. */
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.brands-grid .brand-cell img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}
.brands-grid .brand-cell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.16);
}
.brands-grid .brand-cell:hover img { transform: scale(1.06); }

@media (max-width: 1023px) {
  .brands-inner { grid-template-columns: 1fr; gap: 2.5rem; padding-top: 4rem; padding-bottom: 4rem; }
  .brands-sub { max-width: 34rem; }
}
@media (max-width: 640px) {
  .brands-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .brands-grid .brand-cell { border-radius: 0.625rem; padding: 13% 15%; }
}
@media (prefers-reduced-motion: reduce) {
  .brands-grid .brand-cell,
  .brands-grid .brand-cell img { transition: none; }
}

/* ==========================================================================
   REVIEWS
   ========================================================================== */
.reviews {
  padding: 6rem 3.5rem;
  max-width: 94.5rem;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.section-head {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.section-head h2 { margin-top: 1rem; }
.section-head p { font-size: 1.0625rem; color: #4F4F4F; line-height: 1.625; max-width: 22.5rem; }
@media (min-width: 768px) {
  .section-head { flex-direction: row; align-items: flex-start; justify-content: space-between; }
  .section-head p { text-align: right; margin-top: 2rem; }
}
/* Compact testimonial carousel — native scroll + snap, arrows just scrollBy. */
.rv-nav { display: flex; gap: 0.5rem; align-items: center; }
.rv-arrow {
  width: 2.5rem; height: 2.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #fff;
  color: #121212;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, opacity 0.2s;
}
.rv-arrow:hover:not(:disabled) { background: #121212; color: #fff; border-color: #121212; }
.rv-arrow:disabled { opacity: 0.3; cursor: default; }

.rv-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 21rem;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  /* room for the card shadow so it isn't clipped by the scroll container */
  padding: 0.5rem 0 1.25rem;
  margin: -0.5rem 0 -1.25rem;
  scrollbar-width: none;
}
.rv-track::-webkit-scrollbar { display: none; }

.rv-card {
  scroll-snap-align: start;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s cubic-bezier(0.16,1,0.3,1);
}
.rv-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 182, 122, 0.4);
  box-shadow: 0 16px 32px -12px rgba(0, 0, 0, 0.12);
}
.rv-stars { display: flex; gap: 3px; margin-bottom: 1rem; }
.rv-star { display: block; }
.rv-name {
  font-family: 'Aspekta', sans-serif;
  font-weight: 700; font-size: 0.875rem; color: #121212;
  margin-bottom: 0.75rem; line-height: 1.4;
}
.rv-role {
  display: block;
  font-weight: 500; font-size: 0.6875rem;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #A1A1A1; margin-top: 0.25rem;
}
.rv-quote {
  font-size: 0.875rem; line-height: 1.65; color: #4F4F4F;
  /* Clamped so one long testimonial can't set the height of the whole row.
     Full text stays in the DOM for search engines and screen readers. */
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 11;
  overflow: hidden;
}

@media (max-width: 640px) {
  .rv-track { grid-auto-columns: 17rem; gap: 1rem; }
  .rv-card { padding: 1.25rem; }
  .section-head .rv-nav { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  .rv-track { scroll-behavior: auto; }
  .rv-card { transition: none; }
}

/* ==========================================================================
   TEAM
   ========================================================================== */
.team {
  padding: 6rem 3.5rem;
  max-width: 94.5rem;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.team-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team-card .scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.7), transparent 60%); }
.team-card .meta { position: absolute; bottom: 1rem; left: 1rem; }
.team-card .meta .name { font-weight: 700; color: #fff; font-size: 0.9375rem; line-height: 1.1; }
.team-card .meta .role { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.6); margin-top: 0.125rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
  padding: 6rem 3.5rem;
  max-width: 94.5rem;
  margin: 0 auto;
  border-top: 1px dashed rgba(0, 0, 0, 0.1);
}
.faq-grid { display: flex; flex-direction: column; gap: 4rem; }
.faq-left h2 { }
.faq-left p { font-size: 0.9375rem; color: #4F4F4F; line-height: 1.625; margin: 1.5rem 0 1rem; max-width: 23.75rem; }
.faq-left .btn-call-sm {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--red); color: #fff;
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  border-radius: 9999px; padding: 0.75rem 1.5rem;
  transition: background 0.2s;
}
.faq-left .btn-call-sm:hover { background: #c91c1c; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { border-radius: 1rem; border: 1px solid rgba(0, 0, 0, 0.1); overflow: hidden; background: #fff; }
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
}
.faq-q span.text { font-weight: 600; font-size: 0.9375rem; line-height: 1.375; color: #4F4F4F; transition: color 0.2s; }
.faq-item.open .faq-q span.text { color: #121212; }
.faq-toggle {
  width: 2rem; height: 2rem;
  border-radius: 0.5rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
  transition: background 0.2s;
}
.faq-item.open .faq-toggle { background: #121212; }
.faq-toggle .bar-h { fill: #4F4F4F; transition: fill 0.2s; }
.faq-item.open .faq-toggle .bar-h { fill: var(--accent-orange); }
.faq-toggle .bar-v { fill: #4F4F4F; transform-origin: 50% 50%; transition: transform 0.2s, opacity 0.2s; }
.faq-item.open .faq-toggle .bar-v { transform: scaleY(0); opacity: 0; }
.faq-a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows 0.3s ease-in-out; }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a-inner { overflow: hidden; }
.faq-a-inner > div { padding: 0 1.5rem 1.25rem; border-top: 1px dashed rgba(0, 0, 0, 0.1); }
.faq-a-inner p { font-size: 0.9375rem; color: #4F4F4F; line-height: 1.625; padding-top: 1rem; }
@media (min-width: 1024px) {
  .faq-grid { flex-direction: row; }
  .faq-left { width: 40%; }
  .faq-right { width: 60%; }
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */
.contact { background: #F0F0F0; border-top: 1px solid rgba(0, 0, 0, 0.1); }
.contact-inner { max-width: 94.5rem; margin: 0 auto; padding: 6rem 3.5rem; }
.contact-cols { display: flex; flex-direction: column; gap: 3.5rem; }
.contact-left h2 {
  color: #121212;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-size: clamp(28px, 3.2vw, 42px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.contact-left h2 .red { color: var(--red); }
.contact-left p { font-size: 0.9375rem; color: #4F4F4F; line-height: 1.625; margin-bottom: 2rem; max-width: 22.5rem; }
.contact-info { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.contact-info a { width: fit-content; transition: color 0.2s; }
.contact-info .primary { font-weight: 500; color: #121212; }
.contact-info .secondary { font-weight: 500; color: #4F4F4F; }
.contact-info a:hover { color: var(--red); }
.contact-card { background: #fff; border-radius: 1rem; border: 1px solid rgba(0, 0, 0, 0.08); padding: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
.field {
  width: 100%;
  background: #F0F0F0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #121212;
  outline: none;
  transition: border-color 0.2s;
}
.field::placeholder { color: rgba(0, 0, 0, 0.35); }
.field:focus { border-color: var(--red); }
textarea.field { resize: none; line-height: 1.625; }
.field-label { font-size: 0.6875rem; text-transform: uppercase; letter-spacing: 0.1em; color: #A1A1A1; font-weight: 500; margin-bottom: 0.625rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  border-radius: 9999px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0.375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #4F4F4F;
  transition: all 0.2s;
}
.service-tag:hover { border-color: rgba(0, 0, 0, 0.3); }
.service-tag.selected { background: var(--red); border-color: var(--red); color: #fff; }
.submit-btn {
  position: relative;
  align-self: flex-start;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #121212;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 9999px;
  padding: 0.75rem 2rem;
  overflow: hidden;
  transition: border-color 0.3s;
}
.submit-btn:hover { border-color: var(--red); }
.submit-btn .fill {
  position: absolute; inset: 0;
  background: var(--red);
  transform: translateY(100%);
  transition: transform 0.3s ease-out;
}
.submit-btn:hover .fill { transform: translateY(0); }
.submit-btn .label { position: relative; transition: color 0.3s; }
.submit-btn:hover .label { color: #fff; }
@media (min-width: 640px) { .contact-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) {
  .contact-cols { flex-direction: row; gap: 4rem; }
  .contact-left { width: 40%; }
  .contact-card { width: 60%; padding: 2rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: #fff; border-top: 1px solid rgba(0,0,0,0.08); font-family: 'Aspekta', sans-serif; }

.footer-quote-wrap {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 4rem) 3.5rem clamp(2rem, 3.5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.footer-quote-text {
  font-size: clamp(16px, 1.8vw, 26px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #121212;
  max-width: 28ch;
  text-wrap: balance;
  text-transform: uppercase;
}
.footer-quote-dot { color: #E42222; }

.footer-mid {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 1.25rem 3.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.footer-nav-row { display: flex; align-items: center; gap: clamp(1rem, 2.5vw, 2rem); flex-wrap: wrap; }
.footer-nav-row a { font-size: 0.9375rem; font-weight: 500; color: #555; transition: color 0.2s; }
.footer-nav-row a:hover { color: #121212; }

.footer-right-group { display: flex; flex-direction: column; align-items: flex-end; gap: 0.75rem; }
.footer-socials { display: flex; align-items: center; gap: 0.375rem; }
.footer-socials a {
  width: 2.125rem; height: 2.125rem;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  color: #555;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.footer-socials a:hover { border-color: #121212; color: #121212; background: rgba(0,0,0,0.04); }
.footer-email-link { font-size: 1rem; color: #555; transition: color 0.2s; }
.footer-email-link:hover { color: #121212; }

.footer-logo-section {
  border-top: 1px solid rgba(0,0,0,0.08);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: clamp(1.5rem, 4vw, 3rem) 3.5rem;
  max-width: 94.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}
.footer-logo-img { width: 100%; height: auto; display: block; user-select: none; }

.footer-bottom {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 1.25rem 3.5rem;
  text-align: center;
}
.footer-copyright { font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: #9B9B9B; }

/* ==========================================================================
   FEATURED WORKS (static two-column grid)
   ========================================================================== */
.works {
  background: var(--bg-page);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}
.works-inner {
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 6rem 3.5rem;
}
.works-inner > .heading-2 { margin: 0 0 3.5rem; }
.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.75rem 3.625rem;
}
.wk-card { display: block; color: inherit; text-decoration: none; }
.wk-media {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 1.25rem;
  background: #DCDCDC;
  margin-bottom: 1.375rem;
}
.wk-media img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: scale 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wk-card:hover .wk-media img { scale: 1.04; }
.wk-name {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: #121212;
  margin: 0 0 0.5rem;
  transition: color 0.3s;
}
.wk-card:hover .wk-name { color: var(--red); }
.wk-tag {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 30rem;
}

/* ==========================================================================
   SERVICES (sticky stacking cards)
   ========================================================================== */
.services { border-top: 1px dashed rgba(0, 0, 0, 0.1); padding-top: 6rem; }
.services-spacer { height: 6rem; }
.services-container {
  position: relative;
  max-width: 94.5rem;
  margin: 0 auto;
  padding: 0 3.5rem;
}
.services-header { background: #F0F0F0; margin-bottom: 2rem; }
.services-header-inner {
  max-width: 94.5rem; margin: 0 auto; padding: 0 0 2rem;
  display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.services-header h2 { line-height: 1.08; margin: 0; }
.services-header p { font-size: 1.0625rem; color: #4F4F4F; line-height: 1.65; max-width: 22.5rem; text-align: right; margin-top: 2rem; }
/* Expanding cards — one open at a time, hover swaps. No JS: the open state is
   :first-child by default, overridden while the row is hovered. */
.svc-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding-bottom: 1rem;
}
.svc-card {
  position: relative;
  flex: 1 1 0;
  min-width: 0;
  height: 30rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
  transition: flex-grow 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              height 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
/* Closed: the image fills the whole card (portrait) with the title over it.
   Open: it collapses to a landscape banner across the top. */
.svc-media {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  transition: height 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.svc-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.4) 42%, rgba(0, 0, 0, 0.28) 100%);
  transition: opacity 0.4s ease;
}
.svc-num {
  position: absolute;
  top: clamp(1.5rem, 2.5vw, 2.25rem);
  left: clamp(1.5rem, 2.5vw, 2.25rem);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: rgba(255, 255, 255, 0.72);
  transition: opacity 0.35s ease;
}
.svc-inner {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  /* Fixed text column so copy never re-wraps while the card is animating. */
  width: 31rem;
  max-width: 100%;
}
.svc-label {
  position: relative;
  font-size: clamp(1.125rem, 1.6vw, 1.5rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #fff;
  transition: font-size 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              letter-spacing 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              color 0.45s ease, margin-bottom 0.45s ease;
}
/* 0fr -> 1fr animates to the exact content height, and unlike visibility:hidden
   it takes the copy out of layout so .svc-inner hugs the label at the bottom. */
.svc-reveal {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.svc-reveal-in { overflow: hidden; min-height: 0; }
.svc-heading {
  font-size: clamp(17px, 1.4vw, 21px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: #4F4F4F;
  margin-bottom: 0.75rem;
}
.svc-desc { font-size: 0.9375rem; line-height: 1.65; color: #8A8A8A; }

/* ── open state: first card by default (and the one hovered) ── */
.svc-card:first-child { flex-grow: 2.4; height: 38rem; box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09); }
.svc-card:first-child .svc-num { opacity: 0; }
.svc-card:first-child .svc-reveal { grid-template-rows: 1fr; opacity: 1; }
.svc-card:first-child .svc-label {
  font-size: clamp(26px, 2.4vw, 36px); font-weight: 800; letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
.svc-row:not(:hover) .svc-card:first-child .svc-media,
.svc-row .svc-card:hover .svc-media { height: 38%; }
.svc-row:not(:hover) .svc-card:first-child .svc-media::after,
.svc-row .svc-card:hover .svc-media::after { opacity: 0; }
.svc-row:not(:hover) .svc-card:first-child .svc-label,
.svc-row .svc-card:hover .svc-label { color: #121212; }

/* ── while the row is hovered, everything closes… ── */
.svc-row:hover .svc-card { flex-grow: 1; height: 30rem; box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05); }
.svc-row:hover .svc-card .svc-num { opacity: 1; }
.svc-row:hover .svc-card .svc-reveal { grid-template-rows: 0fr; opacity: 0; }
.svc-row:hover .svc-card .svc-label {
  font-size: clamp(1.125rem, 1.6vw, 1.5rem); font-weight: 700; letter-spacing: -0.02em;
  color: #fff; margin-bottom: 0;
}

/* ── …except the one actually hovered ── */
.svc-row .svc-card:hover { flex-grow: 2.4; height: 38rem; box-shadow: 0 18px 48px rgba(0, 0, 0, 0.09); }
.svc-row .svc-card:hover .svc-num { opacity: 0; }
.svc-row .svc-card:hover .svc-reveal { grid-template-rows: 1fr; opacity: 1; }
.svc-row .svc-card:hover .svc-label {
  font-size: clamp(26px, 2.4vw, 36px); font-weight: 800; letter-spacing: -0.02em;
  color: #121212; margin-bottom: 0.75rem;
}

/* On a wide open card, the big number moves to the empty right side and stays
   visible as a faint accent instead of hiding. */
@media (min-width: 1240px) {
  .svc-row:not(:hover) .svc-card:first-child .svc-num,
  .svc-row .svc-card:hover .svc-num {
    opacity: 1;
    top: auto; left: auto;
    right: clamp(2rem, 2.5vw, 2.75rem);
    bottom: clamp(1.75rem, 2.5vw, 2.5rem);
    font-size: clamp(90px, 10vw, 150px);
    color: rgba(0, 0, 0, 0.05);
  }
}

@media (prefers-reduced-motion: reduce) {
  .svc-card, .svc-media, .svc-num, .svc-label, .svc-reveal { transition: none; }
}

.placeholder-visual {
  width: 100%; height: 100%;
  background: #F0F0F0;
  display: flex; align-items: center; justify-content: center;
  border: 1px dashed rgba(0, 0, 0, 0.15);
}
.placeholder-visual span {
  font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: #A1A1A1;
}

/* ── Hamburger button ──────────────────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #121212;
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Mobile nav overlay ────────────────────────────────────────────────────── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #F0F0F0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
  transition: opacity 0.22s, transform 0.22s cubic-bezier(0.16,1,0.3,1);
}
.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.mobile-nav-header .navbar-logo img { height: 1.375rem; width: auto; }
.mobile-nav-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-nav-links {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: 0 1.5rem;
}
.mobile-nav-link {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(32px, 8vw, 40px);
  font-weight: 800;
  color: #121212;
  letter-spacing: -0.02em;
  text-decoration: none;
  padding: 0.6rem 0;
  transition: color 0.15s;
  display: block;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav-link:last-child { border-bottom: none; }
.mobile-nav-link:hover { color: var(--red); }

/* Temporarily disabled nav item (e.g. About page still in development).
   Placed after both .navbar-link and .mobile-nav-link so it wins on source order;
   colour rather than opacity because the homepage nav-expand animation forces opacity:1. */
.navbar-link--disabled,
.navbar-link--disabled:hover,
.mobile-nav-link--disabled,
.mobile-nav-link--disabled:hover {
  color: #AFAFAF;
  pointer-events: none;
  cursor: default;
}
.mobile-nav-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.mobile-nav-footer .btn-call-lg { width: 100%; justify-content: center; }

@media (min-width: 1000px) {
  .hamburger { display: none !important; }
  .mobile-nav { display: none !important; }
}

/* ── Responsive horizontal padding (mobile / tablet) ──────────────────────── */
@media (max-width: 767px) {
  .hamburger { display: flex; }
  /* Hero — compact centered layout, fill viewport so showreel peeks from fold */
  .hero { min-height: 100svh; }
  .hero-inner {
    justify-content: center;
    gap: 1.25rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  /* Explicit margins instead of a uniform gap: the blocks need different
     amounts of air for the h1 to read as the anchor, not one of five peers. */
  .hero-inner { gap: 0; }
  .hero-logo { margin-bottom: 2.5rem; }
  .hero-logo img { height: 1.375rem; }
  .hero h1 {
    margin-bottom: 1rem;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    white-space: normal;
  }
  .hero-sub {
    margin-bottom: 2.25rem;
    font-size: 0.875rem;
    line-height: 1.45;
    max-width: 20rem;
  }
  .hero-cta { margin-bottom: 2.5rem; flex-direction: column; align-items: center; gap: 0.75rem; width: 100%; }
  .hero-avatars img { width: 1.875rem; height: 1.875rem; margin-left: -0.625rem; }
  .hero-clutch img { height: 1.75rem; }
  /* Showreel — no scale animation, flush below hero, card peeks from fold */
  .showreel { padding: 0; }
  .showreel-frame { transform: none !important; border-radius: 1.5rem; }
  /* Disable scroll reveal on mobile — show elements immediately */
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .brands-inner, .process, .reviews, .team, .faq {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  /* Featured works — one column; two 16:10 cards side by side at 375px would
     be thumbnails, and the taglines would wrap to five lines each. */
  .works-inner { padding: 3.5rem 1.5rem 4.5rem; }
  .works-inner > .heading-2 { margin-bottom: 2.25rem; }
  .works-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .wk-tag { max-width: none; }
  /* These sections carry a flat 6rem top+bottom on every viewport; stacked
     across a border with the section either side, that's ~192px of dead
     space on a 375px screen. Halve it down here. */
  .process, .reviews, .team, .faq {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
  .services { padding-top: 3.5rem; }
  .services-spacer { height: 2.5rem; }
  /* Process — six rings can't survive 375px across, so the timeline turns
     vertical: ring in the gutter, text beside it, thread running between. */
  .process-head { margin-bottom: 3rem; }
  /* One line is a desktop-only luxury; at 375px it runs 129px past the edge. */
  .process-head h2 { white-space: normal; }
  .pr-track { grid-template-columns: 1fr; }
  .pr-step {
    position: relative;
    display: grid;
    grid-template-columns: 4.25rem 1fr;
    column-gap: 1.125rem;
    align-items: start;
    text-align: left;
    padding-bottom: 2.5rem;
  }
  /* Thread starts at the step's midpoint and runs to its base; the ring's own
     page-coloured background masks the stretch that crosses it. That keeps the
     join exact however tall the text beside it happens to be. */
  .pr-step:not(:last-child)::before {
    content: ""; position: absolute; left: 2.125rem; top: 50%; bottom: 0;
    border-left: 1px solid rgba(0, 0, 0, 0.35);
  }
  .pr-ring {
    grid-column: 1; grid-row: 1 / span 4; width: 100%; max-width: 4.25rem;
    align-self: center; background: var(--bg-page);
    /* Positioned so it paints in the same phase as the absolute ::before
       thread and, being later in tree order, masks it. */
    position: relative;
  }
  .pr-stem, .pr-linerow { display: none; }
  .pr-num { grid-column: 2; margin-bottom: 0.125rem; }
  /* Titles run on one line here — the hard break is a desktop-column device,
     and the gutter is narrow enough that two lines read as a stack of stubs. */
  .pr-title {
    grid-column: 2; max-width: none; margin-bottom: 0.625rem;
    font-size: clamp(13px, 4.2vw, 17px); white-space: nowrap;
  }
  .pr-title br { display: none; }
  .pr-rule { grid-column: 2; margin-bottom: 0.625rem; }
  .pr-tag { grid-column: 2; max-width: none; }
  .contact-inner { padding-left: 1.5rem; padding-right: 1.5rem; padding-top: 3.5rem; padding-bottom: 3.5rem; }
  /* Services — mobile: stack, every card fully open, no hover swapping */
  .services-header-inner { flex-direction: column; padding: 2.5rem 1.5rem 1.5rem; }
  .services-header p { text-align: left; margin-top: 0.75rem; max-width: 100%; }
  .services-container { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom: 3rem; }
  .svc-row { flex-direction: column; gap: 1.25rem; align-items: stretch; }
  .svc-card,
  .svc-row:hover .svc-card,
  .svc-row .svc-card:hover { flex: none; height: auto; border-radius: 1.25rem; box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
  .svc-media,
  .svc-row:hover .svc-card .svc-media,
  .svc-row:not(:hover) .svc-card:first-child .svc-media,
  .svc-row .svc-card:hover .svc-media { position: static; height: auto; aspect-ratio: 4 / 3; opacity: 1; }
  .svc-media::after { display: none; }
  .svc-num, .svc-row:hover .svc-card .svc-num { display: none; }
  .svc-inner { position: static; width: auto; padding: 1.5rem; }
  .svc-reveal,
  .svc-row:hover .svc-card .svc-reveal { grid-template-rows: 1fr; opacity: 1; }
  .svc-label,
  .svc-row:hover .svc-card .svc-label {
    font-size: clamp(24px, 6vw, 30px); font-weight: 800; letter-spacing: -0.02em; color: #121212; margin-bottom: 0.625rem;
  }
  .footer-quote-wrap { padding-left: 1.5rem; padding-right: 1.5rem; flex-direction: column; align-items: center; text-align: center; }
  .footer-bottom { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-logo-section { padding-left: 1.5rem; padding-right: 1.5rem; }
  .footer-right-group { align-items: center; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .works-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
  .works-grid { gap: 2.5rem 2rem; }
  .brands-inner, .process, .reviews, .team, .faq {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
    padding-top: 4.5rem;
    padding-bottom: 4.5rem;
  }
  .services { padding-top: 4.5rem; }
  .services-spacer { height: 3.5rem; }
  .contact-inner { padding-left: 2.5rem; padding-right: 2.5rem; padding-top: 4.5rem; padding-bottom: 4.5rem; }
  .services-container { padding-left: 2.5rem; padding-right: 2.5rem; }
  .services-header-inner { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-quote-wrap { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-bottom { padding-left: 2.5rem; padding-right: 2.5rem; }
  .footer-logo-section { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* ── Work page grid ── */
.wgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 3.75rem) 6rem;
}
@media (max-width: 767px) { .wgrid { grid-template-columns: 1fr; } }

.wgrid-card {
  border-radius: 1.25rem;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  text-decoration: none;
  color: #121212;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s;
}
.wgrid-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 24px 64px rgba(0,0,0,0.13);
}
.wgrid-card-bg {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  flex-shrink: 0;
}
.wgrid-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wgrid-card:hover .wgrid-card-bg img { transform: scale(1.04); }
.wgrid-card-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.125rem 1.375rem;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.wgrid-card-name {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: #121212;
  margin: 0;
  line-height: 1.2;
}
.wgrid-card-arrow {
  width: 2.375rem;
  height: 2.375rem;
  border-radius: 0.625rem;
  background: #121212;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  transition: background 0.2s;
}
.wgrid-card:hover .wgrid-card-arrow { background: #E42222; }

.work-page-header {
  max-width: 80rem;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) clamp(1.5rem, 5vw, 3.75rem) 2.5rem;
}
.work-page-header h1 {
  font-family: 'Aspekta', sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #121212;
  margin: 0;
}

/* ── Blog post hero ──────────────────────────────────────────────────────
   Full-height on desktop so the decorative panel + headline overlay have
   room to breathe. At 100vh that's the whole first screen on a phone with
   nothing but the headline pinned to the bottom — cap it much shorter. */
.blog-hero {
  padding-top: 4.5rem;
  height: calc(100vh - 4.5rem);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 44% 56%;
}
@media (max-width: 767px) {
  .blog-hero { height: 24rem; }
}

/* Blog post body — sidebar (meta + CTA) beside the article. The sidebar
   column never gave way below its clamp() floor, so on a phone it and the
   article fought for space and both got clipped at the edge — stack them. */
.blog-body {
  max-width: 80rem;
  margin: 0 auto;
  padding: 4rem clamp(1.5rem, 5vw, 3.75rem) 6rem;
  display: grid;
  grid-template-columns: clamp(12.5rem, 22%, 17.5rem) 1fr;
  gap: clamp(2rem, 5vw, 5rem);
}
.blog-aside {
  position: sticky;
  top: 5rem;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (max-width: 767px) {
  .blog-body { grid-template-columns: 1fr; padding-top: 2.5rem; padding-bottom: 3.5rem; }
  .blog-aside { position: static; }
}
