/* ==========================================================================
   v2 additions — multi-page site components.
   The v1 brand layer (v1-brand.css) is locked. This file ONLY adds patterns
   that didn't exist on v1 (three-doors block, selectivity line, etc.) and
   reuses the existing CSS variables / fonts / dot grid.
   ========================================================================== */

/* ---------- Nav contrast patches ---------- */
/* Desktop: brighten nav links (v1 default #777 fails WCAG AA on charcoal) */
nav.top .nav-links a { color: rgba(244, 241, 236, 0.72); }
nav.top .nav-links a:hover,
nav.top .nav-links a.is-active { color: var(--off-white); }

/* Mobile menu: stop the big-link cascade from hijacking the Book a call button */
@media (max-width: 900px) {
  nav.top .nav-links-extras a.btn-acid {
    color: var(--charcoal);
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 500;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
  }
  nav.top .nav-links-extras a.btn-acid:hover,
  nav.top .nav-links-extras a.btn-acid:active { color: var(--charcoal); }
}

/* ---------- Nav with sub-menus (desktop dropdowns + mobile expanded lists) ---------- */

/* Caret next to top-level items that have children */
.nav-caret {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.7em;
  transition: transform 0.2s ease;
}

/* ---------- DESKTOP behaviour (≥901px) ---------- */
@media (min-width: 901px) {
  .nav-item-has-children {
    position: relative;
    display: inline-flex;
    align-items: center;
  }
  .nav-item-has-children .nav-top-link { display: inline-flex; align-items: center; }

  .nav-submenu {
    position: absolute;
    top: 100%;
    left: -16px;
    min-width: 240px;
    background: var(--charcoal-mid);
    border: 1px solid rgba(244, 241, 236, 0.08);
    border-radius: 6px;
    padding: 8px;
    margin-top: 6px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
    z-index: 110;
  }
  .nav-item-has-children:hover .nav-submenu,
  .nav-item-has-children:focus-within .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-item-has-children:hover .nav-caret,
  .nav-item-has-children:focus-within .nav-caret {
    transform: rotate(180deg);
  }

  /* Submenu items */
  nav.top .nav-submenu .nav-sublink {
    display: block;
    padding: 9px 14px;
    border-radius: 4px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 13.5px;
    letter-spacing: 0.02em;
    color: rgba(244, 241, 236, 0.78);
    transition: background-color 0.15s ease, color 0.15s ease;
  }
  nav.top .nav-submenu .nav-sublink:hover,
  nav.top .nav-submenu .nav-sublink:focus-visible {
    background: rgba(244, 241, 236, 0.06);
    color: var(--off-white);
  }
  nav.top .nav-submenu .nav-sublink.is-active {
    background: rgba(212, 255, 0, 0.10);
    color: var(--acid);
  }

  /* Hover/focus bridge — invisible padding so the gap between top link and
     submenu doesn't dismiss the dropdown */
  .nav-submenu::before {
    content: '';
    position: absolute;
    top: -10px; left: 0; right: 0; height: 10px;
  }
}

/* ---------- MOBILE behaviour (≤900px) ---------- */
@media (max-width: 900px) {
  /* Top-level "Work" / "Services" remain big like the other nav links */
  .nav-item-has-children {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .nav-item-has-children .nav-top-link {
    display: flex;
    align-items: center;
  }
  /* Caret rotates to indicate the indented list below */
  .nav-item-has-children .nav-caret {
    transform: rotate(180deg);
    opacity: 0.5;
    margin-left: auto;
  }

  /* Submenu always visible on mobile, indented under parent */
  .nav-submenu {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin: 8px 0 16px 16px;
    padding-left: 14px;
    border-left: 1px solid rgba(244, 241, 236, 0.12);
  }
  /* Make sublinks readable on mobile but smaller than top-level h1-style links */
  nav.top .nav-submenu .nav-sublink {
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: none;
    color: rgba(244, 241, 236, 0.7);
    padding: 4px 0;
  }
  nav.top .nav-submenu .nav-sublink.is-active {
    color: var(--acid);
  }
}

/* ---------- Hero eyebrow patch — keep dot circular when text wraps ---------- */
.hero-eyebrow { align-items: flex-start; }
.hero-eyebrow .dot { flex-shrink: 0; margin-top: 4px; }
.hero-eyebrow span:last-child { line-height: 1.45; }

/* ---------- Skip link (a11y) ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 8px;
  background: var(--charcoal);
  color: var(--acid);
  padding: 10px 16px;
  border-radius: 4px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  z-index: 200;
}
.skip-link:focus { left: 16px; }

/* ---------- Hero adjustments for v2 (above-the-fold testimonial) ---------- */
.hero .hero-social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(244, 241, 236, 0.78);
}
.hero .hero-social .stars {
  color: var(--acid);
  letter-spacing: 0.05em;
  font-size: 13px;
}
.hero .hero-social .quote {
  color: var(--off-white);
  font-style: normal;
}
.hero .hero-social .who {
  color: rgba(244, 241, 236, 0.6);
}

/* ---------- Three-doors block ---------- */
.three-doors {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
}
.three-doors-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
  max-width: 760px;
}
.three-doors-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.three-doors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .three-doors-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.door-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
  position: relative;
  min-height: 360px;
  overflow: hidden;
}
/* Acid yellow stage rail — left edge accent */
.door-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal);
  transition: background-color 0.2s ease;
}
.door-card:hover::before { background: var(--acid); }
/* Numeric badge using brand typography */
.door-card .door-mark {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
  background: var(--warm-white);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.door-card:hover .door-mark {
  background: var(--charcoal);
  color: var(--acid);
  border-color: var(--charcoal);
}
.door-card:hover {
  transform: translateY(-2px);
  border-color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(20,20,20,0.08);
}
.door-card .door-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.door-card .door-headline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.door-card .door-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.door-card .door-foot {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
}
.door-card .door-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--charcoal);
}
.door-card .door-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.door-card:hover .door-cta { color: #000; }

/* Multi-link variant — two CTAs at the bottom instead of full-card link */
.door-card--multi:hover { transform: none; box-shadow: none; border-color: var(--border-light); }
.door-card--multi:hover::before { background: var(--charcoal); }
.door-card--multi:hover .door-mark { background: var(--warm-white); color: var(--charcoal); border-color: var(--border-light); }
.door-card--multi .door-links { display: flex; flex-direction: column; gap: 8px; }
.door-card--multi .door-cta { text-decoration: none; transition: color 0.15s ease; }
.door-card--multi .door-cta:hover { color: #000; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Featured case-study spotlight (homepage) ---------- */
.spotlight {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
/* Floating brand motif */
.spotlight-motif {
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-12deg);
}
.spotlight > .container { position: relative; z-index: 1; }

/* 2-column on desktop: aside (eyebrow / H2 / quote / meta / CTAs) | video */
.spotlight-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .spotlight-body {
    grid-template-columns: 1fr 420px;
    gap: 72px;
  }
}
.spotlight-aside {
  display: flex;
  flex-direction: column;
  gap: 20px;
  order: 2;
}
@media (min-width: 900px) {
  .spotlight-aside { order: 1; padding-top: 8px; }
}
.spotlight-aside .section-label { color: rgba(244,241,236,0.55); }
.spotlight-aside h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--off-white);
  margin: 8px 0 8px;
}
.spotlight-aside .spotlight-quote {
  margin: 8px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.12);
}
.spotlight-aside .spotlight-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.12);
}
.spotlight-meta-cell .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
  display: block;
  margin-bottom: 8px;
}
.spotlight-meta-cell .value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.45;
}
.spotlight-aside .spotlight-actions {
  margin-top: 24px;
}
.spotlight-video-wrap {
  order: 1;
}
@media (min-width: 900px) {
  .spotlight-video-wrap { order: 2; }
}
/* Vertical iPhone source. Natural 9:16, capped width on desktop so it sits
   like an embedded phone. On mobile it spans the column. */
.spotlight-video {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 9 / 16;
  cursor: pointer;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.spotlight-video img,
.spotlight-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.spotlight-video .poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.spotlight-video video {
  display: none;
}
.spotlight-video.is-playing .poster { display: none; }
.spotlight-video.is-playing video { display: block; }
.spotlight-video.is-playing .play-button { display: none; }

.play-button {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.play-button:hover { transform: scale(1.05); background: #E5FF33; }
.play-button:focus-visible { outline: 2px solid var(--off-white); outline-offset: 4px; }
.play-button svg { width: 32px; height: 32px; margin-left: 4px; fill: var(--charcoal); }
@media (max-width: 640px) {
  .play-button { width: 64px; height: 64px; }
  .play-button svg { width: 26px; height: 26px; }
}

.spotlight-quote {
  margin: 32px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  max-width: 760px;
}
.spotlight-quote-meta {
  margin-top: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(244,241,236,0.6);
}
.spotlight-detail {
  margin-top: 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.spotlight-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
  flex-wrap: wrap;
}
.spotlight-actions .text-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(244,241,236,0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(244,241,236,0.3);
}
.spotlight-actions .text-link:hover { color: var(--off-white); text-decoration-color: var(--acid); }

/* ---------- "What we do" — simplified four-services row ---------- */
.what-we-do {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
}
.what-we-do .what-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .what-we-do .what-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.what-we-do .what-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.what-we-do .what-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) { .what-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .what-grid { grid-template-columns: repeat(4, 1fr); } }

.what-card {
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  min-height: 360px;
  position: relative;
  overflow: hidden;
}
/* Acid rail accent — same grammar as door-card */
.what-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal);
  transition: background-color 0.2s ease;
}
.what-card:hover::before { background: var(--acid); }
.what-card .what-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.what-card:hover {
  transform: translateY(-2px);
  border-color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(20,20,20,0.06);
}
.what-card .what-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.what-card .what-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.what-card .what-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.what-card .what-outcome {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.what-card .what-outcome .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.what-card .what-outcome .value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
}
.what-card .what-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-top: 8px;
}

/* ---------- Section motifs (light + dark) ---------- */
.section-motif {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  height: auto;
}
.what-we-do { position: relative; overflow: hidden; }
.what-we-do > .container { position: relative; z-index: 1; }
.what-we-do .section-motif {
  bottom: -80px;
  left: -100px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(8deg);
}
.three-doors { position: relative; overflow: hidden; }
.three-doors > .container { position: relative; z-index: 1; }
.three-doors .section-motif {
  top: -60px;
  right: -80px;
  width: 280px;
  opacity: 0.05;
  transform: rotate(-8deg);
}

/* ---------- Why us / about teaser ---------- */
.why-us {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.why-us > .container { position: relative; z-index: 1; }
.why-us .section-motif {
  top: 80px;
  right: -120px;
  width: 380px;
  opacity: 0.06;
  transform: rotate(14deg);
}
.why-us .why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .why-us .why-grid { grid-template-columns: 320px 1fr; gap: 72px; }
}
.why-us .why-portrait {
  border-radius: 6px;
  overflow: hidden;
  background: var(--charcoal-mid);
  aspect-ratio: 4 / 5;
}
.why-us .why-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.why-us h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 24px;
}
.why-us .why-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,241,236,0.82);
  margin: 0 0 16px;
}
.why-us .why-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--acid);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,255,0,0.4);
  padding-bottom: 4px;
}
.why-us .why-link:hover { border-bottom-color: var(--acid); }

