/* =====================================================================
   MCG Home Redesign — Corner of Code & Creativity
   Design lineage: dark, editorial, cinematic. Instrument Serif display
   + Satoshi UI. Near-black canvas. Gold reserved as a rare accent.
   Scope: only .home-redesign (front page). Base theme untouched.
   ===================================================================== */

/* ---------------------------------------------------------------------
   1. FONTS — Instrument Serif (display) + Satoshi (UI/body)
   --------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=satoshi@400,500,700&display=swap');

/* ---------------------------------------------------------------------
   2. TOKENS — palette, type scale, radii, spacing, motion
   --------------------------------------------------------------------- */
.home-redesign {
  /* Palette — near-black canvas, layered surfaces, white-alpha hierarchy */
  --mcg-ink: #0a0a0a;
  --mcg-ink-2: #121212;
  --mcg-ink-3: #1a1a1a;
  --mcg-text: #ffffff;
  --mcg-text-2: rgba(255, 255, 255, 0.55);
  --mcg-text-3: rgba(255, 255, 255, 0.33);
  --mcg-line: rgba(255, 255, 255, 0.08);
  --mcg-line-2: rgba(255, 255, 255, 0.14);
  --mcg-surface: rgba(255, 255, 255, 0.04);
  --mcg-surface-hover: rgba(255, 255, 255, 0.07);

  /* Signature gold — rare accent only. Hover glows, italic word, HQ pill. */
  --mcg-gold: #d4a017;
  --mcg-gold-soft: rgba(212, 160, 23, 0.16);
  --mcg-gold-glow: rgba(212, 160, 23, 0.24);

  /* Type */
  --mcg-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --mcg-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Radii */
  --r-lg: 40px;
  --r-md: 32px;
  --r-sm: 24px;
  --r-xs: 12px;
  --r-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------------------
   3. PAGE — reset base theme flourishes, set the canvas
   --------------------------------------------------------------------- */
body.home-redesign,
.home-redesign {
  background: var(--mcg-ink) !important;
  color: var(--mcg-text);
  font-family: var(--mcg-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Kill any base-theme body/section backgrounds that would fight us */
.home-redesign main,
.home-redesign #main,
.home-redesign section {
  background: transparent;
}

/* Container widths */
.home-redesign .container,
.home-redesign .container--default {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}

/* Section rhythm — generous vertical breathing */
.home-redesign section {
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
}

/* ---------------------------------------------------------------------
   4. TYPOGRAPHY — Instrument Serif for all display, Satoshi elsewhere
   --------------------------------------------------------------------- */
.home-redesign h1,
.home-redesign h2,
.home-redesign h3,
.home-redesign .hero-h1 {
  font-family: var(--mcg-serif);
  font-weight: 400;
  color: var(--mcg-text);
  letter-spacing: -0.01em;
  margin: 0;
}

.home-redesign h1,
.home-redesign .hero-h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.home-redesign h2 {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.06;
}

.home-redesign h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  line-height: 1.2;
  font-family: var(--mcg-sans);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.home-redesign h1 em,
.home-redesign h2 em,
.home-redesign .hero-h1 em {
  font-style: italic;
  color: var(--mcg-gold);
  font-weight: 400;
}

.home-redesign p {
  font-family: var(--mcg-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--mcg-text-2);
  font-weight: 400;
  margin: 0;
}

/* Eyebrow pills — every section gets one */
.home-redesign .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mcg-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mcg-text-2);
  padding: 8px 14px;
  background: var(--mcg-surface);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-pill);
  margin-bottom: 24px;
  text-decoration: none;
}

.home-redesign .eyebrow-dot,
.home-redesign .eyebrow::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mcg-gold);
  box-shadow: 0 0 8px var(--mcg-gold-glow);
}

.home-redesign .eyebrow--pill .eyebrow-dot {
  content: none;
}

.home-redesign .eyebrow--pill::before {
  content: none;
}

/* Section head — centered eyebrow + H2 + intro */
.home-redesign .section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.home-redesign .section-head .eyebrow {
  margin-bottom: 24px;
}

.home-redesign .section-head h2 {
  margin-bottom: 16px;
}

.home-redesign .section-head p {
  font-size: 17px;
  color: var(--mcg-text-2);
  max-width: 560px;
  margin: 0 auto;
}

.home-redesign .section-head--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  text-align: left;
  max-width: none;
  gap: 32px;
}

.home-redesign .section-head--split > div {
  max-width: 620px;
}

.home-redesign .section-head--split .eyebrow {
  margin-bottom: 20px;
}

/* ---------------------------------------------------------------------
   5. BUTTONS — pill primary, ghost secondary, gold hover glow
   --------------------------------------------------------------------- */
.home-redesign .btn,
.home-redesign .btn-primary,
.home-redesign .btn-secondary,
.home-redesign .btn-ghost,
.home-redesign .btn-on-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mcg-sans);
  font-size: 15px;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r-pill);
  text-decoration: none;
  transition: box-shadow 300ms var(--ease-smooth), background 200ms var(--ease-smooth), color 200ms var(--ease-smooth), transform 300ms var(--ease-smooth);
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}

/* Primary — solid white, dark text, gold glow on hover */
.home-redesign .btn.btn-primary,
.home-redesign .btn-primary {
  background: var(--mcg-text);
  color: var(--mcg-ink);
  border-color: var(--mcg-text);
}

.home-redesign .btn.btn-primary:hover,
.home-redesign .btn-primary:hover {
  box-shadow: 0 0 0 6px var(--mcg-gold-glow);
  color: var(--mcg-ink);
}

/* Ghost — glass pill, hover fills */
.home-redesign .btn-ghost,
.home-redesign .btn.btn-secondary {
  background: var(--mcg-surface);
  color: var(--mcg-text);
  border: 1px solid var(--mcg-line-2);
}

.home-redesign .btn-ghost:hover,
.home-redesign .btn.btn-secondary:hover {
  background: var(--mcg-surface-hover);
  border-color: var(--mcg-line-2);
  color: var(--mcg-text);
}

/* On-dark inversion (rare) */
.home-redesign .btn-on-dark {
  background: var(--mcg-text);
  color: var(--mcg-ink);
}

.home-redesign .btn-on-dark:hover {
  box-shadow: 0 0 0 6px var(--mcg-gold-glow);
}

/* ---------------------------------------------------------------------
   6. HERO — full-bleed photo, centered text, marquee at bottom
   --------------------------------------------------------------------- */
.home-redesign .hero.hero--fullbleed {
  min-height: min(92vh, 900px);
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.home-redesign .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.home-redesign .hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  /* Push the daylight photo toward twilight/nightfall */
  filter: brightness(0.62) contrast(1.05) saturate(0.85) hue-rotate(-8deg);
}

.home-redesign .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    /* Focused darken behind the text block (upper-middle) */
    radial-gradient(ellipse 60% 55% at 50% 45%, rgba(10,10,10,0.75) 0%, rgba(10,10,10,0.25) 55%, transparent 90%),
    /* Top-to-bottom fade so nav has protection and marquee has ink */
    linear-gradient(180deg, rgba(10,10,10,0.65) 0%, rgba(10,10,10,0) 25%, rgba(10,10,10,0) 60%, rgba(10,10,10,0.85) 92%, var(--mcg-ink) 100%);
  z-index: 1;
}

.home-redesign .hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 160px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.home-redesign .hero-eyebrow-row {
  margin-bottom: 28px;
}

.home-redesign .hero-inner .eyebrow {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-redesign .hero-h1,
.home-redesign h1.hero-h1,
#main .home-redesign .hero-h1 {
  font-family: var(--mcg-serif) !important;
  font-size: clamp(48px, 7.2vw, 96px) !important;
  font-weight: 400 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.02em !important;
  margin: 0 0 24px !important;
  padding: 0 !important;
  color: var(--mcg-text) !important;
  max-width: 900px;
  text-align: center;
  text-transform: none !important;
}

