/* ==========================================================================
   PHASE 5 — Design System
   --------------------------------------------------------------------------
   Every colour and typeface below comes from the official Phase 5 brand kit
   (Phase5-Brand-Guidelines.pdf + the logo SVGs). Nothing is invented.

     Purple    #662D91   primary / CTA / accent
     Plum      #1A0B24   ink, dark sections
     Purple LT #9B6FBF   accent on dark
     Lavender  #B8A9C9 / #D8CCE3 / #DDD6E3
     Tint      #F1EAF6   pale purple surface
     Surface   #F5F3F6   page background
     Grey      #6B6272 / #3A3140   body copy
     Grey LT   #D1CED3   ("PHASE" in the white logo lockup)

     Display   Anton      Body   Montserrat

   Layout language: full-bleed video hero (AfterMath-style scale and organic
   shapes) sitting above Zylo-style rounded bento tiles and pill UI.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. TOKENS
   -------------------------------------------------------------------------- */
:root {
  /* Brand */
  --purple:      #662D91;
  --purple-dk:   #4E2270;
  --purple-lt:   #9B6FBF;
  --plum:        #1A0B24;
  --plum-soft:   #2A1638;
  --lavender:    #B8A9C9;
  --lav-200:     #D8CCE3;
  --lav-150:     #DDD6E3;
  --lav-100:     #F1EAF6;
  --surface:     #F5F3F6;
  --paper:       #FFFFFF;
  --grey:        #6B6272;
  --grey-dk:     #3A3140;
  --grey-lt:     #D1CED3;

  /* Semantic */
  --bg:       var(--surface);
  --fg:       var(--plum);
  --fg-muted: var(--grey);
  --border:   var(--lav-150);

  /* On dark surfaces */
  --on-dark:        #FFFFFF;
  --on-dark-muted:  var(--lav-200);
  --on-dark-border: rgba(255,255,255,.16);

  /* Type */
  --font-display: "Anton", "Impact", "Arial Narrow Bold", sans-serif;
  --font-body: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Radius — Zylo-style soft rounding */
  --r-sm:   12px;
  --r-md:   20px;
  --r-lg:   28px;
  --r-xl:   40px;
  --r-pill: 999px;

  /* Spacing scale (4/8 rhythm) */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 32px;
  --space-6: 48px;
  --space-7: 64px;
  --space-8: 96px;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(26,11,36,.06);
  --shadow-md: 0 8px 24px rgba(26,11,36,.08);
  --shadow-lg: 0 20px 50px rgba(26,11,36,.12);
  --shadow-purple: 0 12px 30px rgba(102,45,145,.28);

  /* Motion */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur-fast: 150ms;
  --dur: 250ms;
  --dur-slow: 400ms;

  /* Layers */
  --z-nav:  100;
  --z-menu: 200;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;      /* clears the fixed nav on anchor jumps */
}

body {
  font-family: var(--font-body);
  font-size: 1rem;               /* 16px — no iOS auto-zoom on inputs */
  line-height: 1.65;
  background: var(--bg);
  color: var(--fg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video, svg { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; }
::selection { background: var(--purple); color: #fff; }

/* Visible focus for keyboard users on every interactive element */
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 3px;
  border-radius: 4px;
}
.on-dark :focus-visible,
.hero-video :focus-visible,
.footer :focus-visible,
.cta-band :focus-visible { outline-color: #fff; }

.skip-link {
  position: absolute; left: 16px; top: -100px;
  background: var(--plum); color: #fff;
  padding: 12px 20px; border-radius: var(--r-pill);
  font-weight: 600; font-size: .9rem; text-decoration: none;
  z-index: 999; transition: top var(--dur) var(--ease-out);
}
.skip-link:focus { top: 16px; }

.wrap {
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 0 var(--space-4);
}
@media (min-width: 768px) { .wrap { padding: 0 var(--space-6); } }

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

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, .display {
  font-family: var(--font-display);
  font-weight: 400;              /* Anton ships a single weight */
  line-height: .95;
  letter-spacing: -.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(2.75rem, 8vw, 6.25rem); line-height: .92; }
h2 { font-size: clamp(2rem, 5vw, 3.75rem); line-height: .96; }
h3 {
  font-family: var(--font-body);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  font-weight: 700; line-height: 1.3; letter-spacing: -.01em;
}
h4 {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
}

/* Purple word inside a display heading — the brand's two-tone lockup logic */
.hl { color: var(--purple); }
.on-dark .hl, .hero-video .hl, .hl-lt { color: var(--purple-lt); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .16em;
  color: var(--purple);
  padding: 7px 16px;
  border: 1.5px solid var(--lav-150);
  background: var(--paper);
  border-radius: var(--r-pill);
  margin-bottom: var(--space-4);
}
.eyebrow::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--purple); flex: none;
}
.on-dark .eyebrow, .hero-video .eyebrow {
  color: var(--purple-lt);
  border-color: var(--on-dark-border);
  background: rgba(255,255,255,.06);
}
.on-dark .eyebrow::before, .hero-video .eyebrow::before { background: var(--purple-lt); }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--fg-muted);
  max-width: 62ch;               /* keeps line length readable */
  line-height: 1.7;
}
.on-dark { color: var(--on-dark); }
.on-dark .lead { color: var(--on-dark-muted); }

