/*
Theme Name: C4 Solutions Child
Theme URI: https://c4solutionsllc.com
Description: C4 Solutions GeneratePress Child Theme
Author: C4 Solutions
Template: generatepress
Version: 1.0.0
*/

/* ============================================================
   C4 SOLUTIONS — BRAND TOKENS
   ============================================================ */
:root {
  --c4-red:       #C8102E;
  --c4-orange:    #E04E39;
  --c4-gray-dark: #53565A;
  --c4-gray-mid:  #75787B;
  --c4-silver:    #C1C6C8;
  --c4-black:     #2C2A29;
  --c4-white:     #FFFFFF;
  --c4-bg-light:  #F5F5F5;
  --c4-bg-dark:   #1E1C1B;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius: 0px;
  --transition: 0.2s ease;
}

/* ============================================================
   GOOGLE FONTS — loaded via functions.php
   Barlow Condensed 300,400,600,700,800,900
   Barlow 400,500,600
   ============================================================ */

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

body {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--c4-black);
  background: var(--c4-white);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--c4-red);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

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

p {
  line-height: 1.7;
  margin-bottom: 1em;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   UTILITY BAR
   ============================================================ */
.c4-utility-bar {
  background: var(--c4-red);
  color: var(--c4-white);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 7px 0;
}

.c4-utility-bar .inside {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.c4-utility-bar .c4-util-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.c4-utility-bar a {
  color: var(--c4-white);
  opacity: 0.85;
}

.c4-utility-bar a:hover {
  opacity: 1;
  text-decoration: none;
}

.c4-util-cta {
  background: var(--c4-black);
  color: var(--c4-white) !important;
  padding: 4px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.c4-util-cta:hover {
  background: #444 !important;
  opacity: 1 !important;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

/* Remove GP default top border and add ours */
.site-header {
  border-bottom: 3px solid var(--c4-red) !important;
  box-shadow: none !important;
  background: var(--c4-white) !important;
}

.main-navigation {
  font-family: var(--font-display);
}

/* Logo area */
.site-branding .site-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--c4-black);
}

.site-branding .site-title a {
  color: var(--c4-black);
}

.site-branding .site-title a:hover {
  text-decoration: none;
  color: var(--c4-red);
}

/* Nav links */
.main-navigation .main-nav ul li a {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c4-black);
  padding: 8px 12px;
  transition: color var(--transition);
}

.main-navigation .main-nav ul li a:hover {
  color: var(--c4-red);
  text-decoration: none;
}

.main-navigation .main-nav ul li.current-menu-item > a {
  color: var(--c4-red);
}

/* Nav CTA button */
.main-navigation .main-nav ul li.nav-cta > a {
  background: var(--c4-red);
  color: var(--c4-white) !important;
  padding: 8px 18px;
  margin-left: 8px;
  transition: background var(--transition);
}

.main-navigation .main-nav ul li.nav-cta > a:hover {
  background: #a50d25;
  text-decoration: none;
}

/* Dropdown menus */
.main-navigation .main-nav ul ul {
  border-top: 2px solid var(--c4-red);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.main-navigation .main-nav ul ul li a {
  font-size: 12px;
  padding: 8px 16px;
  background: var(--c4-white);
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation .main-nav ul ul li a:hover {
  background: var(--c4-bg-light);
  color: var(--c4-red);
}

/* Mobile nav */
.menu-toggle {
  color: var(--c4-black);
}

.menu-toggle:hover,
.menu-toggle:focus {
  color: var(--c4-red);
}

@media (max-width: 768px) {
  .main-navigation .main-nav ul li a {
    border-bottom: 1px solid #f0f0f0;
  }
  .main-navigation .main-nav ul li.nav-cta > a {
    margin-left: 0;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c4-black) !important;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 0;
}

.c4-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 0;
}

.c4-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 900px) {
  .c4-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .c4-footer-grid {
    grid-template-columns: 1fr;
  }
}

.c4-footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
}

.c4-footer-logo-mark {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--c4-red);
  line-height: 1;
}

.c4-footer-logo-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--c4-white);
  letter-spacing: 0.02em;
}

.c4-footer-logo-name em {
  color: var(--c4-red);
  font-style: normal;
}

.c4-footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin-bottom: 12px;
}

.c4-footer-nap {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  line-height: 1.7;
}

.c4-footer-col-title {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c4-white);
  margin-bottom: 14px;
}

.c4-footer-col a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  margin-bottom: 8px;
  transition: color var(--transition);
}

.c4-footer-col a:hover {
  color: var(--c4-white);
  text-decoration: none;
}

.c4-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.c4-footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.22);
}

