/* ============================================================
   GreyRadius Consulting — Custom Stylesheet
   WordPress migration: use these BEM classes directly
   ============================================================ */

/* ---- CSS Custom Properties (Design Tokens) ---- */
:root {
  --color-navy-deep:    #0F1F3F;
  --color-navy:         #1F3864;
  --color-navy-mid:     #2D4A7C;
  --color-steel-blue:   #5B7CA8;
  --color-orange:       #E8693A;
  --color-orange-soft:  #FDEEE7;
  --color-white:        #FFFFFF;
  --color-off-white:    #F8F9FB;
  --color-text-dark:    #0F1F3F;
  --color-text-light:   #FFFFFF;
  --color-text-muted:   #5B6E8C;
  --color-border:       #E5EAF1;

  --font-display:   'Montserrat', system-ui, sans-serif;
  --font-heading:   'Montserrat', system-ui, sans-serif;
  --font-body:      'Montserrat', system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', monospace;

  --text-hero:      clamp(2.25rem, 4.5vw, 3.75rem);
  --text-h1:        clamp(2rem, 3.5vw, 3rem);
  --text-h2:        clamp(1.5rem, 2.5vw, 2.25rem);
  --text-h3:        1.5rem;
  --text-h4:        1.25rem;
  --text-body:      1.0625rem;
  --text-small:     0.9375rem;
  --text-caption:   0.8125rem;

  --max-width:         1280px;
  --max-width-narrow:  960px;
  --padding-section-y: clamp(2.5rem, 5vw, 5rem);
  --padding-page-x:    clamp(1.5rem, 5vw, 4rem);
  --gap-grid:          clamp(1.5rem, 3vw, 3rem);
  --radius-sm:         6px;
  --radius-md:         12px;
  --radius-lg:         24px;
  --shadow-card:       0 4px 16px rgba(15, 31, 63, 0.08);
  --shadow-card-hover: 0 8px 32px rgba(15, 31, 63, 0.16);
  --transition-base:   all 0.2s ease;
  --transition-med:    all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ---- Base Reset & Typography ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-body);
  line-height: 1.65;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-base);
}

ul, ol { list-style: none; }

/* ---- Skip to Content ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-orange);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---- Layout Utilities ---- */
.container {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--padding-page-x);
}
.container--narrow {
  max-width: var(--max-width-narrow);
  margin-inline: auto;
  padding-inline: var(--padding-page-x);
}
.section-padding {
  padding-block: var(--padding-section-y);
}

/* ---- Section Background Variants ---- */
.bg-navy-deep { background-color: var(--color-navy-deep); color: var(--color-text-light); }
.bg-navy      { background-color: var(--color-navy); color: var(--color-text-light); }
.bg-white     { background-color: var(--color-white); color: var(--color-text-dark); }
.bg-off-white { background-color: var(--color-off-white); color: var(--color-text-dark); }

/* ---- Typography ---- */
h1, .h1 {
  font-family: var(--font-display);
  font-size: var(--text-h1);
  font-weight: 800;
  line-height: 1.15;
  color: inherit;
}
h2, .h2 {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: 700;
  line-height: 1.2;
  color: inherit;
}
h3, .h3 {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: 600;
  line-height: 1.3;
  color: inherit;
}
h4, .h4 {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
}
.text-hero {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
}
.text-caption {
  font-size: var(--text-caption);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.text-muted { color: var(--color-text-muted); }
.text-muted-light { color: rgba(255,255,255,0.65); }
.text-orange { color: var(--color-orange); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition-base);
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
}
.btn-primary {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}
.btn-primary:hover {
  background: #d44038;
  border-color: #d44038;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232, 105, 58, 0.35);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: #fff;
}
.btn-outline-navy {
  background: transparent;
  color: var(--color-navy);
  border-color: var(--color-navy);
}
.btn-outline-navy:hover {
  background: var(--color-navy);
  color: #fff;
}
.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.9375rem;
}
.btn-lg {
  padding: 1.125rem 2.25rem;
  font-size: 1.0625rem;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-weight: 600;
  color: var(--color-orange);
  transition: var(--transition-base);
}
.link-arrow:hover { gap: 0.625rem; }
.link-arrow-white {
  color: rgba(255,255,255,0.85);
}
.link-arrow-white:hover { color: #fff; }

/* ============================================================
   TOP NAVIGATION
   ============================================================ */
.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem var(--padding-page-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.top-nav--transparent {
  background: transparent;
}
.top-nav--solid {
  background: #fff;
  box-shadow: 0 2px 24px rgba(15, 31, 63, 0.1);
  padding-block: 0.875rem;
}
.top-nav--solid .nav-link { color: var(--color-navy); }
.top-nav--solid .nav-logo--light { display: none; }
.top-nav--solid .nav-logo--dark { display: block; }
.top-nav--transparent .nav-logo--light { display: block; }
.top-nav--transparent .nav-logo--dark { display: none; }

.nav-logo { height: 38px; width: auto; }
.nav-logo svg { height: 38px; }

.nav-center {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: var(--radius-sm);
  position: relative;
  cursor: pointer;
}
.nav-link:hover { color: #fff; background: rgba(255,255,255,0.1); }
.top-nav--solid .nav-link:hover { background: var(--color-off-white); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card-hover);
  padding: 0.625rem 0.5rem 0.5rem;
  padding-top: calc(0.5rem + 0.625rem);
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease 0.15s, visibility 0.2s ease 0.15s, transform 0.2s ease 0.15s;
  pointer-events: none;
}
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  transition-delay: 0s;
}
.nav-dropdown__item {
  display: block;
  padding: 0.625rem 0.875rem;
  color: var(--color-text-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
}
.nav-dropdown__item:hover {
  background: var(--color-off-white);
  color: var(--color-navy);
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition-base);
}
.top-nav--solid .nav-hamburger span { background: var(--color-navy); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: #fff;
  z-index: 1100;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 40px rgba(15, 31, 63, 0.2);
}
.mobile-menu--open { transform: translateX(0); }
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 31, 63, 0.5);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mobile-menu-overlay--visible { opacity: 1; visibility: visible; }

