/* ============================================================
   BRAVE PR — Main Stylesheet
   Brand refresh 2026 · Direction: Coral & Ink
   Fonts: ITC Souvenir (self-hosted) + League Spartan (Google)
   ============================================================ */

@font-face {
  font-family: 'Souvenir';
  src: url('fonts/SouvenirB.ttf') format('truetype');
  font-weight: 400 900;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   CUSTOM PROPERTIES
   ============================================================ */
:root {
  /* Coral — hero brand colour */
  --coral:      #FF4521;
  --coral-deep: #E23A18;
  --coral-soft: #FF7E64;
  --coral-tint: #FFE0D7;

  /* Ink — warm near-black */
  --ink:        #1A1714;
  --charcoal:   #2E2A26;
  --slate:      #6B615C;
  --ash:        #9A8F8A;

  /* Neutrals */
  --white:      #FFFFFF;
  --paper:      #F7F2EF;
  --cream:      #EFE8E6;
  --off:        #F4EDE9;
  --sand:       #E4DAD5;
  --stone:      #D6C9C2;
  --line:       #DED2CC;
  --line-soft:  #E7DDD8;

  /* Type */
  --font-display: 'Souvenir', 'Bookman Old Style', Georgia, serif;
  --font-sans:    'League Spartan', 'Helvetica Neue', Arial, sans-serif;

  /* Type scale */
  --fs-display: clamp(54px, 8.5vw, 112px);
  --fs-h1:      clamp(42px, 5.8vw, 78px);
  --fs-h2:      clamp(30px, 3.6vw, 50px);
  --fs-h3:      clamp(22px, 2vw, 28px);
  --fs-lead:    clamp(17px, 1.5vw, 20px);
  --fs-body:    17px;
  --fs-sm:      15px;
  --fs-eyebrow: 12px;

  /* Spacing (8pt grid) */
  --sp-1: 4px;   --sp-2: 8px;   --sp-3: 12px;  --sp-4: 16px;
  --sp-5: 24px;  --sp-6: 32px;  --sp-7: 48px;  --sp-8: 64px;
  --sp-9: 96px;  --sp-10: 128px;

  /* Radii */
  --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,23,20,.05), 0 2px 6px rgba(26,23,20,.04);
  --shadow-md: 0 4px 18px rgba(26,23,20,.10), 0 2px 6px rgba(26,23,20,.06);
  --shadow-lg: 0 20px 56px rgba(26,23,20,.18), 0 6px 16px rgba(26,23,20,.08);

  /* Motion */
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --dur:       240ms;
  --dur-slow:  500ms;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }

p { line-height: 1.65; text-wrap: pretty; }
a { color: var(--coral-deep); text-decoration: none; }
a:hover { color: var(--coral); }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: var(--font-sans); }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: var(--slate);
  font-weight: 400;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: var(--coral);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-family: var(--font-sans);
  font-weight: 600;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* Selection */
::selection { background: var(--coral-soft); color: var(--ink); }

/* Scrollbar */
body { scrollbar-width: thin; scrollbar-color: var(--stone) transparent; }

/* ============================================================
   LAYOUT
   ============================================================ */
.wrap {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.section {
  padding: clamp(44px, 6vw, 84px) 0;
}
.section--flush { padding: 0; }
.section--dense { padding: clamp(28px, 4vw, 56px) 0; }

.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }
.section--tint  { background: var(--coral-tint); }
.section--dark  { background: var(--ink); }
.section--coral { background: var(--coral); color: var(--paper); }

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.section-header--wrap { align-items: flex-start; }

.br-lg { display: none; }
@media (min-width: 900px) { .br-lg { display: inline; } }

/* ============================================================
   TYPOGRAPHY / EYEBROW
   ============================================================ */
.eyebrow {
  font-family: var(--font-sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.eyebrow--plain::before  { display: none; }
.eyebrow--ondark { color: var(--coral-soft); }

/* ============================================================
   WORDMARK
   ============================================================ */
.wordmark {
  display: inline-flex;
  align-items: flex-end;
  position: relative;
  line-height: 1;
}

.wordmark__brave {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1em;
  display: inline-block;
  transform: rotate(-10deg);
  transform-origin: center 80%;
  line-height: 0.9;
  letter-spacing: -0.01em;
  color: inherit;
}

.wordmark__pr {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.32em;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-left: 3px;
  padding-bottom: 2px;
  color: inherit;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.01em;
  border: none;
  border-radius: var(--r-pill);
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: all var(--dur) var(--ease);
  line-height: 1;
}
.btn:active { transform: scale(0.97); }
.btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--ink);
  color: var(--off);
}
.btn--primary:hover { background: var(--charcoal); color: var(--off); }

.btn--gold {
  background: var(--coral);
  color: #fff;
  width: 100%;
  justify-content: center;
  font-size: 15px;
  padding: 16px 28px;
}
.btn--gold:hover { background: var(--coral-deep); color: #fff; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--off); }

.btn--ghost-dark {
  background: transparent;
  color: var(--off);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn--ghost-dark:hover { border-color: var(--coral-soft); color: var(--coral-soft); }

.btn--on-coral {
  background: var(--off);
  color: var(--coral-deep);
}
.btn--on-coral:hover { background: #fff; color: var(--coral-deep); }

.btn--on-dark {
  background: var(--off);
  color: var(--ink);
}
.btn--on-dark:hover { background: #fff; }

.btn--text {
  background: transparent;
  color: var(--coral-deep);
  padding: 4px 0;
  border-radius: 0;
  font-weight: 500;
}
.btn--text:hover { color: var(--coral); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 1;
  transform: translateY(0);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-hidden {
  opacity: 0;
  transform: translateY(18px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--coral);
  transition: box-shadow var(--dur) var(--ease);
}
.nav.is-scrolled {
  box-shadow: 0 6px 24px rgba(226,58,24,0.32);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 44px;
  padding-bottom: 44px;
}

.nav__logo {
  color: var(--off);
  font-size: 28px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo:hover { color: var(--off); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--off);
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1.5px;
  background: var(--off);
  transition: width var(--dur) var(--ease);
}
.nav__link:hover { color: var(--off); }
.nav__link:hover::after { width: 100%; }

.nav__actions { display: flex; align-items: center; gap: 12px; }

.nav__burger {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--off);
  padding: 6px;
  border-radius: 6px;
}
.nav__burger:hover { background: rgba(255,255,255,0.12); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--cream);
  padding: clamp(48px, 8vw, 104px) 0 clamp(56px, 9vw, 120px);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.hero__copy { max-width: 600px; }

.hero__headline {
  font-family: var(--font-display);
  font-size: var(--fs-h1);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top: 20px;
  text-wrap: balance;
}

.hero__em {
  color: var(--coral);
  font-style: normal;
}

.hero__sub {
  max-width: 460px;
  margin-top: 24px;
}

.hero__ctas {
  display: flex;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
}

/* Hero photo placeholder */
.hero__photo {
  position: relative;
}

.hero__photo-bg {
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background: linear-gradient(145deg, #2E2A26 0%, #1A1714 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.hero__photo-mono {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(100px, 18vw, 220px);
  color: rgba(255,255,255,0.07);
  line-height: 1;
  user-select: none;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--coral);
  color: #fff;
  border-radius: var(--r-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  max-width: 200px;
  z-index: 2;
}

.hero__badge-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 38px;
  line-height: 1;
  display: block;
}

.hero__badge-label {
  font-family: var(--font-sans);
  font-size: 13px;
  line-height: 1.35;
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,0.88);
}

/* ============================================================
   CLIENTS STRIP
   ============================================================ */
.clients {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.clients__inner {
  padding-top: 28px;
  padding-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.clients__row {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 32px);
  flex-wrap: wrap;
}

.clients__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(16px, 2vw, 22px);
  color: var(--slate);
  white-space: nowrap;
}

.clients__dot {
  color: var(--stone);
  font-size: 20px;
  line-height: 1;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.1;
}

.service-card__desc {
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   WORK — FLIP CARDS
   ============================================================ */
.work-hint {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ash);
  margin-bottom: 28px;
  letter-spacing: 0.02em;
}

.work-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.filter-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  background: transparent;
  color: var(--slate);
  cursor: pointer;
  transition: all var(--dur) var(--ease);
}
.filter-btn:hover { color: var(--ink); border-color: var(--line); }
.filter-btn--active {
  background: var(--ink);
  color: var(--off);
}
.filter-btn--active:hover { background: var(--charcoal); color: var(--off); }
.filter-btn:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 2px;
}

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

/* Filtered-out cards */
.flip-card.is-hidden-filter {
  display: none;
}

/* ── The Flip Card ── */
.flip-card {
  height: 400px;
  perspective: 1200px;
  cursor: pointer;
  border-radius: var(--r-md);
}

.flip-card:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.flip-card__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.68s var(--ease);
}

/* Desktop: hover triggers flip */
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card__inner {
    transform: rotateY(180deg);
  }
}

/* JS-toggled flip (keyboard / touch) */
.flip-card.is-flipped .flip-card__inner {
  transform: rotateY(180deg);
}

/* While a card shows its back, the front face must not swallow clicks —
   otherwise the "Read case study" link underneath is unclickable. */
.flip-card.is-flipped .flip-card__front { pointer-events: none; }
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card__front { pointer-events: none; }
}