/* Hide GP default footer widgets/copyright */
.footer-widgets,
.site-info {
  display: none;
}

/* ============================================================
   GLOBAL SECTION HELPERS
   ============================================================ */
.c4-section {
  padding: 72px 24px;
  position: relative;
  overflow: hidden;
}

.c4-section-light {
  background: var(--c4-bg-light);
}

.c4-section-dark {
  background: var(--c4-bg-dark);
}

.c4-section-red {
  background: var(--c4-red);
}

.c4-container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Background chevron watermark */
.c4-section-mark {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 220px;
  font-weight: 900;
  color: rgba(200,16,46,0.045);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.c4-section-dark .c4-section-mark {
  color: rgba(255,255,255,0.03);
}

/* ============================================================
   EYEBROW LABELS
   ============================================================ */
.c4-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.c4-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--c4-red);
  flex-shrink: 0;
}

.c4-eyebrow-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c4-red);
}

.c4-eyebrow.center {
  justify-content: center;
}

.c4-eyebrow.white .c4-eyebrow-line {
  background: rgba(255,255,255,0.35);
}

.c4-eyebrow.white .c4-eyebrow-text {
  color: rgba(255,255,255,0.65);
}

/* ============================================================
   TYPOGRAPHY — HEADINGS
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--c4-black);
}

h1 { font-size: clamp(28px, 4vw, 42px); }
h2 { font-size: clamp(22px, 3vw, 32px); }
h3 { font-size: clamp(16px, 2.5vw, 22px); }
h4 { font-size: 16px; }

.c4-section-dark h1,
.c4-section-dark h2,
.c4-section-dark h3 {
  color: var(--c4-white);
}

.c4-section-red h1,
.c4-section-red h2,
.c4-section-red h3 {
  color: var(--c4-white);
}

.c4-red-text { color: var(--c4-red); }

/* ============================================================
   BUTTONS
   ============================================================ */
.c4-btn {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 12px 24px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
  text-decoration: none !important;
  border: 2px solid transparent;
}

.c4-btn-primary {
  background: var(--c4-red);
  color: var(--c4-white) !important;
  border-color: var(--c4-red);
}

.c4-btn-primary:hover {
  background: #a50d25;
  border-color: #a50d25;
}

.c4-btn-ghost {
  background: transparent;
  color: var(--c4-white) !important;
  border-color: rgba(255,255,255,0.35);
}

.c4-btn-ghost:hover {
  border-color: rgba(255,255,255,0.7);
}

.c4-btn-ghost-dark {
  background: transparent;
  color: var(--c4-black) !important;
  border-color: var(--c4-black);
}

.c4-btn-ghost-dark:hover {
  background: var(--c4-black);
  color: var(--c4-white) !important;
}

.c4-btn-white {
  background: var(--c4-white);
  color: var(--c4-red) !important;
  border-color: var(--c4-white);
}

.c4-btn-white:hover {
  background: #f0f0f0;
  border-color: #f0f0f0;
}

/* ============================================================
   PAIN BULLET LIST
   ============================================================ */
.c4-pain-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c4-pain-list li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: var(--c4-gray-dark);
  line-height: 1.55;
  align-items: flex-start;
}

.c4-pain-list li::before {
  content: '«';
  color: var(--c4-red);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ============================================================
   STEP CARDS
   ============================================================ */
.c4-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}

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

.c4-step {
  background: var(--c4-white);
  border: 1px solid #e8e8e8;
  border-top: 4px solid var(--c4-red);
  padding: 28px 22px;
  position: relative;
}

.c4-step-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  color: rgba(200,16,46,0.1);
  line-height: 1;
  margin-bottom: 8px;
}

.c4-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c4-black);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.c4-step-body {
  font-size: 13px;
  color: var(--c4-gray-dark);
  line-height: 1.65;
}

/* ============================================================
   SOLUTION CARDS
   ============================================================ */
.c4-sol-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

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

.c4-sol-card {
  background: var(--c4-black);
  border-left: 4px solid var(--c4-red);
  padding: 24px 20px;
  position: relative;
  overflow: hidden;
}

.c4-sol-card-mark {
  position: absolute;
  right: -6px;
  bottom: -12px;
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 900;
  color: rgba(200,16,46,0.15);
  line-height: 1;
  pointer-events: none;
}

.c4-sol-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--c4-white);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.02em;
}

.c4-sol-body {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

.c4-sol-link {
  display: block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c4-red) !important;
  margin-top: 14px;
  position: relative;
  z-index: 1;
  text-decoration: none !important;
}

.c4-sol-link:hover {
  color: #ff1a38 !important;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.c4-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 28px;
  font-size: 13px;
}