.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-navy);
  font-size: 1.5rem;
  line-height: 1;
  padding: 0.25rem;
}
.mobile-menu__nav { margin-top: 3rem; }
.mobile-menu__item {
  display: block;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-navy);
  font-weight: 600;
  font-size: 1.0625rem;
}
.mobile-menu__sub { padding: 0.375rem 0 0.375rem 1rem; }
.mobile-menu__sub-item {
  display: block;
  padding: 0.5rem 0;
  color: var(--color-text-muted);
  font-size: 0.9375rem;
}

/* ============================================================
   HERO BLOCK
   ============================================================ */
.hero-block {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--color-navy-deep);
}
.hero-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 74, 124, 0.4) 0%, transparent 70%),
              radial-gradient(ellipse at 80% 20%, rgba(31, 56, 100, 0.3) 0%, transparent 60%);
  pointer-events: none;
}
.hero-block__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap-grid);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.hero-block__eyebrow {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero-block__eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--color-orange);
}
.hero-block__heading {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 1.5rem;
}
.hero-block__heading em {
  font-style: normal;
  color: var(--color-orange);
}
.hero-block__sub {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero-block__ctas {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-block__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hero service page variant */
.hero-block--inner {
  min-height: 55vh;
  padding-top: 7rem;
  padding-bottom: 4rem;
}
.hero-block--inner .hero-block__grid {
  grid-template-columns: 1fr;
  max-width: var(--max-width-narrow);
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  padding-block: 2.5rem;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.trust-strip__caption {
  text-align: center;
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}
.trust-strip__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem 3rem;
}
.trust-strip__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-strip__logo img {
  height: 44px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.55);
  transition: filter 0.25s ease;
}
.trust-strip__logo img:hover {
  filter: grayscale(0%) opacity(1);
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stat-strip {
  background: var(--color-off-white);
  padding-block: 3.5rem;
}
.stat-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-strip__item {
  text-align: center;
  padding: 1.5rem 1rem;
  position: relative;
}
.stat-strip__item + .stat-strip__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--color-steel-blue);
  opacity: 0.3;
}
.stat-strip__number {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-strip__label {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   PILLAR BLOCK (3-col)
   ============================================================ */
.pillar-block {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}
.pillar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-med);
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.pillar-card__icon {
  width: 48px;
  height: 48px;
  background: var(--color-off-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-navy);
}
.pillar-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.75rem;
}
.pillar-card__body {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   OFFERING CARDS (Navy background)
   ============================================================ */
.offering-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}
.offering-card {
  background: var(--color-navy-mid);
  border: 1px solid rgba(91, 124, 168, 0.2);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition-med);
  display: flex;
  flex-direction: column;
}
.offering-card:hover {
  background: rgba(45, 74, 124, 0.9);
  border-color: rgba(232, 105, 58, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}
.offering-card__icon {
  width: 48px;
  height: 48px;
  color: var(--color-orange);
  margin-bottom: 1.25rem;
}
.offering-card__tag {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}
.offering-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.625rem;
}
.offering-card__tagline {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.6);
  font-style: italic;
  margin-bottom: 0.875rem;
}
.offering-card__desc {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.offering-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-orange);
  transition: var(--transition-base);
}
.offering-card:hover .offering-card__link { gap: 0.625rem; }

/* ============================================================
   METHOD FLOW (6-step horizontal)
   ============================================================ */
.method-flow {
  display: flex;
  align-items: flex-start;
  position: relative;
  gap: 0;
}
.method-flow::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-orange), var(--color-orange), transparent);
  opacity: 0;
  transition: opacity 0.8s 0.3s;
}
.method-flow.animated::before { opacity: 0.6; }
.method-step {
  flex: 1;
  text-align: center;
  padding: 0 0.75rem;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s, transform 0.5s;
}
.method-step.visible { opacity: 1; transform: translateY(0); }
.method-step__icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid rgba(91, 124, 168, 0.4);
  background: rgba(45, 74, 124, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-inline: auto;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.8);
  transition: var(--transition-med);
}
.method-step:hover .method-step__icon-wrap {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}
.method-step__name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.375rem;
}
.method-step__desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

