/*
Theme Name:  Mudex Consulting
Theme URI:   https://www.mudexconsulting.com
Author:      Mudex Consulting
Author URI:  https://www.mudexconsulting.com
Description: Professional consulting theme for Mudex Consulting. Light theme with blue and orange brand colors.
Version:     1.0.0
Requires at least: 6.0
Requires PHP: 7.4
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mudex
Tags: business, consulting, professional, responsive
*/

/* ============================================================
   CANONICAL DESIGN TOKENS  (audit fix: single source of truth)
   ============================================================ */
:root {
  /* Brand colors */
  --blue:        #2B5F9E;
  --blue-dark:   #1A3A5C;
  --blue-pale:   #EEF3FA;
  --blue-mid:    #D6E4F5;
  --orange:      #F26522;
  --orange-pale: #FEF0E8;

  /* Neutrals */
  --white:       #FFFFFF;
  --off-white:   #F7F9FC;
  --gray-50:     #F0F4F8;
  --gray-100:    #E2EAF2;
  --gray-200:    #C8D8E8;
  --text:        #1C2B3A;
  --text-mid:    #4A5B6E;
  --text-muted:  #7A8EA0;

  /* Typography */
  --font-sans:   'DM Sans', sans-serif;
  --font-serif:  'DM Serif Display', serif;

  /* Border radius */
  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  14px;
  --r-xl:  20px;

  /* Spacing (audit fix: unified section padding) */
  --section-py:     80px;
  --section-px:     48px;
  --section-py-alt: 72px; /* FAQ strip on contact only */

  /* Hero (audit fix: unified inner-page hero) */
  --inner-hero-pt:  88px;
  --inner-hero-pb:  96px;
  --inner-hero-h1:  46px;

  /* Hero overlay (audit fix: single value) */
  --hero-overlay:   rgba(255,255,255,0.84);

  /* Headings */
  --h2-size: 34px;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

/* ============================================================
   NAV  (audit fix: white bg, 3px orange border on ALL pages)
   ============================================================ */
.site-nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 var(--section-px);
  height: 68px;
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(242,101,34,0.08);
}
.site-nav .nav-logo { display: flex; align-items: Left; }
.site-nav .nav-logo img { height: 44px; width: auto; display: block; }
.site-nav .nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.site-nav .nav-links a { color: var(--text-mid); font-size: 14px; font-weight: 400; transition: color 0.2s; }
.site-nav .nav-links a:hover { color: var(--orange); }
.site-nav .nav-links li.current-menu-item > a,
.site-nav .nav-links li.current_page_item > a {
  color: var(--orange);
  font-weight: 500;
  border-bottom: 2px solid var(--orange);
  padding-bottom: 2px;
}
.site-nav .nav-links .menu-cta > a {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--r-sm);
  font-weight: 500;
  border-bottom: none !important;
  transition: background 0.2s, transform 0.15s;
}
.site-nav .nav-links .menu-cta > a:hover { background: #d95a1c; transform: translateY(-1px); }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--text);
  font-size: 24px;
}

/* ============================================================
   PAGE HERO — inner pages (unified audit fix)
   ============================================================ */
.page-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: var(--inner-hero-pt) var(--section-px) var(--inner-hero-pb);
  text-align: center;
  overflow: hidden;
}
.page-hero--about {
  background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=1600&q=80');
  background-position: center top;
}
.page-hero--contact {
  background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1600&q=80');
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: var(--hero-overlay); /* audit fix: normalised */
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 {
  font-family: var(--font-serif);
  font-size: var(--inner-hero-h1); /* audit fix: 46px on all inner pages */
  font-weight: 400;
  color: var(--text);
  line-height: 1.18;
  margin-bottom: 18px;
}
.page-hero h1 em { color: var(--blue); font-style: normal; }
.page-hero .hero-sub {
  font-size: 16px;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto 28px;
  line-height: 1.75;
}

/* ============================================================
   HOME HERO (larger statement)
   ============================================================ */
.home-hero {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 96px var(--section-px) 104px;
  text-align: center;
  overflow: hidden;
}
.home-hero__overlay { position: absolute; inset: 0; background: var(--hero-overlay); }
.home-hero__content { position: relative; z-index: 1; }
.home-hero h1 {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 400;
  color: var(--text);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.home-hero h1 em { color: var(--blue); font-style: normal; }
.home-hero .hero-sub {
  font-size: 17px;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.75;
}
.hero-rule { width: 40px; height: 3px; background: var(--orange); border-radius: 2px; margin: 48px auto 0; }

/* ============================================================
   EYEBROW
   ============================================================ */
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600; /* audit fix: 600 everywhere */
  letter-spacing: 3px;
  color: var(--orange);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.eyebrow--light { color: rgba(255,255,255,0.55); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 28px;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb em { color: var(--orange); font-style: normal; }
.breadcrumb .sep { color: var(--gray-200); }

/* ============================================================
   HERO BUTTONS
   ============================================================ */
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border: none;
  padding: 14px 32px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  display: inline-block;
  transition: background 0.2s, transform 0.15s;
}
.btn-orange:hover { background: #d95a1c; color: var(--white); transform: translateY(-1px); }

.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  padding: 13px 32px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-sans);
  display: inline-block;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); transform: translateY(-1px); }

