:root {
  /* Aurelis Media colour tokens */
  --mec-black: #0a0a0a;
  --mec-charcoal: #1a1a1a;
  --mec-warm-gray: #6b6560;
  --mec-sand: #e8e4da;
  --mec-parchment: #d4c4a8;
  --mec-off-white: #f5f2ec;
  --mec-white: #ffffff;
  --mec-gold: #ceaa72;

  --aurelis-ink: var(--mec-black);
  --aurelis-cream: var(--mec-off-white);
  --aurelis-sand: var(--mec-sand);
  --aurelis-gold: var(--mec-gold);
  --aurelis-charcoal: var(--mec-charcoal);
  --aurelis-bronze: var(--mec-parchment);

  /* Typography */
  --mec-font-display: Inter, "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --mec-font-body: Inter, "DM Sans", sans-serif;
  --mec-tracking-tight: -0.02em;
  --mec-leading-display: 1.05;
  --mec-leading-body: 1.6;

  /* Site aliases */
  --ink: var(--mec-black);
  --muted: var(--mec-warm-gray);
  --paper: var(--mec-sand);
  --white: var(--mec-off-white);
  --coral: var(--mec-charcoal);
  --lime: var(--mec-off-white);
  --pink: var(--mec-parchment);
  --peach: var(--mec-sand);
  --blue: var(--mec-warm-gray);
  --yellow: var(--mec-gold);
  --taupe: var(--mec-warm-gray);
  --espresso: var(--mec-charcoal);
  --grid-red: rgba(26, 26, 26, 0.12);
  --grid-green: rgba(107, 101, 96, 0.18);
  --shadow: 0 20px 60px rgba(10, 10, 10, 0.08);
}

/* Case study detail page */
.cs-page {
  background:
    linear-gradient(rgba(206, 170, 114, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(206, 170, 114, 0.12) 1px, transparent 1px),
    var(--mec-sand);
  background-size: 72px 72px;
}

.cs-page .case-study-nav {
  margin-top: 34px;
}

.cs-hero,
.cs-tabs,
.cs-panel,
.cs-brand-note,
.cs-cta-section {
  width: calc(100% - 88px);
  margin-right: auto;
  margin-left: auto;
}

.cs-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 34px;
  align-items: stretch;
  padding: 74px 0 46px;
}

.cs-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
  border: 2px solid var(--ink);
  padding: clamp(32px, 5vw, 58px);
  background:
    linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    var(--mec-off-white);
  background-size: 34px 34px;
}

.cs-hero h1,
.cs-story-card h2,
.cs-strategy-block h3,
.cs-results h3,
.cs-timeline h3,
.cs-team h3,
.cs-cta-section h2 {
  font-family: var(--mec-font-display);
  font-weight: 800;
  letter-spacing: var(--mec-tracking-tight);
  line-height: 0.94;
}

.cs-hero h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(54px, 8.6vw, 124px);
}

.cs-hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 24px;
  color: var(--mec-warm-gray);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 750;
  line-height: 1.46;
}

.cs-hero-copy .button {
  width: fit-content;
  margin-top: 34px;
}

.cs-hero-media {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
}

.cs-hero-media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  border: 2px solid var(--ink);
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.12);
}

.cs-hero-media img:first-child {
  margin-top: 46px;
  height: calc(100% - 46px);
}

.cs-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  position: sticky;
  top: 0;
  z-index: 8;
  padding: 14px 0;
  background: rgba(232, 228, 218, 0.94);
  backdrop-filter: blur(12px);
}