/* ============================================================
   CASE STUDY CARDS
   ============================================================ */
.case-study-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
}
.case-study-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition-med);
}
.case-study-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.case-study-card__image {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--color-off-white);
}
.case-study-card__image svg {
  width: 100%;
  height: 100%;
}
.case-study-card__body { padding: 1.5rem; }
.case-study-card__tag {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--color-orange);
  margin-bottom: 0.625rem;
}
.case-study-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.875rem;
  line-height: 1.3;
}
.case-study-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.case-study-card__stat-chip {
  background: var(--color-off-white);
  color: var(--color-text-muted);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.25rem 0.625rem;
  border-radius: 100px;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */
.pull-quote {
  text-align: center;
  max-width: 760px;
  margin-inline: auto;
  padding: 3rem 2rem;
}
.pull-quote__text {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-size: clamp(1.375rem, 2.5vw, 1.875rem);
  line-height: 1.5;
  color: inherit;
  margin-bottom: 1rem;
}
.pull-quote__text::before { content: '\201C'; }
.pull-quote__text::after  { content: '\201D'; }
.pull-quote__attr {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-orange);
  letter-spacing: 0.04em;
}

/* ============================================================
   CTA BLOCK (Full-width)
   ============================================================ */
.cta-block {
  background: var(--color-navy-deep);
  padding-block: var(--padding-section-y);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(45,74,124,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.cta-block__heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.cta-block__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  position: relative;
}
.cta-block__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading {
  margin-bottom: 3rem;
}
.section-heading--center { text-align: center; }
.section-heading__eyebrow {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.75rem;
  display: block;
}
.section-heading__title {
  margin-bottom: 0.875rem;
}
.section-heading__sub {
  color: var(--color-text-muted);
  font-size: 1.0625rem;
  max-width: 600px;
}
.section-heading--center .section-heading__sub {
  margin-inline: auto;
}
.bg-navy-deep .section-heading__sub,
.bg-navy .section-heading__sub {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   ABOUT STRIP (Two-column)
   ============================================================ */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.about-strip__body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.8);
}
.about-strip__body p + p { margin-top: 1.25rem; }
.about-strip__partners {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.partner-card {
  text-align: center;
}
.partner-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid rgba(91, 124, 168, 0.4);
  margin-inline: auto;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: var(--color-navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
}
.partner-name {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}
.partner-title {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.55);
}

/* ============================================================
   INDUSTRY TILES
   ============================================================ */