p + p { margin-top: var(--space-3); }

/* --------------------------------------------------------------------------
   4. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  padding: 15px 30px; min-height: 52px;    /* ≥44px touch target */
  border: 2px solid transparent;
  border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease-out),
              color var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out),
              transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.btn svg { width: 18px; height: 18px; flex: none; }

.btn-primary {
  background: var(--purple); color: #fff; border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.btn-primary:hover { background: var(--purple-dk); border-color: var(--purple-dk); transform: translateY(-2px); }

.btn-dark { background: var(--plum); color: #fff; border-color: var(--plum); }
.btn-dark:hover { background: var(--purple); border-color: var(--purple); transform: translateY(-2px); }

.btn-ghost { background: transparent; color: var(--plum); border-color: var(--lav-150); }
.btn-ghost:hover { border-color: var(--plum); background: var(--paper); transform: translateY(-2px); }

/* Ghost variant for dark bands and the video hero */
.on-dark .btn-ghost, .hero-video .btn-ghost {
  color: #fff; border-color: rgba(255,255,255,.4);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.on-dark .btn-ghost:hover, .hero-video .btn-ghost:hover {
  background: rgba(255,255,255,.16); border-color: #fff;
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-5); }

/* Inline text link with arrow */
.more {
  display: inline-flex; align-items: center; gap: 7px;
  font-weight: 600; font-size: .95rem; color: var(--purple);
  text-decoration: none;
}
.more svg { width: 16px; height: 16px; transition: transform var(--dur) var(--ease-out); }
.more:hover svg, a:hover .more svg { transform: translateX(4px); }
.on-dark .more { color: var(--purple-lt); }

/* --------------------------------------------------------------------------
   5. NAV
   -------------------------------------------------------------------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: var(--z-nav);
  background: rgba(245,243,246,.85);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
/* Homepage only: the nav floats over the video until you scroll */
.nav--overlay {
  background: transparent;
  backdrop-filter: none; -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.nav--overlay.is-scrolled {
  background: rgba(245,243,246,.9);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 14px var(--space-4);
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-4);
}
@media (min-width: 768px) { .nav-inner { padding: 16px var(--space-6); } }

/* Logo files are outlined vector paths (assets/logos/phase5-wordmark-*.svg) —
   no webfont dependency, and the viewBox bounds the artwork exactly. Width is
   derived from the width/height attributes on the <img>, so nothing clips. */
.nav-logo { display: block; flex: none; }
.nav-logo img { height: 26px; width: auto; }
@media (min-width: 768px) { .nav-logo img { height: 30px; } }
/* The light lockup shows only while the nav is transparent over the video */
.nav-logo .logo-light { display: none; }
.nav--overlay:not(.is-scrolled) .nav-logo .logo-dark { display: none; }
.nav--overlay:not(.is-scrolled) .nav-logo .logo-light { display: block; }

.nav-links { display: flex; align-items: center; gap: var(--space-1); }
.nav-links a {
  font-size: .95rem; font-weight: 600; text-decoration: none;
  color: var(--plum); padding: 11px 16px; border-radius: var(--r-pill);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out);
}
.nav-links a:hover { background: var(--lav-100); color: var(--purple); }
.nav-links a.is-active { color: var(--purple); }
.nav-links a.is-active::after {
  content: ""; display: block; height: 2px; width: 20px;
  background: var(--purple); border-radius: 2px; margin: 3px auto -5px;
}
.nav-links a.nav-cta {
  background: var(--plum); color: #fff; padding: 12px 24px; margin-left: var(--space-2);
}
.nav-links a.nav-cta:hover { background: var(--purple); color: #fff; }
.nav-links a.nav-cta.is-active::after { display: none; }

/* Transparent-over-video state */
.nav--overlay:not(.is-scrolled) .nav-links a { color: #fff; }
.nav--overlay:not(.is-scrolled) .nav-links a:hover { background: rgba(255,255,255,.15); color: #fff; }
.nav--overlay:not(.is-scrolled) .nav-links a.is-active::after { background: #fff; }
.nav--overlay:not(.is-scrolled) .nav-links a.nav-cta { background: #fff; color: var(--plum); }
.nav--overlay:not(.is-scrolled) .nav-links a.nav-cta:hover { background: var(--purple); color: #fff; }

/* Hamburger */
.nav-toggle {
  display: none; width: 46px; height: 46px;   /* ≥44px touch target */
  align-items: center; justify-content: center;
  background: transparent; border: 1.5px solid var(--border);
  border-radius: var(--r-pill); cursor: pointer;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.nav-toggle span {
  display: block; width: 18px; height: 2px; background: var(--plum);
  border-radius: 2px; position: relative;
  transition: transform var(--dur) var(--ease-out);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px;
  background: var(--plum); border-radius: 2px;
  transition: transform var(--dur) var(--ease-out), opacity var(--dur) var(--ease-out);
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav--overlay:not(.is-scrolled) .nav-toggle { border-color: rgba(255,255,255,.4); }
.nav--overlay:not(.is-scrolled) .nav-toggle span,
.nav--overlay:not(.is-scrolled) .nav-toggle span::before,
.nav--overlay:not(.is-scrolled) .nav-toggle span::after { background: #fff; }

.nav-toggle[aria-expanded="true"] span { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(-90deg); }
.nav-toggle[aria-expanded="true"] span::after { opacity: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; position: relative; z-index: calc(var(--z-menu) + 1); }
  .nav-links {
    position: fixed; left: 0; right: 0; top: 0;
    flex-direction: column; align-items: stretch; gap: var(--space-1);
    background: var(--surface);
    padding: 96px var(--space-4) var(--space-6);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    transition: transform var(--dur-slow) var(--ease-out);
    z-index: var(--z-menu);
    max-height: 100dvh; overflow-y: auto;
  }
  .nav-links.is-open { transform: translateY(0); }
  .nav-links a { padding: 16px 18px; font-size: 1.1rem; color: var(--plum) !important; }
  .nav-links a.is-active::after { margin: 4px 0 0; }
  .nav-links a.nav-cta {
    margin: var(--space-3) 0 0; text-align: center;
    background: var(--plum) !important; color: #fff !important;
  }
  /* Keep the logo visible above the drop-down panel */
  .nav-logo { position: relative; z-index: calc(var(--z-menu) + 1); }
  /* Keep the hamburger and logo dark once the light menu panel is open,
     including over the homepage video where they'd otherwise be white. */
  .nav--overlay .nav-toggle[aria-expanded="true"] { border-color: var(--border); }
  .nav--overlay .nav-toggle[aria-expanded="true"] span,
  .nav--overlay .nav-toggle[aria-expanded="true"] span::before { background: var(--plum); }
  .nav--overlay.is-menu-open .nav-logo .logo-dark  { display: block; }
  .nav--overlay.is-menu-open .nav-logo .logo-light { display: none; }
}

/* --------------------------------------------------------------------------
   6. VIDEO HERO (homepage)
   -------------------------------------------------------------------------- */
.hero-video {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  overflow: hidden;
  background: var(--plum);       /* no white flash before the video paints */
  color: #fff;
  padding: 140px 0 var(--space-8);   /* bottom clears the scroll cue */
  isolation: isolate;
}
.hero-video__media { position: absolute; inset: 0; z-index: -2; }
.hero-video__media video, .hero-video__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
/* Plum-to-purple wash keeps white type above 4.5:1 over any frame */
.hero-video__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(180deg, rgba(26,11,36,.72) 0%, rgba(26,11,36,.5) 35%, rgba(26,11,36,.9) 100%),
    linear-gradient(115deg, rgba(102,45,145,.55) 0%, rgba(102,45,145,0) 60%);
}
.hero-video__inner { max-width: 1200px; margin: 0 auto; width: 100%; padding: 0 var(--space-4); }
@media (min-width: 768px) { .hero-video__inner { padding: 0 var(--space-6); } }

.hero-video h1 { max-width: 15ch; text-wrap: balance; }
.hero-video .lead { color: rgba(255,255,255,.88); margin-top: var(--space-4); max-width: 54ch; }

/* Service chips across the bottom of the hero */
.hero-chips {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: var(--space-6); padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,.18);
}
.hero-chips span {
  font-size: .8rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.92);
  padding: 9px 18px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}

.scroll-cue {
  position: absolute; left: 50%; bottom: 20px; transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-size: .68rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.7); text-decoration: none; padding: 8px 14px;
}
.scroll-cue svg { width: 16px; height: 16px; animation: nudge 2s var(--ease-out) infinite; }
@keyframes nudge {
  0%, 100% { transform: translateY(0); opacity: .7; }
  50%      { transform: translateY(5px); opacity: 1; }
}
@media (max-width: 700px) { .scroll-cue { display: none; } }

/* --------------------------------------------------------------------------
   7. PAGE HEADER (interior pages)
   -------------------------------------------------------------------------- */
.page-head {
  position: relative; overflow: hidden;
  padding: calc(84px + var(--space-7)) 0 var(--space-7);
  background: var(--paper);
  border-bottom: 1px solid var(--border);
}
.page-head h1 { max-width: 17ch; text-wrap: balance; }
.page-head .lead { margin-top: var(--space-4); }
/* Soft brand-purple orbs, echoing the guidelines' organic shapes */
.page-head::before, .page-head::after {
  content: ""; position: absolute; border-radius: 50%; pointer-events: none;
}
.page-head::before {
  width: 460px; height: 460px; top: -190px; right: -130px;
  background: radial-gradient(circle, rgba(102,45,145,.16) 0%, rgba(102,45,145,0) 70%);
}
.page-head::after {
  width: 320px; height: 320px; bottom: -170px; right: 190px;
  background: radial-gradient(circle, rgba(155,111,191,.18) 0%, rgba(155,111,191,0) 70%);
}
.page-head .wrap { position: relative; z-index: 1; }

/* --------------------------------------------------------------------------
   8. SECTIONS & WAVE DIVIDERS
   -------------------------------------------------------------------------- */
.section { padding: var(--space-8) 0; position: relative; }
.section--tight { padding: var(--space-7) 0; }
.section--paper { background: var(--paper); }
.section--tint  { background: var(--lav-100); }

/* Full-bleed plum band — the AfterMath-style colour field */
.band {
  position: relative; overflow: hidden;
  background: var(--plum); color: var(--on-dark);
  padding: var(--space-8) 0;
}
.band::before {   /* purple glow so flat plum doesn't read as dead space */
  content: ""; position: absolute; width: 720px; height: 720px;
  top: -290px; left: -180px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(102,45,145,.55) 0%, rgba(102,45,145,0) 68%);
}
.band .wrap { position: relative; z-index: 1; }

/* Organic wave that transitions one section colour into the next */
.wave { display: block; width: 100%; line-height: 0; }
.wave svg { display: block; width: 100%; height: 60px; }
@media (min-width: 768px) { .wave svg { height: 100px; } }
/* The wave path only fills one side of the curve — the rest is transparent and
   shows the page background. When the next section is coloured rather than the
   usual light surface, tint the wave to match or a pale strip appears in the seam. */
.wave--onto-purple { background: var(--purple); }

.section-head { max-width: 760px; margin-bottom: var(--space-6); }
.section-head h2 { text-wrap: balance; }
.section-head .lead { margin-top: var(--space-4); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .lead { margin-left: auto; margin-right: auto; }

/* --------------------------------------------------------------------------
   9. SPLIT + BENTO (Zylo-style)
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr; gap: var(--space-6); align-items: center; }
@media (min-width: 960px) {
  .split { grid-template-columns: 1fr 1.05fr; gap: var(--space-7); }
  .split--reverse .split__media { order: -1; }
}
.split__copy h2 { text-wrap: balance; }
.split__copy .lead { margin-top: var(--space-4); }

/* Pill tag cloud under the split copy, like the Zylo reference */
.tag-cloud {
  display: flex; flex-wrap: wrap; gap: var(--space-2);
  margin-top: var(--space-5); list-style: none;
}
.tag-cloud span {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .9rem; font-weight: 600;
  padding: 11px 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  background: var(--paper); color: var(--grey-dk);
}
.tag-cloud .is-featured {
  background: var(--purple); color: #fff; border-color: var(--purple);
  box-shadow: var(--shadow-purple);
}
.tag-cloud .tag-plus { width: 42px; height: 42px; padding: 0; justify-content: center; color: var(--purple); }
.tag-cloud .tag-plus svg { width: 16px; height: 16px; }

/* Bento media grid */
.bento {
  display: grid; grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 132px; gap: var(--space-3);
}
@media (min-width: 560px) { .bento { grid-auto-rows: 168px; } }
@media (min-width: 960px) { .bento { grid-auto-rows: 152px; } }

.bento__tile {
  position: relative; overflow: hidden;
  border-radius: var(--r-lg);
  background: var(--lav-150);
}
.bento__tile img, .bento__tile video {
  width: 100%; height: 100%; object-fit: cover;
  /* Tiles crop their photo. Set --focus on a tile to choose which part stays
     visible, e.g. style="--focus: 80% 50%" pushes the crop toward the right. */
  object-position: var(--focus, 50% 50%);
  transition: transform var(--dur-slow) var(--ease-out);
}
.bento__tile:hover img { transform: scale(1.04); }
.bento__tile--tall { grid-row: span 2; }
.bento__tile--wide { grid-column: span 2; }

/* Solid brand-colour tiles carrying a label */
.bento__tile--purple { background: var(--purple); color: #fff; }
.bento__tile--plum   { background: var(--plum);   color: #fff; }
.bento__tile--tint   { background: var(--lav-100); color: var(--plum); }

.bento__pad {
  height: 100%; padding: var(--space-4);
  display: flex; flex-direction: column; justify-content: space-between;
}
.bento__stat {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: .9; text-transform: uppercase;
}
.bento__label { font-size: .78rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .85; }
.bento__pad svg { width: 26px; height: 26px; }

/* Caption chip floating over a photo tile */
.bento__caption {
  position: absolute; left: 12px; bottom: 12px;
  font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #fff; background: rgba(26,11,36,.66);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  padding: 7px 14px; border-radius: var(--r-pill);
}

/* --------------------------------------------------------------------------
   10. CARDS
   -------------------------------------------------------------------------- */
.card-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 620px)  { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .card-grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card {
  display: flex; flex-direction: column;
  background: var(--paper);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  text-decoration: none; color: inherit;
  transition: transform var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out),
              border-color var(--dur) var(--ease-out);
}
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--lavender); }
.card h3 { margin-bottom: var(--space-2); }
.card p { color: var(--fg-muted); font-size: .96rem; flex: 1; }
.card .more { margin-top: var(--space-4); }

.card__icon {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: var(--r-md);
  background: var(--lav-100); color: var(--purple);
  margin-bottom: var(--space-4);
}
.card__icon svg { width: 24px; height: 24px; }
.card__icon--purple { background: var(--purple); color: #fff; }
.card__icon--plum   { background: var(--plum);   color: #fff; }
.card__icon--lav    { background: var(--lav-200); color: var(--plum); }

.on-dark .card { background: rgba(255,255,255,.05); border-color: var(--on-dark-border); color: #fff; }
.on-dark .card p { color: var(--on-dark-muted); }
.on-dark .card__icon { background: rgba(255,255,255,.1); color: var(--purple-lt); }

/* Stat blocks (dark band) */
.stat-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 720px) { .stat-grid { grid-template-columns: repeat(3, 1fr); } }
.stat {
  padding: var(--space-5); border-radius: var(--r-lg);
  background: rgba(255,255,255,.05); border: 1px solid var(--on-dark-border);
}
.stat strong {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.9rem); text-transform: uppercase;
  line-height: 1; margin-bottom: var(--space-3); color: var(--purple-lt);
}
.stat span { color: var(--on-dark-muted); font-size: .95rem; }

/* --------------------------------------------------------------------------
   11. FEATURE ROWS
   -------------------------------------------------------------------------- */
.feature {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
  align-items: center; padding: var(--space-7) 0;
  border-bottom: 1px solid var(--border);
}
.feature:last-child { border-bottom: 0; }
@media (min-width: 900px) {
  .feature { grid-template-columns: 1fr 1fr; gap: var(--space-7); }
  .feature--reverse .feature__visual { order: -1; }
}
.feature__num {
  display: block; font-family: var(--font-display); font-weight: 400;
  font-size: 1rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); margin-bottom: var(--space-3);
}
.feature h3 { font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: var(--space-3); }
.feature p { color: var(--fg-muted); }
.feature__visual {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--lav-150);
}
.feature__visual img { width: 100%; height: 100%; object-fit: cover; }

/* Checklist */
.checklist { list-style: none; margin-top: var(--space-4); display: grid; gap: 11px; }
.checklist li { position: relative; padding-left: 32px; color: var(--fg-muted); font-size: .97rem; }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.on-dark .checklist li { color: var(--on-dark-muted); }
.on-dark .checklist li::before { background-color: var(--purple-lt); }

/* Value list (About) */
.value-grid { display: grid; gap: var(--space-5); grid-template-columns: 1fr; }
@media (min-width: 620px)  { .value-grid { grid-template-columns: repeat(2, 1fr); } }
.value { padding-left: var(--space-4); border-left: 3px solid var(--purple); }
.on-dark .value { border-left-color: var(--purple-lt); }
.value h3 { margin-bottom: var(--space-2); }
.value p { color: var(--fg-muted); font-size: .96rem; }
.on-dark .value p { color: var(--on-dark-muted); }

/* --------------------------------------------------------------------------
   12. WORK GRID
   -------------------------------------------------------------------------- */
.work-grid { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 620px)  { .work-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .work-grid { grid-template-columns: repeat(3, 1fr); } }
/* Override the 3-across default when the grid holds a different project count,
   so a short row reads as deliberate instead of leaving an empty column. */
@media (min-width: 1000px) { .work-grid--4 { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1000px) { .work-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.work-tile {
  display: flex; flex-direction: column;
  border-radius: var(--r-lg); overflow: hidden;
  background: var(--paper); border: 1.5px solid var(--border);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur) var(--ease-out);
}
.work-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.work-tile__thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--lav-150); }
.work-tile__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-out);
}
.work-tile:hover .work-tile__thumb img { transform: scale(1.05); }
.work-tile__body { padding: var(--space-4); flex: 1; }
.work-tile__body h3 { margin: var(--space-3) 0 var(--space-2); }
.work-tile__body p { color: var(--fg-muted); font-size: .93rem; }

