/* MM&Co. CMS — modern professional UI */
:root {
  --charcoal: #2B2D31;
  --charcoal-mid: #3d4046;
  --charcoal-light: #4a4e56;
  --gray-medium: #6B7078;
  --soft-gray: #F2F3F4;
  --warm-white: #FAFAF8;
  --navy: var(--charcoal);
  --navy-light: var(--charcoal-light);
  --gold: #C5A028;
  --gold-light: #d4b23a;
  --cream: var(--warm-white);
  --surface: var(--soft-gray);
  --white: #ffffff;
  --text: #2B2D31;
  --text-muted: var(--gray-medium);
  --border: rgba(43, 45, 49, 0.1);
  --shadow: 0 4px 24px rgba(43, 45, 49, 0.08);
  --shadow-lg: 0 12px 48px rgba(43, 45, 49, 0.12);
  --radius: 12px;
  --radius-lg: 16px;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --header-h: 72px;
  --section-pad-y: clamp(3rem, 5vw, 4.5rem);
  --section-gap: 2rem;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --gold-glow: rgba(201, 162, 39, 0.15);
  --card-shadow: 0 1px 3px rgba(27, 29, 34, 0.06), 0 8px 24px rgba(27, 29, 34, 0.06);
  --card-shadow-hover: 0 8px 28px rgba(27, 29, 34, 0.12);
  --text-base: 1.0625rem;
  --leading: 1.65;
}

body {
  background-color: var(--warm-white);
}

[data-theme="dark"] {
  --cream: #0f172a;
  --white: #1e293b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --border: #334155;
  --navy: #f8f6f1;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  color: var(--text);
  line-height: var(--leading);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
a:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.container { width: min(var(--mmco-container, 1440px), 100%); max-width: var(--mmco-container, 1440px); margin: 0 auto; padding-left: var(--mmco-gutter, 1.5rem); padding-right: var(--mmco-gutter, 1.5rem); box-sizing: border-box; }

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.025em;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.125rem); }
h3 { font-size: 1.125rem; font-weight: 600; letter-spacing: -0.02em; }
.prose {
  max-width: 72ch;
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--text);
}
.prose p { margin-bottom: 1.125rem; }
.prose p:last-child { margin-bottom: 0; }
.prose ul, .prose ol { margin: 1rem 0 1.25rem; padding-left: 1.35rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { color: var(--navy); font-weight: 600; }
.prose a { color: var(--navy); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }

/* Section typography (shared) */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201, 162, 39, 0.12);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 0.85rem;
}
.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 0.75rem;
  letter-spacing: -0.03em;
}
.section-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
  max-width: 42rem;
  font-weight: 500;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  min-height: 44px;
  padding: 0.7rem 1.35rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-primary:hover { background: var(--navy-light); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); font-weight: 700; }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201, 162, 39, 0.35); color: var(--navy); }