.cs-tab-btn {
  min-height: 108px;
  border: 2px solid rgba(10, 10, 10, 0.2);
  padding: 18px 20px;
  text-align: left;
  background: var(--mec-off-white);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cs-tab-btn span {
  display: block;
  color: var(--mec-warm-gray);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-tab-btn strong {
  display: block;
  margin-top: 8px;
  font-family: var(--mec-font-display);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cs-tab-btn:hover,
.cs-tab-btn.is-active {
  border-color: var(--ink);
  background: var(--mec-gold);
  box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.1);
  transform: translateY(-3px);
}

.cs-panel {
  display: none;
  padding: 34px 0 76px;
}

.cs-panel.is-active {
  display: block;
}

.cs-verdict {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.cs-verdict-stat,
.cs-story-card,
.cs-diagnosis,
.cs-strategy-block,
.cs-quote-block,
.cs-results,
.cs-timeline,
.cs-team,
.cs-brand-note,
.cs-cta-section {
  border: 2px solid rgba(10, 10, 10, 0.18);
  background: rgba(245, 242, 236, 0.9);
  box-shadow: 0 24px 70px rgba(10, 10, 10, 0.06);
}

.cs-verdict-stat {
  min-height: 250px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.cs-verdict-stat:nth-child(4n) {
  background: var(--mec-gold);
}

.cs-verdict-stat:hover {
  transform: translateY(-6px);
  box-shadow: 14px 14px 0 rgba(10, 10, 10, 0.12);
}

.cs-verdict-stat p,
.result-card p {
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cs-verdict-stat strong {
  display: block;
  font-family: var(--mec-font-display);
  font-size: clamp(56px, 6vw, 92px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.86;
}

.cs-verdict-stat > span,
.result-card > span {
  color: var(--mec-charcoal);
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}

.cs-two-col {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  margin-top: 18px;
}

.cs-story-card,
.cs-diagnosis {
  padding: clamp(30px, 4vw, 52px);
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    var(--mec-off-white);
  background-size: 34px 34px;
}

.cs-story-card h2 {
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 76px);
}

.cs-story-card p:not(.eyebrow),
.cs-diagnosis li,
.cs-quote-block p,
.cs-cta-section p {
  color: var(--mec-charcoal);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.55;
}

.cs-story-card p:not(.eyebrow) {
  margin-top: 24px;
}

.cs-diagnosis h3 {
  margin-top: 12px;
  font-family: var(--mec-font-display);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.cs-diagnosis ol {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: diagnosis;
}

.cs-diagnosis li {
  position: relative;
  min-height: 84px;
  border: 1px solid rgba(10, 10, 10, 0.16);
  padding: 18px 18px 18px 68px;
  background: rgba(245, 242, 236, 0.72);
  counter-increment: diagnosis;
}

.cs-diagnosis li::before {
  content: counter(diagnosis, decimal-leading-zero);
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--mec-gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.cs-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.cs-visual-strip img {
  width: 100%;
  height: 420px;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.cs-strategy-block,
.cs-results,
.cs-timeline,
.cs-team,
.cs-brand-note,
.cs-cta-section {
  margin-top: 18px;
  padding: clamp(30px, 4vw, 52px);
}

.cs-strategy-block h3,
.cs-results h3,
.cs-timeline h3,
.cs-team h3,
.cs-cta-section h2 {
  max-width: 980px;
  margin-top: 12px;
  font-size: clamp(40px, 5vw, 78px);
}

.cs-pillar-grid,
.results-grid,
.timeline-track,
.team-chips {
  margin-top: 34px;
}

.cs-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.cs-pillar-grid .strategy-pillar {
  min-height: 220px;
  border: 2px solid rgba(10, 10, 10, 0.18);
  background: rgba(245, 242, 236, 0.72);
  transition:
    transform 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.cs-pillar-grid .strategy-pillar:hover {
  background: var(--mec-gold);
  transform: translateY(-5px);
  box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.1);
}

.cs-quote-block {
  position: relative;
  padding: clamp(32px, 5vw, 68px);
  background: var(--mec-black);
  color: var(--mec-off-white);
}

.cs-quote-block::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(206, 170, 114, 0.45);
  pointer-events: none;
}

.cs-quote-block p {
  max-width: 960px;
  color: var(--mec-off-white);
  font-family: var(--mec-font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.cs-quote-block cite {
  display: block;
  margin-top: 24px;
  color: var(--mec-gold);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.result-card {
  display: grid;
  align-content: space-between;
  min-height: 260px;
  border: 2px solid rgba(10, 10, 10, 0.18);
  padding: 24px;
  background: var(--mec-off-white);
}

.result-card.gold-bg {
  background: var(--mec-gold);
}

.result-card strong {
  display: block;
  margin: 26px 0;
  font-family: var(--mec-font-display);
  font-size: clamp(48px, 5vw, 76px);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.9;
}

.timeline-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.timeline-node {
  min-height: 260px;
  border: 2px solid rgba(10, 10, 10, 0.18);
  padding: 24px;
  background: rgba(245, 242, 236, 0.78);
}

.timeline-node span {
  display: inline-grid;
  place-items: center;
  min-width: 78px;
  min-height: 34px;
  padding: 0 10px;
  background: var(--mec-gold);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-node strong {
  display: block;
  margin-top: 28px;
  font-family: var(--mec-font-display);
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.timeline-node p {
  margin-top: 18px;
  color: var(--mec-charcoal);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.42;
}

.team-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.team-chips span {
  border: 1px solid rgba(10, 10, 10, 0.2);
  padding: 10px 14px;
  background: var(--mec-off-white);
  font-size: 13px;
  font-weight: 900;
}

.cs-brand-note {
  color: var(--mec-charcoal);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.5;
}

.cs-cta-section {
  margin-bottom: 56px;
  text-align: center;
  background: var(--mec-off-white);
}

.cs-cta-section h2,
.cs-cta-section p {
  margin-right: auto;
  margin-left: auto;
}

.cs-cta-section p {
  max-width: 720px;
  margin-top: 20px;
}

.cs-cta-section .button {
  margin-top: 30px;
}

@media (prefers-reduced-motion: no-preference) {
  .cs-panel.is-active {
    animation: csPanelIn 420ms ease both;
  }

  @keyframes csPanelIn {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

@media (max-width: 1024px) {
  .cs-hero,
  .cs-two-col,
  .cs-verdict,
  .cs-pillar-grid,
  .results-grid,
  .timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cs-hero {
    align-items: start;
  }

  .cs-hero-copy,
  .cs-hero-media img {
    min-height: 480px;
  }

  .cs-tabs {
    position: static;
  }
}

@media (max-width: 700px) {
  .cs-hero,
  .cs-tabs,
  .cs-panel,
  .cs-brand-note,
  .cs-cta-section {
    width: calc(100% - 32px);
  }

  .cs-hero,
  .cs-hero-media,
  .cs-tabs,
  .cs-two-col,
  .cs-verdict,
  .cs-visual-strip,
  .cs-pillar-grid,
  .results-grid,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .cs-hero {
    padding-top: 28px;
  }

  .cs-hero-copy {
    min-height: auto;
    padding: 28px;
  }

  .cs-hero h1 {
    font-size: clamp(52px, 15vw, 84px);
  }

  .cs-hero-media img,
  .cs-hero-media img:first-child {
    min-height: 0;
    height: 360px;
    margin-top: 0;
  }

  .cs-tab-btn {
    min-height: 82px;
  }

  .cs-verdict-stat,
  .result-card,
  .timeline-node {
    min-height: 210px;
  }

  .cs-visual-strip img {
    height: 360px;
  }

  .cs-story-card,
  .cs-diagnosis,
  .cs-strategy-block,
  .cs-results,
  .cs-timeline,
  .cs-team,
  .cs-brand-note,
  .cs-cta-section {
    padding: 26px;
  }

  .cs-story-card h2,
  .cs-strategy-block h3,
  .cs-results h3,
  .cs-timeline h3,
  .cs-team h3,
  .cs-cta-section h2 {
    font-size: clamp(38px, 11vw, 56px);
  }

  .cs-diagnosis li {
    padding-left: 18px;
    padding-top: 62px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--mec-sand);
  font-family: var(--mec-font-body);
  line-height: var(--mec-leading-body);
}

main {
  width: min(100%, 1240px);
  margin: 0 auto;
  background: var(--paper);
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  border: 0;
  border-radius: 0;
  color: inherit;
  background: transparent;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
.platform h2,
.why h2,
.section-heading h2,
.case-hero h2,
.testimonials h2,
.faq h2,
.final-cta h2,
.leak-copy h2,
.before-after h2,
.contact-panel h2 {
  font-family: var(--mec-font-display);
  font-weight: 800;
  letter-spacing: var(--mec-tracking-tight);
  line-height: var(--mec-leading-display);
}

em {
  display: inline-block;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  letter-spacing: -0.06em;
  color: var(--espresso);
  line-height: 0.86;
  transform: translateY(-0.02em);
}

.site-nav {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: clamp(28px, 4vw, 56px);
  width: min(100%, 1180px);
  min-height: 88px;
  margin: 0 auto 42px;
  padding: 14px 18px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  background: rgba(245, 242, 236, 0.34);
  box-shadow: 0 10px 34px rgba(10, 10, 10, 0.025);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 220px;
  min-width: 220px;
  height: 62px;
}

.brand-mark img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.6vw, 38px);
  color: var(--mec-charcoal);
  font-family: var(--mec-font-display);
  font-size: clamp(14px, 1.15vw, 16px);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1;
  text-transform: none;
  white-space: nowrap;
}

.site-nav nav a,
.nav-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition:
    color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav nav a:hover,
.nav-cta:hover {
  opacity: 0.94;
  transform: translateY(-2px);
}

.site-nav nav a:hover {
  color: var(--mec-gold);
}

.site-nav .nav-cta:hover {
  color: var(--mec-white);
  background: var(--mec-charcoal);
}

.nav-cta {
  justify-self: end;
  justify-content: center;
  min-width: 150px;
  padding: 0 24px;
  background: var(--mec-black);
  color: var(--mec-white);
  font-family: var(--mec-font-display);
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.mobile-section-nav {
  display: none;
}

.hero {
  min-height: 690px;
  padding: 48px 44px 0;
  text-align: center;
  background: var(--paper);
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 9px;
  border: 1px solid rgba(107, 101, 96, 0.28);
  background: rgba(245, 242, 236, 0.66);
  color: var(--mec-charcoal);
  font-size: 12px;
  font-weight: 700;
}

.notice span {
  display: inline-grid;
  place-items: center;
  min-height: 18px;
  padding: 0 7px;
  background: var(--mec-gold);
  color: var(--mec-black);
  font-size: 10px;
}

.notice b {
  color: var(--mec-charcoal);
  font-size: 15px;
}

h1 {
  max-width: 790px;
  margin: 28px auto 0;
  font-size: clamp(58px, 8vw, 88px);
  line-height: 0.9;
}

h1 em {
  font-size: 0.9em;
  letter-spacing: -0.065em;
}

h2 em {
  font-size: 0.92em;
  letter-spacing: -0.065em;
}

h3 em,
strong em {
  font-size: 0.94em;
  letter-spacing: -0.05em;
  line-height: 1;
  transform: translateY(0);
}

.trusted h2 em {
  font-size: 1.12em;
}

.leak-copy h2 em,
.contact-panel h2 em,
.final-cta h2 em,
.site-footer em,
.module-dark em,
.revenue-leaks em,
.image-card em {
  color: var(--mec-gold);
}

.hero-subhead {
  width: min(520px, 92vw);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.34;
}

.hero-actions,
.platform .button {
  margin-top: 22px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 22px;
  border: 2px solid var(--ink);
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.button.coral {
  border-color: var(--coral);
  background: var(--coral);
  color: var(--mec-white);
}

.button.navy {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--mec-white);
}

.campaign-hero {
  position: relative;
  width: min(850px, 100%);
  height: 365px;
  margin: 58px auto 0;
}

.pink-grid {
  position: absolute;
  background:
    linear-gradient(var(--yellow) 2px, transparent 2px),
    linear-gradient(90deg, var(--yellow) 2px, transparent 2px),
    var(--pink);
  background-size: 38px 38px;
}

.left-grid {
  left: 0;
  bottom: 0;
  width: 420px;
  height: 185px;
}

.right-grid {
  right: 0;
  bottom: 75px;
  width: 505px;
  height: 205px;
}

.launch-card {
  position: absolute;
  left: 46px;
  top: 105px;
  z-index: 5;
  display: flex;
  gap: 10px;
  width: 270px;
  min-height: 92px;
  padding: 16px 18px 16px 14px;
  text-align: left;
  background: var(--mec-white);
  box-shadow: 0 6px 18px rgba(12, 17, 52, 0.08);
}

.launch-card span {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 0 0 5px #fff3f1 inset;
}

.launch-card strong {
  display: block;
  color: var(--ink);
  font-family: var(--mec-font-display);
  font-size: 28px;
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.accent-block {
  position: absolute;
  left: 315px;
  top: 160px;
  z-index: 2;
  width: 130px;
  height: 30px;
  background: var(--coral);
}

.diamond-shape {
  position: absolute;
  left: 515px;
  top: 118px;
  z-index: 3;
  width: 145px;
  height: 145px;
  background: #fff8aa;
  transform: rotate(45deg);
}

.campaign-hero img {
  position: absolute;
  left: 390px;
  bottom: 0;
  z-index: 4;
  width: 250px;
  height: 345px;
  object-fit: cover;
  object-position: 53% 24%;
  filter: saturate(0.9) brightness(1.05);
  -webkit-mask-image: linear-gradient(#000 0 86%, transparent 100%);
  mask-image: linear-gradient(#000 0 86%, transparent 100%);
}

.trusted {
  padding: 70px 44px 115px;
  background: var(--mec-white);
  text-align: center;
}

.trusted h2 {
  font-family: var(--mec-font-display);
  font-size: 23px;
  font-weight: 400;
}

.trusted > p {
  margin-top: 10px;
  color: var(--mec-warm-gray);
  font-size: 13px;
  font-weight: 700;
}

.logo-marquee {
  position: relative;
  margin-top: 42px;
  padding: 18px 0;
  overflow: hidden;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  border-bottom: 1px solid rgba(26, 26, 26, 0.12);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.logo-strip {
  display: flex;
  width: max-content;
  gap: 0;
  align-items: center;
  will-change: transform;
}

.logo-strip span {
  flex: 0 0 auto;
  min-width: clamp(120px, 14vw, 190px);
  font-family: var(--mec-font-display);
  font-size: clamp(18px, 2vw, 24px);
  font-style: normal;
  line-height: 1;
  color: var(--mec-charcoal);
  text-transform: capitalize;
  white-space: nowrap;
}

.platform {
  padding: 0 44px 120px;
  background: var(--mec-white);
  text-align: center;
}

.eyebrow {
  color: #451b1d;
  font-size: 16.5px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.platform h2 {
  max-width: 880px;
  margin: 18px auto 0;
  font-size: clamp(42px, 5.7vw, 62px);
  line-height: 0.95;
}

.platform > p:not(.eyebrow) {
  width: min(660px, 92vw);
  margin: 25px auto 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 72px;
  text-align: left;
}

.feature-card {
  position: relative;
  min-height: 265px;
  padding: 14px 14px 16px;
  overflow: hidden;
  border: 1px solid rgba(4, 8, 56, 0.08);
  background:
    linear-gradient(var(--grid-green) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-green) 1px, transparent 1px);
  background-size: 13px 13px;
}

.feature-card.green,
.feature-card.peach,
.feature-card.blue,
.feature-card.yellow {
  background-color: var(--mec-off-white);
}

.feature-card::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 0;
  height: 3px;
  background: var(--mec-gold);
  transform: scaleX(0);
  transform-origin: left;
}

.feature-card h3 {
  font-family: var(--mec-font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.04em;
}

.feature-visual {
  display: grid;
  place-items: center;
  height: 125px;
}

.feature-visual svg {
  width: 145px;
  height: 110px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.feature-card p {
  width: calc(100% - 24px);
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.26;
}

.feature-card a {
  position: absolute;
  right: 13px;
  bottom: 15px;
  font-size: 24px;
  font-weight: 700;
}

.service-system,
.process,
.case-studies,
.testimonials,
.faq,
.final-cta,
.revenue-leaks,
.audit-deliverables,
.engagements,
.before-after,
.contact-section,
.why {
  padding: 92px 44px;
  background: var(--mec-white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.65fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.case-hero h2,
.testimonials h2,
.faq h2,
.final-cta h2 {
  font-size: clamp(42px, 5.6vw, 64px);
  line-height: 0.96;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.service-system .section-kicker {
  justify-self: end;
  max-width: 420px;
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(26, 26, 26, 0.18);
  color: var(--mec-warm-gray);
  font-size: clamp(13px, 1.25vw, 15px);
  font-weight: 600;
  line-height: 1.58;
  letter-spacing: 0;
}

.section-heading.compact {
  display: block;
  max-width: 780px;
}

.section-heading.compact h2 {
  margin-top: 16px;
}

.service-system {
  border-top: 1px solid #edf0e9;
  background:
    linear-gradient(rgba(255, 77, 56, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 77, 56, 0.08) 1px, transparent 1px),
    var(--mec-white);
  background-size: 78px 78px;
}

.service-system-grid,
.proof-strip,
.process-board,
.case-grid,
.quote-grid,
.deliverable-grid,
.engagement-grid,
.leak-grid {
  display: grid;
  gap: 12px;
}

.service-system-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-module {
  position: relative;
  min-height: 365px;
  padding: 24px;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.service-module::after {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 4px;
  background: var(--mec-gold);
  transform: scaleX(0);
  transform-origin: left;
}

.service-module span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 26px;
  margin-bottom: 48px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.service-module h3,
.process-board h3,
.case-card h3,
.leak-grid h3 {
  font-family: var(--mec-font-display);
  font-size: 32px;
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.service-module p,
.process-board p,
.case-card p {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.42;
}

.service-module ul,
.engagement-grid ul,
.before-after ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-module li,
.engagement-grid li,
.before-after li {
  display: flex;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.3;
}

.service-module li::before,
.engagement-grid li::before,
.before-after li::before {
  content: "->";
  color: var(--coral);
}

.module-dark {
  background: var(--ink);
  color: var(--mec-white);
}

.module-lime {
  background: var(--lime);
}

.module-blue {
  background:
    linear-gradient(135deg, rgba(206, 170, 114, 0.18), transparent 42%),
    var(--mec-off-white);
  color: var(--ink);
  border-color: rgba(26, 26, 26, 0.48);
}

.module-peach {
  background: var(--peach);
}

.results-lab {
  position: relative;
  padding: 88px 44px 108px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 14%, rgba(206, 170, 114, 0.24), transparent 28%),
    radial-gradient(circle at 82% 8%, rgba(50, 31, 30, 0.12), transparent 24%),
    linear-gradient(rgba(50, 31, 30, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 31, 30, 0.06) 1px, transparent 1px),
    var(--mec-white);
  background-size: auto, auto, 78px 78px, 78px 78px, auto;
}

.results-lab::before,
.results-lab::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.results-lab::before {
  inset: 34px 44px auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(206, 170, 114, 0.9), transparent);
}

.results-lab::after {
  right: 7%;
  top: 74px;
  width: 160px;
  height: 160px;
  border: 1px solid rgba(206, 170, 114, 0.55);
  transform: rotate(45deg);
}

.results-lab-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.56fr);
  gap: 34px;
  align-items: end;
  margin-bottom: 44px;
}

.results-lab-intro .eyebrow {
  grid-column: 1 / -1;
}

.results-lab-intro h2 {
  max-width: 820px;
  font-family: var(--mec-font-display);
  font-size: clamp(42px, 5.8vw, 76px);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: var(--mec-tracking-tight);
}

.results-lab-intro p:not(.eyebrow) {
  max-width: 440px;
  padding: 18px 0 18px 22px;
  border-left: 1px solid rgba(26, 26, 26, 0.18);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}

.proof-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  position: relative;
  z-index: 1;
  padding: 0;
  background: transparent;
}

.proof-strip article {
  position: relative;
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 26px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 242, 236, 0.84)),
    var(--mec-off-white);
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(10, 10, 10, 0.075);
}

.proof-strip article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--mec-gold), rgba(206, 170, 114, 0.08), var(--mec-gold));
  background-size: 220% 100%;
}

.proof-strip article:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(206, 170, 114, 0.12), rgba(232, 228, 218, 0.94)),
    var(--mec-sand);
}

.proof-strip article:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(212, 196, 168, 0.98)),
    var(--mec-parchment);
}

.proof-strip article small {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 28px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: rgba(255, 255, 255, 0.54);
  color: #321f1e;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-strip strong {
  position: relative;
  z-index: 1;
  display: inline-block;
  font-family: var(--mec-font-display);
  margin-top: 22px;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.92;
  will-change: transform;
}

.proof-strip span {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 92px;
  margin-top: 24px;
  padding: 16px 16px 16px 18px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-left: 4px solid var(--mec-gold);
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    inset 0 0 0 1px rgba(245, 242, 236, 0.72),
    0 12px 28px rgba(10, 10, 10, 0.045);
  color: var(--mec-charcoal);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.28;
}

.process {
  padding-top: 70px;
  background:
    linear-gradient(rgba(50, 31, 30, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(50, 31, 30, 0.055) 1px, transparent 1px),
    var(--mec-white);
  background-size: 78px 78px;
}

.process-board {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 46px;
  border: 0;
}

.process-board article {
  position: relative;
  min-height: 285px;
  display: grid;
  align-content: start;
  padding: 26px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background:
    linear-gradient(135deg, rgba(206, 170, 114, 0.22), transparent 36%),
    var(--mec-off-white);
  box-shadow: 0 18px 44px rgba(10, 10, 10, 0.045);
}

.process-board article::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: var(--mec-gold);
  transform: scaleX(0.34);
  transform-origin: left;
}

.process-board article:nth-child(even) {
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.05), transparent 42%),
    var(--mec-sand);
}

.process-board h3 {
  margin-top: 34px;
}

.process-board span,
.case-card span,
.leak-grid span,
.engagement-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid currentColor;
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-board span {
  width: fit-content;
  background: var(--mec-white);
  color: var(--mec-charcoal);
}

.why {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 38px;
  align-items: stretch;
  background:
    linear-gradient(rgba(2, 6, 56, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 56, 0.055) 1px, transparent 1px),
    var(--mec-sand);
  background-size: 78px 78px;
}

.why h2 {
  font-size: clamp(42px, 5vw, 62px);
}

.why-copy,
.why-stack {
  min-height: 100%;
}

.why-copy {
  display: grid;
  align-content: start;
}

.why-copy > p,
.leak-copy > p,
.contact-panel > p {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

.accordion {
  margin-top: 52px;
}

.why-stack {
  display: grid;
  gap: 12px;
  margin-top: 0;
  align-content: stretch;
}

.accordion article,
.accordion button {
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid rgba(2, 6, 56, 0.18);
  text-align: left;
  font-weight: 900;
}

.accordion article.open {
  padding: 24px;
  background: rgba(245, 242, 236, 0.8);
}

.why-stack .why-feature {
  position: relative;
  display: grid;
  gap: 14px;
  min-height: 292px;
  padding: 28px;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: rgba(245, 242, 236, 0.9);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.055);
}

.why-feature > span,
.why-row span {
  display: inline-grid;
  width: 42px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.18);
  background: var(--mec-gold);
  color: var(--mec-black);
  font-size: 12px;
  font-weight: 900;
}

.accordion h3 {
  font-family: var(--mec-font-display);
  font-size: 25px;
  line-height: 1.04;
}

.accordion p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.accordion a {
  display: inline-flex;
  margin-top: 14px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.why-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 96px;
  padding: 18px;
  border: 1px solid rgba(26, 26, 26, 0.16);
  background: rgba(245, 242, 236, 0.9);
  box-shadow: 0 16px 34px rgba(10, 10, 10, 0.04);
}

.why-row strong {
  font-family: var(--mec-font-display);
  font-size: clamp(20px, 2.2vw, 29px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.workflow-board {
  position: relative;
  min-height: 520px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 56, 0.18);
  background: rgba(245, 242, 236, 0.74);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.055);
}

.workflow-board::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: rgba(26, 26, 26, 0.18);
  transform: rotate(-8deg);
}

.board-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(2, 6, 56, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 56, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.doc-card,
.seo-card,
.role {
  position: absolute;
  z-index: 2;
  border: 2px solid rgba(2, 6, 56, 0.32);
  background: var(--mec-white);
  box-shadow: 8px 8px 0 rgba(2, 6, 56, 0.08);
}

.doc-card {
  width: 250px;
  min-height: 120px;
  padding: 16px;
}

.doc-card.blog {
  left: 42px;
  top: 42px;
}

.doc-card.press {
  right: 42px;
  top: 72px;
}

.doc-card strong {
  display: block;
  margin-bottom: 12px;
  font-size: 14px;
}

.doc-card span {
  display: block;
  height: 9px;
  margin-top: 8px;
  background: rgba(107, 101, 96, 0.18);
}

.seo-card {
  left: 50%;
  bottom: 58px;
  width: 280px;
  padding: 14px;
  transform: translateX(-50%);
}

.seo-card header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}

.seo-card p,
.seo-card button {
  font-size: 12px;
  font-weight: 900;
}

.seo-card button {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(2, 6, 56, 0.2);
  text-align: left;
}

.role {
  padding: 8px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.role.content {
  right: 88px;
  top: 224px;
}

.role.pr {
  left: 88px;
  bottom: 190px;
}

.role.digital {
  right: 78px;
  bottom: 154px;
}

.avatar {
  position: absolute;
  z-index: 3;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mec-white);
}

.avatar.one {
  right: 68px;
  top: 214px;
}

.avatar.two {
  left: 70px;
  bottom: 170px;
}

.avatar.three {
  right: 58px;
  bottom: 134px;
}

.case-grid,
.quote-grid,
.deliverable-grid,
.engagement-grid,
.leak-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
}

.case-card,
blockquote,
.deliverable-grid article,
.engagement-grid article,
.leak-grid article {
  padding: 24px;
  border: 2px solid var(--ink);
  background: var(--mec-off-white);
}

.case-card {
  min-height: 330px;
  display: grid;
  align-content: space-between;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 16px;
}

.case-meta span,
.case-meta b {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid currentColor;
  padding: 0 10px;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.case-meta b {
  border-color: rgba(10, 10, 10, 0.16);
  color: var(--mec-warm-gray);
  letter-spacing: 0.04em;
}

.case-elements {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.case-elements span {
  display: block;
  border-left: 4px solid var(--mec-gold);
  padding: 9px 10px;
  background: rgba(232, 228, 218, 0.55);
  color: var(--mec-charcoal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.case-elements b {
  display: inline-block;
  margin-right: 6px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-card strong {
  display: inline-flex;
  width: fit-content;
  margin-top: 24px;
  padding: 9px 12px;
  background: var(--ink);
  color: var(--mec-white);
  font-size: 13px;
}

.case-read-more {
  display: inline-flex;
  width: fit-content;
  min-height: 38px;
  align-items: center;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.image-card {
  padding: 0;
  overflow: hidden;
  background: var(--ink);
  color: var(--mec-white);
}

.image-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
}

.image-card div {
  padding: 22px;
}

.image-card .case-meta b {
  border-color: rgba(245, 242, 236, 0.26);
  color: rgba(245, 242, 236, 0.68);
}

.image-card p {
  padding: 0 22px;
  color: rgba(245, 242, 236, 0.78);
  font-size: 13px;
}

.image-card .case-elements {
  margin: 18px 22px 0;
}

.image-card .case-elements span {
  background: rgba(245, 242, 236, 0.08);
  color: rgba(245, 242, 236, 0.8);
}

.image-card .case-elements b {
  color: var(--mec-gold);
}

.image-card strong {
  margin: 0 22px 22px;
  background: var(--mec-gold);
  color: var(--ink);
}

.image-card .case-read-more {
  margin: 0 22px 22px;
  color: var(--mec-white);
}

blockquote p {
  font-family: var(--mec-font-display);
  font-size: 25px;
  font-weight: 700;
  line-height: 1.1;
}

blockquote cite {
  display: block;
  margin-top: 28px;
  color: var(--muted);
  font-style: normal;
  font-weight: 900;
}

.testimonials .quote-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.testimonials blockquote {
  min-height: 270px;
  display: grid;
  align-content: space-between;
  background:
    linear-gradient(135deg, rgba(206, 170, 114, 0.2), transparent 44%),
    var(--mec-off-white);
}

.revenue-leaks {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 36px;
  background: var(--mec-charcoal);
  color: var(--mec-white);
}

.leak-copy h2,
.revenue-leaks h3 {
  color: var(--mec-white);
}

.leak-copy h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5.4vw, 64px);
}

.leak-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 0;
}

.leak-grid article {
  min-height: 210px;
  border-color: rgba(245, 242, 236, 0.24);
  background: rgba(245, 242, 236, 0.08);
}

.leak-grid p {
  margin-top: 14px;
  color: rgba(245, 242, 236, 0.7);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.audit-deliverables {
  background: var(--mec-off-white);
}

.deliverable-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.deliverable-grid strong {
  font-family: var(--mec-font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.deliverable-grid p,
.engagement-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.engagement-grid article {
  min-height: 365px;
  display: grid;
  align-content: start;
}

.engagement-grid article.featured {
  background: var(--ink);
  color: var(--mec-white);
}

.engagement-grid article.featured p {
  color: rgba(245, 242, 236, 0.76);
}

.engagement-grid h3 {
  margin-top: 32px;
  font-family: var(--mec-font-display);
  font-size: 36px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.engagement-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: 26px;
  padding: 10px 14px;
  border: 1px solid currentColor;
  font-size: 12px;
  font-weight: 900;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.before-after > div {
  padding: 34px;
  border: 2px solid var(--ink);
}

.before-after h2 {
  margin-top: 12px;
  font-size: clamp(36px, 4.4vw, 54px);
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(380px, 1fr);
  gap: 38px;
  align-items: start;
  background: var(--mec-sand);
}

.faq-intro h2 {
  margin-top: 14px;
  font-size: clamp(34px, 4vw, 50px);
}

.faq-intro > p:not(.eyebrow) {
  margin-top: 20px;
  color: var(--muted);
  font-weight: 800;
}

.faq-visual {
  position: relative;
  min-height: 430px;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(2, 6, 56, 0.18);
  background:
    linear-gradient(rgba(2, 6, 56, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 6, 56, 0.08) 1px, transparent 1px),
    rgba(245, 242, 236, 0.74);
  background-size: 36px 36px;
}

.faq-scan-line {
  position: absolute;
  inset: 0 auto 0 -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(206, 170, 114, 0.28), transparent);
  transform: skewX(-24deg);
}

.faq-compass {
  position: absolute;
  right: 30px;
  top: 24px;
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(2, 6, 56, 0.2);
  font-family: var(--mec-font-display);
  font-size: 32px;
  font-weight: 800;
}

.faq-flow-card {
  position: absolute;
  width: 220px;
  padding: 15px;
  border: 1px solid rgba(2, 6, 56, 0.18);
  background: rgba(245, 242, 236, 0.92);
  box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.05);
}

.faq-flow-card small {
  display: inline-flex;
  padding: 4px 10px;
  background: var(--yellow);
  font-weight: 900;
}

.faq-flow-card strong {
  display: block;
  margin-top: 12px;
  font-family: var(--mec-font-display);
  font-size: 24px;
  line-height: 1;
}

.faq-flow-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
}

.card-one {
  left: 8%;
  top: 10%;
}

.card-two {
  right: 7%;
  top: 35%;
}

.card-three {
  left: 8%;
  bottom: 17%;
}

.faq-ticker {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(2, 6, 56, 0.2);
}

.faq-ticker span {
  padding: 14px;
  border-right: 1px solid rgba(2, 6, 56, 0.2);
  background: rgba(212, 196, 168, 0.36);
  text-align: center;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.faq-ticker span:last-child {
  border-right: 0;
}

.faq-list {
  display: grid;
  gap: 10px;
}

.faq-list details {
  border: 1px solid rgba(2, 6, 56, 0.16);
  background: rgba(245, 242, 236, 0.9);
  box-shadow: 0 18px 42px rgba(10, 10, 10, 0.06);
}

.faq-list summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 28px;
  gap: 14px;
  align-items: center;
  min-height: 74px;
  padding: 16px 18px;
  color: var(--ink);
  font-family: var(--mec-font-display);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.08;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(2, 6, 56, 0.18);
  color: var(--mec-gold);
  font-family: var(--mec-font-body);
  font-size: 13px;
  letter-spacing: 0;
}

.faq-list summary::after {
  content: "+";
  justify-self: end;
  font-family: var(--mec-font-body);
  font-size: 28px;
  line-height: 0.75;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list details p {
  padding: 0 24px 22px 74px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: 42px;
  background: var(--mec-white);
}

.contact-panel h2 {
  margin-top: 14px;
  font-size: clamp(42px, 5.6vw, 64px);
}

.contact-promises {
  display: grid;
  gap: 14px;
  max-width: 470px;
  margin-top: 34px;
}

.contact-promises span {
  position: relative;
  display: grid;
  min-height: 86px;
  padding: 18px 18px 18px 82px;
  border: 1px solid rgba(10, 10, 10, 0.18);
  background:
    linear-gradient(90deg, rgba(206, 170, 114, 0.12), transparent 52%),
    var(--mec-off-white);
  box-shadow: 10px 10px 0 rgba(212, 196, 168, 0.24);
  font-size: 12px;
  font-weight: 900;
  overflow: hidden;
}

.contact-promises span:nth-child(2) {
  margin-left: 28px;
}

.contact-promises span:nth-child(3) {
  margin-left: 56px;
}

.contact-promises span::before {
  content: "01";
  position: absolute;
  left: 18px;
  top: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(10, 10, 10, 0.24);
  background: var(--mec-gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 950;
}

.contact-promises span:nth-child(2)::before {
  content: "02";
}

.contact-promises span:nth-child(3)::before {
  content: "03";
}

.contact-promises span::after {
  content: "";
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 1px;
  background: var(--mec-gold);
}

.contact-promises strong {
  align-self: end;
  color: var(--ink);
  font-size: 15px;
  line-height: 1;
}

.contact-promises small {
  display: block;
  max-width: 260px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.audit-preview-card {
  margin-top: 34px;
  border: 1px solid rgba(10, 10, 10, 0.18);
  background:
    linear-gradient(135deg, rgba(206, 170, 114, 0.12), rgba(255, 255, 255, 0.9) 48%),
    var(--mec-off-white);
  box-shadow: 18px 18px 0 rgba(212, 196, 168, 0.32);
  overflow: hidden;
}

.audit-mini-ledger {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid rgba(10, 10, 10, 0.14);
}

.audit-mini-ledger span {
  min-height: 78px;
  padding: 14px 16px;
  border-right: 1px solid rgba(10, 10, 10, 0.12);
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.audit-mini-ledger span:last-child {
  border-right: 0;
}

.audit-mini-ledger strong {
  display: block;
  color: var(--ink);
  font-family: var(--mec-font-display);
  font-size: 36px;
  line-height: 0.9;
}

.audit-preview-row {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 20px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
}

.audit-preview-row:first-of-type {
  border-top: 0;
}

.audit-preview-row > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid rgba(10, 10, 10, 0.22);
  background: var(--mec-gold);
  font-size: 12px;
  font-weight: 950;
}

.audit-preview-row strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  font-weight: 950;
}

.audit-preview-row p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}

.audit-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 2px solid var(--ink);
  background: var(--mec-off-white);
  box-shadow: var(--shadow);
}

.audit-form label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.audit-form input,
.audit-form select,
.audit-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid rgba(2, 6, 56, 0.22);
  background: var(--mec-white);
}

.audit-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 20px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.site-footer {
  width: min(100%, 1240px);
  margin: 0 auto;
  padding: 44px;
  background: var(--mec-sand);
}

.footer-panel {
  padding: 34px 42px;
  border: 1px solid rgba(2, 6, 56, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(245, 242, 236, 0.96), rgba(232, 228, 218, 0.78));
  box-shadow: 0 26px 80px rgba(10, 10, 10, 0.08);
}

.footer-brand {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(320px, 0.9fr);
  gap: 34px;
  align-items: center;
}

.footer-brand img {
  display: block;
  width: min(280px, 100%);
  max-height: 100px;
  height: auto;
  object-fit: contain;
}

.footer-newsletter {
  grid-column: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

.footer-newsletter label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 900;
}

.footer-newsletter input {
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid rgba(2, 6, 56, 0.18);
  background: var(--mec-white);
}

.footer-newsletter button {
  min-height: 52px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--mec-white);
  font-weight: 900;
}

.footer-newsletter p,
.footer-micro {
  color: var(--mec-warm-gray);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.footer-micro {
  margin-top: 24px;
  text-align: center;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-top: 54px;
  padding-top: 34px;
  border-top: 1px solid rgba(2, 6, 56, 0.14);
}

.footer-links div {
  display: grid;
  gap: 10px;
}

.footer-links h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-family: var(--mec-font-body);
  font-size: 14px;
  font-weight: 900;
}

.footer-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.footer-social-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.footer-social-tags span {
  padding: 8px 12px;
  border: 1px solid rgba(107, 101, 96, 0.24);
  background: rgba(206, 170, 114, 0.18);
  font-size: 12px;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid rgba(2, 6, 56, 0.14);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
}

.reveal-target {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

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

@media (prefers-reduced-motion: no-preference) {
  .logo-strip {
    animation: logoMarquee 26s linear infinite;
  }

  .logo-marquee:hover .logo-strip {
    animation-play-state: paused;
  }

  .proof-strip strong {
    animation: statDrift 3.2s ease-in-out infinite, statPulse 2.6s ease-in-out infinite;
  }

  .proof-strip article {
    animation: cardFloat 5.2s ease-in-out infinite;
  }

  .proof-strip article::before {
    animation: goldRail 2.8s linear infinite;
  }

  .proof-strip article:nth-child(2),
  .proof-strip article:nth-child(2) strong {
    animation-delay: 220ms;
  }

  .proof-strip article:nth-child(3),
  .proof-strip article:nth-child(3) strong {
    animation-delay: 440ms;
  }

  .proof-strip article:nth-child(4),
  .proof-strip article:nth-child(4) strong {
    animation-delay: 660ms;
  }

  .proof-strip article::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(115deg, transparent 28%, rgba(255, 255, 255, 0.58), transparent 54%),
      radial-gradient(circle at 50% 18%, rgba(206, 170, 114, 0.22), transparent 24%);
    transform: translateX(-120%);
    animation: statSheen 4.8s ease-in-out infinite;
    pointer-events: none;
  }

  .proof-strip span {
    animation: textGlow 3.6s ease-in-out infinite;
  }

  .process-board article,
  .process-board article::before {
    transition: transform 260ms ease, box-shadow 260ms ease, background-color 260ms ease;
  }

  .process-board article:hover {
    z-index: 2;
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(10, 10, 10, 0.08);
  }

  .process-board article:hover::before {
    transform: scaleX(1);
  }

  .feature-card,
  .feature-card::after,
  .feature-visual svg,
  .feature-card a {
    transition:
      transform 260ms ease,
      border-color 260ms ease,
      box-shadow 260ms ease,
      opacity 260ms ease;
  }

  .feature-card:hover {
    z-index: 1;
    border-color: rgba(10, 10, 10, 0.2);
    box-shadow: 12px 12px 0 rgba(206, 170, 114, 0.22);
    transform: translateY(-6px);
  }

  .feature-card:hover::after {
    transform: scaleX(1);
  }

  .feature-card:hover .feature-visual svg {
    transform: translateY(-4px) scale(1.025);
  }

  .feature-card:hover a {
    transform: translateX(4px);
  }

  .service-module,
  .service-module::after,
  .service-module span,
  .service-module li,
  .service-module li::before {
    transition:
      transform 280ms ease,
      box-shadow 280ms ease,
      border-color 280ms ease,
      background-color 280ms ease,
      opacity 280ms ease;
  }

  .service-module:hover {
    z-index: 2;
    border-color: rgba(10, 10, 10, 0.82);
    box-shadow: 14px 14px 0 rgba(206, 170, 114, 0.22);
    transform: translateY(-7px);
  }

  .service-module:hover::after {
    transform: scaleX(1);
  }

  .service-module:hover span {
    transform: translateY(-3px);
  }

  .service-module:hover li {
    transform: translateX(3px);
  }

  .service-module:hover li::before {
    transform: translateX(2px);
    color: var(--mec-gold);
  }

  .faq-scan-line {
    animation: scan 4s linear infinite;
  }

  @keyframes logoMarquee {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0);
    }
  }

  @keyframes statDrift {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-7px);
    }
  }

  @keyframes statPulse {
    0%,
    100% {
      text-shadow: 0 0 0 rgba(206, 170, 114, 0);
    }
    50% {
      text-shadow: 0 0 24px rgba(206, 170, 114, 0.32);
    }
  }

  @keyframes cardFloat {
    0%,
    100% {
      transform: translateY(0);
    }
    50% {
      transform: translateY(-10px);
    }
  }

  @keyframes goldRail {
    0% {
      background-position: 0% 50%;
    }
    100% {
      background-position: 220% 50%;
    }
  }

  @keyframes textGlow {
    0%,
    100% {
      border-left-color: var(--mec-gold);
      box-shadow:
        inset 0 0 0 1px rgba(245, 242, 236, 0.72),
        0 12px 28px rgba(10, 10, 10, 0.045);
    }
    50% {
      border-left-color: #f0ce8d;
      box-shadow:
        inset 0 0 0 1px rgba(245, 242, 236, 0.72),
        0 18px 42px rgba(206, 170, 114, 0.22);
    }
  }

  @keyframes statSheen {
    0%,
    34% {
      transform: translateX(-120%);
    }
    52%,
    100% {
      transform: translateX(120%);
    }
  }

  @keyframes scan {
    0% {
      transform: translateX(-20%) skewX(-24deg);
    }
    100% {
      transform: translateX(520%) skewX(-24deg);
    }
  }
}

@media (max-width: 1024px) {
  .site-nav {
    grid-template-columns: 190px auto;
    row-gap: 12px;
  }

  .site-nav nav {
    grid-column: 1 / -1;
    flex-wrap: wrap;
  }

  .feature-grid,
  .service-system-grid,
  .proof-strip,
  .process-board,
  .case-grid,
  .case-study-showcase,
  .case-study-image-band,
  .case-study-gallery,
  .deliverable-grid,
  .engagement-grid,
  .leak-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .why,
  .revenue-leaks,
  .faq,
  .contact-section,
  .case-study-detail,
  .case-study-detail.reverse,
  .section-heading,
  .results-lab-intro,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .footer-newsletter {
    grid-column: auto;
  }

  .testimonials .quote-grid {
    grid-template-columns: 1fr;
  }

  .service-system .section-kicker {
    justify-self: start;
    max-width: 620px;
  }

  .results-lab-intro p:not(.eyebrow) {
    max-width: 620px;
    padding: 16px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.18);
  }
}

@media (max-width: 700px) {
  body {
    background: var(--mec-sand);
  }

  main,
  .site-footer {
    width: 100%;
  }

  .hero,
  .service-system,
  .results-lab,
  .process,
  .case-studies,
  .testimonials,
  .faq,
  .revenue-leaks,
  .audit-deliverables,
  .engagements,
  .before-after,
  .contact-section,
  .why,
  .platform,
  .trusted {
    padding-left: 22px;
    padding-right: 22px;
  }

  .site-nav {
    grid-template-columns: minmax(0, 1fr) auto;
    justify-items: stretch;
    column-gap: 14px;
    min-height: 0;
    padding: 12px 14px;
    margin-bottom: 18px;
  }

  .brand-mark {
    justify-content: flex-start;
    width: 146px;
    min-width: 146px;
    height: auto;
  }

  .site-nav nav {
    display: none;
  }

  .mobile-section-nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    min-width: 0;
    min-height: 42px;
    padding: 0 18px;
    font-size: 12px;
  }

  .hero {
    min-height: 0;
    padding-top: 32px;
  }

  .notice {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    width: 100%;
    padding: 7px 9px;
    font-size: 12px;
    line-height: 1.25;
    text-align: left;
  }

  h1 {
    max-width: 340px;
    margin-top: 30px;
    font-size: clamp(52px, 14.5vw, 68px);
    line-height: 0.92;
  }

  .hero-subhead {
    width: min(330px, 100%);
    font-size: 15px;
  }

  .hero-actions,
  .footer-newsletter,
  .footer-bottom {
    flex-direction: column;
    display: grid;
  }

  .footer-newsletter {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .campaign-hero {
    width: 100%;
    height: 372px;
    margin-top: 36px;
    overflow: hidden;
  }

  .left-grid,
  .right-grid {
    width: 86%;
    height: 190px;
  }

  .launch-card {
    left: 0;
    top: 86px;
    width: min(260px, 78vw);
    min-height: 106px;
    padding: 16px;
  }

  .launch-card strong {
    font-size: 27px;
  }

  .campaign-hero img {
    left: auto;
    right: -4px;
    bottom: 0;
    width: 198px;
    height: 328px;
  }

  .accent-block {
    left: 42%;
    top: 166px;
    width: 90px;
  }

  .diamond-shape {
    left: auto;
    right: 8px;
    top: 124px;
    width: 88px;
    height: 88px;
  }

  .trusted {
    padding-top: 54px;
    padding-bottom: 72px;
  }

  .trusted h2 {
    max-width: 300px;
    margin: 0 auto;
    font-size: 24px;
    line-height: 1.1;
  }

  .logo-marquee {
    margin-top: 30px;
  }

  .logo-strip span {
    min-width: 132px;
    font-size: 18px;
  }

  .service-system .section-kicker {
    padding: 14px 0 0;
    border-left: 0;
    border-top: 1px solid rgba(26, 26, 26, 0.18);
  }

  .section-heading {
    gap: 18px;
    margin-bottom: 32px;
  }

  .section-heading h2,
  .case-hero h2,
  .testimonials h2,
  .faq h2,
  .final-cta h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .service-system .section-heading h2 {
    font-size: clamp(40px, 11.5vw, 48px);
    line-height: 0.98;
  }

  .service-module {
    min-height: auto;
    padding: 26px;
  }

  .service-module span {
    margin-bottom: 34px;
  }

  .service-module h3,
  .process-board h3,
  .case-card h3,
  .leak-grid h3 {
    font-size: 30px;
  }

  .results-lab {
    padding-top: 56px;
    padding-bottom: 72px;
  }

  .results-lab::after {
    right: -42px;
    top: 42px;
    width: 122px;
    height: 122px;
    opacity: 0.55;
  }

  .results-lab-intro {
    gap: 18px;
    margin-bottom: 34px;
  }

  .results-lab-intro h2 {
    max-width: 310px;
    font-size: clamp(42px, 15vw, 58px);
    line-height: 0.92;
  }

  .results-lab-intro p:not(.eyebrow) {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.48;
  }

  .feature-grid,
  .service-system-grid,
  .proof-strip,
  .process-board,
  .case-grid,
  .case-study-showcase,
  .case-study-image-band,
  .case-study-gallery,
  .quote-grid,
  .deliverable-grid,
  .engagement-grid,
  .leak-grid,
  .before-after,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .process-board article {
    min-height: 235px;
  }

  .case-study-hero,
  .case-study-detail,
  .case-study-cta {
    padding: 56px 22px;
  }

  .case-study-showcase,
  .case-study-image-band,
  .case-study-gallery {
    padding: 0 22px 56px;
  }

  .case-study-showcase img,
  .case-study-image-band img,
  .case-study-gallery img {
    height: 430px;
  }

  .proof-strip article {
    min-height: 255px;
    padding: 24px;
  }

  .proof-strip strong {
    font-size: clamp(52px, 17vw, 70px);
  }

  .proof-strip span {
    min-height: 0;
    font-size: 14px;
  }

  .platform h2,
  .why h2,
  .leak-copy h2,
  .contact-panel h2 {
    font-size: clamp(38px, 12vw, 50px);
  }

  .feature-card {
    min-height: 230px;
  }

  .workflow-board {
    min-height: 430px;
  }

  .doc-card {
    width: 190px;
    min-height: 95px;
    padding: 13px;
  }

  .doc-card.blog {
    left: 18px;
    top: 34px;
  }

  .doc-card.press {
    right: 18px;
    top: 110px;
  }

  .seo-card {
    bottom: 38px;
    width: 245px;
  }

  .role,
  .avatar {
    display: none;
  }

  .faq-intro h2 {
    font-size: clamp(36px, 11vw, 46px);
  }

  .faq-visual {
    min-height: auto;
    padding: 16px;
  }

  .faq-compass,
  .faq-scan-line {
    display: none;
  }

  .faq-flow-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: 100%;
    margin-bottom: 12px;
    box-shadow: 8px 8px 0 rgba(10, 10, 10, 0.045);
  }

  .faq-ticker {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
  }

  .faq-list summary {
    grid-template-columns: 40px minmax(0, 1fr) 22px;
    gap: 12px;
    min-height: 74px;
    font-size: 22px;
    padding: 16px;
  }

  .faq-list summary span {
    width: 40px;
    height: 40px;
  }

  .faq-list details p {
    padding: 0 18px 20px 68px;
    font-size: 13px;
  }

  .contact-section {
    gap: 28px;
  }

  .contact-promises span {
    width: 100%;
    margin-left: 0;
    padding-right: 16px;
  }

  .contact-promises span:nth-child(2),
  .contact-promises span:nth-child(3) {
    margin-left: 0;
  }

  .audit-form {
    padding: 22px;
  }

  .footer-panel {
    padding: 26px;
  }
}