.why-stats {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 24px;
  border-top: 1px solid var(--charcoal-soft);
  padding-top: 48px;
}
@media (min-width: 900px) { .why-stats { grid-template-columns: repeat(4, 1fr); } }
.why-stats .stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--acid);
  margin-bottom: 12px;
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}
.why-stats .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: rgba(244,241,236,0.55);
}

/* ---------- "How it works" three steps (light section) ---------- */
.how-v2 {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.how-v2 > .container { position: relative; z-index: 1; }
.how-v2 .section-motif {
  bottom: -90px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.how-v2 .how-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .how-v2 .how-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.how-v2 .how-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.how-v2 .how-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .how-steps { grid-template-columns: repeat(3, 1fr); } }
.how-step {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.how-step::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal);
  transition: background-color 0.2s ease;
}
.how-step:hover {
  border-color: var(--charcoal);
  box-shadow: 0 8px 24px rgba(20,20,20,0.06);
}
.how-step:hover::before { background: var(--acid); }
.how-step .head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 14px;
}
.how-step .head .num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--charcoal);
  letter-spacing: -0.02em;
}
.how-step .head .duration {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--muted);
}
.how-step .title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
}
.how-step .body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.how-step .leave-with {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.how-step .leave-with .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.how-step .leave-with .value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--charcoal);
}

/* ---------- Light-section CTA button (charcoal-filled, off-white text) ---------- */
.btn-charcoal {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 14px 28px;
}
.btn-charcoal:hover { background: #000; color: var(--off-white); }

/* ---------- Homepage FAQ section (light variant) ---------- */
.faq-v2 {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.faq-v2 > .container { position: relative; z-index: 1; }
.faq-v2 .section-motif {
  bottom: -80px;
  left: -100px;
  width: 300px;
  opacity: 0.05;
  transform: rotate(18deg);
}
.faq-v2 .faq-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .faq-v2 .faq-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.faq-v2 .faq-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.faq-v2 .faq-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.faq-v2 .faq-list { max-width: 980px; }
.faq-v2 .faq-item {
  border-top: 1px solid var(--border-light);
}
.faq-v2 .faq-item:last-child { border-bottom: 1px solid var(--border-light); }
.faq-v2 .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-v2 .faq-item summary::-webkit-details-marker { display: none; }
.faq-v2 .faq-q {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
.faq-v2 .faq-icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background: var(--warm-white);
  transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.faq-v2 .faq-icon::before,
.faq-v2 .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--charcoal);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 1px;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.faq-v2 .faq-icon::before { width: 12px; height: 2px; }
.faq-v2 .faq-icon::after { width: 2px; height: 12px; }
.faq-v2 .faq-item[open] .faq-icon {
  background: var(--charcoal);
  border-color: var(--charcoal);
  transform: rotate(0deg);
}
.faq-v2 .faq-item[open] .faq-icon::before { background: var(--acid); }
.faq-v2 .faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq-v2 .faq-item summary:hover .faq-icon { border-color: var(--charcoal); }
.faq-v2 .faq-a {
  padding: 0 0 28px 0;
  max-width: 780px;
}
.faq-v2 .faq-a p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 0 0 12px;
}
.faq-v2 .faq-a a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
}
.faq-v2 .faq-a .faq-cta {
  display: inline-flex;
  margin-top: 8px;
  background: var(--charcoal);
  color: var(--off-white);
  padding: 10px 18px;
  border-radius: 4px;
  border-bottom: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 14px;
}
.faq-v2 .faq-a .faq-cta:hover { background: #000; }

/* ---------- Final CTA band — selectivity + availability lines ---------- */
.final-cta .final-cta-meta {
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid rgba(244,241,236,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.final-cta .availability-line,
.final-cta .selectivity-line {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,236,0.7);
  margin: 0;
  text-align: center;
}
.final-cta .availability-line {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.final-cta .availability-line .status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(212,255,0,0.15);
  flex-shrink: 0;
}
.final-cta .selectivity-line {
  color: rgba(244,241,236,0.5);
  font-style: italic;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* Hide v1's existing footer status bar (we moved availability into the final-cta band) */
.footer-status-bar { display: none !important; }

/* Sub-label below the main column label (used for the "Direct" sub-section in the About column) */
.footer-col-label-sub {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(244,241,236,0.08);
}

/* Book-a-call CTA inside the About/Direct column */
.footer-direct-cta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.08);
}
.footer-direct-cta a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--acid);
  border-bottom: 1px solid rgba(212,255,0,0.4);
  padding-bottom: 1px;
}
.footer-direct-cta a:hover { border-bottom-color: var(--acid); }

/* Replace the spacing that the status bar used to provide above the footer grid */
footer.site { padding-top: 96px; }
@media (max-width: 900px) { footer.site { padding-top: 64px; } }

/* Hide v1's hero ticker if a stray element creeps in (safety) */
.hero .ticker { display: none; }

/* ---------- Responsive paddings ---------- */
@media (max-width: 900px) {
  .three-doors,
  .spotlight,
  .what-we-do,
  .why-us,
  .how-v2,
  .faq-v2 { padding: 80px 0; }
}

/* ---------- Custom cursor — extend v1 cursor:none rules to v2 cards ---------- */
body.has-cursor .door-card,
body.has-cursor .what-card,
body.has-cursor .how-step,
body.has-cursor summary { cursor: none; }

/* ---------- Brand glyph spacing inside buttons ---------- */
.btn .brand-glyph { margin-right: 10px; }

/* ---------- Final CTA word-cycle sizing inside H2 ---------- */
.final-cta .word-cycle { min-width: 4ch; }

/* ==========================================================================
   Service-page components
   ========================================================================== */

/* Service-page hero — narrower max-width, hero-meta line */
.hero-service { min-height: 80vh; }
.hero-service h1 {
  font-size: clamp(40px, 6.4vw, 76px);
  max-width: 920px;
}
.hero-service p.lead { max-width: 580px; }
.hero-service .hero-meta {
  margin-top: 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: rgba(244,241,236,0.55);
}
.hero-service .hero-meta a {
  color: rgba(244,241,236,0.85);
  border-bottom: 1px solid rgba(244,241,236,0.18);
  padding-bottom: 1px;
}
.hero-service .hero-meta a:hover { color: var(--acid); border-bottom-color: var(--acid); }

/* ---------- Tier pricing grid ---------- */
.tiers {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.tiers > .container { position: relative; z-index: 1; }
.tiers .section-motif {
  bottom: -100px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-10deg);
}
.tiers-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .tiers-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.tiers-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.tiers-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}

.tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .tier-grid { grid-template-columns: repeat(3, 1fr); } }

.tier-card {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.tier-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal-soft);
  transition: background-color 0.2s ease;
}
.tier-card:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(20,20,20,0.18); }
.tier-card:hover::before { background: var(--acid); }

.tier-card-featured { background: var(--charcoal-mid); }
.tier-card-featured::before { background: var(--acid); }
.tier-flag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--acid);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

.tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.tier-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--off-white);
}
.tier-mark {
  width: 36px; height: 36px;
  border: 1px solid rgba(244,241,236,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: rgba(244,241,236,0.7);
  flex-shrink: 0;
}
.tier-card-featured .tier-mark { display: none; }

.tier-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(36px, 4.6vw, 48px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--off-white);
  margin-top: 4px;
}
.tier-card-featured .tier-price { color: var(--acid); }
.tier-save {
  display: inline-block;
  margin-left: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  vertical-align: middle;
  color: var(--acid);
  background: rgba(212,255,0,0.12);
  padding: 4px 8px;
  border-radius: 3px;
}
.tier-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.tier-who {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,241,236,0.78);
  margin: 8px 0 0;
}
.tier-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(244,241,236,0.12);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.tier-list li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.4;
  color: rgba(244,241,236,0.85);
  padding-left: 22px;
  position: relative;
}
.tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--acid);
  border-radius: 1px;
}
.tier-list li a {
  color: var(--off-white);
  border-bottom: 1px solid rgba(244,241,236,0.3);
}
.tier-list li a:hover { color: var(--acid); border-bottom-color: var(--acid); }

.tier-confirm {
  margin: 16px 0 0;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.12);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244,241,236,0.55);
  font-style: italic;
}
.tier-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.tier-cta .btn-acid { width: 100%; }
.tier-secondary {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.65);
  text-align: center;
  padding: 8px;
}
.tier-secondary:hover { color: var(--acid); }

/* Add-ons row */
.add-ons {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 28px;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
}
@media (min-width: 800px) { .add-ons { grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: center; } }
.add-on { display: flex; flex-direction: column; gap: 4px; }
.add-on-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.add-on-detail {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.45;
}
.add-on-detail strong { font-weight: 700; }

/* ---------- "What's included" section (dark with check rail) ---------- */
.included {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.included-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .included-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.included-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
}
.included-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,241,236,0.7);
  margin: 0;
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 800px) { .included-list { grid-template-columns: repeat(2, 1fr); gap: 24px 48px; } }
.included-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 16px;
  align-items: start;
  padding-top: 8px;
  border-top: 1px solid rgba(244,241,236,0.1);
  padding-top: 24px;
}
.included-check {
  width: 28px; height: 28px;
  background-image: url('/assets/images/icon-acid.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 0;
}
.included-list li strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 6px;
}
.included-list li > div {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,241,236,0.7);
}
.included-list li a {
  color: var(--acid);
  border-bottom: 1px solid rgba(212,255,0,0.4);
}
.included-list li a:hover { border-bottom-color: var(--acid); }

/* ---------- Case study teaser (inline, smaller than homepage spotlight) ---------- */
.case-teaser {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-teaser > .container { position: relative; z-index: 1; }
.case-teaser .section-motif {
  top: -60px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(20deg);
}
.case-teaser-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .case-teaser-grid { grid-template-columns: 1fr 1fr; gap: 64px; } }
.case-teaser-aside h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 16px 0 12px;
}
.case-teaser-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(244,241,236,0.6);
  margin-bottom: 24px;
}
.case-teaser-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,241,236,0.82);
  margin: 0 0 24px;
}
.case-teaser-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.case-teaser-actions .text-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(244,241,236,0.7);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(244,241,236,0.3);
}
.case-teaser-actions .text-link:hover { color: var(--off-white); text-decoration-color: var(--acid); }
.case-teaser-visual {
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-mid);
  aspect-ratio: 16 / 10;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.case-teaser-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ---------- FAQ cross-links footer ---------- */
.faq-cross-links {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
}
.faq-cross-links p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.faq-cross-links a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
}

/* ==========================================================================
   Case-study page components
   ========================================================================== */

/* ---------- Hero (case study variant) ---------- */
.hero-case { min-height: 80vh; }
.hero-case h1 {
  font-size: clamp(56px, 9vw, 120px);
  line-height: 0.95;
}
.hero-case p.lead {
  max-width: 640px;
  font-size: 19px;
}

.case-meta-strip {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 32px;
}
@media (min-width: 700px) { .case-meta-strip { grid-template-columns: repeat(4, 1fr); } }
.case-meta-cell { display: flex; flex-direction: column; gap: 6px; }
.case-meta-cell .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.case-meta-cell .value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--off-white);
  line-height: 1.4;
}