.btn-hero-ghost { background: transparent; border: 2px solid rgba(255,255,255,0.45); color: #fff; }
.btn-hero-ghost:hover { background: rgba(255,255,255,0.12); border-color: #fff; color: #fff; }
.btn-header-cta {
  background: var(--gold); color: var(--navy); border: none; padding: 0.55rem 1.1rem;
  border-radius: 10px; font-weight: 700; font-size: 0.875rem; box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}
.btn-header-cta:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); }
.btn-lg { padding: 0.9rem 1.5rem; font-size: 1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(27, 29, 34, 0.08);
}
.site-header .header-inner.container {
  width: min(1280px, 96%);
  max-width: none;
  padding-left: clamp(0.75rem, 2vw, 1.25rem);
  padding-right: clamp(0.75rem, 2vw, 1.25rem);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: var(--header-h);
  height: var(--header-h);
  gap: 1rem;
}
.header-inner > .logo {
  flex-shrink: 0;
  align-self: center;
  display: flex;
  align-items: center;
}
.header-end {
  align-self: center;
}
.header-end {
  display: flex;
  align-items: center;
  gap: clamp(0.5rem, 1.2vw, 1.25rem);
  margin-left: auto;
  flex-shrink: 0;
  min-width: 0;
}
.main-nav {
  display: flex;
  justify-content: flex-end;
  flex: 0 1 auto;
  min-width: 0;
}
.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-shell {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  background: transparent;
}
.logo-img {
  height: 52px;
  width: auto;
  max-width: min(260px, 48vw);
  object-fit: contain;
  object-position: left center;
  display: block;
  background: transparent;
}
.logo-img--footer { height: 48px; max-width: 240px; margin-bottom: 0; }
.logo-shell--footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.15rem;
  background: rgba(255, 255, 255, 0.97);
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.18);
  line-height: 0;
}
.logo-img--sm { height: 34px; max-width: 160px; }
.logo-mark {
  width: 44px; height: 44px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem; border-radius: 10px;
  flex-shrink: 0;
}
.logo-mark.lg { width: 56px; height: 56px; font-size: 1.1rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-text strong { font-size: 0.92rem; color: var(--navy); font-family: var(--font-sans); font-weight: 700; }
.logo-text small { font-size: 0.68rem; color: var(--text-muted); font-weight: 500; }
.main-nav ul { display: flex; gap: 0.35rem; list-style: none; align-items: center; }
.main-nav a {
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  color: var(--navy);
  transition: background var(--transition), color var(--transition);
}
.main-nav a:hover { background: rgba(27, 29, 34, 0.06); color: var(--navy); }
.main-nav a.is-active {
  background: rgba(27, 29, 34, 0.08);
  color: var(--navy);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.theme-toggle, .search-btn {
  background: rgba(27, 29, 34, 0.06); border: none; cursor: pointer; color: var(--navy);
  padding: 0.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); transition: var(--transition); }

/* Hero — SFPI-style split */
.hero-split .reveal { opacity: 1; transform: none; }
.hero-split {
  position: relative;
  min-height: min(88vh, 820px);
  display: flex;
  align-items: center;
  padding: 2rem 0 2.5rem;
  overflow: hidden;
  color: #fff;
}
.hero-split .hero-bg {
  position: absolute; inset: 0;
  will-change: transform;
  background:
    radial-gradient(ellipse 70% 50% at 78% 32%, rgba(201, 162, 39, 0.16) 0%, transparent 52%),
    linear-gradient(152deg, #1B1D22 0%, #1B1D22 42%, #23262D 100%);
}
.hero-split .hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, #000 20%, transparent 75%);
}
.hero-split-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}
.hero-split-content { max-width: 36rem; }
.hero-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem 0.65rem;
  margin-bottom: 1.1rem;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--gold-light); margin: 0;
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
}
.hero-badge {
  display: inline-flex; align-items: center;
  padding: 0.3rem 0.7rem; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.04em;
  border: 1px solid rgba(201, 162, 39, 0.45); border-radius: 100px;
  color: var(--gold-light); margin: 0;
}
.hero-title {
  font-weight: 800;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  line-height: 1.15;
  color: #fff;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
}
.hero-lead {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 0.5rem;
  line-height: 1.45;
}
.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 1.35rem;
  max-width: 34rem;
}
.hero-loc-box {
  display: flex; gap: 0.75rem; align-items: flex-start;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px; padding: 0.9rem 1.1rem; margin-bottom: 1.35rem;
}
.hero-loc-icon { color: var(--gold); flex-shrink: 0; margin-top: 0.1rem; }
.hero-loc-label {
  display: block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(255, 255, 255, 0.65); margin-bottom: 0.2rem;
}
.hero-loc-text { font-size: 0.88rem; line-height: 1.45; color: #fff; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.65rem; align-items: center; }
.hero-split-visual { display: flex; justify-content: flex-end; align-items: flex-start; }
.hero-panel {
  width: 100%;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.hero-feature-card {
  background: #fff;
  color: var(--text);
  border-radius: 20px;
  padding: 1.5rem 1.6rem 1.35rem;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.2);
  border: none;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.hero-feature-tag {
  display: inline-block; font-size: 0.65rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--navy); background: #eef2f7;
  padding: 0.3rem 0.6rem; border-radius: 6px; margin-bottom: 0.65rem;
}
.hero-feature-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 0.45rem;
}
.hero-feature-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0 0 0.85rem;
}
.hero-card-points {
  list-style: none; margin: 0; padding: 0.85rem 0 0;
  border-top: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.4rem;
}
.hero-card-points li {
  position: relative; padding-left: 1rem;
  font-size: 0.8rem; font-weight: 600; color: var(--navy);
}
.hero-card-points li::before {
  content: ''; position: absolute; left: 0; top: 0.45em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--gold);
}
.hero-stat-pills {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-top: 1rem;
  position: relative;
  z-index: 2;
}
.hero-stat-pill {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 0.85rem 0.4rem;
  text-align: center;
}
.hero-stat-pill strong {
  display: block; font-family: var(--font-sans); font-size: 1.05rem; font-weight: 800;
  color: #fff; line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.hero-stat-pill strong.stat-count.is-done {
  animation: statPop 0.45s var(--ease-out-expo);
}
@keyframes statPop {
  0% { transform: scale(0.92); }
  60% { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.hero-stat-pill strong.stat-label-only {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stat-pill span {
  display: block; font-size: 0.58rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.05em; color: rgba(255, 255, 255, 0.72); line-height: 1.25; margin-top: 0.15rem;
}

/* Standalone stats (inner pages) — hide duplicate on homepage hero */
body.has-hero .stats-section { display: none; }
.stats-band { padding: 2.5rem 0; background: var(--white); border-bottom: 1px solid var(--border); }
.stats-band-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem;
}
.stat-pill {
  text-align: center; padding: 1.25rem 1rem; background: var(--white);
  border-radius: var(--radius-lg); border: none;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.stat-pill:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-pill-value {
  display: block; font-family: var(--font-sans); font-size: 1.75rem; font-weight: 800;
  color: var(--navy); line-height: 1.2;
}
.stat-pill-label { font-size: 0.78rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.04em; }

/* Legacy hero (fallback) */
.hero:not(.hero-split) { position: relative; min-height: 70vh; display: flex; align-items: center; padding: calc(var(--header-h) + 3rem) 0 3rem; }
.hero:not(.hero-split) .hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
}
.hero:not(.hero-split) .hero-content { position: relative; z-index: 1; color: #fff; }

/* Sections */
.section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}
.section-header {
  text-align: center;
  margin-bottom: var(--section-gap);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.section-header .section-label { margin-bottom: 0.75rem; }
.section-header .section-heading { margin-bottom: 0.5rem; }
.section-header .section-lead { margin-left: auto; margin-right: auto; margin-bottom: 0; }
.section-header--row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  max-width: none;
  text-align: left;
}
.section-header--row > div { max-width: 36rem; }
.section-title {
  text-align: center;
  margin-bottom: var(--section-gap);
  font-size: clamp(1.75rem, 3.5vw, 2.375rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.section-cta { text-align: center; margin-top: 2rem; }
.view-all {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--navy);
  white-space: nowrap;
  padding: 0.5rem 0;
}
.view-all:hover { color: var(--gold); }

/* Stats (legacy cards) */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; }
.stat-card {
  text-align: center; padding: 2rem; background: var(--white);
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.stat-value { display: block; font-family: var(--font-sans); font-size: 2.25rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: 0.85rem; color: var(--text-muted); font-weight: 600; }

.services-section {
  background: var(--white);
}
.testimonials-section {
  background: var(--surface);
}

/* Services grid */
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
  display: block; color: inherit;
  border: none;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
  color: inherit;
}
.service-icon {
  width: 52px; height: 52px;
  background: rgba(27, 29, 34, 0.08);
  color: var(--navy);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.125rem; margin-bottom: 1.15rem;
}
.service-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
}
.service-card p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
  margin-bottom: 1.15rem;
}
.card-link {
  font-weight: 600;
  color: var(--navy);
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
.service-card:hover .card-link { color: var(--gold); }

/* Testimonials */
.testimonials-slider {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white); padding: 2rem; border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow);
  border: none;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.testimonial-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  margin: 0;
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 0.85rem; font-size: 0.9rem; letter-spacing: 0.05em; }
.testimonial-card footer { margin-top: 1.15rem; }
.testimonial-card footer strong { display: block; font-size: 0.9375rem; color: var(--navy); }
.testimonial-card footer span { display: block; font-size: 0.875rem; color: var(--text-muted); margin-top: 0.15rem; }