.booking-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--mec-sand);
  font-family: var(--mec-font-body);
}

.booking-shell {
  display: grid;
  width: 100%;
  max-width: none;
  min-height: 100vh;
  place-items: center;
  padding: clamp(18px, 6vw, 72px);
  background:
    linear-gradient(rgba(10, 10, 10, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 22% 18%, rgba(245, 242, 236, 0.86), transparent 34%),
    transparent;
  background-size: 64px 64px, 64px 64px, auto;
  overflow: visible;
}

.booking-modal {
  width: min(100%, 1120px);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 0;
  background: rgba(245, 242, 236, 0.96);
  box-shadow: 24px 24px 0 rgba(10, 10, 10, 0.055), var(--shadow);
}

.booking-modal-header {
  display: grid;
  grid-template-columns: 178px minmax(0, 1fr) 44px;
  gap: 24px;
  align-items: center;
  padding: 24px 32px;
  border-bottom: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(245, 242, 236, 0.72);
}

.booking-logo {
  display: inline-flex;
  align-items: center;
  width: 164px;
  height: 54px;
}

.booking-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.booking-modal-header h1 {
  font-family: var(--mec-font-display);
  font-size: clamp(30px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: var(--mec-tracking-tight);
  line-height: 0.94;
}

.booking-modal-header p {
  margin-top: 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.booking-close {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(26, 26, 26, 0.16);
  border-radius: 0;
  color: var(--mec-charcoal);
  font-size: 28px;
  line-height: 1;
  transition: background-color 180ms ease, transform 180ms ease;
}

.booking-close:hover {
  background: var(--mec-black);
  color: var(--mec-off-white);
  transform: rotate(6deg);
}

.booking-modal-body {
  display: grid;
  grid-template-columns: 1.04fr 1fr;
  min-height: 520px;
}

.calendar-panel {
  display: flex;
  flex-direction: column;
  padding: 32px 34px;
  border-right: 1px solid rgba(26, 26, 26, 0.14);
  background:
    linear-gradient(rgba(26, 26, 26, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.035) 1px, transparent 1px),
    rgba(232, 228, 218, 0.7);
  background-size: 54px 54px;
}

.calendar-toolbar {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  margin-bottom: 26px;
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0;
  background: rgba(245, 242, 236, 0.76);
}

.calendar-toolbar strong {
  justify-self: center;
  color: var(--mec-charcoal);
  font-size: 20px;
  font-weight: 700;
}

.calendar-toolbar button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-right: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0;
  background: rgba(245, 242, 236, 0.86);
  color: var(--mec-charcoal);
  font-size: 28px;
  cursor: pointer;
}

.calendar-toolbar button:last-child {
  border-right: 0;
  border-left: 1px solid rgba(26, 26, 26, 0.12);
}

.calendar-weekdays,
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.calendar-weekdays {
  margin-bottom: 18px;
  color: var(--mec-warm-gray);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: center;
}

.calendar-weekdays span {
  padding: 8px 0;
}

.calendar-days {
  gap: 10px 8px;
}

.calendar-day {
  display: grid;
  min-height: 52px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 0;
  color: rgba(10, 10, 10, 0.72);
  font-family: var(--mec-font-display);
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.calendar-day:hover {
  border-color: rgba(26, 26, 26, 0.16);
  background: rgba(212, 196, 168, 0.36);
  transform: translateY(-1px);
}

.calendar-day.is-muted {
  color: rgba(10, 10, 10, 0.22);
  cursor: default;
}

.calendar-day.is-muted:hover {
  background: transparent;
  transform: none;
}

.calendar-day.is-today {
  border-color: rgba(26, 26, 26, 0.28);
  box-shadow: inset 0 0 0 1px rgba(245, 242, 236, 0.8);
}

.calendar-day.is-selected {
  border-color: var(--mec-black);
  background: var(--mec-black);
  color: var(--mec-off-white);
  box-shadow: 8px 8px 0 rgba(206, 170, 114, 0.34);
}

.calendar-day.is-in-range {
  background: rgba(206, 170, 114, 0.2);
  color: var(--mec-charcoal);
}

.booking-side-info {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.scheduler-summary-card,
.scheduler-agenda {
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 0;
  background: rgba(245, 242, 236, 0.82);
  box-shadow: 10px 10px 0 rgba(10, 10, 10, 0.035);
}

.scheduler-summary-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
}

.scheduler-summary-card::after {
  content: "";
  position: absolute;
  right: -34px;
  top: -48px;
  width: 130px;
  aspect-ratio: 1;
  border: 1px solid rgba(26, 26, 26, 0.1);
  background: rgba(206, 170, 114, 0.24);
  transform: rotate(45deg);
}

.scheduler-summary-card span {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  background: var(--mec-black);
  color: var(--mec-off-white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.scheduler-summary-card h2 {
  position: relative;
  z-index: 1;
  margin-top: 14px;
  font-family: var(--mec-font-display);
  font-size: 25px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.scheduler-summary-card p {
  position: relative;
  z-index: 1;
  max-width: 440px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.scheduler-agenda {
  padding: 20px 22px;
}

.scheduler-agenda h3 {
  margin-bottom: 12px;
  font-family: var(--mec-font-display);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.scheduler-agenda ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scheduler-agenda li {
  position: relative;
  padding-left: 24px;
  color: var(--mec-warm-gray);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.scheduler-agenda li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 9px;
  height: 9px;
  background: var(--mec-gold);
  box-shadow: 0 0 0 5px rgba(206, 170, 114, 0.14);
}

.scheduler-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.scheduler-meta span {
  border: 1px solid rgba(26, 26, 26, 0.12);
  border-radius: 0;
  padding: 14px;
  background: rgba(212, 196, 168, 0.22);
  color: var(--mec-charcoal);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.scheduler-form {
  align-content: start;
  display: grid;
  gap: 16px;
  padding: 30px 34px 28px;
  background: rgba(245, 242, 236, 0.82);
}

.scheduler-form label {
  display: grid;
  gap: 8px;
  color: var(--mec-charcoal);
  font-size: 14px;
  font-weight: 800;
}

.scheduler-form label span {
  color: var(--mec-gold);
}

.scheduler-form input,
.scheduler-form select,
.scheduler-form textarea {
  width: 100%;
  border: 1px solid rgba(10, 10, 10, 0.09);
  border-radius: 0;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.42);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.scheduler-form input:focus,
.scheduler-form select:focus,
.scheduler-form textarea:focus {
  border-color: var(--mec-black);
  background: var(--mec-off-white);
  box-shadow: 0 0 0 4px rgba(206, 170, 114, 0.16);
}

.date-time-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.14);
  border-radius: 0;
  background: rgba(245, 242, 236, 0.82);
}

.date-time-grid label {
  padding: 14px 16px 16px;
}

.date-time-grid label + label {
  border-left: 1px solid rgba(10, 10, 10, 0.08);
}

.date-time-grid input,
.date-time-grid select {
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.date-time-grid input:focus,
.date-time-grid select:focus {
  box-shadow: none;
}

.booking-divider {
  height: 1px;
  margin: 6px -34px 2px;
  background: rgba(10, 10, 10, 0.08);
}

.booking-modal-footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  padding: 22px 34px;
  border-top: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(245, 242, 236, 0.92);
}

.booking-modal-footer p {
  color: var(--muted);
  font-size: 16px;
}

.booking-modal-footer strong {
  color: var(--mec-charcoal);
  font-weight: 800;
}

.booking-modal-footer div {
  display: flex;
  gap: 14px;
  align-items: center;
}

.booking-cancel,
.booking-submit {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  padding: 0 24px;
  font-family: var(--mec-font-display);
  font-weight: 800;
}

.booking-cancel {
  border: 1px solid rgba(26, 26, 26, 0.14);
  background: rgba(245, 242, 236, 0.76);
  color: var(--mec-warm-gray);
}

.booking-submit {
  border: 0;
  background: var(--mec-black);
  color: var(--mec-off-white);
  cursor: pointer;
  box-shadow: 8px 8px 0 rgba(206, 170, 114, 0.4);
}

.booking-submit:hover,
.booking-submit:focus-visible,
.booking-cancel:hover,
.booking-cancel:focus-visible {
  transform: translateY(-2px);
}

.booking-submit,
.booking-cancel {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.case-study-page {
  background: var(--mec-sand);
}

.case-study-nav {
  margin-top: 48px;
}

.case-study-hero,
.case-study-detail,
.case-study-cta {
  padding: 88px 44px;
  background: var(--mec-off-white);
}

.case-study-hero h1,
.case-study-detail h2,
.case-study-cta h2 {
  font-family: var(--mec-font-display);
  font-size: clamp(48px, 7vw, 94px);
  font-weight: 800;
  letter-spacing: var(--mec-tracking-tight);
  line-height: 0.92;
}

.case-study-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.48;
}

.case-study-showcase,
.case-study-image-band,
.case-study-gallery {
  display: grid;
  gap: 12px;
  padding: 0 44px 88px;
  background: var(--mec-off-white);
}

.case-study-showcase {
  grid-template-columns: 1.1fr 0.95fr 0.95fr;
}

.case-study-showcase img,
.case-study-image-band img,
.case-study-gallery img {
  width: 100%;
  height: 520px;
  border: 2px solid var(--ink);
  object-fit: cover;
}

.case-study-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.58fr);
  gap: 34px;
  align-items: stretch;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.case-study-detail.reverse {
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
}

.case-study-copy,
.case-study-panel {
  border: 2px solid var(--ink);
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(rgba(26, 26, 26, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 26, 26, 0.045) 1px, transparent 1px),
    var(--mec-off-white);
  background-size: 34px 34px;
}

.case-study-copy p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 22px;
  color: var(--mec-charcoal);
  font-size: 17px;
  font-weight: 750;
  line-height: 1.58;
}

.case-study-panel {
  display: grid;
  align-content: space-between;
  background: var(--ink);
  color: var(--mec-off-white);
}

.case-study-panel.gold {
  background: var(--mec-gold);
  color: var(--ink);
}

.case-study-panel span {
  width: fit-content;
  border: 1px solid currentColor;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.case-study-panel strong {
  display: block;
  margin-top: 58px;
  font-family: var(--mec-font-display);
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.case-study-panel ul {
  display: grid;
  gap: 12px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.case-study-panel li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.35;
}

.case-study-panel li::before {
  content: "->";
  color: var(--mec-gold);
}

.case-study-panel.gold li::before {
  color: var(--ink);
}

.case-study-image-band {
  grid-template-columns: 0.75fr 0.75fr 1.4fr;
}

.case-study-image-band img {
  height: 430px;
}

.case-study-gallery {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 88px;
}

.case-study-gallery img {
  height: 390px;
}

.case-study-cta {
  text-align: center;
  border-top: 1px solid rgba(26, 26, 26, 0.12);
}

.case-study-cta h2 {
  max-width: 840px;
  margin: 0 auto;
}

.case-study-cta .button {
  margin-top: 34px;
}

@media (max-width: 1024px) {
  .case-study-showcase,
  .case-study-image-band,
  .case-study-gallery,
  .case-study-detail,
  .case-study-detail.reverse {
    grid-template-columns: 1fr;
  }

  .booking-modal-body {
    grid-template-columns: 1fr;
  }

  .calendar-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  }
}

@media (max-width: 700px) {
  .case-study-hero,
  .case-study-detail,
  .case-study-cta {
    padding: 56px 22px;
  }

  .case-study-showcase,
  .case-study-image-band,
  .case-study-gallery {
    padding: 0 22px 56px;
  }

  .case-study-showcase img,
  .case-study-image-band img,
  .case-study-gallery img {
    height: 430px;
  }

  .booking-shell {
    padding: 14px;
    place-items: start center;
  }

  .booking-modal {
    border-radius: 0;
  }

  .booking-modal-header {
    grid-template-columns: 108px minmax(0, 1fr) 34px;
    gap: 12px;
    padding: 18px;
  }

  .booking-logo {
    width: 104px;
    height: 40px;
  }

  .booking-logo img {
    width: 100%;
  }

  .booking-modal-header h1 {
    font-size: 22px;
  }

  .booking-modal-header p {
    font-size: 13px;
  }

  .booking-close {
    width: 32px;
    height: 32px;
    font-size: 24px;
  }

  .calendar-panel,
  .scheduler-form {
    padding: 18px;
  }

  .calendar-days {
    gap: 6px 4px;
  }

  .calendar-day {
    min-height: 42px;
    font-size: 15px;
  }

  .booking-side-info {
    margin-top: 20px;
  }

  .scheduler-meta {
    grid-template-columns: 1fr;
  }

  .date-time-grid {
    grid-template-columns: 1fr;
  }

  .date-time-grid label + label {
    border-left: 0;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
  }

  .booking-divider {
    margin-right: -18px;
    margin-left: -18px;
  }

  .booking-modal-footer {
    display: grid;
    padding: 18px;
  }

  .booking-modal-footer div {
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Case-study refinement: calmer, more editorial scale */
.cs-page {
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.032) 1px, transparent 1px),
    var(--mec-sand);
  background-size: 58px 58px;
}

.cs-page .case-study-nav {
  margin-top: 28px;
  margin-bottom: 24px;
}

.cs-hero,
.cs-tabs,
.cs-panel,
.cs-brand-note,
.cs-cta-section {
  width: min(calc(100% - 72px), 1140px);
}

.cs-hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.86fr);
  gap: 18px;
  padding: 34px 0 24px;
}

.cs-hero-copy {
  min-height: 430px;
  border-width: 1px;
  padding: clamp(30px, 4vw, 48px);
  box-shadow: 14px 14px 0 rgba(10, 10, 10, 0.035);
}

.cs-hero h1 {
  max-width: 640px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.96;
}

.cs-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: clamp(15px, 1.25vw, 18px);
  font-weight: 700;
}

.cs-hero-media {
  gap: 10px;
}

.cs-hero-media img {
  min-height: 430px;
  border-width: 1px;
  box-shadow: 14px 14px 0 rgba(10, 10, 10, 0.045);
}

.cs-hero-media img:first-child {
  margin-top: 28px;
  height: calc(100% - 28px);
}

.cs-tabs {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  padding: 10px 0;
  top: 8px;
  background: rgba(232, 228, 218, 0.86);
}

.cs-tab-btn {
  min-height: 76px;
  border-width: 1px;
  padding: 13px 12px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.03) 1px, transparent 1px),
    rgba(245, 242, 236, 0.88);
  background-size: 22px 22px;
}

.cs-tab-btn span {
  font-size: 9px;
  letter-spacing: 0.08em;
}

.cs-tab-btn strong {
  margin-top: 7px;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.cs-tab-btn:hover,
.cs-tab-btn.is-active {
  box-shadow: 5px 5px 0 rgba(10, 10, 10, 0.08);
  transform: translateY(-2px);
}

.cs-panel {
  padding: 18px 0 54px;
}

.cs-verdict {
  gap: 10px;
}

.cs-verdict-stat,
.cs-story-card,
.cs-diagnosis,
.cs-strategy-block,
.cs-quote-block,
.cs-results,
.cs-timeline,
.cs-team,
.cs-brand-note,
.cs-cta-section {
  border-width: 1px;
  box-shadow: 12px 12px 0 rgba(10, 10, 10, 0.035);
}

.cs-verdict-stat {
  min-height: 190px;
  padding: 22px;
}

.cs-verdict-stat strong {
  font-size: clamp(42px, 4vw, 62px);
  letter-spacing: -0.055em;
}

.cs-verdict-stat p,
.result-card p {
  font-size: 10px;
}

.cs-verdict-stat > span,
.result-card > span {
  font-size: 13px;
  font-weight: 800;
}

.cs-two-col {
  gap: 12px;
  margin-top: 12px;
}

.cs-story-card,
.cs-diagnosis,
.cs-strategy-block,
.cs-results,
.cs-timeline,
.cs-team,
.cs-brand-note,
.cs-cta-section {
  padding: clamp(26px, 3.2vw, 42px);
}

.cs-story-card h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.98;
}

.cs-story-card p:not(.eyebrow),
.cs-diagnosis li,
.cs-quote-block p,
.cs-cta-section p {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.52;
}

.cs-diagnosis h3 {
  font-size: clamp(25px, 2.6vw, 36px);
  line-height: 1.02;
}

.cs-diagnosis ol {
  gap: 10px;
  margin-top: 20px;
}

.cs-diagnosis li {
  min-height: 72px;
  padding: 15px 15px 15px 58px;
}

.cs-diagnosis li::before {
  top: 15px;
  left: 15px;
  width: 30px;
  height: 30px;
  font-size: 10px;
}

.cs-visual-strip {
  gap: 10px;
  margin-top: 12px;
}

.cs-visual-strip img {
  height: auto;
  aspect-ratio: 4 / 3;
  border-width: 1px;
  filter: saturate(0.92) contrast(1.02);
}

.cs-strategy-block,
.cs-results,
.cs-timeline,
.cs-team,
.cs-brand-note,
.cs-cta-section {
  margin-top: 12px;
}

.cs-strategy-block h3,
.cs-results h3,
.cs-timeline h3,
.cs-team h3,
.cs-cta-section h2 {
  max-width: 760px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 0.98;
}

.cs-pillar-grid,
.results-grid,
.timeline-track,
.team-chips {
  margin-top: 24px;
}

.cs-pillar-grid {
  gap: 10px;
}

.cs-pillar-grid .strategy-pillar {
  min-height: 176px;
  border-width: 1px;
  padding: 22px;
}

.cs-pillar-grid .strategy-pillar:hover {
  box-shadow: 6px 6px 0 rgba(10, 10, 10, 0.075);
  transform: translateY(-3px);
}

.cs-pillar-grid .pillar-num {
  font-size: 10px;
}

.cs-pillar-grid .pillar-title {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.08;
}

.cs-quote-block {
  padding: clamp(30px, 4vw, 52px);
  box-shadow: 12px 12px 0 rgba(206, 170, 114, 0.25);
}

.cs-quote-block::before {
  inset: 12px;
}

.cs-quote-block p {
  max-width: 840px;
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.04;
}

.cs-quote-block cite {
  margin-top: 18px;
  font-size: 11px;
}

.results-grid {
  gap: 10px;
}

.result-card {
  min-height: 210px;
  border-width: 1px;
  padding: 20px;
}

.result-card strong {
  margin: 20px 0;
  font-size: clamp(38px, 4vw, 56px);
}

.timeline-track {
  gap: 10px;
}

.timeline-node {
  min-height: 220px;
  border-width: 1px;
  padding: 20px;
}

.timeline-node span {
  min-width: 68px;
  min-height: 30px;
  font-size: 10px;
}

.timeline-node strong {
  margin-top: 22px;
  font-size: 23px;
}

.timeline-node p {
  margin-top: 14px;
  font-size: 13px;
  font-weight: 760;
}

.team-chips {
  gap: 8px;
}

.team-chips span {
  padding: 8px 12px;
  font-size: 12px;
  background: rgba(245, 242, 236, 0.78);
}

.cs-cta-section {
  margin-bottom: 42px;
}

@media (max-width: 1180px) {
  .cs-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1024px) {
  .cs-hero,
  .cs-two-col {
    grid-template-columns: 1fr;
  }

  .cs-hero-copy,
  .cs-hero-media img {
    min-height: 380px;
  }

  .cs-verdict,
  .cs-pillar-grid,
  .results-grid,
  .timeline-track {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .cs-hero,
  .cs-tabs,
  .cs-panel,
  .cs-brand-note,
  .cs-cta-section {
    width: calc(100% - 28px);
  }

  .cs-hero {
    padding-top: 18px;
  }

  .cs-hero-copy {
    min-height: auto;
    padding: 24px;
  }

  .cs-hero h1 {
    font-size: clamp(38px, 11vw, 56px);
    line-height: 0.98;
  }

  .cs-hero-copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .cs-hero-media {
    grid-template-columns: 1fr 1fr;
  }

  .cs-hero-media img,
  .cs-hero-media img:first-child {
    height: 260px;
    min-height: 0;
    margin-top: 0;
  }

  .cs-tabs {
    grid-template-columns: 1fr 1fr;
    position: static;
  }

  .cs-tab-btn {
    min-height: 70px;
    padding: 11px;
  }

  .cs-tab-btn strong {
    font-size: 15px;
  }

  .cs-verdict,
  .cs-visual-strip,
  .cs-pillar-grid,
  .results-grid,
  .timeline-track {
    grid-template-columns: 1fr;
  }

  .cs-verdict-stat,
  .result-card,
  .timeline-node {
    min-height: 174px;
  }

  .cs-verdict-stat strong {
    font-size: clamp(42px, 13vw, 56px);
  }

  .cs-story-card h2,
  .cs-strategy-block h3,
  .cs-results h3,
  .cs-timeline h3,
  .cs-team h3,
  .cs-cta-section h2 {
    font-size: clamp(30px, 9vw, 44px);
  }

  .cs-story-card,
  .cs-diagnosis,
  .cs-strategy-block,
  .cs-results,
  .cs-timeline,
  .cs-team,
  .cs-brand-note,
  .cs-cta-section {
    padding: 22px;
  }

  .cs-story-card p:not(.eyebrow),
  .cs-diagnosis li,
  .cs-cta-section p {
    font-size: 14px;
  }

  .cs-diagnosis li {
    padding: 56px 15px 15px;
  }

  .cs-visual-strip img {
    height: auto;
  }

  .cs-quote-block p {
    font-size: clamp(24px, 8vw, 34px);
  }
}

/* Distinct client wordmarks for the moving brand strip */
.logo-strip .client-logo {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.16em;
  width: clamp(220px, 22vw, 300px);
  min-width: clamp(220px, 22vw, 300px);
  padding: 0 28px;
  color: var(--mec-charcoal);
  text-transform: none;
  letter-spacing: 0;
  transform: translateZ(0);
}

.logo-strip .client-logo b,
.logo-strip .client-logo i {
  display: inline-block;
  font-style: normal;
  line-height: 0.95;
}

.logo-mansion {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.5vw, 34px);
  font-weight: 600;
}

.logo-mansion i {
  color: var(--mec-gold);
  font-style: italic;
  font-weight: 600;
  transform: translateY(-0.02em);
}

.logo-loom {
  font-family: var(--mec-font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 900;
  letter-spacing: 0.12em;
}

.logo-loom i {
  padding: 0.16em 0.22em;
  border: 1px solid currentColor;
  letter-spacing: 0.08em;
}

.logo-altelier {
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-family: var(--mec-font-display);
  font-size: clamp(24px, 2.3vw, 32px);
  font-weight: 800;
}

.logo-altelier i {
  color: var(--mec-warm-gray);
  font-size: 0.34em;
  font-weight: 900;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.logo-alliance {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.3vw, 32px);
}

.logo-alliance i {
  font-style: italic;
  color: var(--mec-warm-gray);
}

.logo-alliance b {
  padding-left: 0.08em;
  font-family: var(--mec-font-display);
  font-weight: 900;
}

.logo-cushman {
  font-family: var(--mec-font-display);
  font-size: clamp(22px, 2.3vw, 31px);
  font-weight: 850;
}

.logo-cushman i {
  color: var(--mec-gold);
  font-size: 0.78em;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.logo-cox {
  gap: 0.28em;
  font-family: var(--mec-font-display);
  font-size: clamp(22px, 2.3vw, 32px);
  font-weight: 900;
}

.logo-cox i {
  position: relative;
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  font-weight: 600;
}

.logo-cox i::after {
  content: "";
  position: absolute;
  right: -0.16em;
  bottom: -0.12em;
  left: 0;
  height: 2px;
  background: var(--mec-gold);
}

.logo-anthologie {
  flex-direction: column;
  align-items: center;
  gap: 0.08em;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-style: italic;
}

.logo-anthologie i {
  font-family: var(--mec-font-display);
  color: var(--mec-warm-gray);
  font-size: 0.34em;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

@media (max-width: 700px) {
  .logo-strip .client-logo {
    width: 190px;
    min-width: 190px;
    padding: 0 18px;
  }
}

/* Case preview polish */
.case-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(98px, 0.36fr);
  align-items: stretch;
}

.image-card {
  padding: 24px;
  overflow: visible;
  background: var(--mec-off-white);
  color: var(--ink);
}

.image-card img {
  height: 180px;
  margin-bottom: 22px;
  border: 1px solid rgba(10, 10, 10, 0.26);
  object-fit: cover;
}

.image-card div {
  padding: 0;
}

.image-card .case-meta b {
  border-color: rgba(10, 10, 10, 0.16);
  color: var(--mec-warm-gray);
}

.image-card p {
  padding: 0;
  color: var(--ink);
}

.image-card .case-elements {
  margin: 18px 0 0;
}

.image-card .case-elements span {
  background: rgba(232, 228, 218, 0.55);
  color: var(--mec-charcoal);
}

.image-card .case-elements b {
  color: var(--ink);
}

.image-card strong {
  margin: 24px 0 0;
  background: var(--ink);
  color: var(--mec-white);
}

.image-card .case-read-more {
  margin: 16px 0 0;
  color: var(--ink);
}

.case-swipe-card {
  position: relative;
  display: grid;
  min-height: 330px;
  align-content: space-between;
  overflow: hidden;
  border: 2px solid var(--ink);
  padding: 22px 14px;
  background: var(--mec-black);
  color: var(--mec-off-white);
  isolation: isolate;
}

.case-swipe-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(206, 170, 114, 0.42);
  pointer-events: none;
}

.case-swipe-card span {
  writing-mode: vertical-rl;
  justify-self: center;
  color: var(--mec-gold);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.case-swipe-card strong {
  writing-mode: vertical-rl;
  justify-self: center;
  font-family: var(--mec-font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: none;
}

.case-swipe-card i {
  position: relative;
  display: block;
  justify-self: center;
  width: 42px;
  height: 78px;
  border: 1px solid rgba(245, 242, 236, 0.66);
  border-radius: 999px;
}

.case-swipe-card i::after {
  content: "->";
  position: absolute;
  left: 50%;
  bottom: -30px;
  color: var(--mec-gold);
  font-style: normal;
  font-weight: 900;
  transform: translateX(-50%) rotate(90deg);
}

.case-swipe-card i b {
  position: absolute;
  top: 10px;
  left: 50%;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mec-gold);
  transform: translateX(-50%);
}

@media (prefers-reduced-motion: no-preference) {
  .case-swipe-card i b {
    animation: swipeDot 1.55s ease-in-out infinite;
  }

  .case-swipe-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(120deg, transparent 0 38%, rgba(206, 170, 114, 0.16) 48%, transparent 58% 100%);
    animation: swipeSheen 2.8s ease-in-out infinite;
  }

  @keyframes swipeDot {
    0%,
    100% {
      top: 10px;
      opacity: 0.5;
    }
    48% {
      top: 54px;
      opacity: 1;
    }
  }

  @keyframes swipeSheen {
    0% {
      transform: translateX(-100%);
    }
    55%,
    100% {
      transform: translateX(100%);
    }
  }
}

@media (max-width: 1100px) {
  .case-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .case-swipe-card {
    grid-column: 1 / -1;
    min-height: 92px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
  }

  .case-swipe-card span,
  .case-swipe-card strong {
    writing-mode: horizontal-tb;
    justify-self: start;
  }

  .case-swipe-card i {
    width: 78px;
    height: 42px;
  }

  .case-swipe-card i::after {
    right: -34px;
    bottom: auto;
    left: auto;
    top: 50%;
    transform: translateY(-50%);
  }

  .case-swipe-card i b {
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
  }

  @media (prefers-reduced-motion: no-preference) {
    .case-swipe-card i b {
      animation-name: swipeDotHorizontal;
    }

    @keyframes swipeDotHorizontal {
      0%,
      100% {
        left: 10px;
        opacity: 0.5;
      }
      48% {
        left: 56px;
        opacity: 1;
      }
    }
  }
}

@media (max-width: 700px) {
  .case-grid {
    grid-template-columns: 1fr;
  }
}

/* Refined call-to-action motion and footer lockup */
.hero-actions .button.coral,
.revenue-leaks .button.coral,
.audit-deliverables > .button.coral,
.case-read-more,
.engagement-grid a {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  gap: 10px;
  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.hero-actions .button.coral::after,
.revenue-leaks .button.coral::after,
.audit-deliverables > .button.coral::after,
.case-read-more::after,
.engagement-grid a::after {
  content: "->";
  display: inline-block;
  font-size: 0.9em;
  font-weight: 900;
  line-height: 1;
  transition: transform 220ms ease;
}

.hero-actions .button.coral::before,
.revenue-leaks .button.coral::before,
.audit-deliverables > .button.coral::before,
.case-read-more::before,
.engagement-grid a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    110deg,
    transparent 0 38%,
    rgba(206, 170, 114, 0.34) 48%,
    transparent 58% 100%
  );
  transform: translateX(-125%);
  pointer-events: none;
}

.revenue-leaks .button.coral {
  min-height: 52px;
  margin-top: 28px;
  padding: 0 24px;
  border-color: var(--mec-gold);
  background: var(--mec-gold);
  color: var(--mec-black);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.2);
}