.industry-tiles {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.industry-tile {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #fff;
  padding: 1.25rem 1rem;
  text-align: center;
  transition: var(--transition-med);
  cursor: pointer;
  text-decoration: none;
}
.industry-tile:hover {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
}
.industry-tile:hover .industry-tile__icon { color: var(--color-orange); }
.industry-tile__icon { color: var(--color-navy); transition: var(--transition-base); }
.industry-tile__name {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-navy);
  transition: var(--transition-base);
  line-height: 1.3;
}
.industry-tile:hover .industry-tile__name { color: #fff; }

/* ============================================================
   INSIGHT CARD
   ============================================================ */
.insight-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: #fff;
  transition: var(--transition-med);
}
.insight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}
.insight-card__image {
  aspect-ratio: 16/9;
  background: var(--color-off-white);
  overflow: hidden;
}
.insight-card__body { padding: 1.5rem; }
.insight-card__tag {
  display: inline-block;
  background: var(--color-orange-soft);
  color: var(--color-orange);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border-radius: 4px;
  margin-bottom: 0.75rem;
}
.insight-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.625rem;
  line-height: 1.35;
}
.insight-card__excerpt {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.insight-card__byline {
  font-size: 0.8125rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-navy-deep);
  color: rgba(255,255,255,0.8);
  padding-block: 5rem 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-col__heading {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-col__list li + li { margin-top: 0.625rem; }
.footer-col__link {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.7);
  transition: var(--transition-base);
}
.footer-col__link:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom__copy {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.4);
}
.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom__link {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.4);
  transition: var(--transition-base);
}
.footer-bottom__link:hover { color: rgba(255,255,255,0.8); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: var(--max-width-narrow); margin-inline: auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.375rem 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.0625rem;
  color: var(--color-navy);
  gap: 1rem;
  list-style: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-navy);
  transition: transform 0.3s;
}
details[open] .faq-icon { transform: rotate(45deg); }
.faq-answer {
  padding-bottom: 1.375rem;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 680px;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.comparison-table-wrap { overflow-x: auto; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-small);
}
.comparison-table th,
.comparison-table td {
  padding: 1rem 1.25rem;
  text-align: center;
  border: 1px solid var(--color-border);
}
.comparison-table th {
  font-weight: 700;
  font-size: var(--text-caption);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-off-white);
  color: var(--color-text-muted);
}
.comparison-table th.highlight,
.comparison-table td.highlight {
  background: var(--color-navy);
  color: #fff;
  border-color: var(--color-navy);
}
.comparison-table th.highlight { font-size: 0.875rem; text-transform: none; letter-spacing: 0; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--color-navy); }
.comparison-table tr:hover td { background: var(--color-off-white); }
.comparison-table tr:hover td.highlight { background: var(--color-navy-mid); }
.check-icon { color: #22c55e; }
.cross-icon { color: #ef4444; }
.partial-icon { color: #f59e0b; }

/* ============================================================
   PRICING TABLE
   ============================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pricing-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem;
  background: #fff;
}
.pricing-card--featured {
  border-color: var(--color-navy);
  background: var(--color-navy);
  color: #fff;
  transform: scale(1.02);
  box-shadow: var(--shadow-card-hover);
}
.pricing-card__tier {
  font-size: var(--text-caption);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}
.pricing-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: inherit;
  margin-bottom: 0.25rem;
}
.pricing-card--featured .pricing-card__price { color: #fff; }
.pricing-card__duration {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}
.pricing-card--featured .pricing-card__duration { color: rgba(255,255,255,0.65); }
.pricing-card__features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-small);
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
.pricing-card--featured .pricing-card__features li { border-color: rgba(255,255,255,0.15); }

/* ============================================================
   PAGE BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--text-small);
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: rgba(255,255,255,0.9); }
.breadcrumb__sep { opacity: 0.4; }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  position: relative;
  padding-top: 3rem;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: var(--color-border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
  align-items: start;
  margin-bottom: 3rem;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-dot {
  grid-column: 2;
  grid-row: 1;
  width: 16px;
  height: 16px;
  background: var(--color-orange);
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px var(--color-orange);
  margin-top: 0.25rem;
}
.timeline-year {
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--color-navy);
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
.timeline-milestone {
  font-size: var(--text-small);
  color: var(--color-text-muted);
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.form-field { display: flex; flex-direction: column; gap: 0.5rem; }
.form-field--full { grid-column: 1 / -1; }
.form-label {
  font-size: var(--text-small);
  font-weight: 600;
  color: var(--color-navy);
}
.form-input,
.form-select,
.form-textarea {
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-small);
  color: var(--color-text-dark);
  background: #fff;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-navy);
  box-shadow: 0 0 0 3px rgba(31, 56, 100, 0.1);
}
.form-textarea { min-height: 140px; resize: vertical; }

/* ============================================================
   LOCATION CARDS
   ============================================================ */
.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.location-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  background: #fff;
  transition: var(--transition-med);
}
.location-card:hover {
  border-color: var(--color-navy);
  box-shadow: var(--shadow-card-hover);
}
.location-card__flag {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.location-card__city {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin-bottom: 0.25rem;
}
.location-card__country {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.location-card__detail {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .offering-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .industry-tiles { grid-template-columns: repeat(3, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .pricing-card--featured { transform: none; }
  .about-strip { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — Mobile (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .nav-center { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .hero-block__grid { grid-template-columns: 1fr; }
  .hero-block__visual { display: none; }

  .pillar-block { grid-template-columns: 1fr; }
  .offering-grid { grid-template-columns: 1fr; }
  .case-study-grid { grid-template-columns: 1fr; }
  .industry-tiles { grid-template-columns: repeat(2, 1fr); }
  .about-strip__partners { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stat-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__item + .stat-strip__item::before { display: none; }
  .insight-grid { grid-template-columns: 1fr !important; }
  .method-flow { flex-direction: column; align-items: center; gap: 1rem; }
  .method-flow::before { display: none; }
  .method-step { width: 100%; max-width: 320px; }
  .timeline::before { left: 1.5rem; }
  .timeline-item { grid-template-columns: auto 1fr; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-dot { grid-column: 1; grid-row: 1; }
  .timeline-spacer { display: none; }
  .cta-block__buttons { flex-direction: column; align-items: center; }
  .hero-block__ctas { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; }
  .footer-bottom__links { flex-wrap: wrap; gap: 1rem; }
}

/* ============================================================
   RESPONSIVE — Small Mobile (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  .industry-tiles { grid-template-columns: repeat(2, 1fr); }
  .stat-strip__number { font-size: 2.75rem; }
  .trust-strip__logos { gap: 1.5rem 2rem; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--color-border);
  margin-block: 3rem;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-6 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 3rem; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }

/* ============================================================
   ANIMATED RADIAL HERO GRAPHIC
   ============================================================ */
.radial-graphic {
  position: relative;
  width: 480px;
  height: 480px;
  max-width: 100%;
}
.radial-graphic svg { width: 100%; height: 100%; }

@keyframes orbitCW {
  from { transform: rotate(0deg) translateX(160px) rotate(0deg); }
  to   { transform: rotate(360deg) translateX(160px) rotate(-360deg); }
}
@keyframes orbitCCW {
  from { transform: rotate(0deg) translateX(110px) rotate(0deg); }
  to   { transform: rotate(-360deg) translateX(110px) rotate(360deg); }
}
@keyframes pulse {
  0%, 100% { r: 8; opacity: 0.8; }
  50%       { r: 12; opacity: 1; }
}
@keyframes pulseLarge {
  0%, 100% { r: 6; opacity: 0.6; }
  50%       { r: 9; opacity: 0.9; }
}
@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.radial-orbit-1 { animation: rotateSlow 18s linear infinite; transform-origin: center; }
.radial-orbit-2 { animation: rotateSlow 28s linear infinite reverse; transform-origin: center; }
.radial-dot { animation: pulse 3s ease-in-out infinite; }
.radial-dot:nth-child(2) { animation-delay: 0.5s; }
.radial-dot:nth-child(3) { animation-delay: 1s; }
.radial-dot:nth-child(4) { animation-delay: 1.5s; }
.radial-dot:nth-child(5) { animation-delay: 2s; }
.radial-dot:nth-child(6) { animation-delay: 2.5s; }
.radial-center-pulse {
  animation: pulse 4s ease-in-out infinite;
}

/* ============================================================
   LIGHT THEME OVERRIDES — Montserrat / White palette
   ============================================================ */

/* Hero - white background */
.hero-block {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
}
.hero-block::before {
  background: radial-gradient(ellipse at 20% 60%, rgba(232, 105, 58, 0.07) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(31, 56, 100, 0.04) 0%, transparent 60%);
}
.hero-block__heading { color: var(--color-navy-deep); }
.hero-block__sub { color: var(--color-text-muted); }
.hero-block__eyebrow { color: var(--color-orange); }
.hero-block__eyebrow::before { background: var(--color-orange); }

/* Offering cards light */
.offering-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
}
.offering-card:hover {
  background: var(--color-white);
  border-color: rgba(232, 105, 58, 0.35);
  box-shadow: 0 12px 32px rgba(15, 31, 63, 0.09);
  transform: translateY(-3px);
}
.offering-card__title  { color: var(--color-navy); }
.offering-card__tagline { color: var(--color-text-muted); }
.offering-card__desc   { color: var(--color-text-muted); }

/* Method steps light */
.method-step__name { color: var(--color-navy); }
.method-step__desc { color: var(--color-text-muted); }
.method-step__icon-wrap {
  border: 2px solid var(--color-border);
  background: var(--color-off-white);
  color: var(--color-navy);
}
.method-step:hover .method-step__icon-wrap {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #fff;
}
.method-flow::before {
  background: linear-gradient(90deg, transparent, var(--color-orange), var(--color-orange), transparent);
}

/* About strip light */
.about-strip__stat-number { color: var(--color-navy); }
.about-strip__stat-label  { color: var(--color-text-muted); }
.about-strip__partner     { color: var(--color-steel-blue); }

/* About strip light background overrides */
.about-strip__body p { color: var(--color-text-muted); }
.partner-name  { color: var(--color-navy); }
.partner-title { color: var(--color-text-muted); }
.partner-avatar circle, .partner-avatar ellipse {
  fill: rgba(31, 56, 100, 0.12);
}

/* Hero radial SVG adapted for light background */
.radial-graphic circle[r="220"] { fill: none; }
.radial-graphic circle[r="48"]  { fill: rgba(232, 105, 58, 0.08); stroke: rgba(232, 105, 58, 0.25); }
.radial-graphic circle[r="30"]  { fill: rgba(232, 105, 58, 0.14); }

/* stat-strip uses off-white bg already, keep navy numbers */
.stat-strip__number { color: var(--color-navy); }

/* trust-strip image logos */
.trust-strip__logo img { filter: grayscale(100%) opacity(0.55); }
.trust-strip__logo img:hover { filter: grayscale(0%) opacity(1); }

/* Section heading eyebrow color */
.section-heading__eyebrow { color: var(--color-orange); }

/* Fix hero height to be more compact on large viewports */
.hero-block { min-height: min(90vh, 700px); }

/* Ensure nav logo img has correct height */
.nav-logo img { height: 38px; width: auto; }

/* Strong nav logo fix */
.nav-logo { display: flex; align-items: center; }
.nav-logo img, .nav-logo svg { height: 38px !important; width: auto !important; display: block !important; }

/* ============================================================
   NAV — LIGHT THEME FIX
   The site is fully light-theme. The JS forces top-nav--transparent
   on page load (scrollY=0), making white nav-links invisible on
   white backgrounds. Override all nav link colours to navy.
   ============================================================ */
.nav-link { color: var(--color-navy) !important; }
.nav-link:hover { color: var(--color-navy) !important; background: rgba(15,31,63,0.07) !important; }
.top-nav--transparent {
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(15,31,63,0.07);
}
.top-nav--transparent .nav-logo--light { display: none !important; }
.top-nav--transparent .nav-logo--dark  { display: block !important; }
.top-nav--transparent .nav-hamburger span { background: var(--color-navy) !important; }

/* Advisor card title row */
.advisor-card__title {
  font-size: 0.7rem;
  color: var(--color-steel-blue);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.2rem;
}

/* transition-fast alias (used in team.html) */
:root { --transition-fast: all 0.15s ease; }

/* ============================================================
   ARTICLE / BLOG POST STYLES
   Used by insight article pages (resilient-supply-chain, etc.)
   ============================================================ */

/* Narrow container for article body text (max ~720px for readability) */
.container--article {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: var(--padding-page-x);
}

/* Article body — wraps all prose content */
.article-body {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--color-text-dark);
}

.article-body h2 {
  font-size: clamp(1.375rem, 2.2vw, 1.75rem);
  font-weight: 700;
  color: var(--color-navy);
  margin-top: 2.75rem;
  margin-bottom: 0.875rem;
  line-height: 1.25;
}

.article-body h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-navy);
  margin-top: 2rem;
  margin-bottom: 0.625rem;
  line-height: 1.3;
}

.article-body p {
  margin-bottom: 1.375rem;
}

.article-body strong {
  font-weight: 700;
  color: var(--color-navy);
}

.article-body a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: var(--color-navy);
}

/* Lead paragraph — larger intro text */
.article-lead {
  font-size: 1.1875rem;
  line-height: 1.7;
  color: var(--color-navy);
  font-weight: 500;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

/* Article lists — styled bullet and numbered lists */
.article-list {
  margin: 0 0 1.5rem 0;
  padding-left: 1.5rem;
}

.article-list li {
  margin-bottom: 0.625rem;
  line-height: 1.65;
}

.article-list li::marker {
  color: var(--color-orange);
}

/* Article pull quote */
.article-pullquote {
  border-left: 3px solid var(--color-orange);
  margin: 2.5rem 0;
  padding: 1.25rem 1.75rem;
  background: var(--color-off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.article-pullquote p {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.55;
  color: var(--color-navy);
  font-style: italic;
  margin-bottom: 0;
}

/* In-article CTA block */
.article-cta {
  background: var(--color-navy);
  color: var(--color-text-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin: 3rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.article-cta__text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.375rem;
}

.article-cta__text p {
  font-size: var(--text-small);
  color: rgba(255,255,255,0.75);
  margin-bottom: 0;
}

/* Author bio block */
.article-author {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--color-off-white);
  border-radius: var(--radius-lg);
  margin: 3rem 0;
}

.article-author__avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-steel-blue);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
}

.article-author__name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-navy);
  margin-bottom: 0.125rem;
}

.article-author__role {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}

.article-author__bio {
  font-size: var(--text-small);
  line-height: 1.65;
  color: var(--color-text-dark);
  margin-bottom: 0;
}

/* Related articles strip below an article */
.article-related {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-grid);
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .article-related {
    grid-template-columns: 1fr;
  }

  .article-cta {
    flex-direction: column;
    text-align: center;
  }

  .article-body h2 {
    font-size: 1.375rem;
  }
}

/* ============================================================
   BEFORE / AFTER FRAMEWORK  (homepage 1.5b)
   ============================================================ */
.ba-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 3rem;
}

.ba-row {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.ba-cell {
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.ba-cell--before {
  background: #f7f8fb;
  border-right: 1px solid var(--color-border);
}

.ba-cell--after {
  background: #fff;
}

.ba-cell__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.ba-cell--before .ba-cell__label { color: #9aa5b8; }
.ba-cell--after .ba-cell__label { color: var(--color-orange); }

.ba-cell__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-navy);
  line-height: 1.3;
  margin-bottom: 0;
}

.ba-cell__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.ba-cell__list li {
  font-size: var(--text-small);
  color: var(--color-text-muted);
  padding-left: 1.1em;
  position: relative;
  line-height: 1.5;
}

.ba-cell--before .ba-cell__list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: #9aa5b8;
}

.ba-cell--after .ba-cell__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-orange);
  font-size: 0.75em;
  top: 0.1em;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

@media (max-width: 700px) {
  .ba-row {
    grid-template-columns: 1fr;
  }
  .ba-arrow {
    display: none;
  }
  .ba-cell--before {
    border-right: none;
    border-bottom: 1px solid var(--color-border);
  }
}

/* ============================================================
   PRODUCT × GROWTH STAGE MATRIX  (homepage 1.8b)
   ============================================================ */
.pgmatrix {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 0;
  margin-top: 3rem;
  position: relative;
}

.pgmatrix__yaxis {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-around;
  padding-right: 0.5rem;
  padding-bottom: 4px;
  min-width: 0;
}

.pgmatrix__body {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.pgmatrix__xaxis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 4px;
  padding-left: 0;
}

.pgmatrix__xaxis span {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  text-align: center;
  padding: 0.5rem 0.25rem;
}

.pgmatrix__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}

.pgmatrix__cell {
  background: #f7f8fb;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: var(--transition-fast);
}

.pgmatrix__cell:hover {
  border-color: var(--color-orange);
  box-shadow: var(--shadow-card);
  transform: translateY(-2px);
}

.pgmatrix__cell--accent {
  background: #fff;
  border-color: rgba(232, 105, 58, 0.25);
  box-shadow: 0 0 0 1px rgba(232,105,58,0.1) inset;
}

.pgmatrix__cell-stage {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin: 0;
}

.pgmatrix__cell-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 0;
  line-height: 1.3;
}

