/* =========================================================
   PMCC International — Stylesheet
   Visual identity derived from the PMCC logo
   Primary: red #B5122E   Secondary: navy #14223D
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Brand palette */
  --pmcc-red: #B5122E;
  --pmcc-red-dark: #8E0E24;
  --pmcc-red-soft: #D9314A;
  --pmcc-navy: #14223D;
  --pmcc-navy-light: #2A3A5A;
  --pmcc-navy-soft: #4A5A7A;

  /* Neutrals */
  --pmcc-cream: #F7F5F0;
  --pmcc-paper: #FBFAF7;
  --pmcc-white: #FFFFFF;
  --pmcc-grey-100: #EFEEEA;
  --pmcc-grey-200: #D9D7D1;
  --pmcc-grey-400: #8C8C8C;
  --pmcc-grey-600: #5C5C5C;
  --pmcc-grey-800: #2E2E2E;

  /* Typography */
  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Helvetica Neue", Helvetica, Arial, sans-serif;

  /* Layout */
  --container: 1200px;
  --container-narrow: 900px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  /* Effects */
  --shadow-sm: 0 1px 3px rgba(20, 34, 61, 0.06), 0 1px 2px rgba(20, 34, 61, 0.04);
  --shadow-md: 0 6px 18px rgba(20, 34, 61, 0.08), 0 2px 6px rgba(20, 34, 61, 0.04);
  --shadow-lg: 0 18px 40px rgba(20, 34, 61, 0.10), 0 6px 12px rgba(20, 34, 61, 0.05);

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;

  --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--pmcc-grey-800);
  background: var(--pmcc-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--pmcc-red); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--pmcc-red-dark); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding-left: 1.25rem; }
li { margin-bottom: 0.4rem; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  color: var(--pmcc-navy);
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.6rem); font-weight: 600; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.6rem); }
h4 { font-size: 1.15rem; font-weight: 600; }

p { margin-bottom: 1.1rem; }
.lead { font-size: 1.15rem; color: var(--pmcc-grey-600); line-height: 1.7; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--pmcc-red);
  margin-bottom: 1rem;
  padding-left: 2.5rem;
  position: relative;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 2rem; height: 1px;
  background: var(--pmcc-red);
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
section { padding: clamp(3.5rem, 8vw, 6rem) 0; }
.section-header { max-width: 760px; margin-bottom: 3rem; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header.centered .eyebrow { padding-left: 0; }
.section-header.centered .eyebrow::before { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.7rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--pmcc-red);
  color: var(--pmcc-white);
}
.btn-primary:hover {
  background: var(--pmcc-red-dark);
  color: var(--pmcc-white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  background: transparent;
  color: var(--pmcc-navy);
  border-color: var(--pmcc-navy);
}
.btn-secondary:hover {
  background: var(--pmcc-navy);
  color: var(--pmcc-white);
}
.btn-ghost {
  background: transparent;
  color: var(--pmcc-white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: var(--pmcc-white);
  color: var(--pmcc-navy);
}
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--pmcc-grey-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
  gap: 1rem;
}
.logo-link { display: flex; align-items: center; }
.logo-link img { height: 56px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  color: var(--pmcc-navy);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.4rem 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pmcc-red);
  transition: width var(--transition);
}
.main-nav a:hover, .main-nav a.active { color: var(--pmcc-red); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }
.nav-cta { padding: 0.55rem 1.1rem !important; font-size: 0.88rem !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--pmcc-navy);
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: currentColor;
  position: relative;
  transition: all var(--transition);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 24px; height: 2px; background: currentColor;
  transition: all var(--transition);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.is-open span { background: transparent; }
.nav-toggle.is-open span::before { transform: rotate(45deg); top: 0; }
.nav-toggle.is-open span::after { transform: rotate(-45deg); top: 0; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(180deg, var(--pmcc-cream) 0%, var(--pmcc-paper) 100%);
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 60% 40%, rgba(181, 18, 46, 0.06), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
}
.hero-content { max-width: 640px; }
.hero h1 {
  margin-bottom: 1.5rem;
}
.hero h1 .accent { color: var(--pmcc-red); font-style: italic; font-weight: 500; }
.hero-lead {
  font-size: 1.2rem;
  color: var(--pmcc-grey-600);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--pmcc-white);
  border: 1px solid var(--pmcc-grey-100);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, transparent 60%, rgba(181, 18, 46, 0.04) 100%),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(20, 34, 61, 0.04) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(20, 34, 61, 0.04) 40px);
}
.hero-visual img { position: relative; max-width: 80%; height: auto; }

