/*
 Theme Name:   WMCC Child
 Theme URI:    https://westmichigancommercialcleaning.com
 Description:  Kadence Child Theme — West Michigan Commercial Cleaning
 Author:       West Michigan Commercial Cleaning
 Template:     kadence
 Version:      1.0.0
*/

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
  --navy:        #1B2E4B;
  --navy-dark:   #0F1E33;
  --navy-mid:    #243D5E;
  --white:       #FFFFFF;
  --off-white:   #F5F7FA;
  --gray-light:  #E4E9F0;
  --gray-mid:    #7A8EA8;
  --cta:         #1D6ED8;
  --cta-hover:   #1558B8;
  --cta-light:   #EEF4FF;
  --text:        #1C2B3A;
  --transition:  0.2s ease;
}

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  margin: 0;
  padding: 0;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

/* =============================================
   SUPPRESS KADENCE DEFAULTS
   ============================================= */
.site-header,
#masthead,
.kadence-sticky-header,
.kadence-sticky-header-wrap,
header.site-header,
.wp-site-blocks > header,
.entry-header,
.hero-section,
.site-footer,
#colophon,
footer.site-footer,
.wp-site-blocks > footer,
.kadence-footer-wrap,
#kadence-footer {
  display: none !important;
}

/* Push content below fixed nav */
#main, .site-content, .wp-site-blocks > main {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* =============================================
   HEADER / NAV
   ============================================= */
.wmcc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}

.wmcc-header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.wmcc-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--white);
}

.wmcc-logo-mark {
  width: 38px;
  height: 38px;
  background: var(--cta);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 900;
  color: white;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}

.wmcc-logo-text {
  font-size: 13.5px;
  line-height: 1.3;
  color: rgba(255,255,255,0.8);
}

.wmcc-logo-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: white;
  letter-spacing: -0.01em;
}

/* Desktop nav */
.wmcc-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.wmcc-nav a {
  color: rgba(255,255,255,0.78);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
}

.wmcc-nav a:hover {
  color: white;
  background: rgba(255,255,255,0.07);
}

.wmcc-nav-cta {
  background: var(--cta) !important;
  color: white !important;
  padding: 9px 20px !important;
  border-radius: 7px !important;
  font-weight: 600 !important;
  margin-left: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition) !important;
}

.wmcc-nav-cta:hover {
  background: var(--cta-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(29,110,216,0.4) !important;
}

/* Mobile toggle */
.wmcc-mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 6px 8px;
  line-height: 1;
}

/* Mobile nav */
.wmcc-mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.wmcc-mobile-nav.open {
  display: flex;
}

.wmcc-mobile-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.wmcc-mobile-nav a:last-child {
  border-bottom: none;
  color: white;
  font-weight: 600;
  margin-top: 4px;
}

.wmcc-mobile-nav a:hover { color: white; }

/* =============================================
   SHARED LAYOUT HELPERS
   ============================================= */
.wmcc-section {
  padding: 84px 24px;
  width: 100%;
}

.wmcc-container {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.wmcc-section-label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--cta);
  margin-bottom: 10px;
}

.wmcc-section-title {
  font-size: clamp(26px, 3.8vw, 40px);
  font-weight: 800;
  line-height: 1.12;
  color: var(--navy-dark);
  margin: 0 0 14px;
  letter-spacing: -0.025em;
}

.wmcc-section-sub {
  font-size: 17px;
  color: var(--gray-mid);
  line-height: 1.68;
  max-width: 540px;
  margin: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.wmcc-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 13px 26px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
  line-height: 1;
}

.wmcc-btn-primary {
  background: var(--navy);
  color: white;
}
.wmcc-btn-primary:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(15,30,51,0.28);
}

.wmcc-btn-cta {
  background: var(--cta);
  color: white;
}
.wmcc-btn-cta:hover {
  background: var(--cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29,110,216,0.38);
}

.wmcc-btn-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255,255,255,0.45);
}
.wmcc-btn-outline:hover {
  border-color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.07);
}

.wmcc-btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.wmcc-btn-outline-navy:hover {
  background: var(--navy);
  color: white;
}