.flip-card__front,
.flip-card__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-md);
  overflow: hidden;
}

/* FRONT */
.flip-card__front {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
}

.fc-sector {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  background: rgba(0,0,0,0.22);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  align-self: flex-start;
}

.fc-sector--dark {
  color: var(--coral-deep);
  background: rgba(226,58,24,0.10);
}

.fc-front-bottom {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fc-mono {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(60px, 10vw, 90px);
  line-height: 0.88;
  color: rgba(255,255,255,0.14);
  user-select: none;
}

.fc-mono--dark {
  color: rgba(26,23,20,0.10);
}

.fc-client {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.1;
  color: rgba(255,255,255,0.92);
}

.fc-client--dark {
  color: var(--ink);
}

.fc-hint {
  position: absolute;
  bottom: 18px;
  right: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.88);
  transition: background var(--dur) var(--ease);
}

.fc-hint--dark {
  background: rgba(26,23,20,0.10);
  color: var(--ink);
}

/* BACK */
.flip-card__back {
  transform: rotateY(180deg);
  background: var(--ink);
  color: var(--off);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.fc-back-sector {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-soft);
}

.fc-back-client {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ash);
  letter-spacing: 0.01em;
}

.fc-headline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--off);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.fc-desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ash);
  line-height: 1.6;
  margin: 0;
}

.fc-cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--coral-soft);
  margin-top: 6px;
  letter-spacing: 0.03em;
}

/* Gradient variants */
.grad-ink   { background: linear-gradient(148deg, #3A3330 0%, #1A1714 100%); }
.grad-coral { background: linear-gradient(148deg, #FF5533 0%, #C02E12 100%); }
.grad-blush { background: linear-gradient(148deg, #F4EDE9 0%, #E4DAD5 100%); }
.grad-warm  { background: linear-gradient(148deg, #FF7E64 0%, #E23A18 100%); }
.grad-deep  { background: linear-gradient(148deg, #3D2B25 0%, #1A1714 100%); }
.grad-stone { background: linear-gradient(148deg, #C4B5AC 0%, #8C7E78 100%); }

/* ============================================================
   TESTIMONIAL
   ============================================================ */
.testimonial__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial__mark {
  margin: 0 auto 24px;
  display: block;
}

.testimonial__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(24px, 3.2vw, 40px);
  line-height: 1.28;
  color: var(--ink);
  font-style: normal;
  text-wrap: balance;
  margin-bottom: 28px;
}

.testimonial__quote em {
  color: var(--coral-deep);
  font-style: normal;
}

.testimonial__cite {
  display: block;
  font-family: var(--font-sans);
  font-size: 14.5px;
  color: var(--slate);
  font-style: normal;
}

.testimonial__cite strong {
  color: var(--ink);
  font-weight: 600;
}

/* ============================================================
   APPROACH
   ============================================================ */
.approach { background: var(--ink); }

.approach__headline {
  font-size: clamp(30px, 3.8vw, 52px);
  color: var(--off);
  margin-top: 18px;
  margin-bottom: clamp(48px, 7vw, 80px);
  max-width: 680px;
}

.approach__headline em {
  color: var(--coral-soft);
  font-style: normal;
}

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

.approach-step {
  border-top: 1.5px solid var(--coral);
  padding-top: 20px;
}

.approach-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--coral-soft);
  display: block;
  margin-bottom: 10px;
}

.approach-step__title {
  font-size: clamp(20px, 1.8vw, 24px);
  color: var(--off);
  margin-bottom: 10px;
}

.approach-step__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ash);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   ABOUT / TEAM
   ============================================================ */
.about { background: var(--paper); }

.about__header {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.about__header h2 em {
  color: var(--coral);
  font-style: normal;
}

/* ---- Team grid — horizontal cards with circular images ---- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3.5vw, 48px);
}

.team-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: start;
  padding: clamp(28px, 3.5vw, 40px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(26,23,20,0.04);
}

.team-card__img {
  flex-shrink: 0;
  width: clamp(120px, 16vw, 160px);
  height: clamp(120px, 16vw, 160px);
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
}

.team-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__body {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 16px);
}

.team-card__role {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0;
}

.team-card__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}

.team-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--coral);
  margin: 6px 0 0;
  padding: clamp(12px, 1.2vw, 16px) 0;
  border-top: 1px solid rgba(226,58,24,0.18);
  border-bottom: 1px solid rgba(226,58,24,0.18);
}

.team-card__bio {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0;
}

.team-card__bio + .team-card__bio {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .team-card {
    grid-template-columns: 1fr;
    gap: clamp(20px, 2.4vw, 28px);
    text-align: center;
  }
  .team-card__img {
    margin: 0 auto;
  }
  .team-card__quote,
  .team-card__body {
    text-align: center;
  }
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--ink); }

.cta-section__inner {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.cta-section__headline {
  font-size: clamp(32px, 4.4vw, 62px);
  color: var(--off);
  margin-top: 20px;
  margin-bottom: 36px;
}

.cta-section__headline em {
  color: var(--coral-soft);
  font-style: normal;
}

.cta-section__btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: var(--off);
}

.footer__grid {
  padding-top: 72px;
  padding-bottom: 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 48px;
}

.footer__brand .wordmark {
  font-size: 36px;
  color: var(--off);
}

.footer__tagline {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ash);
  max-width: 280px;
  margin-top: 16px;
  line-height: 1.6;
}

.footer__col-head {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
  margin-bottom: 18px;
}

.footer__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer__list li {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ash);
}

.footer__link {
  color: var(--ash);
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}
.footer__link:hover { color: var(--off); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  padding-bottom: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--ash);
}

.footer__sub { opacity: 0.7; }

/* ============================================================
   CONTACT MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(26,23,20,0.6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur) var(--ease);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px;
  width: min(560px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(16px) scale(0.97);
  transition: transform var(--dur) var(--ease);
}

.modal-overlay.is-open .modal {
  transform: translateY(0) scale(1);
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  color: var(--slate);
  padding: 6px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur) var(--ease);
}
.modal__close:hover { background: var(--sand); color: var(--ink); }
.modal__close:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

#modal-title {
  font-size: clamp(26px, 4vw, 34px);
  margin: 14px 0 26px;
  line-height: 1.1;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-field label {
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
}

.form-field input,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  outline: none;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  width: 100%;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ash);
}

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,69,33,0.12);
}

.form-field input.is-error,
.form-field textarea.is-error {
  border-color: #dc2626;
  box-shadow: 0 0 0 3px rgba(220,38,38,0.10);
}

/* Success state */
.modal-success {
  text-align: center;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.modal-success h3 {
  font-size: 34px;
  margin: 18px 0 8px;
}

.modal-success p {
  color: var(--slate);
  margin-bottom: 24px;
}

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--coral);
  color: var(--off);
  display: flex;
  flex-direction: column;
  padding: 16px 32px 40px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(100%);
  transition: opacity var(--dur-slow) var(--ease), transform var(--dur-slow) var(--ease);
}

.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0 16px;
}

.mobile-menu__top .wordmark {
  color: var(--off);
  font-size: 28px;
}

.mobile-menu__close {
  background: none;
  border: none;
  color: var(--off);
  padding: 8px;
  border-radius: 6px;
}
.mobile-menu__close:hover { background: rgba(255,255,255,0.12); }

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  flex: 1;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 10vw, 52px);
  color: var(--off);
  text-decoration: none;
  line-height: 1.2;
  transition: opacity var(--dur) var(--ease);
  display: block;
}
.mobile-menu__link:hover { opacity: 0.7; color: var(--off); }

.mobile-menu__foot {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.mobile-menu__email {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(244,237,233,0.7);
  text-align: center;
}
.mobile-menu__email:hover { color: var(--off); }

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand { grid-column: 1 / -1; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  /* Nav */
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  /* Hero */
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero__copy { max-width: 100%; }
  .hero__visual { order: -1; max-width: 420px; margin: 0 auto; width: 100%; }
  .hero__badge { bottom: -16px; left: -12px; }

  /* Services */
  .services__grid { grid-template-columns: 1fr 1fr; }

  /* Work */
  .work__grid { grid-template-columns: 1fr 1fr; }
  .flip-card { height: 360px; }

  /* Approach */
  .approach__grid { grid-template-columns: 1fr 1fr; gap: 28px; }

  /* About */
  .about__header { grid-template-columns: 1fr; gap: 24px; }
  .team__grid { grid-template-columns: repeat(4, 1fr); }

  /* Section headers */
  .section-header { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 560px)
   ============================================================ */
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }

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

  .work__grid { grid-template-columns: 1fr; }
  .flip-card { height: 340px; }
  /* On very small screens, show card back on tap only */

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

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

  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }

  .clients__inner { flex-direction: column; align-items: flex-start; gap: 12px; }
  .clients__dot { display: none; }
  .clients__row { gap: 10px 20px; }

  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__sub { display: none; }

  .modal { padding: 28px 22px; }
  #modal-title { margin-bottom: 20px; }

  .testimonial__quote { font-size: clamp(20px, 6vw, 28px); }
}

/* ============================================================
   VIDEO / FULL-SCREEN HERO V2
   ============================================================ */
.hero-v2 {
  position: relative;
  min-height: 100svh;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

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

.hero-v2__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}
@media (prefers-reduced-motion: reduce) {
  .hero-v2__video { display: none; }
}

/* ───────── Hero moving image slideshow (Ken Burns crossfade) ───────── */
.hero-v2__slides {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-v2__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  opacity: 0;
  transform: scale(1.05);
  will-change: opacity, transform;
  animation: heroCrossfade 40s infinite;
}
.hero-v2__slide:nth-child(1) { animation-delay: 0s; }
.hero-v2__slide:nth-child(2) { animation-delay: 8s; }
.hero-v2__slide:nth-child(3) { animation-delay: 16s; }
.hero-v2__slide:nth-child(4) { animation-delay: 24s; }
.hero-v2__slide:nth-child(5) { animation-delay: 32s; }

@keyframes heroCrossfade {
  0%   { opacity: 0; transform: scale(1.04); }
  5%   { opacity: 0.6; }
  20%  { opacity: 0.6; transform: scale(1.14); }
  25%  { opacity: 0; transform: scale(1.15); }
  100% { opacity: 0; transform: scale(1.04); }
}

/* Light overlay — kept minimal so the video's own colour reads through */
.hero-v2__tint {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(20,17,15,0.08) 0%, rgba(20,17,15,0.18) 100%);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__slide { animation: none; opacity: 0.5; transform: scale(1); }
  .hero-v2__slide:not(:first-child) { display: none; }
}

.hero-v2__gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(255,69,33,0.22) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 90% 10%, rgba(255,224,215,0.12) 0%, transparent 55%);
  pointer-events: none;
}

@keyframes hero-drift {
  0%   { transform: scale(1) translate(0, 0); }
  33%  { transform: scale(1.08) translate(-2%, 1.5%); }
  66%  { transform: scale(1.05) translate(2.5%, -1%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-v2__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

.hero-v2__orb--1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,69,33,0.5) 0%, transparent 70%);
  bottom: -150px; left: -120px;
  animation: hero-drift 18s ease-in-out infinite;
}

.hero-v2__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(226,58,24,0.28) 0%, transparent 70%);
  top: -60px; right: -80px;
  animation: hero-drift 22s ease-in-out infinite;
  animation-delay: -7s;
}