/* Hero stats strip */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--pmcc-grey-100);
}
.stat .value {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--pmcc-red);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat .label {
  font-size: 0.85rem;
  color: var(--pmcc-grey-600);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* ---------- Cards / grids ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

.card {
  background: var(--pmcc-white);
  border: 1px solid var(--pmcc-grey-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  border-color: var(--pmcc-red);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(181, 18, 46, 0.08);
  color: var(--pmcc-red);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.card-icon svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: 0.7rem; font-size: 1.25rem; }
.card p { color: var(--pmcc-grey-600); font-size: 0.97rem; margin-bottom: 0; }

/* Pillar cards (homepage) */
.pillar {
  background: var(--pmcc-white);
  border-top: 3px solid var(--pmcc-red);
  padding: 2.5rem 2rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.pillar:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pillar h3 { color: var(--pmcc-navy); margin-bottom: 0.8rem; }
.pillar p { color: var(--pmcc-grey-600); margin-bottom: 1rem; }
.pillar a { font-weight: 600; font-size: 0.92rem; }

/* ---------- Service list (services page) ---------- */
.service-list { display: grid; gap: 0; }
.service-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--pmcc-grey-100);
  align-items: start;
}
.service-item:last-child { border-bottom: none; }
.service-item .number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--pmcc-red);
  font-weight: 500;
  line-height: 1;
}
.service-item h3 { margin-bottom: 0.6rem; }
.service-item p { color: var(--pmcc-grey-600); margin-bottom: 0; }

/* ---------- Sectors ---------- */
.sector-card {
  background: var(--pmcc-white);
  border: 1px solid var(--pmcc-grey-100);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
}
.sector-card:hover {
  border-color: var(--pmcc-red);
  background: linear-gradient(180deg, var(--pmcc-white), rgba(181, 18, 46, 0.02));
}
.sector-card .sector-icon {
  width: 56px; height: 56px;
  background: var(--pmcc-navy);
  color: var(--pmcc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.sector-card .sector-icon svg { width: 28px; height: 28px; }
.sector-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.sector-card p { color: var(--pmcc-grey-600); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Client / audience cards ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.audience-card {
  display: grid;
  grid-template-columns: 4px 1fr;
  background: var(--pmcc-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.audience-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.audience-card .stripe { background: var(--pmcc-red); }
.audience-card .body { padding: 1.75rem; }
.audience-card h3 { font-size: 1.15rem; margin-bottom: 0.5rem; color: var(--pmcc-navy); }
.audience-card p { color: var(--pmcc-grey-600); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- Why PMCC selling points ---------- */
.benefit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--pmcc-grey-100);
}
.benefit:last-child { border-bottom: none; }
.benefit-icon {
  width: 48px; height: 48px;
  background: var(--pmcc-cream);
  border: 1px solid var(--pmcc-grey-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pmcc-red);
}
.benefit-icon svg { width: 22px; height: 22px; }
.benefit h4 { margin-bottom: 0.3rem; color: var(--pmcc-navy); }
.benefit p { color: var(--pmcc-grey-600); font-size: 0.95rem; margin-bottom: 0; }

/* ---------- How we work timeline ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; position: relative; }
.steps::before {
  content: "";
  position: absolute;
  top: 28px; left: 12%; right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--pmcc-red), var(--pmcc-navy));
  opacity: 0.15;
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; }
.step-number {
  width: 56px; height: 56px;
  margin: 0 auto 1.5rem;
  background: var(--pmcc-white);
  border: 2px solid var(--pmcc-red);
  color: var(--pmcc-red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.6rem; }
.step p { color: var(--pmcc-grey-600); font-size: 0.95rem; }

/* ---------- FAQ ---------- */
.faq-item {
  border-bottom: 1px solid var(--pmcc-grey-100);
  padding: 1.5rem 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pmcc-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--pmcc-red);
  font-size: 1.6rem;
  font-weight: 400;
  transition: transform var(--transition);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin-top: 1rem; color: var(--pmcc-grey-600); }

/* ---------- CTA strip ---------- */
.cta-strip {
  background: var(--pmcc-navy);
  color: var(--pmcc-white);
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pmcc-red);
}
.cta-strip::after {
  content: "";
  position: absolute;
  bottom: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse at center, rgba(181, 18, 46, 0.18), transparent 60%);
  pointer-events: none;
}
.cta-strip h2 { color: var(--pmcc-white); }
.cta-strip .container { position: relative; z-index: 1; }
.cta-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-flex h2 { max-width: 640px; }

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: var(--pmcc-navy);
  color: var(--pmcc-white);
  padding: clamp(4rem, 7vw, 6rem) 0 clamp(3.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pmcc-red);
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -5%;
  width: 50%; height: 150%;
  background: radial-gradient(ellipse at center, rgba(181, 18, 46, 0.12), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; max-width: 850px; }
.page-hero h1 { color: var(--pmcc-white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.2rem; color: rgba(255, 255, 255, 0.85); line-height: 1.7; max-width: 700px; }
.page-hero .eyebrow { color: var(--pmcc-red-soft); }
.page-hero .eyebrow::before { background: var(--pmcc-red-soft); }

/* Breadcrumb */
.breadcrumb {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.7); }
.breadcrumb a:hover { color: var(--pmcc-white); }
.breadcrumb .sep { margin: 0 0.5rem; opacity: 0.5; }

/* ---------- Two-column content ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.two-col-reverse {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
}

/* Quote / pull statement */
.pull-quote {
  background: var(--pmcc-cream);
  border-left: 3px solid var(--pmcc-red);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--pmcc-navy);
  line-height: 1.5;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* Tagged list (services on home) */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.tag-list li {
  background: var(--pmcc-white);
  border: 1px solid var(--pmcc-grey-100);
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--pmcc-navy);
  margin-bottom: 0;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
}
.check-list li {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 0.85rem;
  color: var(--pmcc-grey-800);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 14px; height: 8px;
  border-left: 2px solid var(--pmcc-red);
  border-bottom: 2px solid var(--pmcc-red);
  transform: rotate(-45deg);
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.contact-info h3 { margin-bottom: 0.5rem; }
.contact-info .office {
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--pmcc-grey-100);
}
.contact-info .office:last-child { border-bottom: none; }
.contact-info .office h4 {
  color: var(--pmcc-red);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.contact-info .office .name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pmcc-navy);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.contact-info address {
  font-style: normal;
  color: var(--pmcc-grey-600);
  line-height: 1.6;
}