/* =============================================
   HERO
   ============================================= */
.wmcc-hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px;
  overflow: hidden;
  width: 100%;
}

.wmcc-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
}

.wmcc-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(10, 18, 36, 0.90) 0%,
    rgba(27, 46, 75, 0.82) 55%,
    rgba(27, 46, 75, 0.55) 100%
  );
}

.wmcc-hero-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
  width: 100%;
}

.wmcc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.88);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 13px;
  border-radius: 100px;
  margin-bottom: 22px;
  white-space: nowrap;
  flex-wrap: nowrap;
}

.wmcc-hero h1 {
  font-size: clamp(34px, 5.5vw, 58px);
  font-weight: 900;
  color: white;
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin: 0 0 20px;
}

.wmcc-hero h1 em {
  font-style: normal;
  color: #85B8FF;
}

.wmcc-hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  line-height: 1.62;
  margin: 0 0 38px;
  max-width: 500px;
}

.wmcc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* =============================================
   TRUST BAR
   ============================================= */
.wmcc-trust {
  background: var(--navy-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.wmcc-trust-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: stretch;
}

.wmcc-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 18px 20px;
  color: rgba(255,255,255,0.80);
  font-size: 13.5px;
  font-weight: 500;
  flex: 1;
  justify-content: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}

.wmcc-trust-item:last-child {
  border-right: none;
}

.wmcc-trust-icon {
  font-size: 17px;
  flex-shrink: 0;
}

/* =============================================
   SERVICES
   ============================================= */
.wmcc-services {
  background: var(--off-white);
}

.wmcc-services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

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

.wmcc-service-card {
  background: white;
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid var(--gray-light);
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.wmcc-service-card:hover {
  border-color: rgba(29,110,216,0.3);
  box-shadow: 0 8px 32px rgba(27,46,75,0.08);
  transform: translateY(-2px);
}

.wmcc-service-icon {
  width: 48px;
  height: 48px;
  background: var(--cta-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}

.wmcc-service-card h3 {
  font-size: 16.5px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.wmcc-service-card p {
  font-size: 14px;
  color: var(--gray-mid);
  line-height: 1.62;
  margin: 0;
}

/* =============================================
   ABOUT / WHY US
   ============================================= */
.wmcc-about {
  background: white;
}

.wmcc-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.wmcc-about-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 16px 48px rgba(27,46,75,0.15);
}

.wmcc-about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wmcc-about-features {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

.wmcc-about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.wmcc-feature-icon {
  width: 34px;
  height: 34px;
  background: var(--navy);
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.wmcc-feature-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 4px;
}

.wmcc-feature-text p {
  font-size: 14px;
  color: var(--gray-mid);
  margin: 0;
  line-height: 1.6;
}

/* =============================================
   INDUSTRIES
   ============================================= */
.wmcc-industries {
  background: var(--navy);
}

.wmcc-industries .wmcc-section-label { color: rgba(255,255,255,0.45); }
.wmcc-industries .wmcc-section-title { color: white; }
.wmcc-industries .wmcc-section-sub   { color: rgba(255,255,255,0.60); }

.wmcc-industries-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.wmcc-industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.wmcc-industry-card {
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 10px;
  padding: 26px 16px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  cursor: default;
}

.wmcc-industry-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.18);
}

.wmcc-industry-card .icon {
  font-size: 30px;
  margin-bottom: 10px;
}

.wmcc-industry-card span {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.82);
  line-height: 1.35;
  display: block;
}

/* =============================================
   SERVICE AREA
   ============================================= */
.wmcc-area {
  background: var(--off-white);
}

.wmcc-area-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 48px;
}

.wmcc-area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-bottom: 32px;
}

.wmcc-area-city {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy-dark);
}

.wmcc-area-city::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--cta);
  border-radius: 50%;
  flex-shrink: 0;
}

.wmcc-area-img {
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/10;
  box-shadow: 0 16px 48px rgba(27,46,75,0.12);
}

.wmcc-area-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   FINAL CTA BAND
   ============================================= */
.wmcc-cta-band {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 88px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.wmcc-cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.025);
  border-radius: 50%;
  pointer-events: none;
}