/* ---------- Site screenshot showcase (browser chrome frame) ---------- */
.case-showcase {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 0 0 96px;
  position: relative;
}
@media (max-width: 900px) { .case-showcase { padding-bottom: 64px; } }

.case-frame {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: var(--charcoal-mid);
  box-shadow: 0 32px 64px rgba(0,0,0,0.45);
  border: 1px solid rgba(244,241,236,0.08);
}
.case-frame-chrome {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 16px;
  background: var(--charcoal-soft);
  border-bottom: 1px solid rgba(244,241,236,0.06);
}
.case-frame-dots { display: flex; gap: 6px; }
.case-frame-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(244,241,236,0.25);
}
.case-frame-dots span:nth-child(1) { background: rgba(244,241,236,0.18); }
.case-frame-url {
  flex: 1;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.6);
  background: rgba(244,241,236,0.06);
  padding: 4px 12px;
  border-radius: 4px;
  max-width: 320px;
  margin: 0 auto;
}
.case-frame-stage {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--charcoal);
  overflow: hidden;
}
.case-frame-stage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.6s cubic-bezier(.2,.8,.2,1);
}
.case-frame-stage:hover img { transform: scale(1.02); }
.case-frame-caption {
  padding: 20px 24px;
  background: var(--charcoal-mid);
  border-top: 1px solid rgba(244,241,236,0.06);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(244,241,236,0.7);
  text-align: center;
}
.case-frame-caption a {
  color: var(--acid);
  border-bottom: 1px solid rgba(212,255,0,0.4);
  padding-bottom: 1px;
  margin-left: 6px;
  white-space: nowrap;
}
.case-frame-caption a:hover { border-bottom-color: var(--acid); }

/* ---------- The brief (light, two-column reading) ---------- */
.case-brief {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-brief > .container { position: relative; z-index: 1; }
.case-brief .section-motif {
  top: -60px;
  left: -100px;
  width: 280px;
  opacity: 0.05;
  transform: rotate(14deg);
}
.case-brief-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .case-brief-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; } }
.case-brief-side h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  margin-top: 16px;
}
.case-brief-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #353530;
  margin: 0 0 16px;
}
.case-brief-body p:last-child { margin-bottom: 0; }

/* ---------- Process timeline (dark) ---------- */
.case-process {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-process > .container { position: relative; z-index: 1; }
.case-process .section-motif {
  bottom: -80px;
  right: -100px;
  width: 320px;
  opacity: 0.06;
  transform: rotate(-14deg);
}
.case-process-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .case-process-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.case-process-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
}
.case-process-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(244,241,236,0.7);
  margin: 0;
}

.case-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.case-timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: rgba(244,241,236,0.12);
}
@media (min-width: 700px) {
  .case-timeline::before { left: 27px; }
}
.case-stage {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 0 0 36px 36px;
  position: relative;
}
@media (min-width: 700px) {
  .case-stage { grid-template-columns: 140px 1fr; gap: 32px; padding-left: 0; padding-bottom: 48px; align-items: start; }
}
.case-stage:last-child { padding-bottom: 0; }
.case-stage-marker {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--acid);
  padding-left: 36px;
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  align-self: start;
}
@media (min-width: 700px) {
  .case-stage-marker { padding-left: 56px; font-size: 20px; }
}
.case-stage-marker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--charcoal);
  border: 2px solid var(--acid);
  box-shadow: 0 0 0 4px var(--charcoal);
}
@media (min-width: 700px) {
  .case-stage-marker::before { left: 16px; }
}
.case-stage-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 8px;
}
.case-stage-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,241,236,0.78);
  margin: 0;
}
.case-stage-body em {
  color: var(--off-white);
  font-style: italic;
  border-left: 2px solid var(--acid);
  padding-left: 12px;
  display: inline-block;
  margin: 4px 0;
}

/* ---------- Video testimonial (dark, 2-column on desktop) ---------- */
.case-video {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(244,241,236,0.06);
}
.case-video > .container { position: relative; z-index: 1; }
.case-video .section-motif {
  top: -40px;
  left: -100px;
  width: 280px;
  opacity: 0.05;
  transform: rotate(20deg);
}
.case-video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: start;
}
@media (min-width: 900px) {
  .case-video-grid { grid-template-columns: 1fr 420px; gap: 72px; }
}
.case-video-aside { display: flex; flex-direction: column; gap: 18px; order: 2; padding-top: 8px; }
@media (min-width: 900px) { .case-video-aside { order: 1; } }
.case-video-aside h2 {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 8px 0;
  line-height: 1.1;
}
.case-video-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(244,241,236,0.6);
}
.case-video-detail {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,241,236,0.55);
  margin: 8px 0 0;
}
.case-video-wrap { order: 1; }
@media (min-width: 900px) { .case-video-wrap { order: 2; } }

/* ---------- Outcome (light) — reuses .included-list with overrides ---------- */
.case-outcome {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-outcome > .container { position: relative; z-index: 1; }
.case-outcome .section-motif {
  top: 80px;
  right: -100px;
  width: 300px;
  opacity: 0.05;
  transform: rotate(-10deg);
}
.case-outcome-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .case-outcome-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.case-outcome-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.case-outcome-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
/* light-section variant of the bullet list (border + text + icon colour swap) */
.case-outcome-list li { border-top: 1px solid var(--border-light); padding-top: 24px; }
.case-outcome-list li strong { color: var(--charcoal); }
.case-outcome-list li > div { color: #4a4a45; }
.case-outcome-list li a { color: var(--charcoal); border-bottom-color: var(--charcoal); }
/* Acid yellow fails contrast on warm-white. Use the charcoal brand icon instead. */
.case-outcome-list .included-check {
  background-image: url('/assets/images/icon-black.png');
}

/* ---------- Pull quotes (dark) ---------- */
.case-quotes {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.case-quotes-heading {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 64px;
}
.case-quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .case-quotes-grid { grid-template-columns: repeat(3, 1fr); } }

.case-quote {
  margin: 0;
  padding: 32px 28px 28px;
  border: 1px solid rgba(244,241,236,0.1);
  border-radius: 6px;
  background: var(--charcoal-mid);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.case-quote .quote-num {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
}
.case-quote p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
}
.case-quote p::before { content: '"'; }
.case-quote p::after { content: '"'; }
.case-quote footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.1);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
}

/* ---------- Mid-page CTA strip (light) ---------- */
.case-mid-cta {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 80px 0;
}
.case-mid-cta-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: center;
}
@media (min-width: 900px) { .case-mid-cta-inner { grid-template-columns: 1.4fr 1fr; gap: 56px; } }
.case-mid-cta-inner h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  margin: 0 0 12px;
}
.case-mid-cta-inner p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
}
.case-mid-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
@media (min-width: 900px) { .case-mid-cta-actions { align-items: flex-end; } }
.text-link-dark {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--charcoal);
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(20,20,20,0.3);
}
.text-link-dark:hover { text-decoration-color: var(--charcoal); }

/* ---------- Related work (dark) ---------- */
.related-work {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.related-work > .container { position: relative; z-index: 1; }
.related-work .section-motif {
  bottom: -80px;
  left: -100px;
  width: 300px;
  opacity: 0.06;
  transform: rotate(18deg);
}
.related-work-header { margin-bottom: 56px; }
.related-work-header h2 {
  font-size: clamp(32px, 4.4vw, 48px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
}
.related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .related-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }

.related-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--charcoal-mid);
  border: 1px solid rgba(244,241,236,0.08);
  border-radius: 6px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.related-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212,255,0,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.4);
}
.related-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--charcoal-soft);
}
.related-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.related-external {
  position: absolute;
  top: 12px; right: 12px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--acid);
  color: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
}
.related-meta { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 12px; }
.related-name {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.related-ext-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  border: 1px solid rgba(212,255,0,0.4);
  padding: 3px 8px;
  border-radius: 3px;
}
.related-summary {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.55;
  color: rgba(244,241,236,0.72);
  margin: 0;
}
.related-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--acid);
  margin-top: 4px;
}

/* ==========================================================================
   About page components
   ========================================================================== */

/* ---------- Hero (about variant: 2-column copy + portrait) ---------- */
.hero-about { min-height: 90vh; }
.hero-about h1 {
  font-size: clamp(40px, 6.4vw, 72px);
  line-height: 1;
}
.hero-about p.lead { max-width: 480px; }

.hero-about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 900px) {
  .hero-about-grid { grid-template-columns: 1.4fr 1fr; gap: 72px; }
}
.hero-about-copy { order: 1; }
.hero-about-portrait {
  order: 2;
  margin: 0;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-mid);
  aspect-ratio: 4 / 5;
  max-width: 480px;
  width: 100%;
  justify-self: end;
  align-self: center;
}
.hero-about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-about-portrait::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 50%;
  background: linear-gradient(180deg, transparent, rgba(20,20,20,0.75));
  pointer-events: none;
}
.hero-about-portrait figcaption {
  position: absolute;
  left: 24px;
  bottom: 22px;
  z-index: 2;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--off-white);
}
.hero-about-portrait figcaption strong {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: none;
  display: block;
  margin-bottom: 4px;
  color: var(--off-white);
}
.hero-about-portrait figcaption span { color: rgba(244,241,236,0.6); }

/* ---------- The story / timeline (light) ---------- */
.about-story {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about-story > .container { position: relative; z-index: 1; }
.about-story .section-motif {
  bottom: -100px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.about-story-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 64px;
  max-width: 980px;
}
@media (min-width: 900px) {
  .about-story-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 48px; }
}
.about-story-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
}
.about-story-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 0;
}

.about-chapters {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media (min-width: 900px) { .about-chapters { gap: 72px; } }

.about-chapter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  /* Override v1 mobile rule that adds a charcoal-soft border-bottom */
  border-bottom: none;
  padding-bottom: 0;
}
@media (min-width: 700px) {
  .about-chapter { grid-template-columns: 200px 1fr; gap: 56px; align-items: start; }
}
.about-chapter .year {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--charcoal);
  padding-top: 28px;          /* breathing room above the year text */
  padding-bottom: 0;
  position: relative;
  border-top: none;            /* acid line is the only divider */
}
.about-chapter .year::before {
  content: '';
  position: absolute;
  top: 0;                      /* sit at the top of the year box, not -1px */
  bottom: auto;                /* override v1's mobile rule that puts it at the bottom */
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--acid);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.8s cubic-bezier(.7,0,.3,1);
}
.about-chapter.in .year::before,
.about-chapter.is-revealed .year::before { transform: scaleX(1); transition-delay: 0.2s; }

/* Belt-and-braces: cancel v1's mobile rules that conflict with the v2 layout */
@media (max-width: 900px) {
  .about-chapter { border-bottom: none; padding-bottom: 0; }
  .about-chapter .year { padding-bottom: 0; padding-top: 28px; border-bottom: none; }
  .about-chapter .year::before { top: 0; bottom: auto; }
}

.about-chapter .chapter-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.about-chapter .chapter-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #353530;
  margin: 0 0 16px;
}
.about-chapter .chapter-body p:last-child { margin-bottom: 0; }
.about-chapter .chapter-body a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
}

/* Stagger the reveal */
.about-chapter.reveal { transition-delay: calc(var(--i, 0) * 90ms); }
.about-chapter:nth-child(1) { --i: 0; }
.about-chapter:nth-child(2) { --i: 1; }
.about-chapter:nth-child(3) { --i: 2; }
.about-chapter:nth-child(4) { --i: 3; }