.btn-ghost {
  background: transparent;
  color: var(--text-mid);
  border: 1px solid var(--gray-100);
  padding: 13px 32px;
  border-radius: var(--r-sm);
  font-size: 14px;
  font-family: var(--font-sans);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }

/* ============================================================
   PROCESS BAR
   ============================================================ */
.process-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 32px var(--section-px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; max-width: 130px; }
.process-num { width: 38px; height: 38px; border-radius: 50%; background: var(--orange); color: var(--white); font-size: 13px; font-weight: 600; display: flex; align-items: center; justify-content: center; margin-bottom: 9px; flex-shrink: 0; }
.process-label { font-size: 11px; color: var(--text-muted); line-height: 1.4; max-width: 85px; }
.process-connector { flex: 1; height: 1px; background: var(--gray-100); margin-bottom: 30px; max-width: 48px; }

/* ============================================================
   STATS BAR  (Option B: blue background)
   ============================================================ */
.stats-bar { display: grid; grid-template-columns: repeat(3,1fr); background: var(--blue); }
.stats-bar .stat { padding: 28px 20px; text-align: center; border-right: 1px solid rgba(255,255,255,0.15); }
.stats-bar .stat:last-child { border-right: none; }
.stats-bar .stat-num { font-size: 28px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.stats-bar .stat-lbl { font-size: 11px; color: rgba(255,255,255,0.6); letter-spacing: 0.8px; text-transform: uppercase; }

/* ============================================================
   SECTIONS  (audit fix: unified 80px 48px)
   ============================================================ */
.section { padding: var(--section-py) var(--section-px); }
.section--alt { background: var(--off-white); }
.section--blue { background: var(--blue); }
.section--gray { background: var(--gray-50); border-top: 1px solid var(--gray-100); }

.section-head { margin-bottom: 48px; }
.section-head h2 {
  font-family: var(--font-serif);
  font-size: var(--h2-size); /* audit fix: 34px unified */
  font-weight: 400;
  margin: 10px 0 12px;
  line-height: 1.2;
  color: var(--text);
}
.section-head h2.light { color: var(--white); }
.section-head p { font-size: 15px; color: var(--text-mid); max-width: 520px; line-height: 1.75; }
.section-head p.light { color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.svc-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
.svc-card:hover { border-color: var(--orange); box-shadow: 0 6px 28px rgba(242,101,34,0.1); transform: translateY(-2px); }
.svc-card--featured { border: 2px solid var(--orange); }
.svc-card-header { display: flex; align-items: flex-start; gap: 14px; }
.svc-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 24px; flex-shrink: 0; }
.svc-icon--orange { background: var(--orange-pale); color: var(--orange); }
.svc-header-text { flex: 1; }
.svc-tag { display: inline-block; font-size: 10px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 6px; }
.svc-tag--orange { color: var(--orange); background: var(--orange-pale); }
.svc-tag--blue { color: var(--blue); background: var(--blue-pale); }
.svc-card h3 { font-size: 17px; font-weight: 500; color: var(--text); line-height: 1.3; }
.svc-card > p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.svc-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text-mid); line-height: 1.5; }
.svc-list li i { color: var(--orange); font-size: 16px; margin-top: 1px; flex-shrink: 0; }
.svc-divider { border: none; border-top: 1px solid var(--gray-100); }
.svc-footer { display: flex; align-items: center; justify-content: space-between; }
.svc-footer span { font-size: 12px; color: var(--text-muted); }
.svc-link { font-size: 13px; color: var(--orange); font-weight: 500; display: flex; align-items: center; gap: 4px; transition: gap 0.2s; }
.svc-link:hover { gap: 8px; color: var(--orange); }
.svc-link i { font-size: 14px; }

/* Home: 3-col service preview */
.svc-grid--home { grid-template-columns: repeat(3, 1fr); }
.svc-grid--home .svc-card { gap: 12px; padding: 28px 24px; }
.svc-grid--home .svc-card p { flex: 1; }

/* ============================================================
   METHODOLOGY
   ============================================================ */