/* Kill any <p> tag WP autop injects inside the H1 */
.home-redesign .hero-h1 > p {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-family: inherit;
  color: inherit;
  line-height: inherit;
  display: inline;
}

.home-redesign .hero-h1 em {
  font-style: italic;
  color: var(--mcg-gold);
  font-weight: 400;
}

.home-redesign .hero-h1 br {
  display: block;
}

.home-redesign .hero-sub {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  max-width: 640px;
  margin: 0 auto 40px;
  text-align: center;
  text-wrap: pretty;
  hyphens: none;
  -webkit-hyphens: none;
  word-break: normal;
  overflow-wrap: normal;
}

/* Simple fade for hero sub — no split-char animation */
.home-redesign .hero-sub--fade {
  opacity: 0;
  transform: translateY(8px);
  animation: mcg-hero-sub-fade 800ms var(--ease-out) forwards;
  animation-delay: 700ms;
}

@keyframes mcg-hero-sub-fade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-redesign .hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Hero marquee — thin, dimmed, at bottom of hero */
.home-redesign .hero-marquee {
  position: relative;
  z-index: 2;
  padding: 20px 0;
  margin-top: auto;
  border-top: 1px solid var(--mcg-line);
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
  overflow: hidden;
}

.home-redesign .hero-marquee .marquee-track {
  display: flex;
  gap: 64px;
  animation: mcg-marquee 40s linear infinite;
  width: max-content;
}

.home-redesign .hero-marquee .marquee-track span {
  font-family: var(--mcg-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  white-space: nowrap;
}

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

/* Split-text animation targets */
.home-redesign [data-split] .split-word,
.home-redesign [data-split] .split-char {
  display: inline-block;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(16px);
  transition:
    opacity 700ms var(--ease-out),
    filter 700ms var(--ease-out),
    transform 700ms var(--ease-out);
  transition-delay: calc(var(--i, 0) * 60ms);
}

.home-redesign [data-split].is-revealed .split-word,
.home-redesign [data-split].is-revealed .split-char {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* ---------------------------------------------------------------------
   7. REVEAL — sections fade+rise on scroll into view
   --------------------------------------------------------------------- */
.home-redesign .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms var(--ease-out), transform 800ms var(--ease-out);
}

.home-redesign .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------------------------------------------------------------------
   8. COMPARE — dark cards, 40px radii, before/after
   --------------------------------------------------------------------- */
.home-redesign .compare {
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .compare-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 840px) {
  .home-redesign .compare-grid {
    grid-template-columns: 1fr;
  }
}

.home-redesign .compare-card {
  background: linear-gradient(180deg, var(--mcg-ink-2) 0%, rgba(18,18,18,0.6) 100%);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 500ms var(--ease-out), border-color 500ms var(--ease-out);
}

.home-redesign .compare-card:hover {
  border-color: var(--mcg-line-2);
  transform: translateY(-2px);
}

.home-redesign .compare-card figure {
  aspect-ratio: 16/10;
  overflow: hidden;
  margin: 0;
  background: var(--mcg-ink-3);
  border-bottom: 1px solid var(--mcg-line);
}

.home-redesign .compare-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-redesign .compare-card--old img {
  filter: grayscale(0.4) contrast(0.9) brightness(0.85);
}

.home-redesign .compare-body {
  padding: 28px 32px 36px;
}

.home-redesign .compare-tag {
  display: inline-block;
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mcg-text-2);
  margin-bottom: 12px;
}

.home-redesign .compare-card--new .compare-tag {
  color: var(--mcg-gold);
}

.home-redesign .compare-body h3 {
  font-family: var(--mcg-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--mcg-text);
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.home-redesign .compare-body ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-redesign .compare-body li {
  font-family: var(--mcg-sans);
  font-size: 15px;
  color: var(--mcg-text-2);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.home-redesign .compare-body li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--mcg-text-3);
}

.home-redesign .compare-card--new .compare-body li::before {
  content: '+';
  color: var(--mcg-gold);
}

.home-redesign .compare-cta {
  text-align: center;
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.home-redesign .compare-cta p {
  font-family: var(--mcg-serif);
  font-size: 24px;
  font-style: italic;
  color: var(--mcg-text);
}

/* ---------------------------------------------------------------------
   9. CTA BAND — dark, quiet, centered
   --------------------------------------------------------------------- */
.home-redesign .cta-band {
  background: var(--mcg-ink-2);
  border-block: 1px solid var(--mcg-line);
  padding-block: clamp(60px, 8vw, 100px);
}

.home-redesign .cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.home-redesign .cta-band h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 8px;
}

.home-redesign .cta-band p {
  color: var(--mcg-text-2);
  max-width: 480px;
}

.home-redesign .cta-band-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-redesign .cta-band-note {
  font-family: var(--mcg-sans);
  font-size: 14px;
  color: var(--mcg-text-3);
}

.home-redesign .cta-band-note a {
  color: var(--mcg-text);
  text-decoration: none;
  border-bottom: 1px solid var(--mcg-line-2);
}

.home-redesign .cta-band-note a:hover {
  color: var(--mcg-gold);
  border-color: var(--mcg-gold);
}

/* ---------------------------------------------------------------------
   10. CAPABILITIES — bento grid, dark cards with gradient sheen
   --------------------------------------------------------------------- */
.home-redesign .capabilities {
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .capabilities .cap-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  border: none !important;
}

@media (max-width: 1000px) {
  .home-redesign .capabilities .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .home-redesign .capabilities .cap-grid {
    grid-template-columns: 1fr;
  }
}

.home-redesign .cap-card {
  background: linear-gradient(180deg, var(--mcg-ink-2) 0%, rgba(18,18,18,0.4) 100%);
  border: 1px solid var(--mcg-line) !important;
  border-right: 1px solid var(--mcg-line) !important;
  border-radius: var(--r-md);
  padding: 32px 28px;
  position: relative;
  transition: border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.home-redesign .cap-card:hover {
  border-color: var(--mcg-line-2) !important;
  background: linear-gradient(180deg, var(--mcg-ink-3) 0%, rgba(26,26,26,0.6) 100%);
  transform: translateY(-2px);
}

.home-redesign .cap-index {
  font-family: var(--mcg-serif);
  font-size: 14px;
  color: var(--mcg-text-3);
  font-style: italic;
  letter-spacing: 0.02em;
}

.home-redesign .cap-card h3 {
  font-family: var(--mcg-serif);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.15;
  color: var(--mcg-text);
  letter-spacing: -0.01em;
  margin: 0;
}

.home-redesign .cap-card p {
  font-size: 15px;
  color: var(--mcg-text-2);
  line-height: 1.5;
  flex: 1;
}

.home-redesign .cap-tag {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mcg-gold);
  padding: 7px 14px;
  border: 1px solid rgba(212, 160, 23, 0.38);
  background: rgba(212, 160, 23, 0.06);
  border-radius: var(--r-pill);
  margin-top: 20px;
  transition: border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth);
}

.home-redesign .cap-card:hover .cap-tag {
  border-color: rgba(212, 160, 23, 0.6);
  background: rgba(212, 160, 23, 0.1);
}

/* ---------------------------------------------------------------------
   11. PROOF STRIP — dark ribbon, no texture, quiet numerals
   --------------------------------------------------------------------- */
.home-redesign .proof-strip {
  background: var(--mcg-ink-2) !important;
  border-block: 1px solid var(--mcg-line);
  padding-block: clamp(48px, 6vw, 72px);
}

.home-redesign .proof-strip::before,
.home-redesign .proof-strip::after {
  display: none !important;
}

.home-redesign .proof-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mcg-text-3);
  margin-bottom: 40px;
}

