/* ═══════════════════════════════════════════════════════
   MAZA EVENTS · style.css
   Bold Typography system, locked specs:
   - Hot pink #FF2D87 accent (filled CTAs only)
   - Dark #0A0A0A background
   - Inter Tight everywhere (NO serif)
   - Sharp corners (0px radius)
   - MAZA. wordmark with pink period
   ═══════════════════════════════════════════════════════ */

:root {
  color-scheme: dark;
  
  /* Colour */
  --bg:           #0A0A0A;
  --bg-2:         #0F0F0F;
  --bg-3:         #1A1A1A;
  --fg:           #FAFAFA;
  --fg-2:         #B5B5B5;
  --fg-3:         #737373;
  --fg-4:         #404040;
  --border:       #262626;
  --border-2:     #3A3A3A;
  --accent:       #FF2D87;
  --accent-2:     #FF5BA4;
  --accent-on:    #0A0A0A;
  
  /* Type */
  --display:      'Inter Tight', sans-serif;
  --body:         'Inter', sans-serif;
  --mono:         'JetBrains Mono', ui-monospace, monospace;
  
  /* Layout */
  --max:          1280px;
  --pad:          32px;
  --t-fast:       150ms cubic-bezier(0.25, 0, 0, 1);
  --t-base:       250ms cubic-bezier(0.25, 0, 0, 1);
  --t-slow:       500ms cubic-bezier(0.25, 0, 0, 1);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* Subtle noise grain over everything */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.018;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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


/* ═══════════════════════════════════════════════════════
   1. LAYOUT PRIMITIVES
   ═══════════════════════════════════════════════════════ */
.shell {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
}
.section {
  padding: 96px 0;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.section--lg { padding: 128px 0; }
.section--xl { padding: 160px 0; }
.section--noborder { border-bottom: none; }


/* ═══════════════════════════════════════════════════════
   2. TYPOGRAPHY
   ═══════════════════════════════════════════════════════ */
.kicker {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.kicker::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
  display: inline-block;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-block;
}
.eyebrow--accent { color: var(--accent); }

.h-display {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.92;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.h-display strong { color: var(--accent); font-weight: 800; }

.h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.04em;
}
.h1 strong { color: var(--accent); font-weight: 800; }

.h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.035em;
}
.h2 strong { color: var(--accent); font-weight: 700; }

.h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}

.h4 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
}
.lede--lg {
  font-size: 22px;
  line-height: 1.45;
  max-width: 60ch;
}

.body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--fg-2);
}
.body--lg {
  font-size: 18px;
  line-height: 1.65;
}

.prose {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  max-width: 68ch;
}
.prose p { margin-bottom: 24px; }
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--fg); font-weight: 600; }
.prose h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-top: 56px;
  margin-bottom: 20px;
  line-height: 1.05;
}
.prose h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-top: 40px;
  margin-bottom: 16px;
  line-height: 1.1;
}
.prose ul, .prose ol {
  margin-bottom: 24px;
  padding-left: 24px;
  list-style-position: outside;
}
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; padding-left: 4px; }
.prose a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--t-fast);
}
.prose a:hover { opacity: 0.7; }
.prose blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  font-size: 19px;
  line-height: 1.5;
  color: var(--fg);
  font-weight: 500;
}
.prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-family: var(--body);
  font-size: 14px;
}
.prose table th,
.prose table td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.prose table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  background: var(--bg-2);
  border-bottom: 1px solid var(--border-2);
}
.prose table td { color: var(--fg-2); }
.prose table td:first-child { color: var(--fg); font-weight: 500; }


/* ═══════════════════════════════════════════════════════
   3. BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 18px 28px;
  border: 1px solid transparent;
  background: none;
  color: var(--fg);
  transition: all var(--t-fast);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.btn-arrow {
  width: 14px; height: 14px;
  fill: none; stroke: currentColor; stroke-width: 2;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-on);
  border-color: var(--accent);
}
.btn--primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.btn--outline {
  background: transparent;
  color: var(--fg);
  border-color: var(--fg);
}
.btn--outline:hover {
  background: var(--fg);
  color: var(--bg);
}

.btn--ghost {
  background: transparent;
  color: var(--fg-2);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  color: var(--fg);
  border-color: var(--fg-2);
}

.btn--lg { padding: 22px 36px; font-size: 14px; }
.btn--sm { padding: 12px 20px; font-size: 12px; }
.btn--block { width: 100%; }


/* ═══════════════════════════════════════════════════════
   4. LINKS
   Tertiary inline links — animated underline (Bold Typography)
   ═══════════════════════════════════════════════════════ */