.hero-v2__orb--3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(255,126,100,0.22) 0%, transparent 70%);
  top: 42%; left: 42%;
  animation: hero-drift 16s ease-in-out infinite;
  animation-delay: -3s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-v2__orb { animation: none; }
}

.hero-v2__content {
  position: relative;
  z-index: 2;
  padding: clamp(80px, 10vw, 140px) 0 clamp(64px, 8vw, 100px);
}

.hero-v2__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 28px;
}

.hero-v2__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--coral-soft);
  flex-shrink: 0;
}

.hero-v2__display {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(64px, 11vw, 148px);
  line-height: 0.88;
  letter-spacing: -0.03em;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-v2__display .d-line { display: block; }

.hero-v2__display .d-line--solid { color: var(--off); }

.hero-v2__display .d-line--coral { color: var(--coral); }

.hero-v2__display .d-line--ghost {
  -webkit-text-stroke: 1.5px rgba(244,237,233,0.28);
  color: transparent;
}

.hero-v2__sub {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.6vw, 19px);
  color: rgba(244,237,233,0.6);
  max-width: 460px;
  margin-top: 32px;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.hero-v2__ctas {
  display: flex;
  gap: 14px;
  margin-top: 42px;
  flex-wrap: wrap;
}

.hero-v2__scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(244,237,233,0.35);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-lr;
}

@keyframes scroll-bob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.hero-v2__scroll-line {
  width: 1.5px;
  height: 40px;
  background: rgba(244,237,233,0.25);
  animation: scroll-bob 2s ease-in-out infinite;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--coral);
  padding: clamp(28px, 4vw, 48px) 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}

.stat-item {
  padding: 16px 20px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.stat-item:last-child { border-right: none; }

.stat-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(38px, 5.5vw, 64px);
  line-height: 1;
  color: var(--off);
  display: block;
}

.stat-item__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,237,233,0.72);
  display: block;
  margin-top: 8px;
}

/* ============================================================
   INFINITE TICKER / MARQUEE
   ============================================================ */
.ticker-wrap {
  overflow: hidden;
  position: relative;
}

.ticker-wrap--clients {
  background: var(--paper);
}

.ticker-wrap--awards {
  background: var(--cream);
}

.ticker-wrap--dark {
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

@keyframes ticker-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker-left 30s linear infinite;
}

.ticker__track--slow  { animation-duration: 45s; }
.ticker__track--fast  { animation-duration: 20s; }
.ticker__track--rev   { animation-direction: reverse; }

.ticker-wrap:hover .ticker__track { animation-play-state: paused; }

/* Client logo ticker items — rectangular cells, wider than tall,
   so logos fill the space instead of floating in a square. */
.ticker__client {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px 56px;
  flex-shrink: 0;
  white-space: nowrap;
  min-width: 260px;
}

.ticker__client-name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--slate);
  filter: grayscale(1) opacity(0.6);
  white-space: nowrap;
  cursor: default;
}

/* Brand logo images in the ticker — bigger, wider, filling the cell.
   Wide max-width lets landscape logos stretch to their natural aspect. */
.ticker__logo {
  height: 90px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  /* Every transparent-PNG logo is silhouetted to the same warm grey
     regardless of its original colour. */
  filter: brightness(0) invert(0.55);
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
}
.ticker__client:hover .ticker__logo {
  opacity: 1;
  filter: brightness(0) invert(0.35);
}
@media (min-width: 1200px) {
  .ticker__logo { height: 108px; max-width: 300px; }
  .ticker__client { min-width: 300px; padding: 30px 64px; }
}

/* Logo grid — bigger rectangular cells so each brand mark fills the space.
   Static grid used on the Work page "Brands we have worked with" section. */
.logo-grid__logo {
  height: 110px;
  width: 100%;
  max-width: 260px;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: grayscale(1) contrast(1.05);
  opacity: 0.72;
  transition: opacity 0.3s ease, filter 0.3s ease, transform 0.3s ease;
}
.logo-grid__logo:hover {
  opacity: 1;
  filter: grayscale(0.3) contrast(1.1);
  transform: scale(1.04);
}

/* Tight padding section used purely for the Trusted by eyebrow */
.section--tight {
  padding: clamp(24px, 3vw, 40px) 0 clamp(8px, 1.5vw, 18px);
}
.section--tight .eyebrow { font-size: 12px; letter-spacing: 0.22em; }

/* ──────────────────────────────────────────────────────────
   CASE STUDIES — Horizontal scroller of flip cards
   Used on the homepage under "Brands built for conversation"
   ────────────────────────────────────────────────────────── */
.case-scroll-wrap {
  position: relative;
  margin-top: clamp(24px, 3vw, 40px);
}

.case-scroll {
  display: flex;
  gap: clamp(16px, 2vw, 28px);
  overflow-x: auto;
  overflow-y: visible;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--coral) transparent;
  padding: 8px clamp(16px, 4vw, 48px) 24px;
  scroll-padding-left: clamp(16px, 4vw, 48px);
}

.case-scroll::-webkit-scrollbar { height: 8px; }
.case-scroll::-webkit-scrollbar-track { background: transparent; }
.case-scroll::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 4px;
}

.case-scroll .flip-card {
  flex: 0 0 clamp(280px, 32vw, 380px);
  height: 420px;
  scroll-snap-align: start;
}

.case-scroll__hint {
  font-family: var(--font-sans);
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
  text-align: center;
  margin-top: 8px;
  opacity: 0.6;
}

@media (max-width: 720px) {
  .case-scroll .flip-card { flex-basis: 78vw; height: 380px; }
}

/* Award ticker items */
.ticker__award {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 40px;
  border-right: 1px solid var(--sand);
  flex-shrink: 0;
  white-space: nowrap;
}

.ticker__award-star {
  color: var(--coral);
  font-size: 16px;
}

.ticker__award-body {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash);
  display: block;
}

.ticker__award-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  color: var(--ink);
  display: block;
  line-height: 1.1;
}

.ticker__award-year {
  font-family: var(--font-sans);
  font-size: 12px;
  color: var(--ash);
  margin-left: 6px;
}

/* ============================================================
   WORK MARQUEE (homepage horizontal scroll)
   ============================================================ */
.work-marquee-section {
  overflow: hidden;
  padding: clamp(56px, 7vw, 88px) 0;
  background: var(--ink);
}

.work-marquee-section__header {
  padding: 0 clamp(20px, 4vw, 64px);
  margin-bottom: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.work-marquee-section__header h2 { color: var(--off); }

@keyframes wm-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.work-marquee__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: wm-scroll 55s linear infinite;
  padding: 0 8px;
}

.work-marquee-section:hover .work-marquee__track {
  animation-play-state: paused;
}

.wm-card {
  width: 300px;
  height: 380px;
  border-radius: var(--r-md);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  cursor: pointer;
  background: var(--charcoal);
}

.wm-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), opacity 0.4s ease;
  opacity: 0.8;
}

.wm-card:hover .wm-card__img {
  transform: scale(1.06);
  opacity: 0.6;
}

.wm-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.95) 0%, rgba(26,23,20,0.1) 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 20px;
}