/* CTA */
.cta-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1B1D22 0%, var(--navy) 40%, var(--navy-light) 100%);
  color: var(--white); padding: 2.75rem 2rem;
  border-radius: var(--radius-lg); text-align: center;
  box-shadow: 0 24px 48px rgba(27, 29, 34, 0.2);
}
.cta-box::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 60%; height: 100%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.2) 0%, transparent 65%);
  pointer-events: none;
}
.cta-heading {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.65rem;
  letter-spacing: -0.03em;
}
.cta-text {
  position: relative;
  opacity: 0.92;
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.9);
}
.cta-box .btn-primary { position: relative; z-index: 1; }
.cta-box .btn-primary { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* Blog */
.blog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}
.blog-card {
  background: var(--white); padding: 1.75rem; border-radius: var(--radius-lg);
  box-shadow: var(--card-shadow); border: none;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.blog-card time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.blog-card h3, .blog-card h2 {
  margin: 0.5rem 0 0.4rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
}
.blog-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* Page hero */
.page-hero-modern {
  position: relative;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(201, 162, 39, 0.12), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--cream) 100%);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
}
.page-hero-modern h1 {
  font-family: var(--font-sans); font-weight: 700; font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy); margin-bottom: 0.35rem;
}
.page-hero-sub { color: var(--text-muted); font-size: 1.1rem; margin-top: 0.35rem; max-width: 40rem; line-height: 1.6; }
.page-hero:not(.page-hero-modern) {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--border);
}