.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
  cursor: pointer;
  transition: color var(--t-fast);
}
.link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--t-fast);
}
.link:hover::after { transform: scaleX(1.1); }
.link--white { color: var(--fg); }
.link--white::after { background: var(--fg); }


/* ═══════════════════════════════════════════════════════
   5. NAV
   ═══════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: saturate(140%) blur(20px);
  -webkit-backdrop-filter: saturate(140%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 48px;
}
.nav-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.03em;
}
.nav-brand-dot { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-2);
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.nav-links a:hover,
.nav-links a.active { color: var(--fg); }
.nav-links a.active { font-weight: 600; }
.nav-cta {
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 11px 20px;
  background: var(--accent);
  color: var(--accent-on);
  transition: all var(--t-fast);
}
.nav-cta:hover { background: var(--accent-2); }
.nav-burger {
  display: none;
  background: transparent;
  border: 1px solid var(--border-2);
  padding: 10px 14px;
  color: var(--fg);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════════════════════
   6. BREADCRUMB
   ═══════════════════════════════════════════════════════ */
.breadcrumb {
  padding-top: 110px;
  padding-bottom: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.breadcrumb a {
  color: var(--fg-3);
  transition: color var(--t-fast);
}
.breadcrumb a:hover { color: var(--fg-2); }
.breadcrumb-sep { margin: 0 12px; opacity: 0.4; }
.breadcrumb-current { color: var(--accent); }


/* ═══════════════════════════════════════════════════════
   7. HERO
   ═══════════════════════════════════════════════════════ */
.hero {
  padding: 200px 0 96px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.hero--page {
  padding: 160px 0 80px;
}
.hero-bg-numeral {
  position: absolute;
  top: 50%;
  right: -8%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(380px, 50vw, 760px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  pointer-events: none;
  z-index: 0;
  color: var(--bg-3);
  opacity: 0.45;
  user-select: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
}
.hero-kicker { margin-bottom: 32px; }
.hero-headline { margin-bottom: 32px; max-width: 18ch; }
.hero-lede { margin-bottom: 56px; }
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 96px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  padding-top: 32px;
}
.hero-stat {
  border-right: 1px solid var(--border);
  padding-right: 32px;
}
.hero-stat:last-child { border-right: none; padding-right: 0; }
.hero-stat-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 12px;
}
.hero-stat-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.04em;
  line-height: 1;
}
.hero-stat-value strong { color: var(--accent); font-weight: 800; }


/* ═══════════════════════════════════════════════════════
   8. SECTION HEADER
   ═══════════════════════════════════════════════════════ */
.section-h {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 80px;
}
.section-h--single {
  grid-template-columns: 1fr;
  max-width: 800px;
}
.section-h-eyebrow { margin-bottom: 24px; }
.section-h h2 { max-width: 18ch; }
.section-h-aside {
  font-size: 17px;
  color: var(--fg-2);
  line-height: 1.6;
  max-width: 50ch;
  justify-self: end;
}


/* ═══════════════════════════════════════════════════════
   9. SERVICES TILES (homepage 3-up + bespoke index)
   ═══════════════════════════════════════════════════════ */
.services {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.services--equal { grid-template-columns: 1fr 1fr 1fr; }
.services--four { grid-template-columns: 1fr 1fr 1fr 1fr; }
.service {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-height: 480px;
  position: relative;
  transition: background var(--t-base);
}
.service:hover { background: var(--bg-2); }
.service-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.service-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  max-width: 14ch;
}
.service-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin-bottom: 32px;
  max-width: 32ch;
}
.service-cta { margin-top: auto; }
.service-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.service-meta-val {
  color: var(--fg);
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   10. WORK CARDS
   ═══════════════════════════════════════════════════════ */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.work-grid > :first-child { grid-column: 1 / -1; }
.work-grid--equal > :first-child { grid-column: auto; }

.work-card {
  display: block;
  cursor: pointer;
}
.work-card:hover .work-img { transform: scale(1.02); }
.work-card:hover .work-name { color: var(--accent); }

.work-img-wrap {
  overflow: hidden;
  margin-bottom: 24px;
  background: var(--bg-3);
  aspect-ratio: 16/10;
  position: relative;
}
.work-grid > :first-child .work-img-wrap { aspect-ratio: 21/9; }
.work-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform var(--t-slow);
  position: relative;
}
.work-img--1 {
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(255, 45, 135, 0.14), transparent),
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255, 100, 180, 0.08), transparent),
    linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}