.wm-card__cat {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 6px;
}

.wm-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--off);
  line-height: 1.15;
}

.wm-card__client {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--ash);
  margin-top: 5px;
}

/* ============================================================
   THE BRAVE METHOD
   ============================================================ */
.method { background: var(--ink); }

.method__intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 80px);
}

.method__headline {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.5vw, 58px);
  color: var(--off);
  line-height: 1.05;
  margin-top: 18px;
}

.method__headline em { color: var(--coral-soft); font-style: normal; }

.method__body-text {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--ash);
  line-height: 1.75;
  margin: 0;
  align-self: end;
}

.method__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  overflow: hidden;
}

.method-step {
  background: var(--ink);
  padding: 36px 28px;
  transition: background var(--dur) var(--ease);
}

.method-step:hover { background: #201d1a; }

.method-step__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(52px, 7vw, 80px);
  line-height: 1;
  color: rgba(255,69,33,0.14);
  display: block;
  margin-bottom: 14px;
  transition: color var(--dur) var(--ease);
}

.method-step:hover .method-step__num { color: rgba(255,69,33,0.32); }

.method-step__word {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 26px);
  color: var(--off);
  margin-bottom: 12px;
  line-height: 1.05;
}

.method-step__word em { color: var(--coral-soft); font-style: normal; }

.method-step__desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ash);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pricing-section { background: var(--ink); }

.pricing__header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto clamp(48px, 6vw, 72px);
}

.pricing__header h2 { color: var(--off); margin-top: 14px; }

.pricing__header .lead { color: var(--ash); margin-top: 18px; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}

.pricing-card {
  background: var(--paper);
  border: 1px solid rgba(26,23,20,0.1);
  border-radius: var(--r-lg);
  padding: 36px 30px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0,0,0,0.14);
}

.pricing-card--featured {
  background: var(--coral);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(255,69,33,0.45);
}

.pricing-card--featured:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 64px rgba(255,69,33,0.5);
}

.pricing-card__badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--off);
  color: var(--coral-deep);
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: var(--r-pill);
  white-space: nowrap;
}

.pricing-card__eyebrow {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-soft);
  display: block;
  margin-bottom: 10px;
}

.pricing-card--featured .pricing-card__eyebrow { color: rgba(255,255,255,0.72); }

.pricing-card__name {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  color: var(--off);
  line-height: 1;
}

.pricing-card--featured .pricing-card__name { color: #fff; }

.pricing-card__tm {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 400;
  vertical-align: super;
  line-height: 0;
}

.pricing-card__price {
  margin: 24px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.pricing-card__currency {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 600;
  color: var(--ash);
  align-self: flex-start;
  margin-top: 6px;
}

.pricing-card--featured .pricing-card__currency { color: rgba(255,255,255,0.7); }

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.pricing-card--featured .pricing-card__amount { color: #fff; }

.pricing-card__period {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ash);
  align-self: flex-end;
  padding-bottom: 4px;
}

.pricing-card--featured .pricing-card__period { color: rgba(255,255,255,0.65); }

.pricing-card__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--ash);
  line-height: 1.65;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.pricing-card--featured .pricing-card__desc {
  color: rgba(255,255,255,0.78);
  border-bottom-color: rgba(255,255,255,0.22);
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 32px;
  flex: 1;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--ash);
  line-height: 1.45;
}

.pricing-card--featured .pricing-card__feature { color: rgba(255,255,255,0.85); }

.pricing-card__tick {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card--featured .pricing-card__tick { background: rgba(255,255,255,0.24); }

.pricing-card__tick svg { width: 9px; height: 9px; stroke-width: 3; color: var(--coral-soft); }
.pricing-card--featured .pricing-card__tick svg { color: #fff; }

/* Add-ons */
.addons-section { background: var(--charcoal); }

.addons__header {
  text-align: center;
  max-width: 580px;
  margin: 0 auto clamp(40px, 5vw, 60px);
}

.addons__header h2 { color: var(--off); margin-top: 14px; }
.addons__header .lead { color: var(--ash); margin-top: 16px; }

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

.addon-card {
  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-md);
  padding: 26px 24px;
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.addon-card:hover {
  background: rgba(255,255,255,0.065);
  border-color: rgba(255,69,33,0.28);
  transform: translateY(-3px);
}

.addon-card__name {
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 21px);
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.15;
}

.addon-card__price {
  font-family: var(--font-sans);
  font-size: 12.5px;
  font-weight: 700;
  color: var(--coral-soft);
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 14px;
}

.addon-card__desc {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--ash);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--ink);
  padding: clamp(80px, 10vw, 120px) 0 clamp(56px, 7vw, 80px);
  overflow: hidden;
  position: relative;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at -5% 110%, rgba(255,69,33,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 105% -10%, rgba(226,58,24,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero__inner { position: relative; z-index: 1; }

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(52px, 7.5vw, 100px);
  font-weight: 700;
  color: var(--off);
  line-height: 0.93;
  letter-spacing: -0.025em;
  margin-top: 22px;
}

.page-hero__title em { color: var(--coral); font-style: normal; }

.page-hero__sub {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.6vw, 19px);
  color: rgba(244,237,233,0.6);
  max-width: 520px;
  margin-top: 26px;
  line-height: 1.65;
}

/* ============================================================
   SERVICES DETAIL PAGE
   ============================================================ */
.services-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 96px);
}

.services-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1.5px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.service-tile {
  background: var(--paper);
  padding: 32px 28px 36px;
  transition: background var(--dur) var(--ease);
  position: relative;
}

.service-tile:hover { background: var(--off); }

.service-tile__num {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: block;
  margin-bottom: 14px;
}

.service-tile__name {
  font-family: var(--font-display);
  font-size: clamp(19px, 1.7vw, 24px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
  line-height: 1.15;
}

.service-tile__desc {
  font-family: var(--font-sans);
  font-size: 13.5px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

.services-cta-strip {
  background: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 4vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: clamp(48px, 6vw, 72px);
}

.services-cta-strip h2 { color: var(--off); font-size: clamp(24px, 3vw, 38px); }
.services-cta-strip h2 em { color: var(--coral-soft); font-style: normal; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: center;
}

.about-story-visual {
  position: relative;
}

.about-story-img {
  aspect-ratio: 3 / 4;
  border-radius: var(--r-lg);
  background: linear-gradient(148deg, #3A3330 0%, #1A1714 100%);
  overflow: hidden;
  position: relative;
}

.about-story-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-story-pill {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: var(--coral);
  border-radius: var(--r-md);
  padding: 18px 22px;
  color: #fff;
}

.about-story-pill__num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.about-story-pill__label {
  font-family: var(--font-sans);
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  display: block;
}

.about-story-copy h2 { font-size: clamp(28px, 3.5vw, 46px); margin-bottom: 20px; }
.about-story-copy h2 em { color: var(--coral); font-style: normal; }
.about-story-copy p { color: var(--slate); margin-bottom: 18px; }

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

.value-card {
  background: var(--paper);
  border-radius: var(--r-md);
  padding: 32px 28px;
  border: 1px solid var(--line);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.value-card__big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(50px, 6.5vw, 72px);
  color: rgba(255,69,33,0.13);
  line-height: 1;
  display: block;
  margin-bottom: 12px;
}

.value-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  color: var(--ink);
  margin-bottom: 12px;
}

.value-card__desc {
  font-family: var(--font-sans);
  font-size: 14px;
  color: var(--slate);
  line-height: 1.65;
  margin: 0;
}

/* ============================================================
   TEAM FLIP CARDS (Team Page)
   ============================================================ */
.team-flip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.team-flip {
  height: 460px;
  perspective: 1200px;
  cursor: pointer;
  border-radius: var(--r-md);
}

.team-flip:focus-visible {
  outline: 2px solid var(--coral);
  outline-offset: 3px;
}

.team-flip__inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.68s var(--ease);
}

@media (hover: hover) and (pointer: fine) {
  .team-flip:hover .team-flip__inner { transform: rotateY(180deg); }
}

.team-flip.is-flipped .team-flip__inner { transform: rotateY(180deg); }

.team-flip__front,
.team-flip__back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: var(--r-md);
  overflow: hidden;
}

.team-flip__front {
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0;
}

.team-flip__photo-wrap {
  position: absolute;
  inset: 0;
}

.team-flip__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.4s ease;
  opacity: 0.82;
}

.team-flip:hover .team-flip__photo {
  transform: scale(1.04);
  opacity: 0.6;
}

.team-flip__front-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,23,20,0.88) 0%, transparent 55%);
}

.team-flip__front-info {
  position: relative;
  z-index: 2;
  padding: 24px;
}

.team-flip__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(21px, 1.8vw, 26px);
  color: var(--off);
  line-height: 1.1;
}

.team-flip__role {
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--coral-soft);
  font-weight: 500;
  letter-spacing: 0.04em;
  margin-top: 5px;
}

.team-flip__back {
  transform: rotateY(180deg);
  background: var(--coral);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.team-flip__back-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  line-height: 1;
}

.team-flip__back-role {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  display: block;
  margin-top: 2px;
  margin-bottom: 16px;
}