.tag {
  display: inline-block;
  font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--purple); background: var(--lav-100);
  padding: 5px 12px; border-radius: var(--r-pill);
}

/* Whole-card link. The title carries the real anchor (so screen readers get
   meaningful link text) and its ::after covers the card to catch the click. */
.work-tile { position: relative; }
.work-tile__link { text-decoration: none; color: inherit; }
.work-tile__link::after { content: ""; position: absolute; inset: 0; z-index: 1; }
.work-tile:hover .work-tile__link { color: var(--purple); }
.work-tile__link:focus-visible { outline: none; }
.work-tile:has(.work-tile__link:focus-visible) {
  outline: 3px solid var(--purple); outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   12b. PROJECT GALLERY (case-study pages)
   -------------------------------------------------------------------------- */
/* CSS columns keep portrait headshots and landscape group shots at their own
   natural proportions instead of cropping everything to one aspect ratio. */
.gallery { columns: 2; column-gap: var(--space-3); }
@media (min-width: 900px) { .gallery { columns: 3; column-gap: var(--space-4); } }

.gallery figure {
  break-inside: avoid;
  margin: 0 0 var(--space-3);
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--lav-150);
}
@media (min-width: 900px) { .gallery figure { margin-bottom: var(--space-4); } }
.gallery img {
  width: 100%; height: auto; display: block;
  transition: transform var(--dur-slow) var(--ease-out);
}
.gallery figure:hover img { transform: scale(1.03); }