.work-img--2 {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}
.work-img--3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 45, 135, 0.12), transparent 70%),
    linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
}

.work-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}
.work-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.work-cat {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.work-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.work-grid > :first-child .work-name {
  font-size: clamp(32px, 3vw, 44px);
}
.work-loc {
  font-size: 14px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}


/* ═══════════════════════════════════════════════════════
   11. TRUST STRIP — Worked with
   ═══════════════════════════════════════════════════════ */
.trust {
  display: grid;
  grid-template-columns: 1fr 2.5fr;
  gap: 64px;
  align-items: start;
}
.trust-h h3 { margin-bottom: 16px; }
.trust-h .body { max-width: 28ch; }
.trust-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.trust-logo {
  background: var(--bg);
  aspect-ratio: 5/2;
  display: grid;
  place-items: center;
  padding: 16px;
  transition: background var(--t-base);
}
.trust-logo:hover { background: var(--bg-2); }
.trust-logo-text {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-4);
  text-align: center;
  line-height: 1.4;
}


/* ═══════════════════════════════════════════════════════
   12. HIRE CARDS + PRODUCT PAGE
   ═══════════════════════════════════════════════════════ */
.hire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.hire-card {
  display: block;
  cursor: pointer;
}
.hire-card:hover .hire-img-wrap { background-color: var(--bg-3); }
.hire-card:hover .hire-name { color: var(--accent); }

.hire-img-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  transition: background var(--t-base);
}
.hire-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.012) 30px, rgba(255,255,255,0.012) 31px);
}
.hire-img-icon {
  position: relative;
  z-index: 1;
  width: 80px; height: 80px;
  opacity: 0.3;
  fill: none;
  stroke: var(--fg-3);
  stroke-width: 1;
}
.hire-id {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.hire-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
  transition: color var(--t-fast);
}
.hire-spec {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--fg-3);
  margin-bottom: 16px;
  line-height: 1.6;
}
.hire-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.hire-price-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: block;
  margin-bottom: 2px;
}
.hire-price {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
}
.hire-arrow {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
}

/* Hire product detail page */
.hire-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.hire-detail-img-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 1/1;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.hire-detail-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 50px, rgba(255,255,255,0.012) 50px, rgba(255,255,255,0.012) 51px);
}
.hire-detail-img-icon {
  position: relative;
  z-index: 1;
  width: 200px; height: 200px;
  opacity: 0.4;
  fill: none;
  stroke: var(--fg-2);
  stroke-width: 1;
}
.hire-detail-id {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 20px;
}
.hire-detail-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  margin-bottom: 24px;
}
.hire-detail-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  margin-bottom: 40px;
}
.hire-detail-pricing {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 32px;
}
.hire-detail-pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hire-detail-pricing-row:last-child { border-bottom: none; padding-bottom: 0; }
.hire-detail-pricing-row:first-child { padding-top: 0; }
.hire-detail-pricing-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.hire-detail-pricing-val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.hire-detail-pricing-val--sm {
  font-size: 14px;
  font-weight: 500;
  font-family: var(--body);
  color: var(--fg);
}
.hire-detail-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.spec-list {
  border-top: 1px solid var(--border);
}
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.spec-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.spec-val {
  color: var(--fg);
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   13. PROCESS / STEPS
   ═══════════════════════════════════════════════════════ */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.process--four { grid-template-columns: repeat(4, 1fr); }
.step {
  background: var(--bg);
  padding: 48px 40px 56px;
  position: relative;
  transition: background var(--t-base);
}
.step:hover { background: var(--bg-2); }
.step:hover .step-num { color: var(--accent); }
.step-num {
  font-family: var(--display);
  font-weight: 900;
  font-size: 96px;
  letter-spacing: -0.06em;
  line-height: 0.85;
  color: var(--fg-4);
  margin-bottom: 32px;
  transition: color var(--t-fast);
}
.step-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.step-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 32ch;
}


/* ═══════════════════════════════════════════════════════
   14. JOURNAL CARDS + ARTICLE PAGE
   ═══════════════════════════════════════════════════════ */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.journal-card { display: block; cursor: pointer; }
.journal-card:hover .journal-title { color: var(--accent); }