.home-redesign .proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

@media (max-width: 960px) {
  .home-redesign .proof-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .home-redesign .proof-grid { grid-template-columns: repeat(2, 1fr); }
}

.home-redesign .proof-item {
  text-align: center;
  border: none !important;
  background: transparent !important;
}

.home-redesign .proof-item::before,
.home-redesign .proof-item::after {
  display: none !important;
}

.home-redesign .proof-num {
  display: block;
  font-family: var(--mcg-serif);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 400;
  line-height: 1;
  color: var(--mcg-text);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.home-redesign .proof-num .accent {
  color: var(--mcg-text);
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: var(--mcg-text) !important;
}

.home-redesign .proof-label {
  display: block;
  font-family: var(--mcg-sans);
  font-size: 13px;
  font-weight: 400;
  color: var(--mcg-text-2);
  line-height: 1.4;
}

/* ---------------------------------------------------------------------
   12. WHY-CHOOSE — clean side-by-side, no photo frame decoration
   --------------------------------------------------------------------- */
.home-redesign .why-choose {
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .why-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .home-redesign .why-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.home-redesign .why-media figure {
  margin: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--mcg-ink-3);
  border: 1px solid var(--mcg-line);
}

.home-redesign .why-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.home-redesign .why-copy h2 {
  margin-bottom: 32px;
}

.home-redesign .why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-redesign .why-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 0;
  background: transparent;
  border: none;
}

.home-redesign .why-item::before {
  display: none;
}

.home-redesign .why-check {
  width: 32px;
  height: 32px;
  border-radius: var(--r-pill);
  background: var(--mcg-gold-soft);
  color: var(--mcg-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-redesign .why-check svg {
  width: 16px;
  height: 16px;
}

.home-redesign .why-item h3 {
  font-family: var(--mcg-sans);
  font-size: 18px;
  font-weight: 500;
  color: var(--mcg-text);
  margin-bottom: 4px;
}

.home-redesign .why-item p {
  font-size: 15px;
  color: var(--mcg-text-2);
  line-height: 1.55;
}

/* ---------------------------------------------------------------------
   13. RECENT WORK — 3-up gallery, 24px radii, hover lift
   --------------------------------------------------------------------- */
.home-redesign .recent-work {
  padding-block: clamp(80px, 10vw, 140px);
}

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

@media (max-width: 900px) {
  .home-redesign .work-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-redesign .work-grid { grid-template-columns: 1fr; }
}

.home-redesign .work-card {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  text-decoration: none;
  display: block;
  transition: border-color 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
}

.home-redesign .work-card:hover {
  border-color: var(--mcg-line-2);
  transform: translateY(-3px);
}

.home-redesign .work-card figure {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.home-redesign .work-card-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--mcg-ink-3);
}

.home-redesign .work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease-out);
}

.home-redesign .work-card:hover .work-card-media img {
  transform: scale(1.04);
}

.home-redesign .work-card figcaption {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-redesign .work-card-tag {
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mcg-text-3);
}

.home-redesign .work-card h3 {
  font-family: var(--mcg-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--mcg-text);
  margin: 0;
  letter-spacing: -0.01em;
}

.home-redesign .work-card-stat {
  font-family: var(--mcg-sans);
  font-size: 13px;
  color: var(--mcg-gold);
  margin-top: 4px;
}

.home-redesign .work-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------------------------------------------------------------------
   14. TESTIMONIALS — 3-card row on dark cards
   --------------------------------------------------------------------- */
.home-redesign .testimonials {
  padding-block: clamp(80px, 10vw, 140px);
}

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

@media (max-width: 900px) {
  .home-redesign .testi-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
}

.home-redesign .testi-card {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-lg);
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-redesign .testi-stars {
  display: flex;
  gap: 3px;
  color: var(--mcg-gold);
}

.home-redesign .testi-stars svg {
  width: 14px;
  height: 14px;
}

.home-redesign .testi-card .quote {
  font-family: var(--mcg-sans);
  font-size: 16px;
  color: var(--mcg-text);
  line-height: 1.55;
  flex: 1;
}

.home-redesign .testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--mcg-line);
}

.home-redesign .testi-meta .name {
  font-family: var(--mcg-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--mcg-text);
}

.home-redesign .testi-meta .role {
  font-family: var(--mcg-sans);
  font-size: 12px;
  color: var(--mcg-text-3);
}

/* ---------------------------------------------------------------------
   15. REVIEWS — quiet wrapper
   --------------------------------------------------------------------- */
.home-redesign .reviews-section {
  padding-block: clamp(80px, 10vw, 140px);
  background: var(--mcg-ink-2);
  border-block: 1px solid var(--mcg-line);
}

.home-redesign .reviews-embed {
  max-width: 1080px;
  margin: 0 auto;
}

/* ---------------------------------------------------------------------
   16. INSIGHTS / BLOG — dark cards
   --------------------------------------------------------------------- */
.home-redesign .insights-section {
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .blog-grid--insights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .home-redesign .blog-grid--insights { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .home-redesign .blog-grid--insights { grid-template-columns: 1fr; }
}

.home-redesign .blog-card {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-sm);
  overflow: hidden;
  transition: border-color 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
}

.home-redesign .blog-card:hover {
  border-color: var(--mcg-line-2);
  transform: translateY(-2px);
}

.home-redesign .blog-card-media {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mcg-ink-3);
  display: block;
}

.home-redesign .blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-redesign .blog-card-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-redesign .blog-card-tag {
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mcg-text-3);
}

.home-redesign .blog-card h3,
.home-redesign .blog-card a[rel="bookmark"] {
  font-family: var(--mcg-serif);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.22;
  color: var(--mcg-text);
  text-decoration: none;
  letter-spacing: -0.005em;
}

.home-redesign .blog-card h3 a,
.home-redesign .blog-card a[rel="bookmark"] {
  color: inherit;
}

.home-redesign .blog-card-date {
  font-family: var(--mcg-sans);
  font-size: 12px;
  color: var(--mcg-text-3);
  margin-top: 4px;
}

/* ---------------------------------------------------------------------
   17. MARKETS — clean list, no yellow highlight
   --------------------------------------------------------------------- */
.home-redesign .markets {
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .markets-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

@media (max-width: 900px) {
  .home-redesign .markets-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.home-redesign .market-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--mcg-line);
  border-left: none;
}

.home-redesign .market-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 20px 4px;
  border-bottom: 1px solid var(--mcg-line);
  border-right: none !important;
  background: transparent !important;
  color: var(--mcg-text);
  text-decoration: none;
  transition: padding 300ms var(--ease-smooth), color 300ms var(--ease-smooth);
}

.home-redesign .market-item:hover {
  padding-inline: 16px 4px;
  color: var(--mcg-gold);
}

.home-redesign .market-item .city {
  font-family: var(--mcg-serif);
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
}

.home-redesign .market-item--hq .city::after {
  content: 'HQ';
  display: inline-block;
  margin-left: 12px;
  padding: 2px 8px 3px;
  font-family: var(--mcg-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--mcg-gold);
  border: 1px solid rgba(212, 160, 23, 0.4);
  background: transparent;
  border-radius: var(--r-pill);
  vertical-align: middle;
}