.hero-actions .button.coral {
  border-color: var(--mec-black);
  background: var(--mec-black);
  box-shadow: 6px 6px 0 var(--mec-gold);
}

.audit-deliverables > .button.coral {
  min-height: 52px;
  margin-top: 30px;
  padding: 0 24px;
  border-color: var(--mec-black);
  background: var(--mec-black);
  box-shadow: 8px 8px 0 var(--mec-gold);
}

.case-read-more,
.engagement-grid a {
  align-self: start;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  background: transparent;
  line-height: 1.15;
  text-align: center;
}

.engagement-grid article.featured a {
  border-color: rgba(245, 242, 236, 0.78);
}

.hero-actions .button.coral:hover,
.hero-actions .button.coral:focus-visible,
.revenue-leaks .button.coral:hover,
.revenue-leaks .button.coral:focus-visible,
.audit-deliverables > .button.coral:hover,
.audit-deliverables > .button.coral:focus-visible,
.case-read-more:hover,
.case-read-more:focus-visible,
.engagement-grid a:hover,
.engagement-grid a:focus-visible {
  transform: translateY(-3px);
}

.revenue-leaks .button.coral:hover,
.revenue-leaks .button.coral:focus-visible {
  box-shadow: 12px 12px 0 rgba(0, 0, 0, 0.28);
}