/* What We Are */
.what-we-are-section {
  background: var(--white);
}
.what-we-are-layout {
  display: grid;
  gap: clamp(2rem, 4vw, 2.75rem);
}
.what-we-are-intro {
  max-width: 40rem;
}
.what-we-are-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.what-we-are-badges li {
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.45rem 0.85rem;
  border-radius: 100px;
  background: var(--surface);
  color: var(--navy);
  border: none;
}
.what-we-are-main {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.85fr);
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  align-items: start;
}
.what-we-are-prose {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
}
.what-we-are-prose p {
  margin: 0 0 0.9rem;
}
.what-we-are-prose p:last-child {
  margin-bottom: 0;
}
.what-we-are-highlights {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.what-we-are-highlight {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  border: none;
  border-radius: 16px;
  padding: 1rem 1.1rem;
  box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo);
}
.what-we-are-highlight:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.what-we-are-highlight-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(27, 29, 34, 0.08);
  color: var(--navy);
}
.what-we-are-highlight strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 0.2rem;
}
.what-we-are-highlight span {
  display: block;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Who We Are */
.who-we-are-section {
  background: var(--surface);
}
.who-we-are-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(220px, 0.85fr);
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
}
.who-we-are-content .section-heading {
  margin-bottom: 1rem;
}
.who-we-are-intro,
.who-we-are-body {
  font-size: var(--text-base);
  line-height: var(--leading);
  color: var(--text);
}
.who-we-are-checklist-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.75rem 0 0.85rem;
  letter-spacing: -0.02em;
}
.who-we-are-intro p,
.who-we-are-body p {
  margin: 0 0 0.85rem;
}
.who-we-are-intro p:last-child,
.who-we-are-body p:last-child {
  margin-bottom: 0;
}
.who-we-are-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.25rem;
}
.who-we-are-checklist li {
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text);
}
.who-we-are-checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(201, 162, 39, 0.2);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230c2340' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}
/* Hide duplicate checks if content editor added a ul inside prose */
.who-we-are-intro ul,
.who-we-are-body ul {
  list-style: none;
  padding-left: 0;
}
.who-we-are-intro ul li::marker,
.who-we-are-body ul li::marker {
  content: none;
}
.who-we-are-cta {
  margin-top: 1.35rem;
}
.who-we-are-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 220px;
}
.who-we-are-visual-frame {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
}
.who-we-are-logo-float {
  position: absolute;
  left: 50%;
  bottom: -8%;
  transform: translateX(-50%);
  background: #fff;
  border: none;
  border-radius: 16px;
  padding: 0.65rem 1rem;
  box-shadow: var(--card-shadow-hover);
  z-index: 2;
}
.who-we-are-logo-float .logo-img--footer {
  height: auto;
  max-width: min(200px, 42vw);
  margin: 0;
}

/* Brand illustration */
.brand-visual {
  width: 100%;
  line-height: 0;
}
.brand-visual-svg {
  width: 100%;
  height: auto;
  display: block;
}
.brand-visual--lg { max-width: 360px; margin: 0 auto; }
.brand-visual--md { max-width: 280px; }
.brand-visual--sm { max-width: 200px; }