.home-redesign .market-item .state {
  font-family: var(--mcg-sans);
  font-size: 13px;
  color: var(--mcg-text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-redesign .markets-copy .eyebrow {
  margin-bottom: 20px;
}

.home-redesign .markets-copy h2 {
  margin-bottom: 20px;
}

.home-redesign .markets-copy p {
  margin-bottom: 32px;
}

/* ---------------------------------------------------------------------
   18. CONTACT — dark form, clean typography
   --------------------------------------------------------------------- */
.home-redesign .contact-section {
  background: var(--mcg-ink-2);
  border-top: 1px solid var(--mcg-line);
  padding-block: clamp(80px, 10vw, 140px);
}

.home-redesign .contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}

@media (max-width: 900px) {
  .home-redesign .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

.home-redesign .contact-copy .eyebrow {
  margin-bottom: 20px;
}

.home-redesign .contact-copy h2 {
  margin-bottom: 20px;
}

.home-redesign .contact-copy > p {
  margin-bottom: 32px;
  max-width: 480px;
}

.home-redesign .contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  border: none !important;
  background: transparent !important;
  border-radius: 0;
  margin-bottom: 32px;
  align-items: flex-start;
}

.home-redesign .contact-info-label {
  font-family: var(--mcg-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mcg-text-3);
  margin-bottom: 8px;
}

.home-redesign .contact-info a {
  font-family: var(--mcg-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--mcg-text);
  text-decoration: none;
  transition: color 200ms var(--ease-smooth);
  padding: 2px 0;
  border: none;
  letter-spacing: -0.005em;
}

.home-redesign .contact-info a:hover {
  color: var(--mcg-gold);
  border: none;
}

.home-redesign .contact-founder {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: var(--mcg-ink-3);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-sm);
}

.home-redesign .contact-founder img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--mcg-line-2);
}

.home-redesign .contact-founder p {
  font-family: var(--mcg-sans);
  font-size: 13px;
  color: var(--mcg-text-2);
  line-height: 1.5;
}

.home-redesign .contact-founder strong {
  color: var(--mcg-text);
  font-weight: 500;
}

/* Form styling — inherit base as much as possible, restyle for dark */
.home-redesign .contact-form {
  background: var(--mcg-ink);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-md);
  padding: 32px;
}

.home-redesign .contact-form input[type="text"],
.home-redesign .contact-form input[type="email"],
.home-redesign .contact-form input[type="tel"],
.home-redesign .contact-form textarea,
.home-redesign .contact-form select {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line-2);
  color: var(--mcg-text);
  font-family: var(--mcg-sans);
  border-radius: var(--r-xs);
  padding: 12px 14px;
  font-size: 15px;
  width: 100%;
  transition: border-color 200ms var(--ease-smooth);
}

.home-redesign .contact-form input:focus,
.home-redesign .contact-form textarea:focus {
  border-color: var(--mcg-gold);
  outline: none;
  box-shadow: 0 0 0 3px var(--mcg-gold-soft);
}

.home-redesign .contact-form label {
  font-family: var(--mcg-sans);
  font-size: 13px;
  color: var(--mcg-text-2);
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
}

.home-redesign .contact-form button[type="submit"] {
  background: var(--mcg-text);
  color: var(--mcg-ink);
  border: none;
  border-radius: var(--r-pill);
  padding: 12px 24px;
  font-family: var(--mcg-sans);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: box-shadow 300ms var(--ease-smooth);
}

.home-redesign .contact-form button[type="submit"]:hover {
  box-shadow: 0 0 0 6px var(--mcg-gold-glow);
}

/* ---------------------------------------------------------------------
   19. HIDE base theme decorations on the redesigned page
   --------------------------------------------------------------------- */
.home-redesign .cap-card::before,
.home-redesign .cap-card::after,
.home-redesign .why-choose::before,
.home-redesign .why-choose::after,
.home-redesign .capabilities::before,
.home-redesign .capabilities::after,
.home-redesign .cta-band::before,
.home-redesign .cta-band::after {
  display: none !important;
}

/* Prevent any base yellow/gold highlight bg from bleeding through */
.home-redesign .market-item--hq,
.home-redesign [class*="highlight"] {
  background: transparent !important;
}

/* Site header — transparent glass floating over hero. Applied site-wide
   because every page now uses the dark DreamMotion canvas.

   IMPORTANT: backdrop-filter creates a containing block for position:fixed
   descendants, which broke the mobile drawer (it was fixed relative to the
   header, not the viewport). We move the blur onto a ::before pseudo so the
   header itself has no filter/transform/backdrop-filter and stays a
   non-containing-block ancestor. */
.site-header,
header.site-header,
#site-header {
  background: transparent !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
  box-shadow: none !important;
  position: sticky;
  isolation: isolate;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.35);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  z-index: -1;
  pointer-events: none;
}

.site-header a,
.site-header .menu a,
.site-header nav a {
  color: rgba(255, 255, 255, 0.85) !important;
}

.site-header a:hover {
  color: #ffffff !important;
}

/* Header-level 'Let's Talk' CTA — match DreamMotion pill site-wide */
.site-header .btn,
.site-header a.btn,
.site-header .cta,
.site-header .btn-primary,
.site-header a.btn-primary {
  background: rgba(255, 255, 255, 0.08) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  color: #ffffff !important;
  border-radius: 999px !important;
  padding: 10px 18px !important;
  backdrop-filter: blur(10px);
  text-decoration: none !important;
  min-height: unset !important;
  box-shadow: none !important;
}

.site-header .btn:hover,
.site-header .btn-primary:hover {
  background: rgba(255, 255, 255, 0.14) !important;
  transform: none !important;
}

/* Logo image — the white variant is used on all pages, so just size it */
.site-header .logo-mark-img {
  height: auto;
  max-height: 36px;
  width: auto;
}

/* Mobile: hide the desktop 'Let's Talk' CTA in the header. Production
   site shows only logo + hamburger on mobile. */
@media (max-width: 860px) {
  .site-header .nav-cta-desktop,
  .site-header a.nav-cta-desktop {
    display: none !important;
  }
}

/* Mobile drawer — match production feel: big Instrument Serif items,
   generous spacing, edge-to-edge dark canvas below the header. */
@media (max-width: 860px) {
  .site-header .nav-links {
    background: #0a0a0a !important;
    padding: 40px 24px !important;
    gap: 8px !important;
  }
  .site-header .nav-links > li > a {
    font-family: var(--mcg-serif, 'Instrument Serif', 'Times New Roman', serif) !important;
    font-size: clamp(28px, 7vw, 36px) !important;
    font-weight: 400 !important;
    letter-spacing: -0.01em !important;
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 12px 0 !important;
  }
  .site-header .nav-links > li > a:hover,
  .site-header .nav-links > li > a:focus-visible {
    color: #ffffff !important;
  }
  .site-header .nav-links .sub-menu {
    background: transparent !important;
    border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
  }
  .site-header .nav-links .sub-menu a {
    font-family: var(--mcg-sans, 'Satoshi', system-ui, sans-serif) !important;
    font-size: 16px !important;
    color: rgba(255, 255, 255, 0.75) !important;
  }
  /* Chevron caret color on mobile */
  .site-header .nav-links .menu-item-has-children > a::before {
    border-color: rgba(255, 255, 255, 0.6) !important;
  }
}

/* Small screens */
@media (max-width: 640px) {
  .home-redesign section { padding-block: 64px; }
  .home-redesign .hero-inner { padding: 120px 20px 60px; }
  .home-redesign .section-head { margin-bottom: 40px; }
}

/* The mobile drawer .nav-links sits at translateX(100%), i.e. one viewport
   width to the right of the visible area. That inflates document.scrollWidth
   and makes the page horizontally scrollable on mobile. Clip it at the root. */
html, body {
  overflow-x: clip;
}
@supports not (overflow-x: clip) {
  html, body {
    overflow-x: hidden;
  }
}

/* Hide the "Get a Free Audit" compare-cta panel on mobile */
@media (max-width: 640px) {
  .home-redesign .compare-cta,
  .home-redesign .compare-cta--card {
    display: none !important;
  }
}