.hero-actions .button.coral:hover,
.hero-actions .button.coral:focus-visible {
  box-shadow: 10px 10px 0 var(--mec-gold);
}

.audit-deliverables > .button.coral:hover,
.audit-deliverables > .button.coral:focus-visible {
  box-shadow: 12px 12px 0 var(--mec-gold);
}

.case-read-more:hover,
.case-read-more:focus-visible,
.engagement-grid article:not(.featured) a:hover,
.engagement-grid article:not(.featured) a:focus-visible {
  background: var(--mec-black);
  color: var(--mec-off-white);
  box-shadow: 7px 7px 0 var(--mec-gold);
}

.engagement-grid article.featured a:hover,
.engagement-grid article.featured a:focus-visible {
  background: var(--mec-gold);
  border-color: var(--mec-gold);
  color: var(--mec-black);
  box-shadow: 7px 7px 0 rgba(245, 242, 236, 0.22);
}

.hero-actions .button.coral:hover::after,
.hero-actions .button.coral:focus-visible::after,
.revenue-leaks .button.coral:hover::after,
.revenue-leaks .button.coral:focus-visible::after,
.audit-deliverables > .button.coral:hover::after,
.audit-deliverables > .button.coral:focus-visible::after,
.case-read-more:hover::after,
.case-read-more:focus-visible::after,
.engagement-grid a:hover::after,
.engagement-grid a:focus-visible::after {
  transform: translateX(4px);
}