.journal-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 16px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.journal-meta-id { color: var(--accent); }
.journal-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 12px;
  transition: color var(--t-fast);
}
.journal-excerpt {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
  margin-bottom: 20px;
}
.journal-read {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--fg-3);
}

/* Article page layout */
.article-hero {
  padding: 160px 0 56px;
  border-bottom: 1px solid var(--border);
}
.article-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.article-meta-id { color: var(--accent); }
.article-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  max-width: 22ch;
  margin-bottom: 32px;
  text-wrap: balance;
}
.article-title strong { color: var(--accent); font-weight: 800; }
.article-summary {
  font-size: 21px;
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 64ch;
}

.article-body {
  padding: 80px 0;
}
.article-toc {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 28px 32px;
  margin-bottom: 56px;
}
.article-toc-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.article-toc ol {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: toc;
}
.article-toc li {
  counter-increment: toc;
  padding: 8px 0;
  font-size: 14px;
  color: var(--fg-2);
}
.article-toc li::before {
  content: counter(toc, decimal-leading-zero) ' · ';
  font-family: var(--mono);
  color: var(--accent);
  margin-right: 8px;
  font-size: 11px;
  letter-spacing: 0.1em;
}
.article-toc a {
  color: var(--fg-2);
  transition: color var(--t-fast);
}
.article-toc a:hover { color: var(--fg); }


/* ═══════════════════════════════════════════════════════
   ARTICLE BODY — proper editorial typography for journal articles
   Override .h-display + .h2 inheritance with sensible reading sizes.
   ═══════════════════════════════════════════════════════ */
.article {
  background: var(--bg);
}
.article-header {
  padding: 140px 0 56px;
}
.article-header .article-meta {
  margin-bottom: 32px;
}
.article-meta-info {
  color: var(--fg-3);
  font-family: var(--mono);
}
/* OVERRIDE: make article H1 a sensible reading size, not homepage hero */
.h-display.article-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 0;
  max-width: 22ch;
  text-wrap: balance;
}
.article-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 64ch;
  margin: 32px 0 0;
  font-weight: 400;
}
.article-body {
  padding: 64px 0 96px;
  max-width: 760px;
  margin-left: 0;
}
.article-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.article-body p strong { color: var(--fg); font-weight: 600; }
.article-body p a {
  color: var(--accent);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity var(--t-fast);
}
.article-body p a:hover { opacity: 0.7; }

.article-section {
  margin-top: 64px;
  scroll-margin-top: 100px;
}
.article-section:first-child { margin-top: 32px; }

/* OVERRIDE: in-article H2 must be readable, not homepage section size */
.h2.article-h2 {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 28px;
  max-width: 28ch;
}

.article-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.article-table thead {
  background: var(--bg-3);
}
.article-table th {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-2);
  font-weight: 500;
}
.article-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  color: var(--fg-2);
  vertical-align: top;
  line-height: 1.5;
}
.article-table tr:last-child td { border-bottom: none; }
.article-table td:first-child {
  color: var(--fg);
  font-weight: 500;
}