/* Each thumbnail is a button so it's reachable by keyboard, not just mouse */
.gallery__btn {
  display: block; width: 100%; padding: 0;
  border: 0; background: none; cursor: zoom-in;
  border-radius: var(--r-md); overflow: hidden;
}
.gallery__btn:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }

/* --------------------------------------------------------------------------
   12c. LIGHTBOX (markup injected by nav.js on pages that have a gallery)
   -------------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center;
  gap: var(--space-2); padding: var(--space-4);
  background: rgba(26,11,36,.94);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  opacity: 0; transition: opacity var(--dur) var(--ease-out);
}
.lightbox[hidden] { display: none; }
.lightbox.is-open { opacity: 1; }

.lightbox__stage {
  margin: 0; grid-column: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: var(--space-3); min-width: 0; max-height: 100%;
}
.lightbox__stage img {
  max-width: 100%; max-height: 78vh;
  width: auto; height: auto; object-fit: contain;
  border-radius: var(--r-md);
  background: var(--plum-soft);
  transform: scale(.98); transition: transform var(--dur) var(--ease-out);
}
.lightbox.is-open .lightbox__stage img { transform: scale(1); }
.lightbox__caption {
  color: var(--on-dark-muted); font-size: .9rem; text-align: center;
  max-width: 60ch; line-height: 1.5;
}
.lightbox__count {
  position: absolute; top: var(--space-4); left: var(--space-4);
  color: var(--on-dark-muted); font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; font-variant-numeric: tabular-nums;
}

/* Controls — all ≥44px touch targets */
.lightbox button {
  display: grid; place-items: center;
  width: 48px; height: 48px; flex: none;
  border: 1px solid var(--on-dark-border);
  border-radius: var(--r-pill);
  background: rgba(255,255,255,.08); color: #fff; cursor: pointer;
  transition: background var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.lightbox button:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.lightbox button:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }
.lightbox button svg { width: 22px; height: 22px; }
.lightbox__prev { grid-column: 1; }
.lightbox__next { grid-column: 3; }
.lightbox__close { position: absolute; top: var(--space-4); right: var(--space-4); }

@media (max-width: 640px) {
  .lightbox { grid-template-columns: 1fr; padding: 72px var(--space-3) var(--space-6); }
  .lightbox__stage { grid-column: 1; }
  .lightbox__stage img { max-height: 66vh; }
  /* Arrows drop below the photo so they don't overlap it on small screens */
  .lightbox__prev, .lightbox__next {
    position: absolute; bottom: var(--space-4); grid-column: 1;
  }
  .lightbox__prev { left: 25%; }
  .lightbox__next { right: 25%; }
}

body.has-lightbox-open { overflow: hidden; }

@media (prefers-reduced-motion: reduce) {
  .lightbox, .lightbox__stage img { transition: none; }
}

/* Full-bleed lead image at the top of a case study */
.project-hero {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--lav-150); margin-bottom: var(--space-6);
}
.project-hero img { width: 100%; height: auto; display: block; }

/* Client / services / deliverables summary */
.project-meta {
  display: grid; gap: var(--space-4);
  grid-template-columns: 1fr;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: var(--space-6);
}
@media (min-width: 700px) { .project-meta { grid-template-columns: repeat(3, 1fr); } }
.project-meta dt {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--purple); margin-bottom: 6px;
}
.project-meta dd { margin: 0; font-size: .97rem; color: var(--fg-muted); }