/* Mobile hero: tighten unused space, bump heading, keep content near top */
@media (max-width: 640px) {
  .home-redesign .hero.hero--fullbleed {
    min-height: auto;
    justify-content: flex-start;
  }
  .home-redesign .hero-inner {
    padding: 96px 20px 56px;
  }
  .home-redesign .hero-eyebrow-row {
    margin-bottom: 20px;
  }
  .home-redesign .hero-h1,
  .home-redesign h1.hero-h1,
  #main .home-redesign .hero-h1 {
    font-size: clamp(52px, 13.5vw, 78px) !important;
    line-height: 1.0 !important;
    letter-spacing: -0.025em !important;
    margin-bottom: 20px !important;
  }
  .home-redesign .hero-sub {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 28px;
    padding: 0 4px;
  }
  .home-redesign .hero-actions {
    gap: 12px;
  }
}

/* ---------------------------------------------------------------------
   OVERRIDES v3 — proof strip, markets hover, CTA bands, form spacing
   --------------------------------------------------------------------- */

/* Proof strip — bigger gold heading, force 5-wide desktop */
.home-redesign .proof-strip {
  padding-block: clamp(64px, 8vw, 100px) !important;
}

.home-redesign .proof-eyebrow {
  font-family: var(--mcg-serif) !important;
  font-size: clamp(22px, 2.4vw, 32px) !important;
  font-weight: 400 !important;
  color: var(--mcg-gold) !important;
  letter-spacing: -0.005em !important;
  text-transform: none !important;
  font-style: italic !important;
  margin-bottom: 48px !important;
}

.home-redesign .proof-grid {
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px !important;
}

@media (max-width: 1100px) {
  .home-redesign .proof-grid { grid-template-columns: repeat(3, 1fr) !important; }
}
@media (max-width: 640px) {
  .home-redesign .proof-grid { grid-template-columns: repeat(2, 1fr) !important; }
}

/* Kill legacy "wide last item" behavior — everything is a normal cell now */
.home-redesign .proof-item--wide {
  grid-column: auto !important;
}

/* ---------- Markets: hover swaps image on the right ---------- */
.home-redesign .markets-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 460px;
}

.home-redesign .markets-copy .eyebrow {
  order: 1;
  align-self: flex-start;
}

.home-redesign .markets-copy h2 {
  order: 2;
  margin: 0 !important;
}

.home-redesign .markets-copy > p {
  order: 3;
  margin: 0 !important;
  max-width: 520px;
}

.home-redesign .markets-preview {
  order: 4;
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--mcg-ink-3);
  border: 1px solid var(--mcg-line);
  margin-top: 8px;
}

.home-redesign .markets-preview-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 500ms var(--ease-smooth);
  filter: brightness(0.9) saturate(1.02);
}

/* Show the HQ (Steubenville) by default; then JS toggles which is-active */
.home-redesign .markets-preview-img[data-market-slug="steubenville"] {
  opacity: 1;
}

.home-redesign .markets-preview-img.is-active {
  opacity: 1;
}

.home-redesign .markets-preview-img.is-fading {
  opacity: 0;
}

.home-redesign .markets-copy .btn {
  order: 5;
  align-self: flex-start;
  margin-top: 8px;
}

/* Also make sure the list column doesn't drift when the preview appears */
.home-redesign .markets-layout {
  align-items: start !important;
}

/* ---------- CTA Panel 1 (Free audit) ---------- */
.home-redesign .compare-cta--card {
  margin-top: 56px;
  padding: 0;
  display: block;
}

.home-redesign .compare-cta-panel {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  background: linear-gradient(135deg, var(--mcg-ink-2) 0%, rgba(18,18,18,0.6) 100%);
  border: 1px solid var(--mcg-line-2);
  border-radius: var(--r-lg);
  padding: 32px 40px;
  position: relative;
  overflow: hidden;
}

.home-redesign .compare-cta-panel::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mcg-gold-soft) 0%, transparent 60%);
  z-index: 0;
  pointer-events: none;
}

.home-redesign .compare-cta-medallion {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--mcg-gold-soft);
  color: var(--mcg-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-redesign .compare-cta-medallion svg {
  width: 30px;
  height: 30px;
}

.home-redesign .compare-cta-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.home-redesign .compare-cta-body .eyebrow {
  align-self: flex-start;
}

.home-redesign .compare-cta-body p {
  font-family: var(--mcg-serif);
  font-size: clamp(20px, 2vw, 26px);
  font-style: italic;
  color: var(--mcg-text);
  line-height: 1.3;
  margin: 0;
  text-align: left;
}

.home-redesign .compare-cta-panel .btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}

@media (max-width: 780px) {
  .home-redesign .compare-cta-panel {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
    gap: 20px;
  }
  .home-redesign .compare-cta-body { text-align: center; align-items: center; }
  .home-redesign .compare-cta-body p { text-align: center; }
  .home-redesign .compare-cta-medallion { margin: 0 auto; }
}

/* ---------- CTA Panel 2 (Schedule a meeting) ---------- */
.home-redesign .cta-band--panel {
  background: transparent !important;
  border: none !important;
  padding-block: clamp(48px, 6vw, 80px) !important;
}

.home-redesign .cta-band--panel::before,
.home-redesign .cta-band--panel::after {
  display: none !important;
}

.home-redesign .cta-band-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px 48px;
  background:
    linear-gradient(135deg, rgba(212,160,23,0.06) 0%, rgba(18,18,18,0.9) 40%),
    var(--mcg-ink-2);
  border: 1px solid var(--mcg-line-2);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.home-redesign .cta-band-glow {
  position: absolute;
  top: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--mcg-gold-soft) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.home-redesign .cta-band-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: center;
}

.home-redesign .cta-band-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--r-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--mcg-line);
  color: var(--mcg-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.home-redesign .cta-band-icon svg {
  width: 28px;
  height: 28px;
}

.home-redesign .cta-band-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.home-redesign .cta-band-copy .eyebrow {
  align-self: flex-start;
  margin-bottom: 4px;
}

.home-redesign .cta-band-copy h2 {
  font-size: clamp(28px, 3.6vw, 42px) !important;
  margin: 0 !important;
  line-height: 1.05 !important;
}

.home-redesign .cta-band-copy p {
  color: var(--mcg-text-2);
  margin: 0;
  max-width: 480px;
}

.home-redesign .cta-band--panel .cta-band-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: nowrap;
}

@media (max-width: 900px) {
  .home-redesign .cta-band-panel {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
  .home-redesign .cta-band-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .home-redesign .cta-band-icon { margin: 0 auto; }
  .home-redesign .cta-band-copy { align-items: center; }
  .home-redesign .cta-band-copy .eyebrow { align-self: center; }
  .home-redesign .cta-band-copy p { text-align: center; }
  .home-redesign .cta-band--panel .cta-band-actions {
    align-items: center;
  }
}

/* ---------- Contact form: Turnstile spacing ---------- */
.home-redesign .contact-form .contact-turnstile {
  margin: 8px 0 20px;
}

.home-redesign .contact-form .contact-turnstile iframe {
  border-radius: var(--r-xs);
}

/* Capabilities: center the grid on desktop when it's less than 4 wide */
.home-redesign .capabilities .cap-grid {
  justify-content: center;
}

/* ---------------------------------------------------------------------
   OVERRIDES v4 — testimonials under capabilities, proof merged into why,
                   footer overhaul with Ohio Made badge, market hover fix
   --------------------------------------------------------------------- */

/* --- Hide standalone proof-strip section if it exists (moved into why-choose) --- */
.home-redesign .proof-strip {
  display: none !important;
}

/* --- Testimonials appended to capabilities section --- */
.home-redesign .cap-testimonials {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--mcg-line);
}

.home-redesign .cap-testimonials .testi-grid--flat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 900px) {
  .home-redesign .cap-testimonials .testi-grid--flat {
    grid-template-columns: 1fr;
  }
}