.pgmatrix__cell-desc {
  font-size: 0.6875rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin: 0;
}

.pgmatrix__xaxis-label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-steel-blue);
  text-align: center;
  margin-top: 0.75rem;
}

.pgmatrix__yaxis span {
  font-size: 0.5625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-align: center;
}

.pgmatrix__yaxis-label {
  display: none;
}

@media (max-width: 700px) {
  .pgmatrix {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .pgmatrix__yaxis,
  .pgmatrix__yaxis-label { display: none; }
  .pgmatrix__grid { grid-template-columns: repeat(2,1fr); }
  .pgmatrix__xaxis { grid-template-columns: repeat(2,1fr); }
}

/* Case study card real-photo image variant */
.case-study-card__image--photo {
  height: 200px;
  overflow: hidden;
  background: #eef2f8;
  position: relative;
}
.case-study-card__image--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.case-study-card:hover .case-study-card__image--photo img {
  transform: scale(1.04);
}
.case-study-card__image--photo .cs-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15,31,63,0) 40%, rgba(15,31,63,0.45) 100%);
  pointer-events: none;
}
.case-study-card__image--photo .cs-photo-tag {
  position: absolute;
  bottom: 0.75rem;
  left: 0.875rem;
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.9);
  background: rgba(15,31,63,0.55);
  padding: 0.25rem 0.625rem;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* Footer logo — invert the dark PNG to white on the navy footer background */