/* Prev / next project footer nav */
.project-nav {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: space-between; align-items: center;
  padding-top: var(--space-6); border-top: 1px solid var(--border);
}

/* --------------------------------------------------------------------------
   13. FAQ
   -------------------------------------------------------------------------- */
.faq { display: grid; gap: var(--space-3); max-width: 820px; }
.faq details {
  background: var(--paper); border: 1.5px solid var(--border);
  border-radius: var(--r-md); overflow: hidden;
  transition: border-color var(--dur) var(--ease-out);
}
.faq details[open] { border-color: var(--lavender); }
.faq summary {
  cursor: pointer; list-style: none;
  padding: 20px var(--space-4); min-height: 56px;
  font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: var(--space-3);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 20px; height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23662D91' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / contain no-repeat;
  transition: transform var(--dur) var(--ease-out);
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details p { padding: 0 var(--space-4) 20px; color: var(--fg-muted); font-size: .97rem; }

/* --------------------------------------------------------------------------
   14. FORMS
   -------------------------------------------------------------------------- */
.contact-layout { display: grid; gap: var(--space-6); grid-template-columns: 1fr; align-items: start; }
@media (min-width: 940px) { .contact-layout { grid-template-columns: 1.5fr 1fr; gap: var(--space-7); } }

.form-card {
  background: var(--paper); border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: var(--space-5);
}
@media (min-width: 768px) { .form-card { padding: var(--space-6); } }

.field { margin-bottom: var(--space-4); }
.field-row { display: grid; gap: var(--space-4); grid-template-columns: 1fr; }
@media (min-width: 560px) { .field-row { grid-template-columns: 1fr 1fr; } }

.field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 7px; color: var(--grey-dk); }
.field .req { color: var(--purple); }