.home-redesign .cap-testimonials .testi-card {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.home-redesign .cap-testimonials .testi-stars {
  display: flex;
  gap: 4px;
  color: var(--mcg-gold);
  margin-bottom: 20px;
}
.home-redesign .cap-testimonials .testi-stars svg {
  width: 18px;
  height: 18px;
}

.home-redesign .cap-testimonials .quote {
  font-family: var(--mcg-sans);
  font-size: 15px;
  line-height: 1.55;
  color: var(--mcg-text);
  margin: 0 0 auto 0;
}

.home-redesign .cap-testimonials .testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--mcg-line);
}

.home-redesign .cap-testimonials .testi-meta .name {
  font-weight: 600;
  color: var(--mcg-text);
  font-size: 14px;
}

.home-redesign .cap-testimonials .testi-meta .role {
  color: var(--mcg-text-2);
  font-size: 13px;
}

/* --- Why choose MCG: proof bar merged into bottom, full width --- */
.home-redesign .why-choose .why-proof {
  margin-top: 72px;
  padding: 48px 40px 40px;
  border-top: 1px solid var(--mcg-line);
  background: linear-gradient(180deg, transparent 0%, rgba(212,160,23,0.03) 100%);
  border-radius: var(--r-md);
  border: 1px solid var(--mcg-line);
  text-align: center;
}

.home-redesign .why-choose .why-proof .proof-eyebrow {
  display: block;
  font-family: var(--mcg-serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 400;
  font-style: italic;
  color: var(--mcg-gold);
  letter-spacing: -0.005em;
  text-transform: none;
  margin-bottom: 36px;
}

.home-redesign .why-choose .why-proof .proof-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 24px;
  width: 100%;
}

@media (max-width: 1100px) {
  .home-redesign .why-choose .why-proof .proof-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .home-redesign .why-choose .why-proof .proof-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.home-redesign .why-choose .why-proof .proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.home-redesign .why-choose .why-proof .proof-num {
  font-family: var(--mcg-serif);
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 400;
  color: var(--mcg-text);
  line-height: 1;
}
.home-redesign .why-choose .why-proof .proof-num .accent {
  color: var(--mcg-text);
}
.home-redesign .why-choose .why-proof .proof-label {
  color: var(--mcg-text-2);
  font-size: 13px;
  line-height: 1.4;
  max-width: 200px;
}

/* --- Market hover swap fix (Akron/Cincinnati orders in DOM cause issue) --- */
/* Remove the CSS default steubenville rule; JS handles activation entirely */
.home-redesign .markets-preview-img[data-market-slug="steubenville"] {
  opacity: 0 !important;
}
.home-redesign .markets-preview-img.is-active {
  opacity: 1 !important;
  z-index: 2;
}
.home-redesign .markets-preview-img:not(.is-active) {
  z-index: 1;
}

/* --- Footer overhaul --- */
.site-footer .footer-brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.site-footer .footer-logo-link {
  display: inline-block;
  max-width: 260px;
}

.site-footer .footer-logo-img {
  width: 100%;
  height: auto;
  max-width: 260px;
}

.site-footer .footer-tagline {
  color: var(--mcg-text-2);
  font-size: 15px;
  line-height: 1.55;
  max-width: 380px;
  margin: 0;
}

.site-footer .footer-ohio-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(80px, 12vw, 140px);
  max-width: 200px;
  aspect-ratio: 200 / 220;
  height: auto;
  margin-top: 8px;
}

.site-footer .footer-ohio-svg {
  width: 100%;
  height: 100%;
  color: #ffffff;
}

/* Slightly increase footer top padding so bigger brand block breathes */
.site-footer {
  padding-top: clamp(64px, 8vw, 96px);
}

.site-footer .footer-grid {
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
}

@media (max-width: 900px) {
  .site-footer .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer .footer-brand {
    grid-column: 1 / -1;
    margin-bottom: 20px;
  }
}

/* --- Hero background video --- */
.home-redesign .hero-bg--video {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.home-redesign .hero-bg--video .hero-bg-fallback,
.home-redesign .hero-bg--video .hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 55%;
  /* Match the still-image treatment so the video reads as one hero */
  filter: brightness(0.62) contrast(1.05) saturate(0.85) hue-rotate(-8deg);
}
.home-redesign .hero-bg--video .hero-bg-fallback {
  z-index: 0;
}
.home-redesign .hero-bg--video .hero-bg-video {
  z-index: 1;
}
/* Subtle black gradient over the video so hero text stays readable.
   Kept intentionally light — top + bottom vignette only, no heavy center darken. */
.home-redesign .hero-bg--video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.20) 22%,
      rgba(10,10,10,0.15) 55%,
      rgba(10,10,10,0.70) 92%,
      var(--mcg-ink) 100%);
}
/* Kill the old still-image overlay when we're in video mode — the ::after above replaces it */
.home-redesign .hero-bg--video.hero-bg::after,
.home-redesign .hero-bg.hero-bg--video::after {
  background:
    linear-gradient(180deg,
      rgba(10,10,10,0.55) 0%,
      rgba(10,10,10,0.20) 22%,
      rgba(10,10,10,0.15) 55%,
      rgba(10,10,10,0.70) 92%,
      var(--mcg-ink) 100%);
}
/* Respect reduced-motion: hide the video and show the still */
@media (prefers-reduced-motion: reduce) {
  .home-redesign .hero-bg--video .hero-bg-video {
    display: none;
  }
}

/* --- Capability card linked-mode --------------------------------------- */
.home-redesign a.cap-card--link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.home-redesign a.cap-card--link:hover {
  border-color: rgba(212, 160, 23, 0.55) !important;
  background: linear-gradient(180deg, var(--mcg-ink-3) 0%, rgba(26,26,26,0.6) 100%);
  transform: translateY(-2px);
}
.home-redesign a.cap-card--link:hover h3 {
  color: var(--mcg-text);
}
.home-redesign a.cap-card--link .cap-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--mcg-line);
  align-items: center;
  justify-content: center;
  color: var(--mcg-text-2);
  transition: transform 300ms var(--ease-smooth), color 300ms var(--ease-smooth), border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth);
  background: rgba(255,255,255,0.02);
}
.home-redesign a.cap-card--link .cap-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--ease-smooth);
}
.home-redesign a.cap-card--link:hover .cap-arrow {
  color: var(--mcg-gold);
  border-color: rgba(212, 160, 23, 0.55);
  background: rgba(212, 160, 23, 0.08);
}
.home-redesign a.cap-card--link:hover .cap-arrow svg {
  transform: translateX(2px);
}
.home-redesign a.cap-card--link:focus-visible {
  outline: 2px solid var(--mcg-gold);
  outline-offset: 3px;
}

/* =====================================================================
   SERVICE + MARKET PAGES — apply the home DreamMotion design language
   Shared foundation for .service-redesign and .market-redesign body
   classes. Extends the same tokens, typography, and section rhythm as
   .home-redesign, while keeping template-specific class selectors
   (.about-hero, .service-hero, .market-hero, .story-section,
   .principles-section, .faq-item, .cta-band, .why-list, .market-hub-*).
   ===================================================================== */