/* ---------- Stats section (dark) ---------- */
.about-stats-section {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about-stats-section > .container { position: relative; z-index: 1; }
.about-stats-section .section-motif {
  top: -40px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(16deg);
}
.about-stats-heading {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-bottom: 56px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 32px;
  border-top: 1px solid rgba(244,241,236,0.12);
  padding-top: 48px;
}
@media (min-width: 900px) { .about-stats { grid-template-columns: repeat(4, 1fr); gap: 48px; } }
.about-stats > div { display: flex; flex-direction: column; gap: 14px; }
.about-stats .stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 5.6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--acid);
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}
.about-stats .stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,241,236,0.6);
}

/* ---------- "What it means for you" (light bridge section) ---------- */
.about-meaning {
  background: var(--warm-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.about-meaning > .container { position: relative; z-index: 1; }
.about-meaning .section-motif {
  bottom: -90px;
  left: -90px;
  width: 300px;
  opacity: 0.05;
  transform: rotate(20deg);
}
.about-meaning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .about-meaning-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; align-items: start; } }
.about-meaning-side h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.1;
}
.about-meaning-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #353530;
  margin: 0 0 16px;
}
.about-meaning-body p:last-of-type { margin-bottom: 0; }
.about-meaning-cta {
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* ==========================================================================
   Contact page components
   ========================================================================== */

/* Visually hidden helper (screen-reader only) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Hero (contact variant) ---------- */
.hero-contact { min-height: 70vh; }
.hero-contact h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 1;
  max-width: 920px;
}
.hero-contact p.lead { max-width: 680px; font-size: 18px; }

/* ---------- Three contact blocks ---------- */
.contact-blocks {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.contact-blocks > .container { position: relative; z-index: 1; }
.contact-blocks .section-motif {
  bottom: -80px;
  right: -100px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }

.contact-card {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal);
  transition: background-color 0.2s ease;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--charcoal);
  box-shadow: 0 12px 32px rgba(20,20,20,0.08);
}
.contact-card:hover::before { background: var(--acid); }

.contact-card-primary { box-shadow: 0 18px 40px rgba(20,20,20,0.18); }

.contact-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-card h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0;
}
.contact-card-mark {
  width: 36px; height: 36px;
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 13px;
  color: var(--charcoal);
  flex-shrink: 0;
}
.contact-card-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 0;
  flex-grow: 0;
}
.contact-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}
.contact-card-primary .contact-card-meta {
  border-top-color: rgba(244,241,236,0.12);
}
.contact-card-meta .label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-card-meta .value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  color: var(--charcoal);
}
.contact-card-cta {
  margin-top: auto;
  width: 100%;
  text-align: center;
  word-break: break-word;
}

/* Primary card (Book a call) — dark variant overrides come after the base rules */
.contact-card.contact-card-primary { background: var(--charcoal); color: var(--off-white); border-color: var(--charcoal); }
.contact-card.contact-card-primary::before { background: var(--acid); }
.contact-card.contact-card-primary h3 { color: var(--off-white); }
.contact-card.contact-card-primary .contact-card-body { color: rgba(244,241,236,0.78); }
.contact-card.contact-card-primary .contact-card-mark {
  border-color: rgba(244,241,236,0.3);
  color: var(--off-white);
}
.contact-card.contact-card-primary .contact-card-meta {
  border-top-color: rgba(244,241,236,0.12);
}
.contact-card.contact-card-primary .contact-card-meta .label { color: rgba(244,241,236,0.5); }
.contact-card.contact-card-primary .contact-card-meta .value { color: var(--off-white); }

/* ---------- Availability strip (dark) ---------- */
.contact-availability {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.contact-availability-inner {
  max-width: 980px;
  margin: 0 auto;
}
.contact-availability-head h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin: 0 0 32px;
}
.contact-availability-list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .contact-availability-list { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.contact-availability-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 14px;
  align-items: start;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.12);
}
.contact-availability-list .status-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(212,255,0,0.15);
  margin-top: 6px;
}
.contact-availability-list strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 4px;
}
.contact-availability-list span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244,241,236,0.7);
}
.contact-availability-selectivity {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,236,0.5);
  text-align: center;
  max-width: 560px;
  margin: 24px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(244,241,236,0.08);
}

/* ==========================================================================
   Services index components
   ========================================================================== */

/* Hero variant — services index */
.hero-services { min-height: 70vh; }
.hero-services h1 {
  font-size: clamp(48px, 7.4vw, 92px);
  line-height: 1;
  max-width: 1040px;
}
.hero-services p.lead { max-width: 620px; }

/* ---------- Step Zero diagram (light, vertical 4-stage) ---------- */
.step-zero {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.step-zero > .container { position: relative; z-index: 1; }
.step-zero .section-motif {
  bottom: -90px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.step-zero-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 1040px;
}
@media (min-width: 900px) {
  .step-zero-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 56px; }
}
.step-zero-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.step-zero-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  color: #4a4a45;
  margin: 0;
}
.step-zero-intro {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 0;
}

.step-zero-stages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Step Zero card — lifted from the Claude Design hand-off (horizontal 2-col,
   small solid-acid numeral with charcoal stroke, white card with acid left border) */
.step-zero-stage {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--acid);
  border-radius: 6px;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 700px) {
  .step-zero-stage { grid-template-columns: 92px 1fr; gap: 24px; padding: 24px 28px; }
}
.step-zero-stage:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(20,20,20,0.06);
}

.step-zero-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 32px;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--acid);
  -webkit-text-stroke: 0.5px var(--charcoal);
  display: block;
}
@media (min-width: 700px) {
  .step-zero-num { font-size: 36px; }
}

.step-zero-body h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  margin: 0 0 2px;
  line-height: 1.15;
}
.step-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--muted);
  margin: 0 0 10px;
  line-height: 1.35;
}
.step-zero-body > p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 12px;
}
.step-zero-link {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 2px;
  display: inline-block;
}
.step-zero-link:hover { color: #000; border-bottom-color: var(--acid); }
.step-zero-links { display: flex; flex-wrap: wrap; gap: 18px; }

.step-zero-foot {
  margin: 40px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.5;
  color: var(--muted);
  max-width: 720px;
}
.step-zero-foot a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  font-style: normal;
  font-weight: 500;
}

/* ---------- Five service summary rows (dark) ---------- */
.service-summary {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.service-summary > .container { position: relative; z-index: 1; }
.service-summary .section-motif {
  top: -60px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(20deg);
}
.service-summary-header { margin-bottom: 56px; max-width: 980px; }
.service-summary-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
}

.service-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--charcoal-mid);
  border: 1px solid rgba(244,241,236,0.06);
  border-radius: 8px;
  padding: 32px 32px 32px 36px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 900px) {
  .service-row {
    grid-template-columns: 80px minmax(0,1fr) 280px;
    gap: 32px;
    align-items: start;
    padding: 36px 40px 36px 44px;
  }
}
.service-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--charcoal-soft);
  transition: background-color 0.2s ease;
}
.service-row:hover {
  border-color: rgba(212,255,0,0.4);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.service-row:hover::before { background: var(--acid); }

.service-row-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.85;
}
.service-row-num span {
  font-size: clamp(48px, 6vw, 72px);
  color: transparent;
  -webkit-text-stroke: 1.5px var(--acid);
  text-stroke: 1.5px var(--acid);
}
.service-row-main h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 6px;
}
.service-row-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 15px;
  color: rgba(244,241,236,0.6);
  margin: 0 0 14px;
}
.service-row-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,241,236,0.78);
  margin: 0 0 14px;
}
.service-row-result {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,236,0.62);
  margin: 0;
  border-left: 2px solid var(--acid);
  padding: 4px 0 4px 14px;
  font-style: italic;
}
.service-row-result strong {
  font-style: normal;
  color: var(--acid);
  font-weight: 500;
}

.service-row-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.08);
}
@media (min-width: 900px) {
  .service-row-meta {
    border-top: none;
    border-left: 1px solid rgba(244,241,236,0.08);
    padding-top: 0;
    padding-left: 32px;
    align-self: stretch;
    justify-content: space-between;
  }
}
.service-row-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.03em;
  color: var(--acid);
  line-height: 1;
}
.service-row-price span {
  display: inline-block;
  margin-left: 4px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.service-row-bundle {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.45;
  color: rgba(244,241,236,0.6);
}
.service-row-cta {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--acid);
  margin-top: 4px;
}

/* ==========================================================================
   Journey strip (you are here: BRAND ── WEBSITE ── GET FOUND ── HOSTING)
   ========================================================================== */

.journey-section {
  background: var(--off-white);
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.journey-strip {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.journey-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  padding: 4px 0;
  transition: color 0.2s ease;
}
.journey-step .journey-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--border-light);
  flex-shrink: 0;
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}
.journey-step .journey-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}
.journey-step:hover .journey-label { color: var(--charcoal); }
.journey-step.is-active .journey-dot {
  background: var(--acid);
  box-shadow: 0 0 0 4px rgba(212,255,0,0.15);
}
.journey-step.is-active .journey-label { color: var(--charcoal); }
.journey-line {
  width: 22px;
  height: 1px;
  background: var(--border-light);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .journey-strip { gap: 4px; }
  .journey-line { width: 14px; }
  .journey-step .journey-label { font-size: 11px; letter-spacing: 0.06em; }
}

/* ==========================================================================
   AI search & GEO page
   ========================================================================== */

/* ---------- 3-stat dark band ---------- */
.geo-stats {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.geo-stats > .container { position: relative; z-index: 1; }
.geo-stats .section-motif {
  top: -60px;
  right: -100px;
  width: 320px;
  opacity: 0.06;
  transform: rotate(-12deg);
}
.geo-stats-header {
  margin-bottom: 56px;
  max-width: 980px;
}
.geo-stats-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.05;
}
.geo-stats-header h2 .acid { color: var(--acid); }

.geo-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 32px 0;
  border-top: 1px solid var(--charcoal-soft);
  border-bottom: 1px solid var(--charcoal-soft);
}
@media (min-width: 800px) { .geo-stats-grid { grid-template-columns: repeat(3, 1fr); gap: 40px; } }
.geo-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(48px, 6vw, 72px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--acid);
  margin-bottom: 12px;
  display: inline-block;
  min-width: 1ch;
  font-variant-numeric: tabular-nums;
}
.geo-stat-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(244,241,236,0.72);
  margin: 0;
  max-width: 320px;
}

/* ---------- SEO vs GEO explainer ---------- */
.seo-vs-geo {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.seo-vs-geo > .container { position: relative; z-index: 1; }
.seo-vs-geo .section-motif {
  bottom: -90px;
  left: -100px;
  width: 300px;
  opacity: 0.05;
  transform: rotate(14deg);
}
.seo-vs-geo-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) { .seo-vs-geo-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; } }
.seo-vs-geo-side h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.15;
}
.seo-vs-geo-acid-line {
  color: var(--charcoal);
  background: linear-gradient(180deg, transparent 65%, rgba(212,255,0,0.55) 65%);
  padding: 0 4px;
}
.seo-vs-geo-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: #353530;
  margin: 0 0 16px;
}
.seo-vs-geo-body em {
  font-style: italic;
  color: var(--charcoal);
}
.seo-vs-geo-compare {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .seo-vs-geo-compare { grid-template-columns: 1fr 1fr; gap: 24px; } }
.seo-vs-geo-cell {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-radius: 6px;
  padding: 20px 22px;
}
.seo-vs-geo-cell .cell-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.seo-vs-geo-cell .cell-label-acid {
  color: var(--charcoal);
  background: var(--acid);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 3px;
}
.seo-vs-geo-cell .cell-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: #4a4a45;
}
.seo-vs-geo-cell .cell-body strong { font-weight: 700; color: var(--charcoal); }