.contact-form-wrap {
  background: var(--pmcc-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pmcc-grey-100);
}
.form-row { margin-bottom: 1.25rem; }
.form-row label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pmcc-navy);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--pmcc-grey-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.95rem;
  background: var(--pmcc-paper);
  color: var(--pmcc-grey-800);
  transition: all var(--transition);
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--pmcc-red);
  background: var(--pmcc-white);
  box-shadow: 0 0 0 3px rgba(181, 18, 46, 0.08);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.privacy-note { font-size: 0.82rem; color: var(--pmcc-grey-400); margin-top: 1rem; }

/* Contact details quick block */
.contact-quick {
  background: var(--pmcc-cream);
  padding: 2rem;
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
}
.contact-quick a { color: var(--pmcc-navy); font-weight: 500; }
.contact-quick a:hover { color: var(--pmcc-red); }
.contact-quick p { margin-bottom: 0.5rem; }
.contact-quick p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--pmcc-navy);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--pmcc-red);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 64px;
  width: auto;
  background: var(--pmcc-white);
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.93rem; line-height: 1.6; color: rgba(255, 255, 255, 0.7); }
.footer-col h4 {
  color: var(--pmcc-white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a { color: rgba(255, 255, 255, 0.75); font-size: 0.93rem; }
.footer-col a:hover { color: var(--pmcc-white); }
.footer-col address {
  font-style: normal;
  font-size: 0.93rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.footer-col address strong { color: var(--pmcc-white); display: block; margin-bottom: 0.2rem; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Reveal-on-scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .two-col, .two-col-reverse { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .main-nav {
    position: fixed;
    inset: 67px 0 0 0;
    background: var(--pmcc-white);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.5rem var(--gutter);
    border-top: 1px solid var(--pmcc-grey-100);
    transform: translateX(100%);
    transition: transform var(--transition);
    overflow-y: auto;
  }
  .main-nav.is-open { transform: translateX(0); }
  .main-nav a {
    padding: 1rem 0;
    border-bottom: 1px solid var(--pmcc-grey-100);
    font-size: 1.05rem;
  }
  .main-nav .nav-cta { margin-top: 1rem; text-align: center; justify-content: center; }
  .nav-toggle { display: flex; }
  .logo-link img { height: 48px; }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; gap: 1.25rem; }
  .audience-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-stats { grid-template-columns: 1fr; gap: 1.25rem; }
  .stat .value { font-size: 2.2rem; }

  .steps { grid-template-columns: 1fr; gap: 2rem; }
  .steps::before { display: none; }

  .service-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .service-item .number { font-size: 1.75rem; }

  .pull-quote { font-size: 1.2rem; padding: 1.5rem; }
  .contact-form-wrap { padding: 1.75rem; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-strip, .nav-toggle { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: underline; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