.article-list {
  margin: 24px 0 32px;
  padding-left: 0;
  list-style: none;
  counter-reset: alist;
}
.article-list li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  counter-increment: alist;
}
.article-list li::before {
  content: counter(alist, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 2px;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.05em;
  font-weight: 500;
}
.article-list li strong { color: var(--fg); font-weight: 600; }
ul.article-list { counter-reset: none; }
ul.article-list li::before {
  content: '';
  width: 16px;
  height: 1px;
  background: var(--accent);
  top: 14px;
  left: 0;
}
ul.article-list li {
  padding-left: 28px;
}

/* FAQ accordion */
.faq-list {
  margin: 32px 0 0;
  border-top: 1px solid var(--border);
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.015em;
  line-height: 1.3;
  color: var(--fg);
  transition: color var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform var(--t-base);
}
.faq-item[open] .faq-icon-plus {
  transform: rotate(45deg);
}
.faq-body {
  padding: 0 0 28px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 64ch;
}
.faq-body p { margin-bottom: 16px; }
.faq-body p:last-child { margin-bottom: 0; }


/* ═══════════════════════════════════════════════════════
   PRODUCT DETAIL PAGE — for /hire/[product]/ pages
   Two-column layout, image left, info right
   ═══════════════════════════════════════════════════════ */
.product-detail {
  padding: 140px 0 96px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: start;
}
.product-img-col {
  position: sticky;
  top: 96px;
}
.product-img-wrap {
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 4/5;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.product-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 60%, rgba(255,255,255,0.04), transparent 60%),
    repeating-linear-gradient(45deg, transparent 0, transparent 30px, rgba(255,255,255,0.012) 30px, rgba(255,255,255,0.012) 31px);
}
.product-img-icon {
  position: relative;
  z-index: 1;
  width: 30%;
  max-width: 180px;
  height: auto;
  fill: none;
  stroke: var(--fg-3);
  stroke-width: 1;
  opacity: 0.5;
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.product-thumb {
  background: var(--bg-2);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  cursor: pointer;
  transition: border-color var(--t-fast);
}
.product-thumb:hover { border-color: var(--border-2); }

.product-info-col > * + * { margin-top: 24px; }
.product-info-col .eyebrow { margin-bottom: 16px; display: inline-block; }
.product-info-col .article-meta { margin-bottom: 16px; }

.product-name {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 0;
  text-wrap: balance;
}
.product-name strong { color: var(--accent); font-weight: 800; }
.product-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 50ch;
}
.product-price-block {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin: 24px 0;
}
.product-price-from {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.product-price-big {
  font-family: var(--display);
  font-weight: 800;
  font-size: 48px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
}
.product-price-unit {
  font-size: 14px;
  color: var(--fg-3);
}
.product-min-order {
  display: flex;
  gap: 12px;
  align-items: baseline;
  font-size: 14px;
  color: var(--fg-3);
}
.product-min-val {
  font-family: var(--mono);
  letter-spacing: 0.05em;
  color: var(--fg);
  font-weight: 500;
}
.product-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}
.product-actions .btn { flex: 1; min-width: 0; }

.product-specs-h,
.product-uses-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.product-specs,
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 24px;
}
.product-specs td,
.spec-table td {
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.5;
}
.product-specs td:first-child,
.spec-table td:first-child {
  width: 35%;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.product-specs td:last-child,
.spec-table td:last-child {
  color: var(--fg);
  font-weight: 500;
}
.product-uses,
.use-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.product-uses li,
.use-list li {
  position: relative;
  padding: 8px 0 8px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
}
.product-uses li::before,
.use-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--accent);
}


/* ═══════════════════════════════════════════════════════
   PAGE HERO — generic for non-homepage pages
   ═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 140px 0 64px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.page-hero .kicker { margin-bottom: 24px; }
.page-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  max-width: 22ch;
  margin-bottom: 32px;
  text-wrap: balance;
}
.page-h1 strong { color: var(--accent); font-weight: 800; }
.page-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--fg-2);
  max-width: 56ch;
  margin-bottom: 32px;
}
.page-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}


/* ═══════════════════════════════════════════════════════
   BESPOKE INDEX — audience cards
   ═══════════════════════════════════════════════════════ */
.bespoke-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.bespoke-card {
  background: var(--bg);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-base);
  position: relative;
}
.bespoke-card:hover { background: var(--bg-2); }
.bespoke-card:hover .bespoke-card-name { color: var(--accent); }
.bespoke-card:hover .bespoke-card-arrow { transform: translateX(4px); }
.bespoke-card-id {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 24px;
}
.bespoke-card-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin-bottom: 16px;
  max-width: 14ch;
  transition: color var(--t-fast);
}
.bespoke-card-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--fg-2);
  margin-bottom: 32px;
  max-width: 38ch;
}
.bespoke-card-arrow {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  transition: transform var(--t-fast);
}
.bespoke-card-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.bespoke-card-meta-val {
  color: var(--fg);
  font-family: var(--body);
  text-transform: none;
  letter-spacing: 0;
  font-size: 13px;
  font-weight: 500;
}


/* ═══════════════════════════════════════════════════════
   INCLUDED LIST — "what's included / what isn't"
   ═══════════════════════════════════════════════════════ */
.included-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin: 32px 0;
}
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.included-list li {
  position: relative;
  padding: 12px 0 12px 28px;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  color: var(--fg);
  line-height: 1.5;
}
.included-list li::before {
  content: '+';
  position: absolute;
  left: 0;
  top: 12px;
  font-family: var(--mono);
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
}
.included-list--out li { color: var(--fg-3); }
.included-list--out li::before {
  content: '×';
  color: var(--fg-3);
}


/* PROSE GRID + CONTENT */
.prose-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.prose-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.prose-content p:last-child { margin-bottom: 0; }
.prose-content strong { color: var(--fg); font-weight: 600; }