.wmcc-cta-band::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -60px;
  width: 420px; height: 420px;
  background: rgba(255,255,255,0.02);
  border-radius: 50%;
  pointer-events: none;
}

.wmcc-cta-band-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.wmcc-cta-band h2 {
  font-size: clamp(26px, 4vw, 44px);
  font-weight: 900;
  color: white;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0 0 14px;
}

.wmcc-cta-band p {
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.62;
  margin: 0 0 36px;
}

.wmcc-btn-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   FOOTER
   ============================================= */
.wmcc-footer {
  background: var(--navy-dark);
  padding: 56px 24px 32px;
}

.wmcc-footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.wmcc-footer-brand .wmcc-logo-text {
  color: rgba(255,255,255,0.75);
}

.wmcc-footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.68;
  margin: 14px 0 0;
  max-width: 290px;
}

.wmcc-footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 16px;
}

.wmcc-footer-col a {
  display: block;
  color: rgba(255,255,255,0.60);
  font-size: 14px;
  padding: 5px 0;
  transition: color var(--transition);
}

.wmcc-footer-col a:hover { color: white; }

.wmcc-footer-bottom {
  max-width: 1160px;
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.30);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 980px) {
  .wmcc-services-grid       { grid-template-columns: repeat(2, 1fr); }
  .wmcc-about-grid          { grid-template-columns: 1fr; gap: 44px; }
  .wmcc-industries-grid     { grid-template-columns: repeat(3, 1fr); }
  .wmcc-area-layout         { grid-template-columns: 1fr; gap: 44px; }
  .wmcc-footer-inner        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .wmcc-footer-brand        { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .wmcc-nav              { display: none; }
  .wmcc-mobile-toggle    { display: block; }

  /* Hero */
  .wmcc-hero             { padding: 110px 20px 60px; min-height: auto; width: 100%; }
  .wmcc-hero h1          { font-size: 30px; word-break: normal; overflow-wrap: break-word; }
  .wmcc-hero p           { font-size: 15px; }
  .wmcc-hero-content     { width: 100%; max-width: 100%; }
  .wmcc-hero-badge       { font-size: 10px; padding: 5px 11px; white-space: normal; }
  .wmcc-hero-actions     { flex-direction: column; align-items: flex-start; gap: 10px; }
  .wmcc-hero-actions .wmcc-btn { width: 100%; justify-content: center; }

  /* Trust bar */
  .wmcc-trust-inner      { flex-direction: column; }
  .wmcc-trust-item       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); justify-content: flex-start; padding: 13px 0; }
  .wmcc-trust-item:last-child { border-bottom: none; }

  /* Sections */
  .wmcc-section          { padding: 52px 20px; }
  .wmcc-section-title    { font-size: 24px; }

  /* Services */
  .wmcc-services-grid    { grid-template-columns: 1fr; }
  .wmcc-services-header  { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wmcc-services-header .wmcc-btn { width: 100%; justify-content: center; }

  /* About */
  .wmcc-about-grid       { grid-template-columns: 1fr; gap: 32px; }
  .wmcc-about-img        { aspect-ratio: 16/9; }

  /* Industries */
  .wmcc-industries-grid  { grid-template-columns: repeat(2, 1fr); }
  .wmcc-industries-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .wmcc-industries-header .wmcc-btn { width: 100%; justify-content: center; }

  /* Service area */
  .wmcc-area-layout      { grid-template-columns: 1fr; gap: 32px; }
  .wmcc-area-cities      { grid-template-columns: 1fr 1fr; }
  .wmcc-area-layout .wmcc-btn { width: 100%; justify-content: center; }

  /* CTA band */
  .wmcc-btn-group        { flex-direction: column; align-items: center; }
  .wmcc-btn-group .wmcc-btn { width: 100%; max-width: 320px; justify-content: center; }

  /* Footer */
  .wmcc-footer-inner     { grid-template-columns: 1fr; gap: 28px; }
  .wmcc-footer-bottom    { flex-direction: column; gap: 8px; text-align: center; }

  /* Page templates */
  .wmcc-page-hero        { padding: 110px 20px 52px; }
  .wmcc-page-hero h1     { font-size: 28px; }
  .wmcc-service-list     { grid-template-columns: 1fr; }
  .wmcc-team-grid        { grid-template-columns: 1fr; }
  .wmcc-values-grid      { grid-template-columns: 1fr; }
  .wmcc-inner-cta        { padding: 52px 20px; }
}