/* ---------- 2-tier GEO pricing (dark, with typical-result pulls) ---------- */
.geo-tiers {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.geo-tiers > .container { position: relative; z-index: 1; }
.geo-tiers .section-motif {
  top: -50px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(18deg);
}
.geo-tiers-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.geo-tiers-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.05;
}
.geo-tiers-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,241,236,0.7);
  margin: 16px 0 0;
}

.geo-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .geo-tier-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; } }
@media (min-width: 900px) { .geo-tier-grid--two { grid-template-columns: repeat(2, 1fr); max-width: 880px; margin-left: auto; margin-right: auto; } }

/* ---------- Tracking-only block — visually demoted from done-for-you tiers ---------- */
.geo-monitor {
  margin-top: 64px;
  padding-top: 56px;
  border-top: 1px solid rgba(244,241,236,0.08);
}
.geo-monitor-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 32px;
}
.geo-monitor-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.55);
  margin-bottom: 12px;
}
.geo-monitor-header h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 14px;
  line-height: 1.15;
}
.geo-monitor-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,241,236,0.72);
  margin: 0;
}
.geo-monitor-header strong { color: var(--off-white); font-weight: 600; }
.geo-monitor-card {
  background: rgba(244,241,236,0.03);
  border: 1px solid rgba(244,241,236,0.1);
  border-radius: 8px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
@media (min-width: 760px) {
  .geo-monitor-card { grid-template-columns: 1.5fr auto; gap: 40px; padding: 32px 36px; align-items: center; }
}
.geo-monitor-card-body h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 4px;
  line-height: 1.1;
}
.geo-monitor-card-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: rgba(244,241,236,0.6);
  margin: 0 0 14px;
}
.geo-monitor-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 600px) { .geo-monitor-card-list { grid-template-columns: 1fr 1fr; gap: 8px 20px; } }
.geo-monitor-card-list li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244,241,236,0.78);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.geo-monitor-card-side {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (min-width: 760px) { .geo-monitor-card-side { align-items: flex-end; text-align: right; } }
.geo-monitor-card-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 36px;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--off-white);
}
.geo-monitor-card-price-unit {
  font-size: 16px;
  color: rgba(244,241,236,0.55);
  font-weight: 500;
}
.geo-monitor-card-cta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  width: 100%;
}
@media (min-width: 760px) { .geo-monitor-card-cta { width: auto; min-width: 180px; } }
.geo-monitor-card-cta .btn { width: 100%; text-align: center; }

.geo-tier {
  background: var(--charcoal-mid);
  border: 1px solid rgba(244,241,236,0.06);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.geo-tier:hover { transform: translateY(-2px); border-color: rgba(212,255,0,0.4); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.geo-tier-featured { border-color: rgba(212,255,0,0.3); }

.geo-tier-flag {
  align-self: flex-start;
  background: var(--acid);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: -4px;
}

.geo-tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 600px) { .geo-tier-head { flex-direction: row; } }
.geo-tier-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 6px;
  line-height: 1.1;
}
.geo-tier-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: rgba(244,241,236,0.65);
  margin: 0;
}
.geo-tier-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--acid);
  text-align: left;
  flex-shrink: 0;
}
@media (min-width: 600px) { .geo-tier-price { text-align: right; } }
.geo-tier-price-unit {
  font-size: 18px;
  color: rgba(244,241,236,0.7);
  font-weight: 500;
}
.geo-tier-price span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: rgba(244,241,236,0.55);
  margin-top: 6px;
  font-style: normal;
  text-transform: none;
}
.geo-tier-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244,241,236,0.78);
  margin: 0;
}
.geo-tier-result {
  background: rgba(212,255,0,0.04);
  border-left: 2px solid var(--acid);
  padding: 12px 14px;
  border-radius: 0 4px 4px 0;
}
.geo-tier-result-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 4px;
}
.geo-tier-result p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,236,0.72);
  margin: 0;
}
.geo-tier .tier-confirm {
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244,241,236,0.5);
}
.geo-tier-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.geo-tier-cta .btn-acid { width: 100%; }

.geo-tiers-foot {
  margin: 40px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  color: rgba(244,241,236,0.55);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- "What we actually do" — 2 columns ---------- */
.geo-do {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  border-top: 1px solid rgba(244,241,236,0.06);
}
.geo-do-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 1040px;
}
@media (min-width: 900px) {
  .geo-do-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 56px; }
}
.geo-do-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
}
.geo-do-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,241,236,0.7);
  margin: 0;
}
.geo-do-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) { .geo-do-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }

.geo-do-col {
  background: var(--charcoal-mid);
  border: 1px solid rgba(244,241,236,0.06);
  border-radius: 8px;
  padding: 32px;
}
.geo-do-col-head { margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid rgba(244,241,236,0.08); }
.geo-do-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.04em;
  color: var(--acid);
  display: inline-block;
  margin-bottom: 4px;
}
.geo-do-col-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0;
  line-height: 1.15;
}
.geo-do-tag {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.55);
  margin: 6px 0 0;
}

.geo-do-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.geo-do-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(244,241,236,0.78);
}
.geo-do-list li strong { color: var(--off-white); font-weight: 600; }

/* ==========================================================================
   Brand page — canvas grid + pricing tiers + why-brand
   ========================================================================== */

.brand-canvas-section {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.brand-canvas-section > .container { position: relative; z-index: 1; }
.brand-canvas-section .section-motif {
  bottom: -100px;
  right: -100px;
  width: 320px;
  opacity: 0.06;
  transform: rotate(-14deg);
}
.brand-canvas-header {
  margin-bottom: 56px;
  max-width: 760px;
}
.brand-canvas-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.05;
}
.brand-canvas-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,241,236,0.7);
  margin: 16px 0 0;
}

/* The canvas container — looks like a designer's working surface */
.brand-canvas {
  background: var(--warm-white);
  border-radius: 8px;
  padding: 16px;
  color: var(--charcoal);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 700px) { .brand-canvas { padding: 20px; gap: 14px; } }

/* Top bar */
.brand-canvas-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-light);
  gap: 12px;
}
.brand-canvas-bar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-canvas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acid);
}
.brand-canvas-bar-title,
.brand-canvas-bar-version {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-canvas-bar-version { letter-spacing: 0.06em; text-transform: none; }

/* Grid: 1 column on mobile, 2 columns on desktop with logo cell spanning 2 rows */
.brand-canvas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 800px) {
  .brand-canvas-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }
  .brand-cell-logo { grid-row: span 2; grid-column: 1; }
  .brand-cell-palette { grid-column: 2; }
  .brand-cell-type { grid-column: 2; }
  .brand-cell-motifs { grid-column: 1; }
  .brand-cell-voice { grid-column: 2; }
}

.brand-cell {
  background: var(--off-white);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.brand-cell-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.brand-cell-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.brand-cell-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* 01 LOGO cell — dark background */
.brand-cell-logo {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
}
.brand-cell-logo .brand-cell-label,
.brand-cell-logo .brand-cell-meta { color: rgba(255,255,255,0.5); }
.brand-cell-logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 24px 0;
}
.brand-cell-logo-stage img {
  height: 44px;
  width: auto;
  object-fit: contain;
}
.brand-cell-logo-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.logo-variant {
  border-radius: 3px;
  padding: 14px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 16 / 7;
  min-width: 0;
  overflow: hidden;
}
.logo-variant img {
  height: 22px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.logo-variant-warm { background: var(--warm-white); }
.logo-variant-charcoal { background: var(--charcoal-soft); }
.logo-variant-acid { background: var(--acid); }

/* 02 PALETTE cell */
.brand-swatches {
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 6px;
}
.brand-swatch {
  aspect-ratio: 1 / 1.4;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 6px;
  min-width: 0;
}
.brand-swatch .sw-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
}
.brand-swatch .sw-hex {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  line-height: 1.2;
  margin-top: 2px;
}
.sw-charcoal { background: var(--charcoal); }
.sw-charcoal .sw-name { color: rgba(255,255,255,0.85); }
.sw-charcoal .sw-hex { color: rgba(255,255,255,0.55); }
.sw-warm { background: var(--warm-white); border: 1px solid var(--border-light); }
.sw-warm .sw-name { color: var(--charcoal); }
.sw-warm .sw-hex { color: var(--muted); }
.sw-acid { background: var(--acid); }
.sw-acid .sw-name { color: #1a1a14; }
.sw-acid .sw-hex { color: rgba(20,20,20,0.65); }
.sw-stone { background: #ECE9E4; }
.sw-stone .sw-name { color: var(--charcoal); }
.sw-stone .sw-hex { color: var(--muted); }
.sw-muted { background: #888880; }
.sw-muted .sw-name { color: rgba(255,255,255,0.92); }
.sw-muted .sw-hex { color: rgba(255,255,255,0.65); }

/* 03 TYPE cell */
.brand-type-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-items: end;
}
.brand-type-cell { min-width: 0; }
.brand-type-specimen {
  font-size: 36px;
  line-height: 0.9;
  letter-spacing: -0.03em;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.brand-type-display {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
}
.brand-type-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 30px;
}
.brand-type-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--charcoal);
  text-transform: uppercase;
  line-height: 1.4;
}
.brand-type-name span {
  display: block;
  font-weight: 400;
  text-transform: none;
  color: var(--muted);
  letter-spacing: 0;
  margin-top: 2px;
}

/* 04 MOTIFS cell — dark background */
.brand-cell-motifs {
  background: var(--charcoal);
  color: var(--off-white);
}
.brand-cell-motifs .brand-cell-label-light { color: rgba(255,255,255,0.5); }
.brand-motifs {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
@media (max-width: 800px) {
  .brand-motifs { justify-content: center; }
}
.brand-motif {
  width: 64px; height: 64px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.brand-motif-dotgrid {
  background: var(--charcoal-mid);
  background-image: radial-gradient(rgba(255,255,255,0.18) 1.2px, transparent 1.6px);
  background-size: 9px 9px;
}
.brand-motif-mark { background: var(--acid); }
.brand-motif-mark img { width: 36px; height: 36px; }
.brand-motif-arrow { background: var(--charcoal-mid); }
.brand-motifs-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(255,255,255,0.5);
  margin-top: auto;
  padding-top: 8px;
}

/* 05 VOICE cell */
.brand-voice-quote {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--charcoal);
  margin: 0;
}
.brand-voice-rules {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--charcoal);
}
.brand-voice-rule {
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-voice-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.brand-voice-dot-on { background: #9aab2e; }
.brand-voice-dot-off { background: transparent; border: 1px solid var(--muted); }

/* Canvas footer — Google Drive asset pack */
.brand-canvas-foot {
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--charcoal);
}
.brand-canvas-foot-icon { flex-shrink: 0; color: var(--charcoal); }
.brand-canvas-foot-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--charcoal);
}
.brand-canvas-foot-paths {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: var(--muted);
  flex: 1 1 100%;
  line-height: 1.5;
  word-break: break-word;
}
@media (min-width: 800px) {
  .brand-canvas-foot-paths {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
  }
}