.footer-brand {
  grid-template-columns: minmax(220px, 270px) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 76px);
}

.footer-brand img {
  width: 250px;
  max-width: 100%;
  height: auto;
  max-height: none;
  aspect-ratio: 830 / 292;
  object-fit: contain;
  object-position: left center;
}

.footer-newsletter {
  width: 100%;
  max-width: 650px;
  justify-self: end;
}

@media (prefers-reduced-motion: no-preference) {
  .hero-actions .button.coral::before,
  .revenue-leaks .button.coral::before,
  .audit-deliverables > .button.coral::before,
  .case-read-more::before,
  .engagement-grid a::before {
    animation: aurelisCtaSheen 6.5s ease-in-out infinite;
  }

  .case-card:nth-child(2) .case-read-more::before,
  .engagement-grid article:nth-child(2) a::before {
    animation-delay: 900ms;
  }

  .case-card:nth-child(3) .case-read-more::before,
  .engagement-grid article:nth-child(3) a::before {
    animation-delay: 1800ms;
  }

  @keyframes aurelisCtaSheen {
    0%,
    68% {
      transform: translateX(-125%);
    }
    84%,
    100% {
      transform: translateX(125%);
    }
  }
}

@media (max-width: 1024px) {
  .footer-brand {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-newsletter {
    justify-self: stretch;
    max-width: none;
  }
}

@media (max-width: 700px) {
  .revenue-leaks .button.coral,
  .audit-deliverables > .button.coral {
    width: 100%;
  }

  .footer-brand img {
    width: 200px;
    justify-self: start;
  }
}

/* Case-study hero: layered 9:16 editorial artwork */
.cs-hero {
  grid-template-columns: minmax(0, 1fr) minmax(370px, 0.78fr);
  gap: clamp(28px, 3.4vw, 46px);
  align-items: center;
}

.cs-hero-media {
  position: relative;
  display: block;
  min-height: 560px;
  isolation: isolate;
}

.cs-hero-media::before {
  content: "";
  position: absolute;
  inset: 58px 18px 22px 34px;
  z-index: -1;
  border: 1px solid rgba(10, 10, 10, 0.14);
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    rgba(206, 170, 114, 0.24);
  background-size: 28px 28px;
  box-shadow: 14px 14px 0 rgba(10, 10, 10, 0.045);
}

.cs-hero-media img,
.cs-hero-media img:first-child {
  position: absolute;
  min-height: 0;
  height: auto;
  margin: 0;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  object-position: center;
  border: 1px solid var(--ink);
  background: var(--mec-off-white);
  box-shadow: 12px 16px 32px rgba(10, 10, 10, 0.12);
}

.cs-hero-media img:first-child {
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 52%;
  transform: rotate(-0.8deg);
}

.cs-hero-media img:last-child {
  top: 0;
  right: 0;
  z-index: 1;
  width: 60%;
  transform: rotate(0.8deg);
}

@media (max-width: 1024px) {
  .cs-hero {
    grid-template-columns: 1fr;
    gap: 28px;
    align-items: start;
  }

  .cs-hero-media {
    width: min(100%, 560px);
    min-height: 600px;
    margin: 4px auto 0;
  }

  .cs-hero-media img,
  .cs-hero-media img:first-child {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .cs-hero-media {
    width: 100%;
    min-height: 430px;
    margin-top: 4px;
  }

  .cs-hero-media::before {
    inset: 46px 12px 18px 20px;
    background-size: 22px 22px;
    box-shadow: 9px 9px 0 rgba(10, 10, 10, 0.045);
  }

  .cs-hero-media img,
  .cs-hero-media img:first-child {
    height: auto;
    margin: 0;
  }

  .cs-hero-media img:first-child {
    left: 2px;
    width: 48%;
    transform: rotate(-0.5deg);
  }

  .cs-hero-media img:last-child {
    right: 2px;
    width: 55%;
    transform: rotate(0.5deg);
  }
}

@media (max-width: 480px) {
  .cs-hero-media {
    min-height: 390px;
  }
}

/* Editorial performance ledger */
.cs-verdict,
.results-grid {
  counter-reset: aurelis-metric;
  gap: 10px;
  align-items: stretch;
}

.cs-verdict-stat,
.result-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  min-height: 238px;
  overflow: hidden;
  border: 1px solid rgba(10, 10, 10, 0.24);
  padding: 22px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.035) 1px, transparent 1px),
    var(--mec-off-white);
  background-size: 26px 26px;
  box-shadow: 8px 8px 0 rgba(10, 10, 10, 0.055);
  counter-increment: aurelis-metric;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.cs-verdict-stat::before,