/* FACT GRID */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
}
.fact-item {
  border-right: 1px solid var(--border);
  padding: 0 32px;
}
.fact-item:first-child { padding-left: 0; }
.fact-item:last-child { border-right: none; padding-right: 0; }
.fact-item .eyebrow { display: block; margin-bottom: 12px; }
.fact-value {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 32px);
  letter-spacing: -0.035em;
  line-height: 1;
}
.fact-value strong { color: var(--accent); font-weight: 800; }


/* CASE STUDY PAGE */
.case-hero {
  padding: 140px 0 48px;
  border-bottom: 1px solid var(--border);
}
.case-feature-img {
  width: 100%;
  aspect-ratio: 21/9;
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(255, 45, 135, 0.14), transparent),
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255, 100, 180, 0.08), transparent),
    linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
  border: 1px solid var(--border);
}
.case-summary {
  font-size: 21px;
  line-height: 1.5;
  color: var(--fg);
  max-width: 60ch;
  margin: 32px 0;
  font-weight: 500;
}
.case-meta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
  margin: 48px 0;
}
.case-meta-item {
  border-right: 1px solid var(--border);
  padding: 0 24px;
}
.case-meta-item:first-child { padding-left: 0; }
.case-meta-item:last-child { border-right: none; padding-right: 0; }
.case-meta-item .eyebrow { display: block; margin-bottom: 8px; }
.case-meta-val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.015em;
  color: var(--fg);
  line-height: 1.2;
}
.case-body {
  padding: 64px 0;
  max-width: 760px;
}
.case-body p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--fg-2);
  margin-bottom: 24px;
}
.case-body p strong { color: var(--fg); font-weight: 600; }
.case-scope {
  margin: 48px 0;
  padding: 32px;
  background: var(--bg-2);
  border: 1px solid var(--border);
}
.case-outcome {
  margin: 32px 0;
  padding: 32px;
  border-left: 2px solid var(--accent);
  background: var(--bg-2);
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg);
}
.case-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin: 64px 0 0;
}
.case-nav-prev,
.case-nav-next {
  background: var(--bg);
  padding: 32px;
  text-decoration: none;
  color: inherit;
  transition: background var(--t-base);
}
.case-nav-prev:hover, .case-nav-next:hover { background: var(--bg-2); }
.case-nav-next { text-align: right; }
.case-nav-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 8px;
  display: block;
}
.case-nav-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--fg);
  line-height: 1.3;
}


/* JOURNAL INDEX */
.journal-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.journal-card--index {
  display: block;
  text-decoration: none;
  color: inherit;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}
.journal-card--index:hover .journal-title { color: var(--accent); }
.journal-cat-row {
  display: flex;
  gap: 24px;
  margin-bottom: 32px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.journal-cat-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-decoration: none;
  transition: color var(--t-fast);
}
.journal-cat-tag:hover, .journal-cat-tag.active { color: var(--accent); }


/* HIRE INDEX (catalogue grid override) */
.hire-grid--catalogue {
  grid-template-columns: repeat(3, 1fr);
}


/* MOBILE NAV */
.nav-mobile {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 24px var(--pad);
}
.nav-mobile-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.nav-mobile-links li {
  border-bottom: 1px solid var(--border);
}
.nav-mobile-links a {
  display: block;
  padding: 16px 0;
  font-size: 16px;
  color: var(--fg);
  text-decoration: none;
}
.nav-mobile-cta {
  background: var(--accent);
  color: var(--accent-on) !important;
  margin-top: 16px;
  padding: 16px 20px !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px !important;
  text-align: center;
}


/* RELATED LIST (article footer "Read next") */
.related-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.related-list li {
  border: 1px solid var(--border);
  padding: 24px;
  transition: border-color var(--t-fast);
}
.related-list li:hover { border-color: var(--border-2); }
.related-list a {
  text-decoration: none;
  color: var(--fg);
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.015em;
  line-height: 1.3;
}
.related-list a:hover { color: var(--accent); }