.field input, .field select, .field textarea {
  width: 100%;
  font-family: var(--font-body); font-size: 1rem;   /* 16px stops iOS zoom */
  color: var(--fg);
  padding: 13px 16px; min-height: 50px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color var(--dur) var(--ease-out),
              background var(--dur) var(--ease-out),
              box-shadow var(--dur) var(--ease-out);
}
.field textarea { min-height: 140px; resize: vertical; line-height: 1.6; }
.field input:hover, .field select:hover, .field textarea:hover { border-color: var(--lavender); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--purple); background: var(--paper);
  box-shadow: 0 0 0 3px rgba(102,45,145,.14);
}
.field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6272' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 18px;
  padding-right: 44px;
}
.field .hint { display: block; font-size: .82rem; color: var(--fg-muted); margin-top: 6px; }

.form-card .btn { width: 100%; }
.form-note { font-size: .87rem; color: var(--fg-muted); margin-top: var(--space-3); text-align: center; }

.contact-aside h3 { margin-bottom: var(--space-2); }
.contact-aside > * + h3 { margin-top: var(--space-5); }
.contact-aside p { color: var(--fg-muted); font-size: .96rem; }
.contact-aside a { color: var(--purple); font-weight: 600; text-decoration: none; }
.contact-aside a:hover { text-decoration: underline; }

/* --------------------------------------------------------------------------
   15. CTA BAND
   -------------------------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--purple); color: #fff;
  padding: var(--space-8) 0; text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; width: 640px; height: 640px;
  bottom: -340px; right: -140px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 68%);
}
.cta-band .wrap { position: relative; z-index: 1; }
.cta-band h2 { max-width: 20ch; margin: 0 auto; text-wrap: balance; }
.cta-band .lead { color: rgba(255,255,255,.9); margin: var(--space-4) auto 0; }
.cta-band .btn-row { justify-content: center; }
.cta-band .eyebrow { color: #fff; background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.3); }
.cta-band .eyebrow::before { background: #fff; }
.cta-band .btn-primary { background: #fff; color: var(--purple); border-color: #fff; box-shadow: var(--shadow-lg); }
.cta-band .btn-primary:hover { background: var(--plum); color: #fff; border-color: var(--plum); }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.08); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.2); border-color: #fff; }
.cta-band a:not(.btn) { color: #fff; font-weight: 700; }

/* --------------------------------------------------------------------------
   16. FOOTER
   -------------------------------------------------------------------------- */
.footer { background: var(--plum); color: var(--on-dark); padding: var(--space-8) 0 0; }
.footer-cols { display: grid; gap: var(--space-6); grid-template-columns: 1fr; }
@media (min-width: 620px)  { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-cols { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: var(--space-7); } }

.footer-brand img { height: 32px; width: auto; margin-bottom: var(--space-4); }
.footer-brand p { color: var(--on-dark-muted); font-size: .95rem; max-width: 34ch; }
/* Column labels are h3 (not h4) so the heading order never skips a level */
.footer .footer-heading {
  font-family: var(--font-body);
  font-size: .8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--purple-lt); margin-bottom: var(--space-4);
}
.footer ul { list-style: none; display: grid; gap: 11px; }
.footer ul a {
  color: var(--on-dark-muted); text-decoration: none; font-size: .95rem;
  transition: color var(--dur) var(--ease-out);
}
.footer ul a:hover { color: #fff; }

.footer-social { display: flex; gap: var(--space-2); margin-top: var(--space-4); }
.footer-social a {
  width: 44px; height: 44px;                 /* touch target */
  display: grid; place-items: center;
  border: 1px solid var(--on-dark-border); border-radius: var(--r-pill);
  color: var(--on-dark-muted);
  transition: background var(--dur) var(--ease-out), color var(--dur) var(--ease-out), border-color var(--dur) var(--ease-out);
}
.footer-social a:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  margin-top: var(--space-7);
  border-top: 1px solid var(--on-dark-border);
  padding: var(--space-4) 0;
  font-size: .87rem; color: var(--on-dark-muted);
}
.footer-bottom .wrap {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  align-items: center; justify-content: space-between;
}