.service-redesign,
.market-redesign {
  --mcg-ink: #0a0a0a;
  --mcg-ink-2: #121212;
  --mcg-ink-3: #1a1a1a;
  --mcg-text: #ffffff;
  --mcg-text-2: rgba(255, 255, 255, 0.55);
  --mcg-text-3: rgba(255, 255, 255, 0.33);
  --mcg-line: rgba(255, 255, 255, 0.08);
  --mcg-line-2: rgba(255, 255, 255, 0.14);
  --mcg-surface: rgba(255, 255, 255, 0.04);
  --mcg-surface-hover: rgba(255, 255, 255, 0.07);
  --mcg-gold: #d4a017;
  --mcg-gold-soft: rgba(212, 160, 23, 0.16);
  --mcg-gold-glow: rgba(212, 160, 23, 0.24);
  --mcg-serif: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --mcg-sans: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --r-lg: 40px;
  --r-md: 32px;
  --r-sm: 24px;
  --r-xs: 12px;
  --r-pill: 999px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

body.service-redesign,
body.market-redesign {
  background: var(--mcg-ink) !important;
  color: var(--mcg-text);
  font-family: var(--mcg-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.service-redesign main,
.service-redesign #main,
.service-redesign section,
.market-redesign main,
.market-redesign #main,
.market-redesign section {
  background: transparent;
}

.service-redesign .container,
.service-redesign .container--default,
.service-redesign .container--narrow,
.market-redesign .container,
.market-redesign .container--default,
.market-redesign .container--narrow {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 24px;
}
.service-redesign .container--narrow,
.market-redesign .container--narrow {
  max-width: 820px;
}

.service-redesign section,
.market-redesign section {
  padding-block: clamp(80px, 10vw, 140px);
  position: relative;
}

/* Typography — serif display, italic gold accents */
.service-redesign h1,
.service-redesign h2,
.market-redesign h1,
.market-redesign h2 {
  font-family: var(--mcg-serif);
  font-weight: 400;
  color: var(--mcg-text);
  letter-spacing: -0.01em;
  margin: 0;
}
.service-redesign h1,
.market-redesign h1 {
  font-size: clamp(48px, 7.5vw, 96px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-bottom: 24px !important;
}
.service-redesign h2,
.market-redesign h2 {
  font-size: clamp(32px, 4.4vw, 52px);
  line-height: 1.08;
}
.service-redesign h3,
.market-redesign h3 {
  font-family: var(--mcg-sans);
  font-weight: 500;
  font-size: clamp(19px, 1.9vw, 22px);
  letter-spacing: -0.005em;
  color: var(--mcg-text);
  margin: 0;
}
.service-redesign h1 em,
.service-redesign h2 em,
.market-redesign h1 em,
.market-redesign h2 em {
  font-style: italic;
  color: var(--mcg-gold);
  font-weight: 400;
}

.service-redesign p,
.market-redesign p {
  font-family: var(--mcg-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--mcg-text-2);
  font-weight: 400;
  margin: 0 0 14px 0;
}
.service-redesign p:last-child,
.market-redesign p:last-child {
  margin-bottom: 0;
}

/* Eyebrow pills — dash + uppercase gold */
.service-redesign .eyebrow,
.market-redesign .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mcg-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mcg-gold);
  margin-bottom: 20px;
  background: transparent;
  padding: 0;
  border: 0;
}
.service-redesign .eyebrow::before,
.market-redesign .eyebrow::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--mcg-gold);
}

/* Section head */
.service-redesign .section-head,
.market-redesign .section-head {
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 780px;
}

/* Hero — dark editorial, full-bleed feel */
.service-redesign .about-hero,
.service-redesign .service-hero,
.market-redesign .about-hero,
.market-redesign .market-hero {
  position: relative;
  padding-block: clamp(120px, 14vw, 200px);
  border-bottom: 1px solid var(--mcg-line);
  overflow: hidden;
  background: var(--mcg-ink) !important;
  background-image:
    radial-gradient(circle at 82% 12%, rgba(212, 160, 23, 0.10), transparent 45%),
    radial-gradient(circle at 8% 92%, rgba(60, 80, 100, 0.20), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #101010 55%, #0a0a0a 100%) !important;
}

.service-redesign .service-hero {
  /* Kill the old office photo background — we're editorial now */
  background-image:
    radial-gradient(circle at 78% 15%, rgba(212, 160, 23, 0.12), transparent 50%),
    radial-gradient(circle at 12% 90%, rgba(60, 80, 100, 0.22), transparent 55%),
    linear-gradient(180deg, #0a0a0a 0%, #0f0f0f 55%, #0a0a0a 100%) !important;
}

.service-redesign .about-lede,
.market-redesign .about-lede {
  font-family: var(--mcg-sans);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.55;
  color: var(--mcg-text-2);
  max-width: 64ch;
  font-weight: 400;
}

/* Story section — alternating pillars */
.service-redesign .story-section,
.market-redesign .story-section {
  border-bottom: 1px solid var(--mcg-line);
}
.service-redesign .story-layout,
.market-redesign .story-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
.service-redesign .story-layout.reverse,
.market-redesign .story-layout.reverse {
  grid-template-columns: 1.05fr 0.95fr;
}
.service-redesign .story-media figure,
.market-redesign .story-media figure {
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  aspect-ratio: 4/3;
  margin: 0;
  background: var(--mcg-ink-2);
}
.service-redesign .story-media img,
.market-redesign .story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.02) saturate(0.9);
}

/* why-list — checkmark deliverables */
.service-redesign .why-list,
.market-redesign .why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-redesign .why-item,
.market-redesign .why-item {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
}
.service-redesign .why-check,
.market-redesign .why-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--mcg-gold-soft);
  border: 1px solid rgba(212, 160, 23, 0.35);
  color: var(--mcg-gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.service-redesign .why-check svg,
.market-redesign .why-check svg {
  width: 16px;
  height: 16px;
}
.service-redesign .why-item h3,
.market-redesign .why-item h3 {
  margin-bottom: 4px;
  color: var(--mcg-text);
  font-weight: 600;
}
.service-redesign .why-item p,
.market-redesign .why-item p {
  color: var(--mcg-text-2);
  margin: 0;
  font-size: 15px;
}

/* Principles grid (market page numbered cards) */
.service-redesign .principles-section,
.market-redesign .principles-section {
  border-bottom: 1px solid var(--mcg-line);
}
.market-redesign .principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.market-redesign .principle-card {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
}
.market-redesign .principle-card:hover {
  border-color: rgba(212, 160, 23, 0.35);
  background: var(--mcg-ink-3);
  transform: translateY(-2px);
}
.market-redesign .principle-num {
  font-family: var(--mcg-serif);
  font-size: 24px;
  color: var(--mcg-text-3);
  display: block;
  margin-bottom: 16px;
}
.market-redesign .principle-card h3 {
  margin-bottom: 8px;
}

/* FAQ — dark card with gold accent when open */
.service-redesign .faq-list,
.market-redesign .faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-redesign .faq-item,
.market-redesign .faq-item {
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-sm);
  padding: 4px 8px;
  transition: border-color 200ms var(--ease-smooth), background 200ms var(--ease-smooth);
}
.service-redesign .faq-item[open],
.market-redesign .faq-item[open] {
  border-color: rgba(212, 160, 23, 0.35);
  background: var(--mcg-ink-3);
}
.service-redesign .faq-item summary,
.market-redesign .faq-item summary {
  padding: 20px 20px;
  cursor: pointer;
  font-family: var(--mcg-sans);
  font-weight: 600;
  font-size: 17px;
  color: var(--mcg-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.service-redesign .faq-item summary::-webkit-details-marker,
.market-redesign .faq-item summary::-webkit-details-marker {
  display: none;
}
.service-redesign .faq-item summary::after,
.market-redesign .faq-item summary::after {
  content: "+";
  font-family: var(--mcg-serif);
  font-size: 28px;
  line-height: 1;
  color: var(--mcg-text-2);
  transition: transform 200ms var(--ease-smooth), color 200ms var(--ease-smooth);
}
.service-redesign .faq-item[open] summary::after,
.market-redesign .faq-item[open] summary::after {
  transform: rotate(45deg);
  color: var(--mcg-gold);
}
.service-redesign .faq-item p,
.market-redesign .faq-item p {
  padding: 0 20px 20px 20px;
  color: var(--mcg-text-2);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* CTA band */
.service-redesign .cta-band,
.market-redesign .cta-band {
  background: linear-gradient(180deg, var(--mcg-ink-2) 0%, var(--mcg-ink) 100%);
  border-top: 1px solid var(--mcg-line);
}
.service-redesign .cta-band-inner,
.market-redesign .cta-band-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}
.service-redesign .cta-band h2,
.market-redesign .cta-band h2 {
  margin-bottom: 16px;
}
.service-redesign .cta-band-founder,
.market-redesign .cta-band-founder {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: var(--mcg-text-3);
  font-size: 14px;
}
.service-redesign .cta-band-founder img,
.market-redesign .cta-band-founder img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--mcg-line);
  object-fit: cover;
}
.service-redesign .cta-band-actions,
.market-redesign .cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.service-redesign .cta-band-note,
.market-redesign .cta-band-note {
  color: var(--mcg-text-3);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 200ms var(--ease-smooth), border-color 200ms var(--ease-smooth);
}
.service-redesign .cta-band-note:hover,
.market-redesign .cta-band-note:hover {
  color: var(--mcg-gold);
  border-bottom-color: var(--mcg-gold);
}