.site-footer img[alt="GreyRadius Consulting"] {
  filter: brightness(0) invert(1);
}

/* ═══════════════════════════════════════════════════════════
   CASE STUDY NEW TEMPLATE COMPONENTS
   ═══════════════════════════════════════════════════════════ */

/* — Tag row ————————————————————————————————————————————————— */
.tag-row { display:flex; flex-wrap:wrap; gap:0.5rem; margin-bottom:1.25rem; }
.tag { display:inline-block; padding:0.25rem 0.75rem; border-radius:2rem; font-size:0.7rem; font-weight:700; letter-spacing:0.05em; text-transform:uppercase; }
.tag-service-primary  { background:rgba(232,105,58,0.18); color:#a84c24; border:1px solid rgba(232,105,58,0.3); }
.tag-service-secondary{ background:rgba(100,120,200,0.15); color:#2c4a9a; border:1px solid rgba(100,120,200,0.3); }
.tag-industry  { background:rgba(21,101,192,0.12); color:#1565C0; border:1px solid rgba(21,101,192,0.25); }
.tag-geo       { background:rgba(55,71,79,0.1);   color:#37474F;  border:1px solid rgba(55,71,79,0.2); }
.tag-client    { background:rgba(46,125,50,0.1);  color:#2E7D32;  border:1px solid rgba(46,125,50,0.2); }

/* — CS Hero ————————————————————————————————————————————————— */
.cs-hero {
  background: linear-gradient(135deg, var(--color-navy) 0%, #1a2a4a 100%);
  min-height: 52vh;
  display: flex;
  align-items: center;
  padding: 7rem 0 4rem;
}
.cs-hero-inner { max-width:860px; }
.cs-hero h1 { color:white; font-size:2.25rem; line-height:1.25; margin:1rem 0 1.25rem; }
.cs-lede { color:rgba(255,255,255,0.78); font-size:1.0625rem; line-height:1.8; max-width:720px; margin:0; }

/* — KPI bar ————————————————————————————————————————————————— */
.kpi-bar {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  margin-top: 2.5rem;
  background: rgba(255,255,255,0.09);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.12);
  overflow: hidden;
}
.kpi {
  padding: 1.25rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.kpi:last-child { border-right: none; }
.kpi-num   { display:block; font-size:1.5rem; font-weight:800; color:var(--color-orange); line-height:1.1; }
.kpi-label { display:block; font-size:0.7rem; color:rgba(255,255,255,0.7); margin-top:0.375rem; line-height:1.45; }

/* — Pull quote ─────────────────────────────────────────────── */
.cs-pullquote {
  border-left: 4px solid var(--color-orange);
  margin: 2.5rem 0;
  padding: 1.5rem 2rem;
  background: var(--color-off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}
.cs-pullquote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.75;
  margin: 0;
}

/* — Outcomes grid ──────────────────────────────────────────── */
.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  margin: 2.5rem 0;
}
.outcome-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border: 1px solid var(--color-border);
}
.outcome-card strong {
  display: block;
  color: var(--color-navy);
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 0.375rem;
}
.outcome-card p { color:var(--color-text-muted); font-size:0.875rem; line-height:1.7; margin:0; }

/* — Testimonial ────────────────────────────────────────────── */
.cs-testimonial {
  background: var(--color-navy);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  margin: 2.5rem 0;
}
.cs-testimonial-open {
  font-size: 3rem;
  line-height: 1;
  color: var(--color-orange);
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-text {
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.8;
  font-style: italic;
  margin: 0 0 1.5rem;
}
.cs-testimonial-attribution {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.25rem;
}
.testimonial-name    { display:block; color:white; font-weight:700; font-size:0.9375rem; }
.testimonial-title   { display:block; color:rgba(255,255,255,0.6); font-size:0.8125rem; margin-top:0.2rem; }
.testimonial-company { display:block; color:rgba(255,255,255,0.45); font-size:0.8125rem; }

/* — Insight box ────────────────────────────────────────────── */
.cs-insight-box {
  background: linear-gradient(135deg,#f8f4ff 0%,#fff8f2 100%);
  border: 1px solid #e8d5c4;
  border-radius: var(--radius-lg);
  padding: 2.25rem 2.5rem;
  margin: 2.5rem 0;
}
.cs-insight-label {
  font-size: 0.675rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-orange);
  margin-bottom: 0.875rem;
  display: block;
}
.cs-insight-text {
  font-size: 1rem;
  color: var(--color-navy);
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

/* — Related links ──────────────────────────────────────────── */
.cs-related {
  background: var(--color-off-white);
  border-top: 1px solid var(--color-border);
  padding: 2.5rem 0;
}
.cs-related-inner { max-width:900px; margin:0 auto; }
.cs-related h4 {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.related-links { display:flex; flex-wrap:wrap; gap:0.625rem; }
.related-link {
  padding: 0.5rem 1.125rem;
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  color: var(--color-navy);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition-fast);
}
.related-link:hover { background:var(--color-navy); color:white; border-color:var(--color-navy); }

/* — Case study listing filter bar ─────────────────────────── */
.filter-bar {
  background: white;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.filter-group { display:flex; flex-wrap:wrap; align-items:center; gap:0.5rem; }
.filter-label {
  font-size: 0.675rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  min-width: 78px;
  margin-right: 0.25rem;
}
.pill {
  padding: 0.35rem 0.875rem;
  border-radius: 2rem;
  border: 1.5px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition-fast);
  line-height: 1;
}
.pill:hover { border-color:var(--color-navy); color:var(--color-navy); }
.pill.active { background:var(--color-navy); color:white; border-color:var(--color-navy); }

/* — CS listing grid cards ──────────────────────────────────── */
.cs-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem; }
.cs-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.cs-card:hover { box-shadow:0 8px 32px rgba(0,0,0,0.1); transform:translateY(-2px); }
.cs-card.hidden { display:none !important; }
.cs-card-image { aspect-ratio:16/9; overflow:hidden; }
.cs-card-image img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.3s ease; }
.cs-card:hover .cs-card-image img { transform:scale(1.04); }
.cs-card-body { padding:1.375rem 1.375rem 1rem; flex:1; }
.cs-card-body h3 { font-size:0.9375rem; color:var(--color-navy); margin:0.625rem 0 0.5rem; line-height:1.45; font-weight:700; }
.cs-card-outcome { color:var(--color-text-muted); font-size:0.8125rem; line-height:1.65; margin:0; }
.cs-card-footer {
  padding: 0.875rem 1.375rem;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cs-card-kpi { font-size:0.8125rem; font-weight:700; color:var(--color-orange); }
.cs-card-read { font-size:0.8125rem; font-weight:600; color:var(--color-navy); }

/* — Responsive ─────────────────────────────────────────────── */
@media (max-width:960px) {
  .kpi-bar { grid-template-columns:repeat(2,1fr); }
  .kpi:nth-child(2) { border-right:none; }
  .kpi:nth-child(3) { border-top:1px solid rgba(255,255,255,0.1); }
  .cs-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:640px) {
  .cs-hero h1 { font-size:1.625rem; }
  .kpi-bar { grid-template-columns:1fr 1fr; }
  .outcomes-grid { grid-template-columns:1fr; }
  .cs-grid { grid-template-columns:1fr; }
  .cs-testimonial { padding:1.75rem; }
  .filter-bar { padding:1.25rem; }
  .filter-label { min-width:60px; }
}

/* ── Project Snapshots Gallery ──────────────────────────────── */
.cs-snapshots-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.875rem;
  margin-top: 2rem;
}
.cs-snapshots-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cs-snapshots-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cs-snap {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: var(--color-off-white);
}
.cs-snap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.cs-snap:hover img { transform: scale(1.04); }
@media (max-width: 960px) {
  .cs-snapshots-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-snapshots-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .cs-snapshots-grid, .cs-snapshots-grid.cols-2, .cs-snapshots-grid.cols-4 {
    grid-template-columns: 1fr;
  }
}

/* ── Culture Gallery (Careers page) ─────────────────────────────── */
.culture-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 5px;
  max-width: 860px;
  margin: 0 auto;
}
.culture-card {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  background: var(--color-navy);
}
.culture-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: brightness(0.9);
}
.culture-card:hover img {
  transform: scale(1.08);
  filter: brightness(0.55);
}
.culture-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0.6rem 0.65rem;
  background: linear-gradient(to top, rgba(10,25,60,0.75) 0%, transparent 60%);
  pointer-events: none;
}
.culture-card__caption {
  font-family: var(--font-primary);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.3;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.culture-card:hover .culture-card__caption {
  opacity: 1;
  transform: translateY(0);
}
@media (hover: none) {
  .culture-card__caption { opacity: 1; transform: none; }
  .culture-card img { filter: brightness(0.75); }
}
@media (max-width: 700px) {
  .culture-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 110px;
  }
}
@media (max-width: 440px) {
  .culture-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 120px;
  }
}