/* ---------- Brand pricing tiers (light section, dark cards) ---------- */
.brand-pricing {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.brand-pricing > .container { position: relative; z-index: 1; }
.brand-pricing .section-motif {
  top: -50px;
  left: -100px;
  width: 280px;
  opacity: 0.05;
  transform: rotate(18deg);
}
.brand-pricing-header { margin-bottom: 56px; max-width: 720px; }
.brand-pricing-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.05;
}
.brand-pricing-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 16px 0 0;
}
.brand-pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .brand-pricing-grid { grid-template-columns: 1fr 1fr; gap: 24px; } }

.brand-tier {
  background: var(--charcoal);
  color: var(--off-white);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.brand-tier:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(20,20,20,0.18); }
.brand-tier-featured { background: var(--charcoal-mid); border: 1px solid rgba(212,255,0,0.3); }
.brand-tier-flag {
  align-self: flex-start;
  background: var(--acid);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  margin-bottom: -4px;
}
.brand-tier-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-direction: column;
}
@media (min-width: 600px) { .brand-tier-head { flex-direction: row; } }
.brand-tier-head h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 6px;
  line-height: 1.1;
}
.brand-tier-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 15px;
  color: rgba(244,241,236,0.65);
  margin: 0;
}
.brand-tier-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(32px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--acid);
  flex-shrink: 0;
  text-align: left;
}
@media (min-width: 600px) { .brand-tier-price { text-align: right; } }
.brand-tier-price span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.55);
  margin-top: 6px;
  font-style: normal;
  text-transform: none;
}
.brand-tier-list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
  border-top: 1px solid rgba(244,241,236,0.08);
  border-bottom: 1px solid rgba(244,241,236,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.brand-tier-list li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(244,241,236,0.85);
  padding-left: 22px;
  position: relative;
}
.brand-tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--acid);
  border-radius: 1px;
}
.brand-tier-list li a { color: var(--off-white); border-bottom: 1px solid rgba(244,241,236,0.3); }
.brand-tier-list li a:hover { color: var(--acid); border-bottom-color: var(--acid); }

.brand-tier-result {
  background: rgba(212,255,0,0.04);
  border-left: 2px solid var(--acid);
  padding: 12px 14px;
  border-radius: 0 4px 4px 0;
}
.brand-tier-result-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--acid);
  margin-bottom: 4px;
}
.brand-tier-result p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(244,241,236,0.78);
  margin: 0;
}
.brand-tier-result strong { color: var(--acid); font-weight: 700; }

.brand-tier .tier-confirm {
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244,241,236,0.5);
}
.brand-tier-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 8px;
}
.brand-tier-cta .btn-acid { width: 100%; }

/* ---------- Why brand matters (dark, editorial) ---------- */
.why-brand {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.why-brand > .container { position: relative; z-index: 1; }
.why-brand .section-motif {
  bottom: -90px;
  right: -90px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(-12deg);
}
.why-brand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) { .why-brand-grid { grid-template-columns: 1fr 1.4fr; gap: 72px; } }
.why-brand-side h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.1;
}
.why-brand-body p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(244,241,236,0.78);
  margin: 0 0 16px;
}
.why-brand-body p:last-of-type { margin-bottom: 0; }
.why-brand-body em { color: var(--off-white); font-style: italic; }
.why-brand-body a { color: var(--acid); border-bottom: 1px solid rgba(212,255,0,0.4); }
.why-brand-body a:hover { border-bottom-color: var(--acid); }

/* ==========================================================================
   Marketing page — service rows + hosting tiers
   ========================================================================== */

.marketing-tiers,
.hosting-tiers {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.marketing-tiers { background: var(--off-white); color: var(--charcoal); }
.hosting-tiers { background: var(--charcoal); color: var(--off-white); }

.marketing-tiers > .container,
.hosting-tiers > .container { position: relative; z-index: 1; }
.marketing-tiers .section-motif {
  bottom: -100px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.hosting-tiers .section-motif {
  top: -60px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(18deg);
}

.marketing-tiers-header,
.hosting-tiers-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.marketing-tiers-header h2,
.hosting-tiers-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.05;
}
.hosting-tiers-header h2 { color: var(--off-white); }
.marketing-tiers-header p,
.hosting-tiers-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  margin: 16px 0 0;
}
.marketing-tiers-header p { color: #4a4a45; }
.hosting-tiers-header p { color: rgba(244,241,236,0.7); }

/* Row container */
.mk-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Individual row card */
.mk-row {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--acid);
  border-radius: 6px;
  padding: 24px 26px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
@media (min-width: 800px) {
  .mk-row {
    grid-template-columns: 1fr 200px;
    gap: 32px;
    padding: 28px 32px;
    align-items: start;
  }
}
.mk-row:hover {
  transform: translateY(-1px);
  border-color: var(--charcoal);
  box-shadow: 0 12px 28px rgba(20,20,20,0.06);
}

/* Dark variant for hosting tiers */
.mk-rows-dark .mk-row {
  background: var(--charcoal-mid);
  border-color: rgba(244,241,236,0.06);
  border-left: 3px solid var(--acid);
  color: var(--off-white);
}
.mk-rows-dark .mk-row:hover {
  border-color: rgba(212,255,0,0.4);
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}

/* Featured (Most popular) row */
.mk-row-featured {
  border: 2px solid var(--charcoal);
  border-left-width: 3px;
}
.mk-rows-dark .mk-row-featured {
  border: 2px solid rgba(212,255,0,0.35);
  border-left: 3px solid var(--acid);
}
.mk-row-flag {
  position: absolute;
  top: -12px; left: 24px;
  background: var(--acid);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
  z-index: 1;
}

/* Row content */
.mk-row-main { min-width: 0; }
.mk-row h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 0 4px;
}
.mk-rows-dark .mk-row h3 { color: var(--off-white); }
.mk-row-strapline {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  color: var(--muted);
}
.mk-rows-dark .mk-row-strapline { color: rgba(244,241,236,0.6); }
.mk-row-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 12px;
}
.mk-rows-dark .mk-row-tag { color: rgba(244,241,236,0.6); }
.mk-row-body {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  margin: 8px 0 12px;
}
.mk-row-body { color: #4a4a45; }
.mk-rows-dark .mk-row-body { color: rgba(244,241,236,0.78); }
.mk-row-body a {
  color: var(--charcoal);
  border-bottom: 1px solid var(--charcoal);
  padding-bottom: 1px;
}
.mk-rows-dark .mk-row-body a {
  color: var(--acid);
  border-bottom-color: rgba(212,255,0,0.4);
}
.mk-rows-dark .mk-row-body a:hover { border-bottom-color: var(--acid); }

/* Typical result pull */
.mk-row-result {
  background: rgba(212,255,0,0.10);
  border-left: 2px solid var(--acid);
  padding: 8px 12px;
  border-radius: 0 4px 4px 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  align-items: baseline;
}
.mk-rows-dark .mk-row-result { background: rgba(212,255,0,0.06); }
.mk-row-result-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  flex-shrink: 0;
}
.mk-rows-dark .mk-row-result-label { color: var(--acid); }
.mk-rows-dark .mk-row-result span:not(.mk-row-result-label) { color: rgba(244,241,236,0.85); font-style: italic; font-weight: 500; }
.mk-row-result span:not(.mk-row-result-label) {
  color: var(--charcoal);
  font-style: italic;
  font-weight: 500;
}

/* Right meta column */
.mk-row-meta {
  text-align: left;
  padding-top: 4px;
  border-top: 1px solid var(--border-light);
  padding-top: 16px;
}
@media (min-width: 800px) {
  .mk-row-meta { text-align: right; border-top: none; padding-top: 0; padding-left: 24px; border-left: 1px solid var(--border-light); }
}
.mk-rows-dark .mk-row-meta { border-color: rgba(244,241,236,0.08); }
.mk-row-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--charcoal);
}
.mk-rows-dark .mk-row-price { color: var(--acid); }
.mk-row-unit {
  font-size: 0.55em;
  font-weight: 500;
  color: var(--muted);
}
.mk-rows-dark .mk-row-unit { color: rgba(244,241,236,0.6); }
.mk-row-meta-line {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.45;
  color: var(--muted);
  margin-top: 6px;
}
.mk-rows-dark .mk-row-meta-line { color: rgba(244,241,236,0.55); }
.mk-row-meta-extra {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 13px;
  color: var(--charcoal);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--border-light);
}
.mk-rows-dark .mk-row-meta-extra { color: var(--off-white); border-color: rgba(244,241,236,0.08); }
.mk-row-meta-extra strong { font-weight: 700; }

.marketing-tiers-foot {
  margin: 40px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 720px;
}
.marketing-tiers-foot-dark {
  color: rgba(244,241,236,0.55);
  font-style: italic;
}
.marketing-tiers-foot-dark a {
  color: var(--acid);
  border-bottom: 1px solid rgba(212,255,0,0.4);
  font-style: normal;
  font-weight: 500;
}
.marketing-tiers-foot-dark a:hover { border-bottom-color: var(--acid); }

/* ==========================================================================
   AI training page
   ========================================================================== */

/* ---------- 2-stat band (light, follows hero) ---------- */
.ai-stats {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-stats > .container { position: relative; z-index: 1; }
.ai-stats .section-motif {
  bottom: -90px;
  right: -90px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.ai-stats-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.ai-stats-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  margin-top: 16px;
  line-height: 1.05;
}
.ai-stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  border-top: 1px solid var(--border-light);
  padding-top: 48px;
}
@media (min-width: 700px) { .ai-stats-grid { grid-template-columns: 1fr 1fr; gap: 56px; } }
.ai-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(72px, 9vw, 110px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--charcoal);
  display: block;
  margin-bottom: 16px;
}
.ai-stat-label {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.55;
  color: #4a4a45;
  margin: 0;
  max-width: 380px;
}
.ai-stat-source {
  display: block;
  margin-top: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--muted);
}

/* ---------- Speaker credibility (dark with photo) ---------- */
.ai-speaker {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-speaker > .container { position: relative; z-index: 1; }
.ai-speaker .section-motif {
  top: -50px;
  left: -100px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(18deg);
}
.ai-speaker-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) {
  .ai-speaker-grid { grid-template-columns: 1fr 1.2fr; gap: 64px; }
}
.ai-speaker-aside h2 {
  font-size: clamp(28px, 3.6vw, 40px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.15;
}
.ai-speaker-aside p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(244,241,236,0.78);
  margin: 16px 0 24px;
}
.ai-speaker-aside p strong { color: var(--off-white); font-weight: 600; }
.ai-speaker-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.12);
}
.ai-speaker-meta-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,241,236,0.5);
}
.ai-speaker-meta-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--off-white);
}
.ai-speaker-figure {
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--charcoal-mid);
  aspect-ratio: 3 / 2;
  position: relative;
}
.ai-speaker-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.ai-speaker-figure figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 20px;
  background: linear-gradient(180deg, transparent, rgba(20,20,20,0.85));
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.85);
}
.ai-speaker-figure figcaption strong {
  display: block;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  color: var(--off-white);
  margin-bottom: 2px;
}