.c4-compare-table th {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 20px;
  text-align: left;
}

.c4-compare-table th:first-child {
  background: var(--c4-bg-light);
  color: var(--c4-gray-dark);
  width: 50%;
}

.c4-compare-table th:last-child {
  background: var(--c4-red);
  color: var(--c4-white);
  width: 50%;
}

.c4-compare-table td {
  padding: 12px 20px;
  border-bottom: 1px solid #ebebeb;
  color: var(--c4-gray-dark);
  vertical-align: top;
  line-height: 1.55;
}

.c4-compare-table tr:nth-child(odd) td:first-child { background: #fafafa; }
.c4-compare-table tr:nth-child(even) td:first-child { background: var(--c4-white); }
.c4-compare-table td:last-child { color: var(--c4-black); font-weight: 600; }

/* ============================================================
   PROOF / TESTIMONIAL CARDS
   ============================================================ */
.c4-proof-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}

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

.c4-proof-card {
  background: var(--c4-white);
  border-left: 4px solid var(--c4-red);
  padding: 24px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.c4-proof-open {
  font-size: 36px;
  color: var(--c4-red);
  display: block;
  line-height: 0.7;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}

.c4-proof-quote {
  font-size: 13px;
  color: var(--c4-black);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 14px;
}

.c4-proof-attr {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c4-gray-dark);
}

.c4-proof-co {
  font-size: 12px;
  color: var(--c4-gray-mid);
  margin-top: 2px;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.c4-cta-band {
  background: var(--c4-red);
  padding: 64px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .c4-cta-band {
    flex-direction: column;
    text-align: center;
    padding: 48px 24px;
  }
}

.c4-cta-band-mark {
  position: absolute;
  right: -24px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.07);
  line-height: 1;
  pointer-events: none;
}

.c4-cta-band h2 {
  color: var(--c4-white);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}

.c4-cta-band p {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.c4-cta-band .c4-btn {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

/* ============================================================
   BLOG CARDS
   ============================================================ */
.c4-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

@media (max-width: 900px) {
  .c4-blog-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .c4-blog-grid {
    grid-template-columns: 1fr;
  }
}

.c4-blog-card {
  background: var(--c4-white);
  border: 1px solid #e8e8e8;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.c4-blog-card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.c4-blog-thumb {
  height: 140px;
  background: var(--c4-black);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 14px 16px;
  overflow: hidden;
}

.c4-blog-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.c4-blog-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,26,25,0.92) 0%, rgba(28,26,25,0.2) 100%);
}

.c4-blog-thumb-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c4-red);
}

.c4-blog-body {
  padding: 16px;
}

.c4-blog-cat {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c4-red);
  display: block;
  margin-bottom: 5px;
}

.c4-blog-title {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  color: var(--c4-black);
  line-height: 1.3;
  letter-spacing: 0.01em;
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.c4-hero {
  background: var(--c4-bg-dark);
  display: flex;
  align-items: stretch;
  min-height: 520px;
  position: relative;
  overflow: hidden;
}

.c4-hero-accent {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--c4-red);
  z-index: 3;
}

.c4-hero-bg-mark {
  position: absolute;
  right: 360px;
  bottom: -60px;
  font-family: var(--font-display);
  font-size: 360px;
  font-weight: 900;
  color: rgba(255,255,255,0.025);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.c4-hero-content {
  flex: 1;
  padding: 72px 48px 64px 52px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
}

.c4-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.c4-hero-eyebrow-mark {
  color: var(--c4-red);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.c4-hero-eyebrow-text {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.c4-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  color: var(--c4-white);
  line-height: 1.0;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.c4-hero-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}

.c4-hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.c4-hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}

.c4-stat-val {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  color: var(--c4-white);
  line-height: 1;
}

.c4-stat-lbl {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.c4-hero-img {
  width: 380px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.c4-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* Fade image into dark bg on left edge */
.c4-hero-img::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 80px;
  background: linear-gradient(to right, var(--c4-bg-dark), transparent);
  z-index: 2;
}

/* Red bar bottom of image */
.c4-hero-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--c4-red);
  z-index: 3;
}

@media (max-width: 900px) {
  .c4-hero {
    flex-direction: column;
    min-height: auto;
  }
  .c4-hero-img {
    width: 100%;
    height: 260px;
  }
  .c4-hero-content {
    padding: 48px 24px 40px;
    max-width: 100%;
  }
  .c4-hero-bg-mark {
    display: none;
  }
}

/* ============================================================
   HOMEPAGE — TWO COLUMN PROBLEM SECTION
   ============================================================ */