/* Text image */
.text-image-content h2 {
  font-family: var(--font-sans); font-weight: 700; font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy); margin-bottom: 0.85rem;
}
.text-image-content .prose { margin-bottom: 1.15rem; }
.text-image-content .prose ul {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.55rem;
}
.text-image-content .prose li { color: var(--text-muted); line-height: 1.55; }
.text-image-content .prose p:last-child { margin-bottom: 0; }
.text-image-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.75rem, 3.5vw, 2.75rem); align-items: center;
}
.layout-right .text-image-content { order: 2; }
.layout-right .text-image-visual { order: 1; }
.image-placeholder {
  aspect-ratio: 4/3; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-weight: 700; font-size: 1.25rem;
}
.text-image-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27, 29, 34, 0.08);
  background: var(--white);
}

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.team-card { text-align: center; padding: 2rem; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.team-avatar {
  width: 80px; height: 80px; margin: 0 auto 1rem; border-radius: 50%;
  background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem; font-weight: 700;
}
.team-avatar.lg { width: 100px; height: 100px; font-size: 2.25rem; }
.team-role { color: var(--gold); font-weight: 600; }
.team-creds { font-size: 0.85rem; color: var(--text-muted); }

/* FAQ */
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 0.75rem; box-shadow: var(--shadow); }
.faq-item summary { padding: 1.25rem 1.5rem; cursor: pointer; font-weight: 600; list-style: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--text-muted); }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; }
.contact-block { margin-bottom: 1.5rem; }
.contact-block h4 { color: var(--gold); margin-bottom: 0.5rem; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 500; font-size: 0.9rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem; border: 1px solid var(--border);
  border-radius: 8px; font-family: inherit; font-size: 1rem; background: var(--white);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Footer */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); padding: 4rem 0 0; }
.footer-top { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 2.5rem; padding-bottom: 3rem; }
.footer-brand p { margin-top: 1rem; font-size: 0.9rem; opacity: 0.8; }
.accreditations { font-size: 0.8rem !important; margin-top: 0.5rem; color: var(--gold-light); }
.footer-col h4 { color: var(--gold); margin-bottom: 1rem; font-family: var(--font-sans); font-size: 0.85rem; text-transform: uppercase; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: rgba(255,255,255,0.8); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.85rem;
}
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.6rem 1rem; border: none; border-radius: 6px; }