.team-flip__back-bio {
  font-family: var(--font-sans);
  font-size: 14px;
  color: rgba(255,255,255,0.86);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.team-flip__back-mono {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
  position: absolute;
  top: 20px;
  right: 20px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info-block { }

.contact-info-item {
  margin-bottom: 36px;
}

.contact-info-item__label {
  font-family: var(--font-sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral-deep);
  display: block;
  margin-bottom: 8px;
}

.contact-info-item__value {
  font-family: var(--font-display);
  font-size: clamp(19px, 2vw, 26px);
  color: var(--ink);
  text-decoration: none;
  line-height: 1.25;
  display: block;
}

a.contact-info-item__value:hover { color: var(--coral); }

.contact-form-box {
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 44px;
  border: 1px solid var(--line);
}

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

/* ============================================================
   TESTIMONIAL STACK
   ============================================================ */
.testimonials-duo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 36px;
  border: 1px solid var(--line);
}

.tcard__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--ink);
  line-height: 1.42;
  margin-bottom: 24px;
  font-style: normal;
}

.tcard__quote em { color: var(--coral-deep); font-style: normal; }

.tcard__cite {
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.tcard__cite strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

/* ============================================================
   WORK PAGE GRID
   ============================================================ */
.work-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-full-grid .flip-card {
  height: 420px;
}

/* Featured work (spans 2 cols) */
.work-full-grid .flip-card--wide {
  grid-column: span 2;
}

/* ============================================================
   INTRO TEXT BLOCK
   ============================================================ */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.intro-split h2 { font-size: clamp(28px, 3.4vw, 46px); }
.intro-split h2 em { color: var(--coral); font-style: normal; }

/* ============================================================
   SECTION DIVIDER
   ============================================================ */
.divider {
  height: 1px;
  background: var(--line);
}
.divider--dark { background: rgba(255,255,255,0.08); }

/* ============================================================
   RESPONSIVE — NEW SECTIONS
   ============================================================ */
@media (max-width: 1024px) {
  .pricing__grid { grid-template-columns: 1fr; gap: 14px; }
  .pricing-card--featured { transform: none; box-shadow: none; }
  .pricing-card--featured:hover { transform: translateY(-6px); }
  .addons__grid { grid-template-columns: repeat(2, 1fr); }
  .services-full-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-story-visual { max-width: 380px; }
  .team-flip-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .method__intro { grid-template-columns: 1fr; gap: 20px; }
  .method__grid { grid-template-columns: repeat(2, 1fr); }
  .intro-split { grid-template-columns: 1fr; gap: 28px; }
  .services-intro-grid { grid-template-columns: 1fr; gap: 28px; }
  .services-cta-strip { flex-direction: column; text-align: center; }
}

@media (max-width: 900px) {
  .values__grid { grid-template-columns: 1fr 1fr; }
  .testimonials-duo { grid-template-columns: 1fr; }
  .work-full-grid { grid-template-columns: repeat(2, 1fr); }
  .work-full-grid .flip-card--wide { grid-column: span 1; }
  .hero-v2__scroll-hint { display: none; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.18); }
  .stat-item:last-child, .stat-item:nth-child(2) { border-bottom: none; }
}

@media (max-width: 560px) {
  .pricing__grid { grid-template-columns: 1fr; }
  .addons__grid { grid-template-columns: 1fr; }
  .services-full-grid { grid-template-columns: 1fr; }
  .team-flip-grid { grid-template-columns: repeat(2, 1fr); }
  .team-flip { height: 380px; }
  .work-full-grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }
  .contact-form-box { padding: 28px 20px; }
  .method__grid { grid-template-columns: 1fr; }
  .hero-v2__ctas { flex-direction: column; }
  .hero-v2__ctas .btn { justify-content: center; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.18); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item { border-bottom: none; }
  .wm-card { width: 240px; height: 320px; }
}

/* ============================================================
   2026 REDESIGN — CUTTING-EDGE CONSUMER LOOK
   Inspired by taste-pr.com and bthecommunicationsagency.com
   ============================================================ */

/* ---- Wordmark hero (Taste-style — massive brand as art) ---- */
.hero-wm {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(96px, 12vw, 140px) clamp(20px, 4vw, 60px) clamp(40px, 5vw, 72px);
  overflow: hidden;
  background: var(--paper);
  color: var(--ink);
}
.hero-wm__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 45% at 78% 68%, rgba(255,69,33,0.55) 0%, rgba(255,126,100,0.25) 40%, transparent 70%),
    radial-gradient(ellipse 45% 55% at 20% 30%, rgba(255,224,215,0.9) 0%, transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  animation: heroBlob 22s ease-in-out infinite alternate;
  filter: saturate(1.05);
}
@keyframes heroBlob {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(-3%, 2%) scale(1.05); }
  100% { transform: translate(3%, -2%) scale(1.02); }
}
.hero-wm__wordmark {
  position: relative;
  z-index: 2;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(120px, 26vw, 380px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0;
  text-transform: uppercase;
}
.hero-wm__wordmark:not(.hero-wm__wordmark--rotator)::after {
  content: '.';
  color: var(--coral);
}

/* ---- Rotating hero words ---- */
.hero-wm__wordmark--rotator {
  position: relative;
  display: block;
  /* Fixed height matches the big "Brave" wordmark so shorter words don't
     collapse the layout as they rotate through. */
  height: clamp(130px, 30vw, 440px);
  font-size: inherit;
}
.hero-wm__word {
  position: absolute;
  left: 0;
  bottom: 0;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: -0.04em;
  color: var(--paper);
  text-transform: uppercase;
  /* Smaller default for the service list words so long ones fit on one line */
  font-size: clamp(48px, 7vw, 108px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  will-change: opacity, transform;
}
.hero-wm__word::after {
  content: '.';
  color: var(--coral);
}
.hero-wm__word.is-active {
  opacity: 1;
  transform: translateY(0);
}
.hero-wm__word--big {
  /* First word "Brave" gets the full oversized treatment, sentence case,
     sloped -10deg to match the logo wordmark, centred on the hero */
  font-size: clamp(150px, 34vw, 480px);
  letter-spacing: -0.05em;
  text-transform: none;
  font-weight: 700;
  left: 50%;
  transform: translate(-50%, calc(-9% + 14px)) rotate(-10deg);
  transform-origin: center 80%;
}
.hero-wm__word--big.is-active {
  transform: translate(-50%, -9%) rotate(-10deg);
}
.hero-wm--video .hero-wm__word { color: var(--paper); }
@media (max-width: 640px) {
  /* Allow the long service words to wrap to two lines on phones so the
     whole word is legible instead of being clipped by the hero mask. */
  .hero-wm__word {
    font-size: clamp(30px, 8.4vw, 46px);
    white-space: normal;
    line-height: 0.95;
    max-width: calc(100vw - 40px);
  }
  .hero-wm__word--big {
    font-size: clamp(110px, 30vw, 220px);
    white-space: nowrap;
  }
  .hero-wm__wordmark--rotator { height: clamp(120px, 32vw, 220px); }
}
.hero-wm__bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(24px, 4vw, 60px);
  flex-wrap: wrap;
}
.hero-wm__tagline {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(24px, 3.2vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 720px;
  margin: 0;
}
.hero-wm__tagline em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  color: var(--coral);
}
.hero-wm__meta {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: flex;
  gap: 20px;
  align-items: center;
}
.hero-wm__scroll {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  gap: 10px;
  align-items: center;
  animation: heroBounce 2.4s ease-in-out infinite;
}
@keyframes heroBounce {
  0%,100% { transform: translateY(0); }
  50%     { transform: translateY(4px); }
}

/* ---- Full-bleed marquee band (B.-style repeated giant text) ---- */
.marquee-band {
  overflow: hidden;
  background: var(--coral);
  color: var(--paper);
  padding: clamp(14px, 1.8vw, 24px) 0;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.marquee-band--ink   { background: var(--ink); color: var(--paper); }
.marquee-band--paper { background: var(--paper); color: var(--ink); border-color: var(--line-soft); }
.marquee-band__track {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  width: max-content;
  animation: marqueeSlide 34s linear infinite;
  will-change: transform;
}
.marquee-band__track--rev { animation-direction: reverse; }
.marquee-band__track--fast { animation-duration: 22s; }
.marquee-band:hover .marquee-band__track { animation-play-state: paused; }
@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.marquee-band__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 84px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
}
.marquee-band__dot {
  display: inline-block;
  width: clamp(10px, 1.4vw, 18px);
  height: clamp(10px, 1.4vw, 18px);
  border-radius: 50%;
  background: currentColor;
  opacity: 0.85;
}

/* ---- Numbered manifesto list (01 / 02 / 03) ---- */
.manifesto {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.manifesto__row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 60px);
  padding: clamp(14px, 1.8vw, 22px) 0;
  border-top: 1px solid var(--line);
  transition: background-color 0.4s ease, padding 0.4s ease;
}
.manifesto__row .manifesto__title { margin: 0; }
.manifesto__row .manifesto__desc { margin-top: 4px; }
.manifesto__row:last-child { border-bottom: 1px solid var(--line); }
.manifesto__row:hover {
  background: var(--coral-tint);
  padding-left: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}