/* --------------------------------------------------------------------------
   17. SCROLL REVEAL
   -------------------------------------------------------------------------- */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Staggered children (bento tiles, card grids) */
.reveal-group > * {
  opacity: 0; transform: translateY(18px);
  transition: opacity var(--dur-slow) var(--ease-out), transform var(--dur-slow) var(--ease-out);
}
.reveal-group.is-visible > * { opacity: 1; transform: none; }
.reveal-group.is-visible > *:nth-child(1) { transition-delay: 0ms; }
.reveal-group.is-visible > *:nth-child(2) { transition-delay: 60ms; }
.reveal-group.is-visible > *:nth-child(3) { transition-delay: 120ms; }
.reveal-group.is-visible > *:nth-child(4) { transition-delay: 180ms; }
.reveal-group.is-visible > *:nth-child(5) { transition-delay: 240ms; }
.reveal-group.is-visible > *:nth-child(6) { transition-delay: 300ms; }

/* --------------------------------------------------------------------------
   18. REDUCED MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-group > * { opacity: 1 !important; transform: none !important; }
  .scroll-cue svg { animation: none; }
}

/* --------------------------------------------------------------------------
   19. LANDING PAGE (Google Ads)
   Scoped to .lp-* so nothing here can affect the main site pages.
   Used by: social-media-marketing.html
   -------------------------------------------------------------------------- */

/* Compact nav button — the landing page nav carries a CTA instead of a menu,
   so the button sits inline at a smaller size than the standard .btn. */
.btn-sm { padding: 11px 22px; min-height: 44px; font-size: .92rem; }

/* The landing headline is a full sentence, not a 4-word hook, so it needs a
   wider measure and a smaller ceiling than the default h1 clamp — otherwise
   it stacks into four lines of 100px Anton and swallows the fold. */
.lp-hero h1 { max-width: 22ch; font-size: clamp(2.4rem, 5.6vw, 4.6rem); }
.lp-hero .lead { max-width: 56ch; }

/* ── Explainer video slot ───────────────────────────────────────────────── */
/* Numbered step markers reuse the card icon chip */
.card__icon strong {
  font-family: var(--font-display); font-weight: 400;
  font-size: 1.45rem; line-height: 1;
}

.lp-video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--plum);
  box-shadow: var(--shadow-lg);
}
/* Whatever you drop in — <video>, YouTube iframe, Vimeo iframe — fills the frame */
.lp-video__frame > video,
.lp-video__frame > iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
  object-fit: cover;
}

/* Deliberately reads as unfinished (dashed edge) so it can't ship by accident */
.lp-video__placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: var(--space-3);
  padding: var(--space-5); text-align: center;
  color: #fff;
  border-radius: inherit;
  border: 2px dashed rgba(255,255,255,.22);
  background:
    radial-gradient(circle at 50% 42%, rgba(102,45,145,.55) 0%, rgba(102,45,145,0) 62%),
    var(--plum);
}
.lp-video__play {
  width: 76px; height: 76px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 2px solid rgba(255,255,255,.35);
}
.lp-video__play svg { width: 26px; height: 26px; margin-left: 4px; } /* optical centre */
.lp-video__label {
  font-family: var(--font-display); font-weight: 400;
  text-transform: uppercase; letter-spacing: -.01em; line-height: 1;
  font-size: clamp(1.15rem, 2.4vw, 1.75rem);
}
.lp-video__note { font-size: .85rem; color: var(--on-dark-muted); max-width: 46ch; }
@media (max-width: 560px) {
  .lp-video__play { width: 58px; height: 58px; }
  .lp-video__play svg { width: 20px; height: 20px; }
  .lp-video__note { display: none; }   /* keeps the 16:9 box uncluttered on phones */
}

/* Big email address under the closing CTA */
.lp-email {
  display: inline-block; margin-top: var(--space-4);
  font-family: var(--font-display); text-transform: uppercase;
  font-size: clamp(1.1rem, 3vw, 1.9rem);
  color: #fff; text-decoration: none;
  border-bottom: 3px solid rgba(255,255,255,.45);
  padding-bottom: 2px;
  transition: border-color var(--dur) var(--ease-out);
}
.lp-email:hover { border-bottom-color: #fff; }

/* Trimmed-down footer for the landing page */
.lp-footer { background: var(--plum); color: var(--on-dark); padding: var(--space-6) 0; }
.lp-footer .wrap {
  display: flex; flex-wrap: wrap; gap: var(--space-4);
  align-items: center; justify-content: space-between;
}
.lp-footer img { height: 26px; width: auto; }
.lp-footer nav { display: flex; flex-wrap: wrap; gap: var(--space-4); }
.lp-footer a { color: var(--on-dark-muted); text-decoration: none; font-size: .9rem; }
.lp-footer a:hover { color: #fff; }
.lp-footer small { color: var(--on-dark-muted); font-size: .82rem; }