/* ---------- What you get info grid (light) ---------- */
.ai-what {
  background: var(--off-white);
  color: var(--charcoal);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-what > .container { position: relative; z-index: 1; }
.ai-what .section-motif {
  bottom: -90px;
  right: -90px;
  width: 280px;
  opacity: 0.05;
  transform: rotate(-12deg);
}
.ai-what-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 1040px;
}
@media (min-width: 900px) {
  .ai-what-header { grid-template-columns: 1.4fr 1fr; align-items: end; gap: 56px; }
}
.ai-what-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ai-what-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a45;
  margin: 0;
}
.ai-what-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 600px) { .ai-what-grid { grid-template-columns: 1fr 1fr; gap: 16px; } }
@media (min-width: 1000px) { .ai-what-grid { grid-template-columns: repeat(3, 1fr); } }
.ai-what-cell {
  background: var(--warm-white);
  border: 1px solid var(--border-light);
  border-left: 3px solid var(--acid);
  border-radius: 6px;
  padding: 22px 24px;
}
.ai-what-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.ai-what-value {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.45;
  color: var(--charcoal);
}
.ai-what-foot {
  margin-top: 40px;
  padding: 24px 28px;
  background: var(--warm-white);
  border-left: 3px solid var(--acid);
  border-radius: 0 6px 6px 0;
  max-width: 820px;
}
.ai-what-foot p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.65;
  color: #353530;
  margin: 0;
}

/* ---------- Pricing card (dark, with Claude badge) ---------- */
.ai-pricing {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.ai-pricing > .container { position: relative; z-index: 1; }
.ai-pricing .section-motif {
  top: -50px;
  left: -90px;
  width: 280px;
  opacity: 0.06;
  transform: rotate(20deg);
}
.ai-pricing-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.ai-pricing-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.05;
}
.ai-pricing-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(244,241,236,0.7);
  margin: 16px 0 0;
}

.ai-tier {
  background: var(--charcoal-mid);
  border: 1px solid rgba(244,241,236,0.06);
  border-radius: 8px;
  padding: 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.ai-tier-claude {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(217, 119, 87, 0.10);
  border: 1px solid rgba(217, 119, 87, 0.3);
  border-radius: 4px;
  align-self: flex-start;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(244,241,236,0.85);
}
.ai-tier-claude-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #D97757;
}
.ai-tier-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .ai-tier-grid { grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: start; } }
.ai-tier-main h3 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.6vw, 30px);
  letter-spacing: -0.02em;
  color: var(--off-white);
  margin: 0 0 6px;
  line-height: 1.1;
}
.ai-tier-tag {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 500;
  font-size: 16px;
  color: rgba(244,241,236,0.65);
  margin: 0 0 18px;
}
.ai-tier-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(244,241,236,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ai-tier-list li {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.45;
  color: rgba(244,241,236,0.85);
  padding-left: 22px;
  position: relative;
}
.ai-tier-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 12px; height: 2px;
  background: var(--acid);
  border-radius: 1px;
}
.ai-tier .tier-confirm {
  margin: 0;
  padding: 0;
  border: none;
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244,241,236,0.5);
}

.ai-tier-meta {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(244,241,236,0.08);
}
@media (min-width: 800px) {
  .ai-tier-meta {
    border-top: none;
    border-left: 1px solid rgba(244,241,236,0.08);
    padding-top: 0;
    padding-left: 32px;
  }
}
.ai-tier-price {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--acid);
}
.ai-tier-unit {
  font-size: 0.4em;
  font-weight: 500;
  color: rgba(244,241,236,0.7);
  margin-left: 4px;
}
.ai-tier-price-line {
  font-family: 'DM Sans', sans-serif;
  font-style: italic;
  font-size: 13px;
  color: rgba(244,241,236,0.55);
}
.ai-tier-price-extra {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(244,241,236,0.65);
  padding-top: 12px;
  border-top: 1px solid rgba(244,241,236,0.06);
}
.ai-tier-price-extra strong { color: var(--off-white); font-weight: 700; }
.ai-tier-cta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(244,241,236,0.06);
}
.ai-tier-cta .btn-acid { width: 100%; }

/* ==========================================================================
   Work index page (reuses related-grid + related-card from case-study layouts)
   ========================================================================== */

.work-index {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.work-index > .container { position: relative; z-index: 1; }
.work-index .section-motif {
  bottom: -90px;
  right: -90px;
  width: 320px;
  opacity: 0.06;
  transform: rotate(-12deg);
}
.work-index-header {
  margin-bottom: 56px;
  max-width: 720px;
}
.work-index-header h2 {
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.03em;
  color: var(--off-white);
  margin-top: 16px;
  line-height: 1.05;
}

/* Override related-grid to span 3 cols on the work-index page */
.work-index .related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 800px) { .work-index .related-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.work-index-foot {
  margin: 56px 0 0;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(244,241,236,0.65);
  max-width: 760px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.work-index-foot a {
  color: var(--acid);
  border-bottom: 1px solid rgba(212,255,0,0.4);
  font-style: normal;
  font-weight: 500;
}
.work-index-foot a:hover { border-bottom-color: var(--acid); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .door-card, .what-card, .play-button, .btn { transition: none; }
}

/* ==========================================================================
   Case study — The Roxys brand canvas
   Themed in the Roxys palette (midnight + champagne) so the brand work
   shows in its native colours, not the SortTheClicks ones.
   ========================================================================== */

.case-brand {
  background: #0a1628;
  color: #f5f0e8;
  padding: 96px 0 120px;
  position: relative;
  overflow: hidden;
}
.case-brand > .container { position: relative; z-index: 1; }
.case-brand .section-motif {
  bottom: -100px;
  right: -100px;
  width: 320px;
  opacity: 0.05;
  transform: rotate(-14deg);
}
.case-brand .section-label { color: #d4af6f; }

.roxys-canvas-header {
  margin-bottom: 56px;
  max-width: 760px;
}
.roxys-canvas-header h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 400;
  font-style: italic;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: -0.02em;
  color: #f5f0e8;
  margin-top: 16px;
  line-height: 1.05;
}
.roxys-canvas-header p {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(245,240,232,0.7);
  margin: 16px 0 0;
}

/* Canvas surface — cream working surface, like a designer's pasteboard */
.roxys-canvas {
  background: #f5f0e8;
  border-radius: 8px;
  padding: 16px;
  color: #0a1628;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 700px) { .roxys-canvas { padding: 20px; gap: 14px; } }

/* Top bar */
.roxys-canvas-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(10,22,40,0.12);
  gap: 12px;
}
.roxys-canvas-bar-left { display: flex; align-items: center; gap: 10px; }
.roxys-canvas-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #d4af6f;
}
.roxys-canvas-bar-title,
.roxys-canvas-bar-version {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.55);
}
.roxys-canvas-bar-version { letter-spacing: 0.06em; text-transform: none; }

/* Grid layout — same proportions as the STC canvas */
.roxys-canvas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 800px) {
  .roxys-canvas-grid {
    grid-template-columns: 1.5fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 12px;
  }
  .roxys-cell-logo { grid-row: span 2; grid-column: 1; }
  .roxys-cell-palette { grid-column: 2; }
  .roxys-cell-type { grid-column: 2; }
  .roxys-cell-motif { grid-column: 1; }
  .roxys-cell-voice { grid-column: 2; }
}

.roxys-cell {
  background: #ffffff;
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}
.roxys-cell-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.roxys-cell-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.55);
}
.roxys-cell-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(10,22,40,0.55);
}