.manifesto__num {
  font-family: var(--font-sans);
  font-size: clamp(18px, 1.8vw, 24px);
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--coral);
  align-self: start;
  padding-top: 6px;
}
.manifesto__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5.2vw, 76px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.manifesto__title em {
  font-style: italic;
  color: var(--coral);
}
.manifesto__desc {
  font-family: var(--font-sans);
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.5;
  color: var(--slate);
  max-width: 480px;
  margin-top: 14px;
}
.manifesto__cta {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 6px;
  border-bottom: 1.5px solid var(--ink);
  align-self: end;
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.manifesto__cta:hover { color: var(--coral); border-color: var(--coral); transform: translateX(4px); }
@media (max-width: 800px) {
  .manifesto__row { grid-template-columns: 60px 1fr; }
  .manifesto__cta { grid-column: 2; justify-self: start; margin-top: 12px; }
}

/* ---- Case-study rows (giant brand name + tiny caption) ---- */
.case-rows { display: grid; grid-template-columns: 1fr; gap: 0; }
.case-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: clamp(20px, 3vw, 36px) 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, padding 0.4s ease, background-color 0.4s ease;
  position: relative;
}
.case-rows .case-row:last-child { border-bottom: 1px solid var(--line); }
.case-row:hover {
  background: var(--ink);
  color: var(--paper);
  padding-left: clamp(16px, 2vw, 32px);
  padding-right: clamp(16px, 2vw, 32px);
}
.case-row:hover .case-row__caption { color: var(--coral-soft); }
.case-row:hover .case-row__arrow { transform: translateX(6px); color: var(--coral); }
.case-row__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6.5vw, 96px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: currentColor;
}
.case-row__caption {
  display: block;
  font-family: var(--font-sans);
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--slate);
  margin-top: 8px;
  transition: color 0.3s ease;
}
.case-row__arrow {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 48px);
  font-weight: 800;
  color: var(--coral);
  transition: transform 0.3s ease, color 0.3s ease;
}

/* ---- Client caps list (B.-style: giant client names in caps) ---- */
.clients-caps {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2vw, 28px) clamp(20px, 3vw, 48px);
  padding: clamp(24px, 3vw, 40px) 0;
  align-items: baseline;
}
.clients-caps__item {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 44px);
  line-height: 1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.3s ease, transform 0.3s ease;
  cursor: default;
}
.clients-caps__item:hover { color: var(--coral); transform: translateY(-2px); }
.clients-caps__sep {
  display: inline-block;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--coral);
  align-self: center;
}
.section--coral .clients-caps__item { color: var(--paper); }
.section--coral .clients-caps__item:hover { color: var(--ink); }
.section--coral .clients-caps__sep { background: var(--paper); }
.section--dark .clients-caps__item { color: var(--paper); }
.section--dark .clients-caps__item:hover { color: var(--coral); }

/* ---- Split image / text band (like B.'s hero split) ---- */
.split-band {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(36px, 5vw, 56px);
  padding: clamp(48px, 6vw, 96px) clamp(24px, 4vw, 64px);
  background: var(--paper);
  text-align: center;
}
.split-band__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 720px;
}
.split-band__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 20px;
}
.split-band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 4.6vw, 68px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 clamp(16px, 2vw, 28px);
}
.split-band__title em { font-style: italic; color: var(--coral); }
.split-band__lead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
  color: var(--slate);
  margin: 0 0 clamp(20px, 2.5vw, 32px);
}
.split-band__image {
  background: var(--cream);
  background-size: cover;
  background-position: center;
  border-radius: 50%;
  width: clamp(280px, 35vw, 420px);
  height: clamp(280px, 35vw, 420px);
  min-height: 0;
  flex-shrink: 0;
}
.split-band--rev .split-band__text { order: 1; }
.split-band--rev .split-band__image { order: 2; }

/* ---- Section eyebrow (bigger, coral, feels like a tag) ---- */
.tag-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  padding: 8px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin-bottom: 20px;
}
.tag-eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px; height: 6px;
  background: currentColor;
  border-radius: 50%;
}
.section--dark .tag-eyebrow,
.section--coral .tag-eyebrow { color: var(--paper); }

/* ---- Statement — one bold line per screen (Taste "WE CREATE APPETITE") ---- */
.statement {
  padding: clamp(60px, 8vw, 120px) 0;
  text-align: left;
}
.statement__kicker {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}
.statement__body {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 8vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  margin: 0;
}
.statement__body em { font-style: italic; color: var(--coral); }
.section--coral .statement__body,
.section--dark .statement__body { color: var(--paper); }
.section--coral .statement__body em,
.section--dark .statement__body em { color: var(--paper); text-decoration: underline; text-decoration-thickness: 3px; text-underline-offset: 6px; }

/* ---- 3-column image mosaic (LMA-style hero) ---- */
.mosaic-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: minmax(260px, 34vh);
  gap: 4px;
  padding: 0;
  background: var(--ink);
  overflow: hidden;
}
@media (max-width: 800px) {
  .mosaic-band { grid-template-columns: 1fr; grid-auto-rows: minmax(42vh, 42vh); }
}
.mosaic-band__col {
  position: relative;
  overflow: hidden;
  background: var(--cream) center/cover no-repeat;
  transition: transform 0.6s var(--ease);
}
.mosaic-band__col::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,23,20,0.35) 100%);
  transition: opacity 0.4s ease;
}
.mosaic-band__col:hover { transform: scale(1.02); }
.mosaic-band__col:hover::after { opacity: 0.2; }
.mosaic-band__col--tall { grid-row: span 2; }
.mosaic-band__col--wide { grid-column: 1 / -1; min-height: clamp(220px, 30vh, 320px); }
@media (max-width: 800px) {
  .mosaic-band__col--wide { grid-column: 1; }
}
.mosaic-band__caption {
  position: absolute;
  left: clamp(16px, 2vw, 32px);
  bottom: clamp(16px, 2vw, 32px);
  z-index: 2;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
}
@media (max-width: 800px) {
  .mosaic-band { grid-template-columns: 1fr; min-height: auto; }
  .mosaic-band__col { min-height: 42vh; }
}

/* ---- Full-bleed image block with big copy overlay ---- */
.image-block {
  position: relative;
  min-height: min(72vh, 720px);
  display: flex;
  align-items: flex-end;
  color: var(--paper);
  overflow: hidden;
  background: var(--ink) center/cover no-repeat;
}
.image-block::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,23,20,0.10) 0%, rgba(26,23,20,0.55) 80%);
  z-index: 1;
}
.image-block__inner {
  position: relative;
  z-index: 2;
  padding: clamp(48px, 6vw, 88px) clamp(24px, 4vw, 60px);
  max-width: 1080px;
}
.image-block__eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 16px;
  display: inline-block;
}
.image-block__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
}
.image-block__title em { font-style: italic; color: var(--coral-soft); }
.image-block__lead {
  font-family: var(--font-sans);
  font-size: clamp(16px, 1.3vw, 20px);
  line-height: 1.5;
  color: rgba(244,237,233,0.9);
  max-width: 640px;
  margin: 0 0 clamp(20px, 2.5vw, 32px);
}

/* ---- Hero wordmark with video (video-behind-BRAVE) ---- */
.hero-wm--video { background: var(--ink); color: var(--paper); }
.hero-wm--video .hero-wm__wordmark { color: var(--paper); }
.hero-wm--video .hero-wm__tagline { color: var(--paper); }
.hero-wm--video .hero-wm__tagline em { color: var(--coral-soft); }
.hero-wm--video .hero-wm__meta,
.hero-wm--video .hero-wm__scroll { color: var(--paper); }
.hero-wm__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-wm__video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse 70% 60% at 15% 90%, rgba(255,69,33,0.25) 0%, transparent 60%),
    linear-gradient(180deg, rgba(26,23,20,0.10) 0%, rgba(26,23,20,0.28) 100%);
  pointer-events: none;
}
.hero-wm--video .hero-wm__wordmark,
.hero-wm--video .hero-wm__bottom { position: relative; z-index: 2; }

/* ---- Big pull-quote / editorial line ---- */
.pull-quote {
  padding: clamp(60px, 8vw, 120px) 0;
}
.pull-quote__body {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 1080px;
  margin: 0;
}
.pull-quote__body::before {
  content: '“';
  font-family: var(--font-display);
  color: var(--coral);
  padding-right: 12px;
}
.pull-quote__body em { color: var(--coral); font-style: italic; }
.pull-quote__attrib {
  display: block;
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--slate);
}

/* ---- Modernise the existing ticker for the new aesthetic ---- */
.ticker-wrap--clients { background: var(--paper); }

/* ---- Kill the old .hero-v2__orb rings for the redesign ---- */
.hero-v2__orb { display: none !important; }