/* Buttons — same treatment as home */
.service-redesign .btn,
.market-redesign .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--mcg-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 16px 28px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  min-height: 48px;
  cursor: pointer;
  text-decoration: none;
  transition: background 300ms var(--ease-smooth), border-color 300ms var(--ease-smooth), color 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
}
.service-redesign .btn.btn-primary,
.service-redesign .btn-primary,
.market-redesign .btn.btn-primary,
.market-redesign .btn-primary {
  background: var(--mcg-text);
  color: var(--mcg-ink);
  border-color: var(--mcg-text);
}
.service-redesign .btn.btn-primary:hover,
.service-redesign .btn-primary:hover,
.market-redesign .btn.btn-primary:hover,
.market-redesign .btn-primary:hover {
  background: transparent;
  color: var(--mcg-text);
  transform: translateY(-1px);
}
.service-redesign .btn-on-dark,
.market-redesign .btn-on-dark {
  background: var(--mcg-text);
  color: var(--mcg-ink);
  border-color: var(--mcg-text);
}
.service-redesign .btn-on-dark:hover,
.market-redesign .btn-on-dark:hover {
  background: transparent;
  color: var(--mcg-text);
}

/* Cross-link hub grid (Other Services / We Also Serve markets) */
.service-redesign .market-hub-grid,
.market-redesign .market-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
}
.service-redesign .market-hub-card,
.market-redesign .market-hub-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--mcg-ink-2);
  border: 1px solid var(--mcg-line);
  border-radius: var(--r-md);
  padding: 28px;
  text-decoration: none;
  color: var(--mcg-text);
  transition: border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth), transform 300ms var(--ease-smooth);
  min-height: 200px;
}
.service-redesign .market-hub-card:hover,
.market-redesign .market-hub-card:hover {
  border-color: rgba(212, 160, 23, 0.45);
  background: linear-gradient(180deg, var(--mcg-ink-3) 0%, rgba(26,26,26,0.7) 100%);
  transform: translateY(-2px);
}
.service-redesign .market-hub-card-top,
.market-redesign .market-hub-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.service-redesign .market-hub-card h3,
.market-redesign .market-hub-card h3 {
  font-family: var(--mcg-serif);
  font-size: 28px;
  font-weight: 400;
  line-height: 1.1;
  color: var(--mcg-text);
  letter-spacing: -0.01em;
}
.service-redesign .market-hub-card .state,
.market-redesign .market-hub-card .state {
  display: block;
  font-family: var(--mcg-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mcg-text-3);
  margin-top: 6px;
}
.market-redesign .market-hub-card--hq {
  border-color: rgba(212, 160, 23, 0.4);
  background: linear-gradient(180deg, rgba(212,160,23,0.06) 0%, var(--mcg-ink-2) 100%);
}
.market-redesign .market-hub-card--hq h3 .eyebrow {
  margin: 0 0 0 6px !important;
  padding: 2px 8px;
  font-size: 10px;
  background: var(--mcg-gold-soft);
  border-radius: 4px;
  border: none;
}
.market-redesign .market-hub-card--hq h3 .eyebrow::before {
  display: none;
}
.service-redesign .market-hub-card-arrow,
.market-redesign .market-hub-card-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--mcg-line);
  background: rgba(255,255,255,0.02);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mcg-text-2);
  flex-shrink: 0;
  transition: transform 300ms var(--ease-smooth), color 300ms var(--ease-smooth), border-color 300ms var(--ease-smooth), background 300ms var(--ease-smooth);
}
.service-redesign .market-hub-card-arrow svg,
.market-redesign .market-hub-card-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform 300ms var(--ease-smooth);
}
.service-redesign .market-hub-card:hover .market-hub-card-arrow,
.market-redesign .market-hub-card:hover .market-hub-card-arrow {
  color: var(--mcg-gold);
  border-color: rgba(212, 160, 23, 0.5);
  background: rgba(212, 160, 23, 0.08);
}
.service-redesign .market-hub-card:hover .market-hub-card-arrow svg,
.market-redesign .market-hub-card:hover .market-hub-card-arrow svg {
  transform: translateX(2px);
}
.service-redesign .market-hub-card p,
.market-redesign .market-hub-card p {
  color: var(--mcg-text-2);
  font-size: 15px;
  line-height: 1.55;
  margin: 0;
}

/* Areas list (market page ZIP-style bullets) */
.market-redesign .areas-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 24px;
  border-top: 1px solid var(--mcg-line);
  padding-top: 24px;
}
.market-redesign .areas-list li {
  color: var(--mcg-text-2);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid var(--mcg-line);
}

/* Mobile refinements */
@media (max-width: 900px) {
  .service-redesign .story-layout,
  .service-redesign .story-layout.reverse,
  .market-redesign .story-layout,
  .market-redesign .story-layout.reverse {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .service-redesign .story-layout.reverse .story-media,
  .market-redesign .story-layout.reverse .story-media {
    order: 0;
  }
  .service-redesign .cta-band-inner,
  .market-redesign .cta-band-inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
   GLOBAL MOBILE FORM SAFETY — Aug 27, 2026
   Native contact form is used on home, contact, audit, referrals.
   On iOS Safari the form was rendering wider than the viewport
   (measured 432px in a 390px viewport) because:
     - .contact-form had no min-width: 0 override for grid items
     - .form-row / inputs / turnstile had intrinsic widths that
       pushed grid tracks past 1fr on min-content sizing
     - .contact-grid + .story-layout weren't collapsed to 1fr
       everywhere the form appears (missing body class scoping)
   These rules apply site-wide and are mobile-first safe.
   ============================================================ */

.contact-form,
.contact-form .form-row,
.contact-form input,
.contact-form textarea,
.contact-form select,
.contact-form button,
.contact-form .contact-turnstile,
.contact-form .contact-turnstile iframe {
  min-width: 0 !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100% !important;
}

/* Turnstile widget: hard-clip so its intrinsic 300px iframe
   never forces parent to grow. On very narrow viewports Turnstile
   auto-uses its "compact" style — we just make sure it never
   overflows the card. */
.contact-form .contact-turnstile {
  overflow: hidden;
  display: block;
}

/* Force 1-column layout on every wrapper the form lives in,
   at the mobile breakpoint. */
@media (max-width: 900px) {
  .contact-grid,
  .home-redesign .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .story-layout {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .story-layout.reverse {
    grid-template-columns: 1fr !important;
  }
  /* Tighter form padding on mobile so the card doesn't feel cramped
     against the 24px page gutter. */
  .contact-form,
  .home-redesign .contact-form,
  .audit-widget-card {
    padding: clamp(20px, 5vw, 28px) !important;
    border-radius: 20px !important;
  }
  .contact-form .form-row {
    gap: 8px;
  }
}