/* WORK CARD IMAGES (placeholder gradients) */
.work-img-1 {
  background:
    radial-gradient(ellipse 50% 60% at 30% 70%, rgba(255, 45, 135, 0.14), transparent),
    radial-gradient(ellipse 60% 80% at 70% 30%, rgba(255, 100, 180, 0.08), transparent),
    linear-gradient(135deg, #1A1A1A 0%, #0F0F0F 100%);
}
.work-img-2 {
  background:
    repeating-linear-gradient(45deg, transparent 0, transparent 60px, rgba(255,255,255,0.015) 60px, rgba(255,255,255,0.015) 61px),
    linear-gradient(180deg, #1A1A1A 0%, #0A0A0A 100%);
}
.work-img-3 {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 45, 135, 0.12), transparent 70%),
    linear-gradient(180deg, #0F0F0F 0%, #1A1A1A 100%);
}


/* Footer meta */
.foot-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: var(--fg-3);
  line-height: 1.7;
  margin-top: 16px;
}


/* RESPONSIVE — collapse interior page grids on mobile */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: 1fr; gap: 48px; }
  .product-img-col { position: static; }
  .product-img-wrap { aspect-ratio: 4/3; }
  .product-img-icon { width: 22%; }
  .bespoke-grid { grid-template-columns: 1fr; }
  .prose-grid { grid-template-columns: 1fr; gap: 32px; }
  .case-meta-grid { grid-template-columns: 1fr 1fr; }
  .case-meta-item:nth-child(2) { border-right: none; }
  .case-meta-item:nth-child(3),
  .case-meta-item:nth-child(4) {
    border-top: 1px solid var(--border);
    margin-top: 24px;
    padding-top: 24px;
  }
  .fact-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .fact-item { padding: 0 16px; }
  .fact-item:nth-child(2) { border-right: none; padding-right: 0; }
  .journal-index-grid { grid-template-columns: 1fr; gap: 0; }
  .hire-grid--catalogue { grid-template-columns: repeat(2, 1fr); }
  .included-grid { grid-template-columns: 1fr; }
  .related-list { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .article-header { padding: 100px 0 40px; }
  .article-body { padding: 48px 0 64px; }
  .product-detail { padding: 100px 0 64px; }
  .case-hero { padding: 100px 0 32px; }
  .page-hero { padding: 100px 0 48px; }
  .article-table { font-size: 13px; display: block; overflow-x: auto; }
  .article-section { margin-top: 48px; }
  .case-nav { grid-template-columns: 1fr; }
  .case-nav-next { text-align: left; }
  .product-actions { flex-direction: column; }
  .product-actions .btn { width: 100%; }
}


.article-related {
  padding: 80px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
}


/* ═══════════════════════════════════════════════════════
   15. CONVERSION FOOTER (CTA band)
   ═══════════════════════════════════════════════════════ */
.cta-band {
  padding: 160px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.cta-band-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(280px, 36vw, 540px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--bg-3);
  opacity: 0.4;
  user-select: none;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-eyebrow { margin-bottom: 32px; }
.cta-h {
  margin: 0 auto 32px;
  max-width: 18ch;
}
.cta-lede {
  margin: 0 auto 56px;
  text-align: center;
}
.cta-actions {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.cta-secondary {
  display: flex;
  gap: 32px;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  flex-wrap: wrap;
}
.cta-secondary a {
  color: var(--fg-2);
  transition: color var(--t-fast);
}
.cta-secondary a:hover { color: var(--fg); }


/* ═══════════════════════════════════════════════════════
   16. FOOTER
   ═══════════════════════════════════════════════════════ */
.foot {
  background: var(--bg);
  padding: 96px 0 32px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
}
.foot-brand {
  font-family: var(--display);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}
.foot-brand-dot { color: var(--accent); }
.foot-tag {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.55;
  max-width: 32ch;
}
.foot-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin-bottom: 24px;
}
.foot-links { display: flex; flex-direction: column; gap: 12px; }
.foot-links a {
  font-size: 14px;
  color: var(--fg-2);
  transition: color var(--t-fast);
}
.foot-links a:hover { color: var(--fg); }
.foot-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.foot-legal { display: flex; gap: 24px; flex-wrap: wrap; }


/* ═══════════════════════════════════════════════════════
   17. STICKY MOBILE CTA
   ═══════════════════════════════════════════════════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 60;
  opacity: 0;
  transition: all var(--t-base);
  pointer-events: none;
  padding-bottom: env(safe-area-inset-bottom);
}
.sticky-cta.visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--accent);
  color: var(--accent-on);
  padding: 16px 32px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 32px rgba(255, 45, 135, 0.35);
}


/* ═══════════════════════════════════════════════════════
   18. FORM (enquire)
   ═══════════════════════════════════════════════════════ */
.form {
  display: grid;
  gap: 24px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.field-label-req { color: var(--accent); margin-left: 4px; }
.field-input,
.field-select,
.field-textarea {
  background: var(--bg-3);
  border: 1px solid var(--border);
  padding: 16px;
  font-family: var(--body);
  font-size: 16px;
  color: var(--fg);
  transition: border-color var(--t-fast);
  border-radius: 0;
  outline: none;
}
.field-input:focus,
.field-select:focus,
.field-textarea:focus {
  border-color: var(--accent);
}
.field-textarea {
  min-height: 140px;
  resize: vertical;
  font-family: var(--body);
}
.field-help {
  font-size: 12px;
  color: var(--fg-3);
}
.field-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-success {
  background: var(--bg-2);
  border: 1px solid var(--accent);
  padding: 48px 32px;
  text-align: center;
}
.form-success-mark {
  display: inline-grid;
  place-items: center;
  width: 64px;
  height: 64px;
  background: var(--accent);
  color: var(--accent-on);
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
}


/* ═══════════════════════════════════════════════════════
   19. FACT BAND (LLM-friendly fact strips)
   ═══════════════════════════════════════════════════════ */
.fact-band {
  background: var(--bg-2);
  border: 1px solid var(--border);
  padding: 40px;
  margin: 32px 0;
}
.fact-band-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.fact-band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
}
.fact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.fact-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--fg-3);
}
.fact-val {
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--fg);
}