.method-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.method-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-lg); padding: 28px 24px; transition: background 0.25s, border-color 0.25s; }
.method-card:hover { background: rgba(255,255,255,0.17); border-color: rgba(242,101,34,0.5); }
.method-num { font-family: var(--font-serif); font-size: 40px; color: rgba(242,101,34,0.35); margin-bottom: 14px; line-height: 1; }
.method-card h4 { font-size: 16px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.method-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.65; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.ind-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
.ind-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md); padding: 22px 20px; display: flex; align-items: center; gap: 16px; transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.ind-card:hover { border-color: var(--orange); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(242,101,34,0.08); }
.ind-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--orange-pale); display: flex; align-items: center; justify-content: center; color: var(--orange); font-size: 21px; flex-shrink: 0; }
.ind-card h4 { font-size: 14px; font-weight: 500; margin-bottom: 3px; }
.ind-card p { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 40px; }
.faq-item { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-md); padding: 24px 22px; transition: border-color 0.2s; }
.faq-item:hover { border-color: var(--orange-pale); }
.faq-q { font-size: 14px; font-weight: 500; color: var(--text); margin-bottom: 10px; display: flex; align-items: flex-start; gap: 9px; }
.faq-q i { color: var(--orange); font-size: 18px; margin-top: 1px; flex-shrink: 0; }
.faq-a { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; padding-left: 27px; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.story-text p { font-size: 15px; color: var(--text-mid); line-height: 1.85; margin-bottom: 18px; }
.story-text strong { color: var(--blue); font-weight: 500; }
.pullquote { border-left: 3px solid var(--orange); padding: 18px 22px; margin: 28px 0; background: var(--orange-pale); border-radius: 0 var(--r-md) var(--r-md) 0; }
.pullquote p { font-size: 16px; color: var(--text); font-style: italic; line-height: 1.65; }
.story-aside { display: flex; flex-direction: column; gap: 20px; }
.aside-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 28px 26px; }
.aside-card h3 { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 18px; }
.tag-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; color: var(--blue); background: var(--blue-pale); padding: 5px 12px; border-radius: 20px; font-weight: 500; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.value-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.value-list li i { color: var(--orange); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.pillars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.pillar-card { background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.18); border-radius: var(--r-lg); padding: 32px 26px; transition: background 0.25s, border-color 0.25s; }
.pillar-card:hover { background: rgba(255,255,255,0.16); border-color: rgba(242,101,34,0.45); }
.pillar-icon { width: 48px; height: 48px; border-radius: var(--r-md); background: rgba(242,101,34,0.18); display: flex; align-items: center; justify-content: center; color: #F26522; font-size: 24px; margin-bottom: 18px; }
.pillar-card h3 { font-size: 17px; font-weight: 500; color: var(--white); margin-bottom: 10px; }
.pillar-card p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* ============================================================
   ABOUT panel / HOME about grid
   ============================================================ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about-text p { font-size: 15px; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-text strong { color: var(--blue); font-weight: 500; }
.about-panel { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 36px 32px; box-shadow: 0 4px 24px rgba(43,95,158,0.06); }
.about-panel h3 { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.checklist { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.checklist li i { color: var(--orange); font-size: 17px; margin-top: 1px; flex-shrink: 0; }
.panel-divider { border: none; border-top: 1px solid var(--gray-100); margin: 20px 0; }
.contact-row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; color: var(--text-mid); margin-top: 8px; }
.contact-row i { color: var(--blue); font-size: 17px; flex-shrink: 0; }
.contact-row a { color: var(--blue); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-xl); padding: 44px 40px; box-shadow: 0 4px 32px rgba(43,95,158,0.07); }
.form-card h2 { font-family: var(--font-serif); font-size: 28px; font-weight: 400; color: var(--text); margin-bottom: 8px; }
.form-card .form-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 32px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.form-group label { font-size: 12px; font-weight: 600; color: var(--text-mid); letter-spacing: 0.5px; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 14px; border-radius: var(--r-sm); border: 1px solid var(--gray-100); background: var(--off-white); color: var(--text); font-size: 14px; font-family: var(--font-sans); outline: none; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(43,95,158,0.08); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A8EA0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
.btn-submit { width: 100%; background: var(--orange); color: var(--white); border: none; padding: 15px 32px; border-radius: var(--r-sm); font-size: 15px; font-weight: 500; cursor: pointer; font-family: var(--font-sans); transition: background 0.2s, transform 0.15s; margin-top: 4px; }
.btn-submit:hover { background: #d95a1c; transform: translateY(-1px); }
.form-note { font-size: 12px; color: var(--text-muted); margin-top: 14px; text-align: center; }
.contact-sidebar { display: flex; flex-direction: column; gap: 20px; }
.info-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--r-lg); padding: 28px 26px; }
.info-card h3 { font-size: 11px; font-weight: 600; color: var(--orange); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-row:last-child { margin-bottom: 0; }
.info-icon { width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--blue-pale); display: flex; align-items: center; justify-content: center; color: var(--blue); font-size: 19px; flex-shrink: 0; }
.info-row h4 { font-size: 12px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-row p, .info-row a { font-size: 14px; color: var(--text-mid); line-height: 1.5; }
.info-row a:hover { color: var(--blue); }
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.hours-item { background: var(--off-white); border-radius: var(--r-sm); padding: 10px 14px; }
.hours-item .day { font-size: 11px; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 3px; }
.hours-item .time { font-size: 13px; color: var(--text); font-weight: 500; }
.social-row { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn { display: flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: var(--r-sm); border: 1px solid var(--gray-100); font-size: 13px; color: var(--text-mid); transition: border-color 0.2s, color 0.2s; }
.social-btn:hover { border-color: var(--orange); color: var(--orange); }
.social-btn i { font-size: 17px; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { background: var(--gray-50); border-top: 1px solid var(--gray-100); padding: var(--section-py) var(--section-px); text-align: center; }
.cta-inner { max-width: 560px; margin: 0 auto; background: var(--white); border: 1px solid var(--gray-100); border-top: 3px solid var(--orange); border-radius: var(--r-xl); padding: 56px 48px; box-shadow: 0 4px 32px rgba(242,101,34,0.07); }
.cta-inner h2 { font-family: var(--font-serif); font-size: var(--h2-size); font-weight: 400; color: var(--text); margin: 10px 0 12px; }
.cta-inner p { font-size: 15px; color: var(--text-mid); margin-bottom: 32px; line-height: 1.7; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-form { display: flex; gap: 8px; max-width: 400px; margin: 24px auto 0; }
.cta-form input { flex: 1; padding: 12px 16px; border-radius: var(--r-sm); border: 1px solid var(--gray-100); background: var(--off-white); color: var(--text); font-size: 14px; outline: none; font-family: var(--font-sans); transition: border-color 0.2s; }
.cta-form input:focus { border-color: var(--orange); }
.cta-form input::placeholder { color: var(--text-muted); }
.cta-contact { font-size: 12px; color: var(--text-muted); margin-top: 16px; }
.cta-contact a { color: var(--orange); }

/* ============================================================
   FOOTER  (audit fix: unified across all pages)
   ============================================================ */
.site-footer {
  background: var(--text); /* #1C2B3A — audit fix: consistent */
  padding: 52px var(--section-px) 0;
  border-top: 3px solid var(--orange); /* audit fix: orange to match nav */
}
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 48px; }
.footer-logo { height: 40px; width: auto; display: block; margin-bottom: 14px; }
.footer-tagline { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.65; max-width: 230px; }
.site-footer h4 { font-size: 10px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px; }
.site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.site-footer ul a { font-size: 13.5px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.site-footer ul a:hover { color: var(--white); }
.footer-bottom { margin-top: 44px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.07); display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.22); }
.socials { display: flex; gap: 18px; }
.socials a { color: rgba(255,255,255,0.28); font-size: 20px; transition: color 0.2s; }
.socials a:hover { color: var(--orange); }

/* ============================================================
   WORDPRESS CORE OVERRIDES
   ============================================================ */
.wp-block-image img { border-radius: var(--r-md); }
.alignfull { margin-left: calc(-1 * var(--section-px)); margin-right: calc(-1 * var(--section-px)); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-px: 32px; }
  .method-grid { grid-template-columns: 1fr 1fr; }
  .svc-grid--home { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .story-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .pillars-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-px: 20px;
    --section-py: 52px;
    --inner-hero-pt: 60px;
    --inner-hero-pb: 68px;
    --inner-hero-h1: 32px;
  }
  .site-nav { padding: 0 20px; }
  .site-nav .nav-links { display: none; }
  .site-nav .nav-links.is-open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); border-bottom: 3px solid var(--orange); padding: 20px; gap: 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); }
  .nav-toggle { display: block; }
  .home-hero h1 { font-size: 34px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-grid--home { grid-template-columns: 1fr; }
  .stats-bar { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-inner { padding: 40px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 32px 24px; }
  .process-bar { padding: 24px 20px; overflow-x: auto; justify-content: flex-start; }
  .pillars-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 40px 20px 0; }
  .cta-form { flex-direction: column; }
}

@media (max-width: 480px) {
  .ind-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; }
}