.c4-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .c4-two-col {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

/* ============================================================
   HOMEPAGE — PILLARS IMAGE
   ============================================================ */
.c4-pillars-img {
  margin-top: 32px;
  border-radius: 2px;
  overflow: hidden;
}

.c4-pillars-img img {
  width: 100%;
  display: block;
}

.c4-pillars-labels {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 20px;
}

@media (max-width: 600px) {
  .c4-pillars-labels {
    grid-template-columns: 1fr 1fr;
  }
}

.c4-pillar {
  text-align: center;
}

.c4-pillar-icon {
  width: 42px;
  height: 42px;
  background: var(--c4-red);
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c4-white);
  font-size: 18px;
}

.c4-pillar-name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c4-black);
}

.c4-pillar-sub {
  font-size: 11px;
  color: var(--c4-gray-mid);
  margin-top: 3px;
  line-height: 1.4;
}

/* ============================================================
   AEO LEAD PARAGRAPH
   ============================================================ */
.aeo-lead {
  font-size: 15px;
  line-height: 1.75;
  color: var(--c4-gray-dark);
  border-left: 3px solid var(--c4-red);
  padding-left: 20px;
  margin: 28px 0;
}

/* ============================================================
   FAQ ANSWERS
   ============================================================ */
.faq-answer {
  font-size: 14px;
  color: var(--c4-gray-dark);
  line-height: 1.7;
  padding: 16px 0;
  border-bottom: 1px solid #ebebeb;
}

/* ============================================================
   GENERATEPRESS OVERRIDES
   ============================================================ */

/* Remove default GP content padding on full-width pages */
.page-template-default .site-main {
  padding: 0;
}

/* Full width layout — no sidebars */
.c4-full-width .content-area {
  width: 100%;
  max-width: 100%;
  float: none;
}

/* Remove default entry padding */
.entry-content {
  padding: 0;
}

/* GP container width override */
.grid-container {
  max-width: 1200px;
}

/* Remove default post meta on pages */
.page .entry-header,
.page .entry-footer {
  display: none;
}

/* ============================================================
   SCHEMA / HIDDEN AEO ELEMENTS
   ============================================================ */
.c4-schema-hidden {
  display: none;
}

/* ============================================================
   C4 SYMBOL — SVG INLINE HELPERS
   The actual double-chevron brand mark used as:
   - Logo element (nav + footer)
   - Eyebrow prefix
   - Bullet point replacement
   - Section watermarks
   All output via PHP helpers in functions.php
   ============================================================ */

/* Logo wrapper */
.c4-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none !important;
}

.c4-logo-symbol {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.c4-logo-text {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--c4-black);
  letter-spacing: 0.02em;
  line-height: 1;
}

.c4-logo-text em {
  color: var(--c4-red);
  font-style: normal;
}

.site-header .c4-logo-text {
  font-size: 20px;
}

/* Footer logo */
.c4-footer-logo .c4-logo-text {
  color: var(--c4-white);
  font-size: 18px;
}

/* Eyebrow with symbol prefix */
.c4-eyebrow-with-symbol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.c4-eyebrow-with-symbol .c4-eyebrow-text {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c4-red);
}

.c4-eyebrow-with-symbol.white .c4-eyebrow-text {
  color: rgba(255,255,255,0.65);
}

/* Symbol bullet list */
.c4-symbol-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.c4-symbol-list li {
  display: flex;
  gap: 10px;
  font-size: 13px;
  color: var(--c4-gray-dark);
  line-height: 1.55;
  align-items: flex-start;
}

.c4-symbol-list li .c4-symbol-bullet {
  flex-shrink: 0;
  margin-top: 1px;
}

.c4-symbol-list.white li {
  color: rgba(255,255,255,0.7);
}

/* Section watermark — absolute positioned SVG */
.c4-section-symbol-wm {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.045;
  pointer-events: none;
  z-index: 0;
}

.c4-section-dark .c4-section-symbol-wm,
.c4-section-red .c4-section-symbol-wm {
  opacity: 0.06;
}

/* CTA band watermark */
.c4-cta-band .c4-section-symbol-wm {
  opacity: 0.09;
}

/* Hero watermark */
.c4-hero .c4-section-symbol-wm {
  right: 310px;
  width: 320px !important;
  height: 320px !important;
  opacity: 0.03;
  bottom: -40px;
  top: auto;
  transform: none;
}


/* === vCMO/vCFO lowercase-v override === */
/* Keep the lowercase v in vCMO/vCFO menu items (overrides .main-navigation uppercase rule). */
#menu-item-3149 > a,
#menu-item-3164 > a,
.main-navigation .main-nav ul li a[href*="vcmo-services"],
.main-navigation .main-nav ul li a[href*="vcfo-services"] {
  text-transform: none !important;
}