/* ---- Awards ticker — uniform square tiles, colour logos preserved ---- */
.ticker-wrap--awards {
  padding-bottom: clamp(36px, 5vw, 72px);
}
.ticker-wrap--awards .ticker__client {
  padding: 6px;
}
.ticker-wrap--awards .ticker__track {
  animation-duration: 22s;
}
.ticker-wrap--awards .ticker__logo {
  filter: none;
  opacity: 1;
  width: auto;
  max-width: clamp(180px, 20vw, 280px);
  height: clamp(100px, 10vw, 150px);
  object-fit: contain;
  background: transparent;
  border-radius: 10px;
}
.ticker-wrap--awards .ticker__client:hover .ticker__logo {
  filter: none;
  transform: scale(1.04);
  transition: transform 0.3s ease;
}
/* ---- Case-study long-form section ---- */
.cs-detail {
  position: relative;
  padding: clamp(48px, 6vw, 96px) 0;
}
.cs-detail + .cs-detail { border-top: 1px solid var(--line); }
.cs-detail__head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: baseline;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.cs-detail__tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  padding: 6px 12px;
  border: 1px solid currentColor;
  border-radius: 999px;
  margin-bottom: 12px;
}
.cs-detail__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
.cs-detail__brand em { font-style: italic; color: var(--coral); }
.cs-detail__lead {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--slate);
  max-width: 780px;
  margin: 8px 0 0;
}
.cs-detail__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  margin-top: clamp(32px, 3.5vw, 56px);
}
@media (max-width: 900px) {
  .cs-detail__body { grid-template-columns: 1fr; }
  .cs-detail__head { grid-template-columns: 1fr; }
}
.cs-detail__col h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 14px;
}
.cs-detail__col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
  color: var(--ink);
  margin: 20px 0 8px;
}
.cs-detail__col p {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 14px;
}
.cs-detail__col ul {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
}
.cs-detail__col li {
  font-family: var(--font-sans);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--slate);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.cs-detail__col li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--coral);
  font-weight: 800;
}
.cs-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: clamp(28px, 3.5vw, 44px) 0;
  padding: clamp(20px, 2.4vw, 32px);
  background: var(--coral-tint);
  border-radius: 14px;
}
.cs-stats__item {
  padding: 12px 16px;
  border-right: 1px solid rgba(226,58,24,0.18);
}
.cs-stats__item:last-child { border-right: none; }
.cs-stats__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 52px);
  line-height: 1;
  color: var(--coral-deep);
  letter-spacing: -0.02em;
}
.cs-stats__label {
  display: block;
  margin-top: 6px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}
@media (max-width: 700px) {
  .cs-stats__item { border-right: none; border-bottom: 1px solid rgba(226,58,24,0.18); padding: 12px 4px; }
  .cs-stats__item:last-child { border-bottom: none; }
}
.cs-detail__hero-img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: clamp(24px, 3vw, 40px);
}
.cs-detail__coverage {
  margin-top: clamp(28px, 3vw, 44px);
  padding-top: clamp(20px, 2.4vw, 32px);
  border-top: 1px solid var(--line);
}
.cs-detail__coverage h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--coral);
  margin: 0 0 16px;
}
.cs-detail__coverage-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 6px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cs-detail__coverage-list li {
  font-family: var(--font-sans);
  font-size: 13.5px;
  line-height: 1.4;
  padding: 4px 0;
}
.cs-detail__coverage-list a {
  color: var(--slate);
  text-decoration: none;
  transition: color 0.2s ease;
  overflow-wrap: anywhere;
}
.cs-detail__coverage-list a:hover { color: var(--coral); text-decoration: underline; }

/* ---- TV coverage strip on case-study detail ---- */
.cs-tv-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1.5vw, 20px);
  margin-top: 12px;
}
.cs-tv-strip__item {
  aspect-ratio: 16 / 9;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cs-tv-strip__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(26,23,20,0.08);
}
.cs-tv-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 700px) {
  .cs-tv-strip { grid-template-columns: 1fr; }
}

/* ---- Homepage case-study flip-card grid ---- */
.case-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.8vw, 24px);
  margin-top: clamp(24px, 3vw, 36px);
}
.case-grid .flip-card {
  width: 100%;
  height: clamp(340px, 32vw, 460px);
}
.case-grid .flip-card__front,
.case-grid .flip-card__back {
  border-radius: 12px;
}
.case-grid .flip-card__front::after {
  /* Warm bottom-fade so the sector chip + brand name always sit legibly */
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 1;
}
.case-grid .flip-card__front .fc-sector,
.case-grid .flip-card__front .fc-front-bottom { position: relative; z-index: 2; }
@media (max-width: 1000px) {
  .case-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .case-grid { grid-template-columns: 1fr; }
  .case-grid .flip-card { height: 380px; }
}

/* ---- Testimonials — designed section with a horizontal marquee of cards ---- */
.testi-section {
  position: relative;
  background: var(--coral-tint);
  padding: clamp(40px, 5vw, 72px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(226,58,24,0.12);
  border-bottom: 1px solid rgba(226,58,24,0.12);
}
.testi-section__head {
  text-align: center;
  margin-bottom: clamp(24px, 3vw, 40px);
  padding: 0 clamp(20px, 4vw, 40px);
}
.testi-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral-deep);
  margin: 0;
}
.testi-section__eyebrow::before,
.testi-section__eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--coral-deep);
  opacity: 0.5;
}
.testi-section__label {
  display: block;
  margin-top: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.testi-section__label em { font-style: italic; color: var(--coral); }

/* Horizontal marquee of quote cards */
.testi-marquee {
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%);
}
.testi-marquee:hover .testi-marquee__track { animation-play-state: paused; }
.testi-marquee__track {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  width: max-content;
  padding: clamp(4px, 0.6vw, 8px) 0;
  animation: testi-scroll 50s linear infinite;
  will-change: transform;
}
@keyframes testi-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testi-card {
  flex: 0 0 auto;
  width: clamp(300px, 30vw, 440px);
  min-height: clamp(240px, 20vw, 300px);
  padding: clamp(26px, 2.6vw, 36px);
  background: var(--paper);
  border: 1px solid rgba(226,58,24,0.14);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 12px 32px rgba(26,23,20,0.08);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Pale background image layer — shows through very softly, keeps text legible */
.testi-card__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.18;
  filter: saturate(0.85);
}
.testi-card__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(247,242,239,0.55) 0%, rgba(247,242,239,0.85) 100%);
}
.testi-card::before {
  content: '“';
  position: absolute;
  top: 8px;
  right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(80px, 8vw, 120px);
  line-height: 1;
  color: var(--coral);
  opacity: 0.18;
  pointer-events: none;
}
.testi-card__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
  color: var(--ink);
  margin: 0;
  position: relative;
  z-index: 1;
}
.testi-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(226,58,24,0.18);
}
.testi-card__pill {
  display: none;
}
.testi-card__avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--coral);
}
.testi-card__attrib {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}
.testi-card__attrib small {
  display: block;
  font-weight: 600;
  color: var(--slate);
  margin-top: 3px;
  letter-spacing: 0.12em;
}
@media (prefers-reduced-motion: reduce) {
  .testi-marquee__track { animation: none; flex-wrap: wrap; padding: 0 20px; }
}

/* ---- Scrolling testimonial band ---- */
.testimonial-wrap {
  overflow: hidden;
  background: var(--coral-tint);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: clamp(28px, 4vw, 56px) 0;
  /* Fade the leading and trailing edges so cards feel like they're
     entering / exiting a stage rather than clipping against a hard edge. */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.testimonial-wrap--paper { background: var(--paper); }
.testimonial-wrap--cream { background: var(--cream); }
.testimonial-wrap--dark  { background: var(--ink); color: var(--paper); border-color: rgba(255,255,255,0.08); }

.testimonial-wrap:hover .testimonial-track { animation-play-state: paused; }

.testimonial-track {
  display: flex;
  gap: clamp(18px, 2.4vw, 32px);
  width: max-content;
  align-items: stretch;
  animation: testimonial-scroll 36s linear infinite;
  will-change: transform;
}
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.testimonial-card {
  flex: 0 0 auto;
  width: clamp(280px, 30vw, 440px);
  min-height: clamp(240px, 20vw, 300px);
  padding: clamp(24px, 2.6vw, 34px);
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 10px 34px rgba(26,23,20,0.08);
  position: relative;
}
.testimonial-card::before {
  /* Oversized coral quote glyph sitting in the top-right corner as art */
  content: '“';
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(88px, 8vw, 130px);
  line-height: 1;
  color: var(--coral);
  opacity: 0.16;
  pointer-events: none;
}
.testimonial-wrap--paper .testimonial-card { background: var(--cream); }
.testimonial-wrap--cream .testimonial-card { background: var(--paper); }
.testimonial-wrap--dark  .testimonial-card { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); color: var(--paper); }

.testimonial-card__mark {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 92px);
  color: var(--coral);
  line-height: 0.5;
  margin: 0 0 6px;
  display: block;
}
.testimonial-card__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(19px, 1.7vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  font-style: italic;
}
.testimonial-wrap--dark .testimonial-card__quote { color: var(--paper); }

.testimonial-card__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 8px;
  border-top: 1px solid var(--line-soft);
}
.testimonial-wrap--dark .testimonial-card__foot { border-top-color: rgba(255,255,255,0.1); }
.testimonial-card__pill {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--coral);
  border-radius: 50%;
}
.testimonial-card__attrib {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  line-height: 1.35;
}
.testimonial-wrap--dark .testimonial-card__attrib { color: var(--paper); }
.testimonial-card__attrib small {
  display: block;
  font-weight: 600;
  color: var(--slate);
  margin-top: 3px;
  letter-spacing: 0.12em;
}
.testimonial-wrap--dark .testimonial-card__attrib small { color: rgba(244,237,233,0.7); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-track { animation: none; flex-wrap: wrap; }
}