/* 01 WORDMARK cell — midnight bg, wordmark hero */
.roxys-cell-logo {
  background: #0a1628;
  color: rgba(245,240,232,0.7);
}
.roxys-cell-logo .roxys-cell-label,
.roxys-cell-logo .roxys-cell-meta { color: rgba(245,240,232,0.5); }
.roxys-logo-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 24px 12px;
  min-height: 220px;
}
.roxys-logo-stage img {
  width: 60%;
  max-width: 320px;
  height: auto;
  object-fit: contain;
}
@media (min-width: 800px) {
  .roxys-logo-stage { min-height: 260px; }
  .roxys-logo-stage img { width: 70%; max-width: 360px; }
}
.roxys-logo-variants {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.roxys-logo-variant {
  border-radius: 3px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  min-width: 0;
  overflow: hidden;
}
.roxys-logo-variant img {
  width: 78%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
}
.rl-on-midnight { background: #07101f; }
.rl-on-cream { background: #f5f0e8; }
.rl-on-velvet { background: #14253f; }

/* 02 PALETTE cell */
.roxys-swatches {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 6px;
}
@media (min-width: 600px) {
  .roxys-swatches { grid-template-columns: repeat(6, minmax(0,1fr)); }
}
.roxys-swatch {
  aspect-ratio: 1 / 1.4;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 8px 6px;
  min-width: 0;
}
.roxys-swatch .rs-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 9px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.1;
}
.roxys-swatch .rs-hex {
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  line-height: 1.2;
  margin-top: 2px;
}
.rs-deep { background: #07101f; }
.rs-deep .rs-name { color: rgba(245,240,232,0.92); }
.rs-deep .rs-hex { color: rgba(245,240,232,0.55); }
.rs-midnight { background: #0a1628; }
.rs-midnight .rs-name { color: rgba(245,240,232,0.92); }
.rs-midnight .rs-hex { color: rgba(245,240,232,0.55); }
.rs-card { background: #14253f; }
.rs-card .rs-name { color: rgba(245,240,232,0.92); }
.rs-card .rs-hex { color: rgba(245,240,232,0.55); }
.rs-champagne { background: #d4af6f; }
.rs-champagne .rs-name { color: #0a1628; }
.rs-champagne .rs-hex { color: rgba(10,22,40,0.65); }
.rs-warm { background: #e8c896; }
.rs-warm .rs-name { color: #0a1628; }
.rs-warm .rs-hex { color: rgba(10,22,40,0.6); }
.rs-cream { background: #f5f0e8; border: 1px solid rgba(10,22,40,0.08); }
.rs-cream .rs-name { color: #0a1628; }
.rs-cream .rs-hex { color: rgba(10,22,40,0.55); }

/* 03 TYPE cell */
.roxys-type-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: end;
}
@media (min-width: 520px) {
  .roxys-type-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}
.roxys-type-cell { min-width: 0; overflow: hidden; }
.roxys-type-specimen {
  font-size: clamp(40px, 9vw, 56px);
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: #0a1628;
  margin-bottom: 8px;
  white-space: nowrap;
}
.roxys-type-display {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144;
}
.roxys-type-body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(32px, 7vw, 44px);
}
.roxys-type-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0.04em;
  color: #0a1628;
  text-transform: uppercase;
  line-height: 1.4;
}
.roxys-type-name span {
  display: block;
  font-weight: 400;
  text-transform: none;
  color: rgba(10,22,40,0.55);
  letter-spacing: 0;
  margin-top: 2px;
}

/* 04 VENUE MARQUEE cell — midnight bg, scrolling text */
.roxys-cell-motif {
  background: #0a1628;
  color: #f5f0e8;
}
.roxys-cell-motif .roxys-cell-label,
.roxys-cell-motif .roxys-cell-meta { color: rgba(245,240,232,0.5); }
.roxys-marquee {
  position: relative;
  overflow: hidden;
  height: 64px;
  display: flex;
  align-items: center;
  border-top: 1px solid rgba(212,175,111,0.18);
  border-bottom: 1px solid rgba(212,175,111,0.18);
  margin: 0 -16px;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}
.roxys-marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  white-space: nowrap;
  padding-left: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.04em;
  color: #d4af6f;
  animation: roxysMarquee 32s linear infinite;
}
.roxys-marquee-track .rm-dot {
  color: rgba(212,175,111,0.45);
  font-size: 18px;
  font-style: normal;
}
@keyframes roxysMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .roxys-marquee-track { animation: none; }
}
.roxys-motif-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: 11.5px;
  color: rgba(245,240,232,0.55);
  margin-top: auto;
  padding-top: 8px;
  line-height: 1.5;
}

/* 05 VOICE cell */
.roxys-voice-quote {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: #0a1628;
  margin: 0;
}
.roxys-voice-rules {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: #0a1628;
}
.roxys-voice-rule {
  display: flex;
  align-items: center;
  gap: 8px;
}
.roxys-voice-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.roxys-voice-dot-on { background: #d4af6f; }
.roxys-voice-dot-off { background: transparent; border: 1px solid rgba(10,22,40,0.4); }

/* Canvas footer */
.roxys-canvas-foot {
  padding-top: 12px;
  border-top: 1px solid rgba(10,22,40,0.12);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #0a1628;
}
.roxys-canvas-foot-label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #0a1628;
}
.roxys-canvas-foot-paths {
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  color: rgba(10,22,40,0.55);
  flex: 1 1 100%;
  line-height: 1.5;
  word-break: break-word;
}
@media (min-width: 800px) {
  .roxys-canvas-foot-paths {
    flex: 1 1 auto;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: normal;
  }
}

/* ==========================================================================
   Case study — Phone mockup overlay on desktop frame
   Used by the Roxys case study showcase
   ========================================================================== */

.case-frame-with-phone .case-frame-stage { position: relative; }

.case-phone {
  position: absolute;
  bottom: -28px;
  right: 24px;
  width: 142px;
  aspect-ratio: 9 / 19.5;
  border-radius: 20px;
  background: #0a1628;
  padding: 8px;
  box-shadow:
    0 0 0 2px rgba(245,240,232,0.06),
    0 24px 48px -12px rgba(0,0,0,0.55),
    0 8px 18px -4px rgba(0,0,0,0.4);
  pointer-events: none;
  overflow: hidden;
  transform: rotate(2deg);
  transition: transform 0.4s ease;
}
.case-frame-with-phone:hover .case-phone {
  transform: rotate(0deg) translateY(-4px);
}

.case-phone-notch {
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  height: 14px;
  background: #0a1628;
  border-radius: 0 0 10px 10px;
  z-index: 2;
}

.case-phone picture,
.case-phone img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
}

@media (min-width: 760px) {
  .case-phone {
    width: 178px;
    bottom: -36px;
    right: 36px;
    border-radius: 24px;
    padding: 9px;
  }
  .case-phone-notch { height: 16px; top: 9px; }
  .case-phone picture,
  .case-phone img { border-radius: 17px; }
}

@media (min-width: 1100px) {
  .case-phone {
    width: 210px;
    bottom: -44px;
    right: 48px;
  }
}

/* On very narrow screens, drop the phone overlay — it gets in the way */
@media (max-width: 480px) {
  .case-phone {
    width: 110px;
    bottom: -16px;
    right: 12px;
    padding: 6px;
    border-radius: 16px;
  }
  .case-phone-notch { height: 10px; top: 6px; }
  .case-phone picture,
  .case-phone img { border-radius: 11px; }
}

/* Phone left variant — flips the overlay to the bottom-left of the desktop frame.
   Used by case studies where the right side of the desktop has key visual content. */
.case-phone-left {
  right: auto;
  left: 24px;
  transform: rotate(-2deg);
}
.case-frame-with-phone:hover .case-phone-left {
  transform: rotate(0deg) translateY(-4px);
}
@media (min-width: 760px) {
  .case-phone-left { right: auto; left: 36px; }
}
@media (min-width: 1100px) {
  .case-phone-left { right: auto; left: 48px; }
}
@media (max-width: 480px) {
  .case-phone-left { right: auto; left: 12px; }
}

/* =====================================================
   ARTICLES & INSIGHTS
   ===================================================== */

/* Insights archive hero */
.hero-insights {
  padding: 120px 0 80px;
}
.hero-insights .lead {
  max-width: 720px;
}

/* Insights archive grid */
.insights-list {
  background: var(--warm-white);
  padding: 80px 0 120px;
}
.insights-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 32px;
}
.insight-card {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.insight-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(20, 20, 20, 0.08);
  border-color: rgba(20, 20, 20, 0.14);
}
.insight-card:focus-within {
  outline: 2px solid var(--acid);
  outline-offset: 4px;
}
.insight-card-title a::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  z-index: 1;
}
.insight-card:hover .insight-card-link { color: var(--acid); }
.insight-card-eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 16px;
}
.insight-card-title {
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.insight-card-title a {
  color: var(--charcoal);
  text-decoration: none;
}
.insight-card-title a:hover { color: var(--charcoal-soft); }
.insight-card-tldr {
  color: var(--charcoal-soft);
  font-size: 16px;
  line-height: 1.55;
  margin: 0 0 20px;
}
.insight-card-meta {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.insight-card-link {
  color: var(--charcoal);
  font-weight: 500;
  text-decoration: none;
  margin-left: auto;
}
.insight-card-link:hover { color: var(--acid); }
.insights-empty {
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--muted);
  text-align: center;
  padding: 80px 0;
}

/* Article hero */
.page-article { background: var(--warm-white); }
.article-hero {
  background: var(--charcoal);
  color: var(--off-white);
  padding: 100px 0 60px;
}
.article-hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 16px 0 24px;
  color: #fff;
  max-width: 880px;
}
.article-crumbs {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.article-crumbs a {
  color: var(--off-white);
  text-decoration: none;
}
.article-crumbs a:hover { color: var(--acid); }
.article-category { color: var(--acid); }
.article-tldr {
  background: rgba(212, 255, 0, 0.08);
  border-left: 3px solid var(--acid);
  padding: 16px 20px;
  border-radius: 4px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--off-white);
  max-width: 760px;
  margin: 0 0 24px;
}
.article-tldr strong { color: var(--acid); font-weight: 700; }
.article-meta {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.article-meta a { color: var(--off-white); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.3); text-underline-offset: 3px; }
.article-meta a:hover { color: var(--acid); }

/* Prose container — narrower for readability */
.container-prose {
  max-width: 760px;
  padding-left: 24px;
  padding-right: 24px;
  margin: 0 auto;
}

/* Article body prose */
.article-body {
  padding: 64px 0 32px;
}
.article-body p,
.article-body ul,
.article-body ol,
.article-body blockquote {
  font-size: 18px;
  line-height: 1.65;
  color: var(--charcoal);
  margin: 0 0 24px;
}
.article-body h2 {
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 56px 0 16px;
  color: var(--charcoal);
}
.article-body h3 {
  font-size: clamp(20px, 2.2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 40px 0 12px;
  color: var(--charcoal);
}
.article-body h2:first-child,
.article-body h3:first-child { margin-top: 0; }
.article-body a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}
.article-body a:hover { background: var(--acid); }
.article-body strong { font-weight: 700; }
.article-body ul, .article-body ol { padding-left: 24px; }
.article-body li { margin-bottom: 8px; }
.article-body blockquote {
  border-left: 3px solid var(--acid);
  padding: 4px 0 4px 20px;
  font-style: italic;
  color: var(--charcoal-soft);
}
.article-body code {
  background: var(--off-white);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.article-body hr {
  border: none;
  border-top: 1px solid rgba(20,20,20,0.1);
  margin: 48px 0;
}
.article-body .pull-stat {
  display: block;
  background: var(--charcoal);
  color: #fff;
  padding: 32px;
  border-radius: 12px;
  margin: 32px 0;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.article-body .pull-stat strong { color: var(--acid); }

/* Article FAQs */
.article-faqs {
  padding: 24px 0 32px;
}
.article-faqs h2 {
  font-size: clamp(24px, 2.6vw, 30px);
  margin: 0 0 24px;
  color: var(--charcoal);
}
.article-faqs .faq {
  border-top: 1px solid rgba(20,20,20,0.1);
  padding: 20px 0;
}
.article-faqs .faq:last-child { border-bottom: 1px solid rgba(20,20,20,0.1); }
.article-faqs .faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
  color: var(--charcoal);
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.article-faqs .faq summary::-webkit-details-marker { display: none; }
.article-faqs .faq summary::after {
  content: "+";
  font-family: "DM Sans", system-ui, sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1;
  color: var(--muted);
}
.article-faqs .faq[open] summary::after { content: "−"; }
.article-faqs .faq-body {
  padding-top: 12px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--charcoal-soft);
}
.article-faqs .faq-body p { margin: 0 0 12px; }
.article-faqs .faq-body p:last-child { margin: 0; }
.article-faqs .faq-body a { color: var(--charcoal); text-decoration: underline; text-decoration-color: var(--acid); text-decoration-thickness: 2px; text-underline-offset: 3px; }

/* Pillar / related service card */
.article-pillar {
  padding: 32px 0;
}
.article-pillar-eyebrow {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}
.article-pillar-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--charcoal);
  color: #fff;
  padding: 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.3;
  letter-spacing: -0.015em;
  transition: background 0.2s ease;
}
.article-pillar-card:hover { background: var(--charcoal-soft); }
.article-pillar-arrow {
  font-size: 28px;
  color: var(--acid);
  flex-shrink: 0;
}

/* Author card */
.article-author {
  padding: 48px 0 96px;
}
.article-author-card {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(20,20,20,0.08);
  border-radius: 16px;
  padding: 28px;
}
.article-author-card picture {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  display: block;
}
.article-author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.article-author-name {
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 8px;
}
.article-author-name strong { color: var(--charcoal); }
.article-author-bio {
  font-size: 16px;
  line-height: 1.55;
  color: var(--charcoal-soft);
  margin: 0;
}
.article-author-bio a {
  color: var(--charcoal);
  text-decoration: underline;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

@media (max-width: 600px) {
  .article-hero { padding: 80px 0 48px; }
  .article-body { padding: 48px 0 24px; }
  .article-author-card { flex-direction: column; gap: 16px; }
  .article-author-card picture { width: 64px; height: 64px; }
  .article-author-card img { width: 64px; height: 64px; }
  .insights-grid { gap: 20px; }
  .insight-card { padding: 24px; }
}

/* GEO tier feature list — same shape as .geo-do-list, adjusted for tier-card width */
.geo-tier-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.geo-tier-list li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  color: rgba(244,241,236,0.78);
}
.geo-tier-list li code {
  background: rgba(212,255,0,0.08);
  color: var(--acid);
  padding: 1px 5px;
  border-radius: 3px;
  font-size: 0.92em;
}

/* Spacing when geo-tier-list is reused inside a mk-row card (e.g. Growth Partner bundle) */
.geo-tier-list + .mk-row-result { margin-top: 20px; }
.mk-row-body + .geo-tier-list { margin-top: 16px; }