/* Breadcrumbs */
.breadcrumbs { padding: 1rem 0; font-size: 0.85rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 0.5rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { content: '/'; margin-left: 0.5rem; color: var(--text-muted); }

/* Industries */
.industries-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.industry-tag {
  padding: 0.5rem 1.25rem; background: var(--white); border-radius: 100px;
  font-size: 0.9rem; box-shadow: var(--shadow); border: 1px solid var(--border);
}

/* Timeline */
.timeline { max-width: 600px; margin: 2rem auto 0; }
.timeline-item { padding: 1rem 0 1rem 2rem; border-left: 2px solid var(--gold); position: relative; }
.timeline-item .year { font-weight: 700; color: var(--gold); display: block; }
.timeline-footer { margin-top: 1.5rem; max-width: 52rem; color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.prose .about-keywords { margin-top: 0.5rem; font-size: 0.8rem; line-height: 1.65; color: var(--text-muted); }
.prose h2 { margin-top: 0.5rem; margin-bottom: 0.75rem; font-size: 1.35rem; color: var(--navy); }
.prose h3 { margin-top: 1.25rem; margin-bottom: 0.5rem; font-size: 1.1rem; color: var(--navy); }

/* Inner pages layout — see inner-page.css */

/* Careers */
.career-card { background: var(--white); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); margin-bottom: 1.5rem; }
.career-meta { color: var(--text-muted); font-size: 0.9rem; margin: 0.5rem 0 1rem; }

/* Careers public page */
.careers-hero-cta { padding-top: 0; }
.careers-hero-cta__inner { text-align: center; max-width: 720px; margin: 0 auto; }
.careers-hero-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.careers-section__lead { max-width: 640px; margin-bottom: 2rem; }
.careers-section--alt { background: linear-gradient(180deg, #f8fafc 0%, #fff 100%); }
.careers-list { display: grid; gap: 1.25rem; }
.career-card__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.35rem;
}
.career-card__title { font-size: 1.25rem; margin: 0; }
.career-card__title a { color: var(--navy, #0B1F3A); text-decoration: none; }
.career-card__title a:hover { color: var(--gold, #D4A017); }
.career-card__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.15);
  color: var(--navy, #0B1F3A);
}
.career-card--internship { border-left: 4px solid var(--gold, #D4A017); }
.career-card__excerpt { color: var(--text-muted); margin: 0 0 1rem; line-height: 1.55; }
.career-card__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.career-card--empty { text-align: center; color: var(--text-muted); }
.career-card--empty a { color: var(--gold, #D4A017); font-weight: 600; }
.careers-apply-panel {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid rgba(27, 29, 34, 0.08);
}
.careers-apply-panel__title { margin-bottom: 0.5rem; }
.careers-apply-panel__role { color: var(--text-muted); margin: 0 0 1.5rem; }
.career-detail__toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.career-detail__back {
  color: var(--navy, #0B1F3A);
  font-weight: 600;
  text-decoration: none;
}
.career-detail__back:hover { color: var(--gold, #D4A017); }
.career-detail__tag { margin-bottom: 1rem; }
.career-detail__body { margin-bottom: 2.5rem; }

/* Live chat */
.live-chat-placeholder {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
}
.live-chat-placeholder button {
  width: 56px; height: 56px; border-radius: 50%; background: var(--gold);
  border: none; color: var(--navy); cursor: pointer; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
}

/* Animations — hidden only when html.mmco-motion is set (see layout head script) */
.mmco-motion .reveal:not(.visible) { opacity: 0; transform: translateY(20px); }
.reveal {
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.mmco-motion .reveal-stagger:not(.visible) > * {
  opacity: 0;
  transform: translateY(16px);
}
.reveal-stagger > * {
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.09s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.14s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.19s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.29s; }
.reveal-stagger.visible > *:nth-child(n+7) { transition-delay: 0.34s; }

/* MM&Co watermark on scrollable content */
#mainContent {
  padding-top: var(--header-h);
  min-height: 60vh;
  position: relative;
}
#mainContent > * { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; transition: none; }
  .hero-stat-pill strong.stat-count.is-done { animation: none; }
}

/* Pagination */
.pagination { display: flex; gap: 0.5rem; justify-content: center; margin-top: 2rem; }
.pagination a { padding: 0.5rem 1rem; background: var(--white); border-radius: 6px; }
.pagination a.active { background: var(--navy); color: var(--white); }

/* Alert (legacy) */
.alert { padding: 1rem; border-radius: 8px; margin-top: 1rem; }
.alert-success { background: #d1fae5; color: #065f46; }

/* Contact / consultation form feedback */
.form-feedback {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: start;
  padding: 1.25rem 1.35rem;
  margin-bottom: 1.25rem;
  border-radius: 12px;
  border: 1px solid transparent;
  background: #f8fafc;
  box-shadow: 0 4px 24px rgba(27, 29, 34, 0.06);
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  overflow: hidden;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-width: 0;
  transition: opacity 0.35s ease, transform 0.35s ease, max-height 0.4s ease, margin 0.35s ease, padding 0.35s ease;
}
.form-feedback.is-visible {
  opacity: 1;
  transform: translateY(0);
  max-height: 280px;
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-width: 1px;
}
.form-feedback[hidden] { display: none; }
.form-feedback:not([hidden]).is-visible { display: grid; }

.form-feedback--success {
  background: linear-gradient(135deg, #ecfdf5 0%, #f0fdf4 100%);
  border-color: rgba(16, 185, 129, 0.35);
}
.form-feedback--success .form-feedback__icon {
  color: #059669;
  background: rgba(16, 185, 129, 0.12);
}
.form-feedback--error {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border-color: rgba(239, 68, 68, 0.3);
}
.form-feedback--error .form-feedback__icon {
  color: #dc2626;
  background: rgba(239, 68, 68, 0.1);
}

.form-feedback__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.form-feedback__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy, #0B1F3A);
  letter-spacing: -0.02em;
}
.form-feedback__text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #475569;
}
.form-feedback__body { min-width: 0; }

.contact-form.is-submitting { opacity: 0.72; pointer-events: none; }
.contact-form .btn.is-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.contact-form .btn.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid rgba(27, 29, 34, 0.2);
  border-top-color: var(--navy, #0B1F3A);
  border-radius: 50%;
  animation: form-feedback-spin 0.7s linear infinite;
}
@keyframes form-feedback-spin {
  to { transform: rotate(360deg); }
}

.contact-form-section__inner { max-width: 720px; }

/* Honeypot — hidden from users, visible to bots */
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1rem;
  background: var(--navy, #0B1F3A);
  color: #fff;
  text-decoration: none;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

/* Cookie consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(27, 29, 34, 0.96);
  color: #f8fafc;
  font-size: 0.9rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
}
.cookie-consent a { color: var(--gold-light, #e8b83a); }
.cookie-consent[hidden] { display: none !important; }

.admin-row--unread td { font-weight: 600; }
.admin-dl dt { font-weight: 600; color: var(--navy, #0B1F3A); margin-top: 0.75rem; }
.admin-dl dd { margin: 0.25rem 0 0; }
.admin-message-body {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .who-we-are-grid { grid-template-columns: 1fr; }
  .who-we-are-checklist { grid-template-columns: 1fr; }
  .who-we-are-visual { min-height: auto; padding-top: 0.5rem; }
  .what-we-are-main { grid-template-columns: 1fr; }
  .what-we-are-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .what-we-are-intro {
    margin-bottom: 0.5rem;
  }
  .text-image-grid, .contact-grid, .footer-top { grid-template-columns: 1fr; }
  .footer-top { gap: 2rem; }
  .main-nav { justify-content: flex-start; }
  body:not(.mmco-site) .hero-split-inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root {
    --section-pad-y: 2.5rem;
    --section-gap: 1.25rem;
  }
  .header-inner {
    position: relative;
    flex-wrap: wrap;
  }
  .header-end {
    margin-left: auto;
    width: auto;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background: var(--navy);
    padding: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 20;
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; align-items: stretch; }
  .main-nav li a { display: block; padding: 0.75rem 1rem; color: #fff !important; }
  .main-nav a.is-active { background: rgba(255,255,255,0.12); }
  .nav-toggle { display: flex; }
  .header-actions .btn-header-cta { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-meta { margin-bottom: 0.85rem; }
  .what-we-are-highlights { grid-template-columns: 1fr; gap: 0.85rem; }
  .who-we-are-grid { gap: 2rem; }
  .who-we-are-checklist { gap: 0.75rem; }
  .logo-img { height: 38px; max-width: min(200px, 52vw); }
  .cta-box { padding: 2.5rem 1.5rem; }
}

/* Page builder — single vertical rhythm (no doubled section gaps) */
.pb-section:has(> .hero-split) {
  padding: 0;
  margin: 0;
  background: transparent;
}
.pb-section > .section {
  padding-top: var(--section-pad-y);
  padding-bottom: var(--section-pad-y);
}
/* Stack sections: only bottom pad of prev + no top pad = one gap, not two */
.pb-section + .pb-section > .section {
  padding-top: 0;
}
.pb-section:has(> .hero-split) + .pb-section > .section {
  padding-top: var(--section-pad-y);
}
.pb-pad-none > .section,
.pb-pad-none.section { padding-top: 0 !important; padding-bottom: 0 !important; }
.pb-pad-compact > .section,
.pb-pad-compact.section {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}
.pb-pad-compact + .pb-pad-compact > .section { padding-top: 0 !important; }
.pb-pad-spacious > .section,
.pb-pad-spacious.section {
  padding-top: clamp(3.5rem, 6vw, 5rem) !important;
  padding-bottom: clamp(3.5rem, 6vw, 5rem) !important;
}
.pb-pad-spacious + .pb-pad-spacious > .section { padding-top: 0 !important; }
.pb-bg-light { background: var(--soft-gray); }
.pb-bg-navy,
.pb-bg-charcoal { background: var(--charcoal); color: #fff; }
.pb-bg-navy .section-title,
.pb-bg-navy h2, .pb-bg-navy h3,
.pb-bg-charcoal .section-title,
.pb-bg-charcoal h2, .pb-bg-charcoal h3 { color: #fff; }
.pb-bg-navy p, .pb-bg-navy .text-muted,
.pb-bg-charcoal p, .pb-bg-charcoal .text-muted { color: rgba(255,255,255,0.85); }
.pb-bg-gold-accent { background: linear-gradient(180deg, var(--warm-white) 0%, var(--surface) 100%); }

/* Page builder — responsive section visibility */
@media (min-width: 1024px) {
  .pb-hide-desktop { display: none !important; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .pb-hide-tablet { display: none !important; }
}
@media (max-width: 767px) {
  .pb-hide-mobile { display: none !important; }
}