.result-card::before {
  content: "0" counter(aurelis-metric);
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(10, 10, 10, 0.2);
  font-family: "JetBrains Mono", monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.cs-verdict-stat::after,
.result-card::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: var(--mec-gold);
  transform: scaleX(0.28);
  transform-origin: left;
  transition: transform 320ms ease;
}

.cs-verdict-stat:nth-child(2),
.result-card:nth-child(2) {
  background:
    linear-gradient(rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.04) 1px, transparent 1px),
    var(--mec-sand);
  background-size: 26px 26px;
}

.cs-verdict-stat:nth-child(3),
.result-card:nth-child(3) {
  border-color: var(--mec-black);
  background:
    linear-gradient(rgba(245, 242, 236, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 242, 236, 0.05) 1px, transparent 1px),
    var(--mec-black);
  background-size: 26px 26px;
  color: var(--mec-off-white);
}

.cs-verdict-stat:nth-child(4),
.result-card:nth-child(4),
.result-card.gold-bg {
  background:
    linear-gradient(rgba(10, 10, 10, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.05) 1px, transparent 1px),
    var(--mec-gold);
  background-size: 26px 26px;
}

.cs-verdict-stat > p,
.result-card > p {
  position: relative;
  z-index: 1;
  width: fit-content;
  margin: 0;
  padding: 6px 9px;
  border: 1px solid rgba(10, 10, 10, 0.2);
  background: rgba(245, 242, 236, 0.62);
  color: var(--mec-charcoal);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.cs-verdict-stat > strong,
.result-card > strong {
  align-self: center;
  margin: 24px 0 18px;
  font-family: var(--mec-font-display);
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 800;
  letter-spacing: -0.065em;
  line-height: 0.88;
}

.cs-verdict-stat > span,
.result-card > span {
  align-self: end;
  min-height: 48px;
  padding-top: 13px;
  border-top: 1px solid rgba(10, 10, 10, 0.18);
  color: var(--mec-charcoal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.35;
}

.cs-verdict-stat:nth-child(3)::before,
.result-card:nth-child(3)::before {
  color: rgba(245, 242, 236, 0.28);
}

.cs-verdict-stat:nth-child(3) > p,
.result-card:nth-child(3) > p {
  border-color: rgba(245, 242, 236, 0.28);
  background: rgba(245, 242, 236, 0.08);
  color: var(--mec-gold);
}

.cs-verdict-stat:nth-child(3) > span,
.result-card:nth-child(3) > span {
  border-top-color: rgba(245, 242, 236, 0.2);
  color: rgba(245, 242, 236, 0.78);
}

.cs-verdict-stat:hover,
.result-card:hover {
  border-color: var(--mec-black);
  box-shadow: 11px 11px 0 rgba(10, 10, 10, 0.1);
  transform: translateY(-4px);
}

.cs-verdict-stat:hover::after,
.result-card:hover::after {
  transform: scaleX(1);
}

/* Mobile-only route to the dedicated case-study page */
.mobile-case-entry {
  display: none;
}

@media (max-width: 700px) {
  .mobile-case-entry {
    display: block;
    padding: 0 22px 30px;
    background: var(--mec-white);
  }

  .mobile-case-entry a {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
    min-height: 104px;
    padding: 16px;
    border: 1px solid var(--mec-black);
    background:
      linear-gradient(rgba(245, 242, 236, 0.07) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245, 242, 236, 0.07) 1px, transparent 1px),
      var(--mec-black);
    background-size: 22px 22px;
    color: var(--mec-off-white);
    box-shadow: 8px 8px 0 var(--mec-gold);
    transition:
      transform 220ms ease,
      box-shadow 220ms ease;
  }

  .mobile-case-index {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(245, 242, 236, 0.42);
    color: var(--mec-gold);
    font-family: "JetBrains Mono", monospace;
    font-size: 13px;
    font-weight: 900;
  }

  .mobile-case-copy {
    display: grid;
    gap: 4px;
  }

  .mobile-case-copy small {
    color: var(--mec-gold);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .mobile-case-copy strong {
    font-family: var(--mec-font-display);
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.05;
  }

  .mobile-case-entry i {
    color: var(--mec-gold);
    font-size: 22px;
    font-style: normal;
    font-weight: 900;
    transition: transform 220ms ease;
  }

  .mobile-case-entry a:hover,
  .mobile-case-entry a:focus-visible {
    box-shadow: 12px 12px 0 var(--mec-gold);
    transform: translateY(-3px);
  }

  .mobile-case-entry a:hover i,
  .mobile-case-entry a:focus-visible i {
    transform: translateX(4px);
  }

  .cs-verdict-stat,
  .result-card {
    min-height: 212px;
    padding: 20px;
  }

  .cs-verdict-stat > strong,
  .result-card > strong {
    font-size: clamp(46px, 15vw, 62px);
  }
}