/* =============================================
   INNER PAGE SHARED
   ============================================= */
.wmcc-page-hero {
  background: linear-gradient(120deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 130px 24px 64px;
  text-align: center;
}

.wmcc-page-hero .wmcc-section-label { color: rgba(255,255,255,.45); }

.wmcc-page-hero h1 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  color: white;
  letter-spacing: -.025em;
  line-height: 1.08;
  margin: 0 0 14px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.wmcc-page-hero p {
  font-size: 17px;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 32px;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.wmcc-service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.wmcc-service-full {
  background: white;
  border-radius: 14px;
  border: 1px solid var(--gray-light);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.wmcc-service-full:hover {
  box-shadow: 0 10px 36px rgba(27,46,75,.09);
  transform: translateY(-2px);
}

.wmcc-service-full-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 26px 18px;
  border-bottom: 1px solid var(--gray-light);
}

.wmcc-service-full-head .icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--cta-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.wmcc-service-full-head h2 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0;
  letter-spacing: -.01em;
}

.wmcc-service-full-body {
  padding: 20px 26px 26px;
}

.wmcc-service-full-body p {
  font-size: 14.5px;
  color: var(--gray-mid);
  line-height: 1.7;
  margin: 0 0 16px;
}

.wmcc-service-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wmcc-service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--text);
  list-style: none;
}

.wmcc-service-includes li::before {
  content: '✓';
  color: var(--cta);
  font-weight: 700;
  font-size: 13px;
  margin-top: 1px;
  flex-shrink: 0;
}

.wmcc-industries-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.wmcc-industry-pill {
  background: var(--off-white);
  border: 1px solid var(--gray-light);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.wmcc-about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wmcc-about-story-text p {
  font-size: 15.5px;
  color: #4A5568;
  line-height: 1.78;
  margin-bottom: 18px;
}

.wmcc-about-story-text p:last-child { margin-bottom: 0; }

.wmcc-values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.wmcc-value-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}

.wmcc-value-icon {
  font-size: 30px;
  margin-bottom: 12px;
}

.wmcc-value-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 8px;
}

.wmcc-value-card p {
  font-size: 13.5px;
  color: var(--gray-mid);
  line-height: 1.65;
  margin: 0;
}

.wmcc-stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-light);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 48px;
}

.wmcc-stat {
  background: white;
  padding: 32px 20px;
  text-align: center;
}

.wmcc-stat strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 6px;
}

.wmcc-stat span {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
}

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

.wmcc-team-card {
  background: white;
  border: 1px solid var(--gray-light);
  border-radius: 12px;
  overflow: hidden;
}

.wmcc-team-photo {
  aspect-ratio: 4/3;
  background: var(--gray-light);
  overflow: hidden;
}

.wmcc-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wmcc-team-info {
  padding: 18px 20px;
}

.wmcc-team-info h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--navy-dark);
  margin: 0 0 4px;
}

.wmcc-team-info span {
  font-size: 13px;
  color: var(--cta);
  font-weight: 500;
}

.wmcc-inner-cta {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  padding: 80px 24px;
  text-align: center;
}

.wmcc-inner-cta h2 {
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 900;
  color: white;
  letter-spacing: -.025em;
  margin: 0 0 12px;
}

.wmcc-inner-cta p {
  font-size: 16px;
  color: rgba(255,255,255,.62);
  line-height: 1.65;
  margin: 0 auto 32px;
  max-width: 480px;
}

@media (max-width: 980px) {
  .wmcc-about-story   { grid-template-columns: 1fr; gap: 40px; }
  .wmcc-stat-row      { grid-template-columns: repeat(2, 1fr); }
  .wmcc-team-grid     { grid-template-columns: repeat(2, 1fr); }
  .wmcc-values-grid   { grid-template-columns: repeat(2, 1fr); }
}