/* ═══════════════════════════════════════════════════════
   20. RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services { grid-template-columns: 1fr; }
  .services--four { grid-template-columns: 1fr 1fr; }
  .service { min-height: auto; padding: 40px 32px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-grid > :first-child { grid-column: auto; }
  .hire-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .hire-detail { grid-template-columns: 1fr; gap: 48px; }
  .process { grid-template-columns: 1fr; }
  .process--four { grid-template-columns: 1fr 1fr; }
  .journal-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .trust { grid-template-columns: 1fr; gap: 32px; }
  .trust-logos { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 40px 32px; }
  .foot-brand { font-size: 48px; }
}

@media (max-width: 720px) {
  :root { --pad: 20px; }
  
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-burger { display: inline-flex; }
  .nav-inner { grid-template-columns: auto auto; gap: 16px; }
  
  .hero { padding: 140px 0 64px; }
  .hero--page { padding: 120px 0 56px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 64px; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { grid-template-columns: 1fr 1fr; gap: 24px 0; }
  .hero-stat { padding: 16px 16px 16px 0; }
  .hero-stat:nth-child(2) { border-right: none; padding-right: 0; }
  .hero-stat:nth-child(3) { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
  .hero-stat:nth-child(4) { border-top: 1px solid var(--border); padding-top: 24px; margin-top: 8px; }
  .hero-bg-numeral { font-size: 280px; right: -15%; opacity: 0.3; }
  
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }
  
  .section-h { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .section-h-aside { justify-self: start; }
  
  .journal-grid { grid-template-columns: 1fr; }
  .trust-logos { grid-template-columns: repeat(2, 1fr); }
  .hire-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .step { padding: 32px 24px 40px; }
  .step-num { font-size: 64px; margin-bottom: 20px; }
  
  .article-body { padding: 56px 0; }
  .prose { font-size: 16px; }
  .prose h2 { font-size: 26px; margin-top: 40px; }
  .prose h3 { font-size: 19px; margin-top: 32px; }
  
  .cta-band { padding: 96px 0; }
  .cta-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .cta-band-bg { font-size: 200px; }
  
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .foot-brand { font-size: 40px; }
  .foot-bottom { flex-direction: column; gap: 12px; align-items: flex-start; }
  
  .form-row { grid-template-columns: 1fr; gap: 16px; }
  .form { gap: 20px; }
  
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 0; }
  
  .sticky-cta { display: block; }
}

/* Print */
@media print {
  .nav, .sticky-cta, .cta-band { display: none; }
  body { background: white; color: black; }
  .foot { background: white; color: black; }
}

/* ═══════════════════════════════════════════════════════
   LOCKED RULE: NO ITALIC ANYWHERE
   Override default browser italic on <em> tags.
   Maza uses semantic <em> for emphasis but renders it
   non-italic to stay on-system (Bold Typography, all-sans).
   ═══════════════════════════════════════════════════════ */
em, i {
  font-style: normal;
  font-weight: 600;
}