/* ---- Sector mosaic "Find out more" button (shows on flipped image) ---- */
.mosaic-band__more {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--coral);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease;
}
.mosaic-band__more:hover { background: var(--coral-deep, #d43a12); }
.sector-flip.is-swapped .mosaic-band__more {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* ---- Our Work sector banners ---- */
.sector-banner {
  min-height: clamp(170px, 24vw, 280px);
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  padding: clamp(20px, 3vw, 36px) 0;
}
.sector-banner h2 {
  color: var(--off);
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 60px);
  line-height: 1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin: 0;
}


/* ---- Collapsible case studies on Our Work ---- */
.cs-detail__collapse {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s var(--ease);
}
.cs-detail__collapse > div {
  min-height: 0;
  overflow: hidden;
}
.cs-detail.is-open .cs-detail__collapse {
  grid-template-rows: 1fr;
}
.cs-detail__toggle {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: #fff;
  background: var(--coral);
  border: none;
  cursor: pointer;
  padding: 12px 22px;
  border-radius: 999px;
  margin: 4px 0 8px;
  transition: background 0.2s ease, transform 0.2s ease;
}
.cs-detail__toggle:hover {
  background: var(--coral-deep, #d43a12);
  transform: translateY(-1px);
}
.cs-detail__toggle span { display: inline-block; margin-left: 6px; }


/* ---- Compact one-row Outcomes grid on What We Do ---- */
.outcomes-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}
.outcomes-grid .service-card {
  padding: 18px 16px;
}
.outcomes-grid .service-card__title {
  font-size: clamp(15px, 1.4vw, 19px);
}
.outcomes-grid .service-card__desc {
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .outcomes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .outcomes-grid { grid-template-columns: 1fr; }
}


/* ---- Our Work sector index grid ---- */
.sector-index {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}
.sector-tile {
  display: flex;
  align-items: flex-end;
  min-height: clamp(140px, 18vw, 220px);
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  padding: 14px;
  text-decoration: none;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.sector-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(26,23,20,0.18);
}
.sector-tile span {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(12px, 1.2vw, 15px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  line-height: 1.3;
}
@media (max-width: 860px) {
  .sector-index { grid-template-columns: repeat(2, 1fr); }
  .sector-tile:last-child { grid-column: span 2; }
}


/* ---- Our Services card icons ---- */
.service-card__icon {
  display: block;
  width: 34px;
  height: 34px;
  color: var(--coral);
  margin-bottom: 12px;
}
.service-card__icon svg { width: 100%; height: 100%; }


/* ---- Uniform brand logo grid on Our Work ---- */
.logo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: clamp(18px, 2.5vw, 32px);
  align-items: center;
  justify-items: center;
}
.logo-grid__logo {
  height: 56px !important;
  width: auto !important;
  max-width: 150px !important;
  object-fit: contain !important;
  filter: grayscale(100%) opacity(0.72) !important;
  mix-blend-mode: multiply;
}


/* ---- Logo grid spacing under its headline ---- */
.logo-grid { margin-top: clamp(32px, 4.5vw, 56px); }

/* ---- Mobile menu: more space above the CTA button ---- */
.mobile-menu__foot { margin-top: clamp(28px, 5vh, 48px); }


/* ---- Visible bullet points on package lists ---- */
.pricing-card__list {
  list-style: none;
  padding-left: 0;
}
.pricing-card__list li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
}
.pricing-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
}
.pricing-card--featured .pricing-card__list li::before {
  background: #fff;
}


/* ---- Our Services: two compact cards per row ---- */
.our-services-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.our-services-grid .service-card {
  padding: 20px 18px;
}
.our-services-grid .service-card__title {
  font-size: clamp(17px, 1.6vw, 21px);
}
.our-services-grid .service-card__desc {
  font-size: 13.5px;
  line-height: 1.55;
}
.our-services-grid .service-card__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 8px;
}
/* Our Services stays two-per-row at every screen size */
@media (max-width: 640px) {
  .our-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .our-services-grid .service-card { padding: 14px 12px; }
  .our-services-grid .service-card__title { font-size: 15px; }
  .our-services-grid .service-card__desc { font-size: 12px; }
}


/* Final override: Our Services grid is always 2 columns */
.our-services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }

/* ---- CTA sections over photos: labels and text in white ---- */
.cta-section .eyebrow,
.cta-section .tag-eyebrow {
  color: #ffffff;
  border-color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}


/* ---- Sector mosaic: original full-bleed layout, bigger captions ---- */
.mosaic-band__caption {
  font-size: clamp(15px, 1.6vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.3;
}


/* ---- Ticker speed: clients and awards move at the same, quicker pace ---- */
.ticker-wrap--clients .ticker__track {
  animation-duration: 26s;
}
.ticker-wrap--awards .ticker__track {
  animation-duration: 5s;
}

/* ---- Smaller ticker logos on phones ---- */
@media (max-width: 640px) {
  .ticker__logo {
    height: 46px !important;
    max-width: 150px !important;
  }
  .ticker__client {
    min-width: 0 !important;
    padding: 14px 22px !important;
  }
  .ticker-wrap--awards .ticker__logo {
    height: 60px !important;
    max-width: 140px !important;
  }
  /* wide Barclays wordmark keeps its shape on phones */
  img[src*="barclays-trimmed"] {
    height: 30px !important;
    max-width: none !important;
  }
}


/* ---- Sector grid, boxed editorial layout ---- */
.mosaic-band--boxed {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(160px, 19vw, 225px);
  gap: 14px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 40px) clamp(18px, 2.2vw, 28px);
  background: var(--paper);
  overflow: visible;
}
/* Row one: four tiles. Row two: three wider tiles. */
.mosaic-band--boxed .mosaic-band__col:nth-child(-n+4) { grid-column: span 3; }
.mosaic-band--boxed .mosaic-band__col:nth-child(n+5)  { grid-column: span 4; }
.mosaic-band--boxed .mosaic-band__col {
  grid-row: auto;
  min-height: 0;
  border-radius: 14px;
  box-shadow: 0 6px 18px rgba(26,23,20,0.08);
}
.mosaic-band--boxed .mosaic-band__col:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(26,23,20,0.14);
}
@media (max-width: 900px) {
  .mosaic-band--boxed .mosaic-band__col:nth-child(-n+4) { grid-column: span 6; }
  .mosaic-band--boxed .mosaic-band__col:nth-child(n+5)  { grid-column: span 6; }
  .mosaic-band--boxed .mosaic-band__col:last-child      { grid-column: span 12; }
  .mosaic-band--boxed { grid-auto-rows: clamp(150px, 26vw, 200px); }
}

/* ---- Add-on cards: refined light design with a pop on hover ---- */
.addon-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(26,23,20,0.08);
  box-shadow: 0 2px 10px rgba(26,23,20,0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}
.addon-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-deep, #d43a12));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.addon-card:hover {
  background: #ffffff;
  transform: translateY(-6px) scale(1.015);
  border-color: rgba(255,69,33,0.35);
  box-shadow: 0 22px 44px rgba(255,69,33,0.15), 0 8px 20px rgba(26,23,20,0.10);
}
.addon-card:hover::before { transform: scaleX(1); }
.addon-card__name { transition: color 0.3s var(--ease); }
.addon-card:hover .addon-card__name { color: var(--coral); }
.addon-card__price { color: var(--coral); }


/* ---- Uniform rhythm around sector banners on Our Work ---- */
.sector-banner--spaced { margin-top: 0; }
.sector-banner + .section { padding-top: 0; }
.section:has(+ .sector-banner) { padding-bottom: 0; }
.cs-detail { padding: clamp(32px, 4vw, 52px) 0; }


/* ---- Sector titles as designed boxes (no photos) ---- */
.sector-banner--solid {
  min-height: 0;
  background: none;
  padding: 0;
  display: block;
}
.sector-banner--solid .wrap h2 {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 24px);
  background: linear-gradient(120deg, var(--coral) 0%, var(--coral-deep, #d43a12) 100%);
  color: #ffffff;
  border-radius: 16px;
  padding: clamp(20px, 2.8vw, 32px) clamp(24px, 3.5vw, 44px);
  font-size: clamp(26px, 3.4vw, 46px);
  text-shadow: none;
  box-shadow: 0 12px 28px rgba(255, 69, 33, 0.22);
}
.sector-banner--solid .wrap h2::before {
  content: '';
  width: clamp(28px, 3.5vw, 48px);
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.85);
  flex-shrink: 0;
}

/* ---- Hero rotator: keep every word on the same line level ----
   Words that wrap to two lines were bottom-anchored, making the first
   line sit higher and the next word appear to jump. Top-anchor instead. */
@media (max-width: 640px) {
  .hero-wm__word {
    bottom: auto;
    top: 0;
  }
  .hero-wm__word--big {
    top: auto;
    bottom: 0;
  }
}

/* ---- Nav bar height: generous at every screen size (wins over .wrap resets) ---- */
.nav .nav__inner {
  padding-top: clamp(20px, 2.4vw, 28px);
  padding-bottom: clamp(20px, 2.4vw, 28px);
}

/* ---- Hero "Brave" sits higher on desktop, clear of the tagline ---- */
@media (min-width: 641px) {
  .hero-wm__word--big.is-active { transform: translate(-50%, -24%) rotate(-10deg); }
  .hero-wm__word--big { transform: translate(-50%, calc(-24% + 14px)) rotate(-10deg); }
}
