
/* ── CUSTOM PORTERING — SCOPED STYLES ──────────────────────────────────────
   All rules prefixed with .cpb-root to prevent theme conflicts.
   Load via wp_head() or plugin enqueue — NOT inline in post content.
   ─────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Outfit:wght@300;400;500&display=swap');

.cpb-root {
  --cpb-black:    #09090B;
  --cpb-near-bl:  #111318;
  --cpb-panel:    #161B24;
  --cpb-border:   #1E2530;
  --cpb-steel:    #2D3848;
  --cpb-slate:    #4A5568;
  --cpb-mist:     #8899AA;
  --cpb-ghost:    #C8D4E0;
  --cpb-cream:    #F0EBE3;
  --cpb-white:    #F9F8F6;
  --cpb-gold:     #C8922A;
  --cpb-gold-hi:  #E0A83C;
  --cpb-gold-dim: #7A5818;
  --cpb-red:      #C0392B;
  --cpb-serif:    'Playfair Display', Georgia, serif;
  --cpb-sans:     'Outfit', system-ui, -apple-system, sans-serif;
  --cpb-ease:     cubic-bezier(0.22, 1, 0.36, 1);

  /* Reset scoped to this component only */
  box-sizing: border-box;
  font-family: var(--cpb-sans);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--cpb-ghost);
  background: var(--cpb-black);
  -webkit-font-smoothing: antialiased;
  /* NO overflow-x:hidden here — it breaks position:sticky */
  width: 100%;
  /* Escape WP theme content width constraints */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
  max-width: 100vw;
}

/* Box-sizing reset scoped to component only */
.cpb-root *, .cpb-root *::before, .cpb-root *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.cpb-root a { text-decoration: none; color: inherit; }
.cpb-root ul { list-style: none; }
.cpb-root img { display: block; max-width: 100%; }
/* Honour the HTML `hidden` attribute — CSS display rules on .cpb-nav-mobile
   etc. would otherwise override the browser's [hidden]{ display:none } default */
.cpb-root [hidden] { display: none !important; }

/* ── LAYOUT ──────────────────────────────────────────────────────────────── */
.cpb-root .cpb-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}
.cpb-root .cpb-section    { padding: 88px 0; }
.cpb-root .cpb-section-sm { padding: 64px 0; }

/* ── TYPOGRAPHY ──────────────────────────────────────────────────────────── */
.cpb-root .cpb-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cpb-gold); margin-bottom: 20px;
}
.cpb-root .cpb-eyebrow::before {
  content: ''; width: 28px; height: 1px; background: var(--cpb-gold); flex-shrink: 0;
}
.cpb-root h2.cpb-display {
  font-family: var(--cpb-serif);
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 500; line-height: 1.12; letter-spacing: -0.02em;
  color: var(--cpb-white);
}
.cpb-root h2.cpb-display em { font-style: italic; color: var(--cpb-gold); }
.cpb-root .cpb-body-lead {
  font-size: 16px; color: var(--cpb-mist); line-height: 1.75; font-weight: 300;
}

/* ── BUTTONS ─────────────────────────────────────────────────────────────── */
.cpb-root .cpb-btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--cpb-sans); font-size: 16px; font-weight: 500;
  letter-spacing: 0.04em; padding: 13px 26px; border-radius: 3px;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
  white-space: nowrap; text-decoration: none; line-height: 1;
}
.cpb-root .cpb-btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.cpb-root .cpb-btn-gold { background: var(--cpb-gold); color: var(--cpb-black); }
.cpb-root .cpb-btn-gold:hover {
  background: var(--cpb-gold-hi); transform: translateY(-1px); color: var(--cpb-black);
}
.cpb-root .cpb-btn-outline {
  background: transparent; color: var(--cpb-ghost); border: 1px solid var(--cpb-steel);
}
.cpb-root .cpb-btn-outline:hover {
  border-color: var(--cpb-mist); color: var(--cpb-white); transform: translateY(-1px);
}

/* ── GOLD LINK ───────────────────────────────────────────────────────────── */
.cpb-root .cpb-lnk {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 15px; font-weight: 500; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--cpb-gold);
  border-bottom: 1px solid var(--cpb-gold-dim); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.cpb-root .cpb-lnk::after { content: '→'; font-size: 16px; }
.cpb-root .cpb-lnk:hover { color: var(--cpb-gold-hi); border-color: var(--cpb-gold-hi); }

/* ── HERO ────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-hero {
  position: relative;
  /* FIX: Use min-height with px fallback instead of 100vh
     100vh inside WP = viewport - admin bar - theme header → overflows
     Use a fixed min-height that works regardless of WP chrome */
  min-height: 680px;
  height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cpb-near-bl);
}
/* Gradient overlay — always present even without photo */
.cpb-root .cpb-hero-bg {
  position: absolute; inset: 0; pointer-events: none; z-index: 1;
  background:
    linear-gradient(115deg, rgba(9,9,11,0.97) 38%, rgba(14,20,30,0.72) 62%, rgba(9,9,11,0.42) 100%);
}
/* Photo panel — right half */
.cpb-root .cpb-hero-photo {
  position: absolute;
  /* FIX: Use inset values, not 100% height which causes overflow in WP */
  top: 0; right: 0; bottom: 0;
  width: 55%;
  overflow: hidden;
  z-index: 0;
}
.cpb-root .cpb-hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
/* Left-edge feather over photo */
.cpb-root .cpb-hero-photo::after {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 45%;
  background: linear-gradient(90deg, var(--cpb-near-bl), transparent);
  z-index: 2; pointer-events: none;
}
/* Text content */
.cpb-root .cpb-hero-content {
  position: relative; z-index: 10;
  width: 100%;
  /* FIX: Use padding instead of margin to control spacing — margins collapse in WP */
  padding: 80px 0 72px;
}
.cpb-root .cpb-hero-text { max-width: 560px; }
.cpb-root .cpb-hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
  font-size: 13px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cpb-gold);
}
.cpb-root .cpb-hero-eyebrow-line {
  width: 40px; height: 1px; background: var(--cpb-gold); flex-shrink: 0;
}
.cpb-root .cpb-hero-h1 {
  font-family: var(--cpb-serif);
  /* FIX: Use clamp with px floor, not vw units that scale unexpectedly in WP content area */
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 500; line-height: 1.09; letter-spacing: -0.025em;
  color: var(--cpb-white); margin-bottom: 22px;
  /* FIX: Reset any WP theme h1 styles */
  text-transform: none; border: none; padding: 0; background: none;
}
.cpb-root .cpb-hero-h1 em { font-style: italic; color: var(--cpb-gold); }
.cpb-root .cpb-hero-sub {
  font-size: 16px; color: var(--cpb-mist); line-height: 1.75;
  margin-bottom: 36px; font-weight: 300; max-width: 440px;
  /* FIX: Reset WP p margin */
  margin-top: 0;
}
.cpb-root .cpb-hero-ctas {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 36px; flex-wrap: wrap;
  /* FIX: undo WP ul/ol resets that sometimes apply to flex children */
}
.cpb-root .cpb-hero-meta {
  display: flex; flex-direction: column; gap: 8px;
}
.cpb-root .cpb-hero-meta-row {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--cpb-slate);
  /* FIX: undo WP p margins */
  margin: 0; padding: 0;
}
.cpb-root .cpb-hero-meta-row svg {
  width: 13px; height: 13px; color: var(--cpb-gold-dim); flex-shrink: 0;
}
.cpb-root .cpb-hero-meta-row strong { color: var(--cpb-mist); font-weight: 400; }
/* Special offer pill */
.cpb-root .cpb-hero-offer {
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 28px;
  background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.35);
  border-radius: 3px; padding: 7px 14px;
  font-size: 14px; color: #E07060; letter-spacing: 0.03em;
}
.cpb-root .cpb-hero-offer svg { width: 13px; height: 13px; flex-shrink: 0; }
/* Established badge */
.cpb-root .cpb-hero-badge {
  /* FIX: position relative to hero, not viewport — use absolute within hero */
  position: absolute; bottom: 32px;
  /* right-aligned within the photo area */
  right: max(24px, calc((100% - 1120px)/2 + 24px));
  z-index: 20;
  background: rgba(22,27,36,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(200,146,42,0.2); border-radius: 8px;
  padding: 14px 18px;
}
.cpb-root .cpb-hero-badge-est {
  font-family: var(--cpb-serif); font-size: 26px; font-weight: 500;
  color: var(--cpb-gold); line-height: 1; display: block;
}
.cpb-root .cpb-hero-badge-label {
  font-size: 12px; color: var(--cpb-mist); letter-spacing: 0.1em;
  text-transform: uppercase; display: block; margin-top: 3px;
}

/* ── TRUST BAR ────────────────────────────────────────────────────────────── */
.cpb-root .cpb-trust-bar {
  background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border);
  border-bottom: 1px solid var(--cpb-border);
}
.cpb-root .cpb-trust-bar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1120px; margin: 0 auto; padding: 0 28px;
}
.cpb-root .cpb-trust-item {
  padding: 26px 24px 26px 0;
  border-right: 1px solid var(--cpb-border);
  display: flex; align-items: flex-start; gap: 12px;
}
.cpb-root .cpb-trust-item:first-child { padding-left: 0; }
.cpb-root .cpb-trust-item:last-child { border-right: none; }
.cpb-root .cpb-trust-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,146,42,0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cpb-root .cpb-trust-icon svg { width: 16px; height: 16px; color: var(--cpb-gold); }
.cpb-root .cpb-trust-val {
  font-size: 18px; font-weight: 500; color: var(--cpb-white);
  line-height: 1.2; margin-bottom: 3px;
  /* FIX: reset WP h-tag styles if trust-val is a heading */
  font-family: var(--cpb-sans); text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-trust-label {
  font-size: 14px; color: var(--cpb-mist); font-weight: 300; line-height: 1.4;
}

/* ── SERVICES ─────────────────────────────────────────────────────────────── */
.cpb-root .cpb-services { background: var(--cpb-black); }
.cpb-root .cpb-services-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 56px; flex-wrap: wrap;
}
.cpb-root .cpb-svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--cpb-border);
  border: 1px solid var(--cpb-border);
}
.cpb-root .cpb-svc-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 1px; background: var(--cpb-border);
  border: 1px solid var(--cpb-border); border-top: none;
}
.cpb-root .cpb-svc-card {
  background: var(--cpb-near-bl); padding: 0 0 0;
  position: relative; overflow: hidden;
  transition: background 0.3s var(--cpb-ease);
  /* FIX: explicit display so WP doesn't float these */
  display: flex; flex-direction: column;
}
.cpb-root .cpb-svc-card:hover { background: #141A22; }
/* Card image */
.cpb-root .cpb-svc-img-wrap {
  width: 100%; height: 180px;
  overflow: hidden; flex-shrink: 0;
  background: var(--cpb-panel);
}
.cpb-root .cpb-svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.55s var(--cpb-ease);
  display: block;
}
.cpb-root .cpb-svc-card:hover .cpb-svc-img-wrap img { transform: scale(1.05); }
/* Card body */
.cpb-root .cpb-svc-body { padding: 26px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.cpb-root .cpb-svc-tag {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cpb-gold); margin-bottom: 14px;
  display: flex; align-items: center; gap: 8px;
}
.cpb-root .cpb-svc-tag::before {
  content: ''; width: 16px; height: 1px; background: var(--cpb-gold-dim);
}
.cpb-root .cpb-svc-name {
  font-family: var(--cpb-serif); font-size: 22px; font-weight: 500;
  color: var(--cpb-white); margin-bottom: 8px; letter-spacing: -0.01em;
  /* FIX: WP resets heading styles */
  line-height: 1.2; text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-svc-desc {
  font-size: 15px; color: var(--cpb-mist); line-height: 1.65;
  margin-bottom: 18px; font-weight: 300;
  /* FIX: WP p margins */
  margin-top: 0;
}
.cpb-root .cpb-svc-price-block { margin-bottom: 18px; }
.cpb-root .cpb-svc-price-label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cpb-slate); margin-bottom: 6px; display: block;
}
.cpb-root .cpb-svc-price-main {
  font-family: var(--cpb-serif); font-size: 34px; font-weight: 400;
  color: var(--cpb-white); line-height: 1; margin-bottom: 8px; display: block;
}
.cpb-root .cpb-svc-price-main span { font-size: 18px; color: var(--cpb-mist); }
.cpb-root .cpb-svc-price-tiers { display: flex; flex-direction: column; gap: 3px; }
.cpb-root .cpb-svc-price-tier {
  font-size: 14px; color: var(--cpb-slate);
  display: flex; justify-content: space-between; gap: 12px;
  /* FIX: WP p margins */
  margin: 0; padding: 0;
}
.cpb-root .cpb-svc-price-tier strong { color: var(--cpb-mist); font-weight: 400; }
.cpb-root .cpb-svc-includes {
  border-top: 1px solid var(--cpb-border); padding-top: 16px;
  margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px;
  /* FIX: WP may style ul elements */
  list-style: none; margin-left: 0; padding-left: 0;
}
.cpb-root .cpb-svc-include {
  font-size: 15px; color: var(--cpb-slate);
  display: flex; align-items: flex-start; gap: 9px;
  /* FIX: WP li margins */
  margin: 0; padding: 0;
}
.cpb-root .cpb-svc-include::before {
  content: '✦'; color: var(--cpb-gold-dim); font-size: 10px;
  flex-shrink: 0; margin-top: 3px;
}
.cpb-root .cpb-svc-cta {
  display: flex; align-items: center; gap: 6px; margin-top: auto;
  font-size: 14px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--cpb-gold);
  transition: gap 0.2s;
}
.cpb-root .cpb-svc-card:hover .cpb-svc-cta { gap: 10px; }
/* Small service card */
.cpb-root .cpb-svc-card-sm {
  background: var(--cpb-near-bl);
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: background 0.3s var(--cpb-ease);
}
.cpb-root .cpb-svc-card-sm:hover { background: #141A22; }
.cpb-root .cpb-svc-sm-img-wrap {
  width: 100%; height: 140px; overflow: hidden; flex-shrink: 0;
}
.cpb-root .cpb-svc-sm-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.55s var(--cpb-ease); display: block;
}
.cpb-root .cpb-svc-card-sm:hover .cpb-svc-sm-img-wrap img { transform: scale(1.05); }
.cpb-root .cpb-svc-sm-body { padding: 22px 28px 26px; flex: 1; display: flex; flex-direction: column; }

/* ── PROCESS ──────────────────────────────────────────────────────────────── */
.cpb-root .cpb-process {
  background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border);
  border-bottom: 1px solid var(--cpb-border);
}
.cpb-root .cpb-process-header {
  text-align: center; max-width: 540px; margin: 0 auto 52px;
}
.cpb-root .cpb-process-header .cpb-eyebrow {
  justify-content: center;
}
.cpb-root .cpb-process-header .cpb-eyebrow::before { display: none; }
.cpb-root .cpb-process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
  position: relative;
}
.cpb-root .cpb-process-grid::before {
  content: ''; position: absolute; top: 22px; left: 16.66%; right: 16.66%;
  height: 1px; background: var(--cpb-border); z-index: 0;
}
.cpb-root .cpb-process-step { padding: 0 32px; text-align: center; position: relative; z-index: 1; }
.cpb-root .cpb-process-num {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid var(--cpb-gold-dim); background: var(--cpb-panel);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cpb-serif); font-size: 18px; font-weight: 500;
  color: var(--cpb-gold); margin: 0 auto 22px;
}
.cpb-root .cpb-process-title {
  font-family: var(--cpb-serif); font-size: 22px; font-weight: 500;
  color: var(--cpb-white); margin-bottom: 10px; letter-spacing: -0.01em;
  line-height: 1.2; text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-process-desc {
  font-size: 16px; color: var(--cpb-mist); line-height: 1.7; font-weight: 300;
  margin: 0; padding: 0;
}
.cpb-root .cpb-process-cta { text-align: center; margin-top: 48px; }

/* ── INCLUDES ─────────────────────────────────────────────────────────────── */
.cpb-root .cpb-includes { background: var(--cpb-black); }
.cpb-root .cpb-includes-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.cpb-root .cpb-includes-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  /* FIX: reset WP ul styling */
  list-style: none; margin: 0; padding: 0;
}
.cpb-root .cpb-includes-item {
  padding: 12px 12px 12px 0; border-bottom: 1px solid var(--cpb-border);
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--cpb-slate); line-height: 1.5;
  transition: color 0.2s;
  /* FIX: WP li margins */
  margin: 0;
}
.cpb-root .cpb-includes-item:hover { color: var(--cpb-ghost); }
.cpb-root .cpb-includes-check { color: var(--cpb-gold); font-size: 12px; flex-shrink: 0; margin-top: 1px; }
.cpb-root .cpb-optional-block {
  margin-top: 32px; padding: 22px 24px;
  background: var(--cpb-panel); border: 1px solid var(--cpb-border); border-radius: 4px;
}
.cpb-root .cpb-optional-title {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cpb-slate); margin-bottom: 14px; display: block;
}
.cpb-root .cpb-optional-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 20px;
  /* FIX: WP ul/li */
  list-style: none; margin: 0; padding: 0;
}
.cpb-root .cpb-optional-item {
  font-size: 15px; color: var(--cpb-mist);
  display: flex; align-items: center; gap: 7px;
  margin: 0; padding: 0;
}
.cpb-root .cpb-optional-item::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--cpb-gold-dim); flex-shrink: 0;
}

/* ── REVIEWS ──────────────────────────────────────────────────────────────── */
.cpb-root .cpb-reviews {
  background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border);
}
.cpb-root .cpb-reviews-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 48px; flex-wrap: wrap;
}
.cpb-root .cpb-reviews-agg { display: flex; flex-direction: column; align-items: flex-end; gap: 3px; }
.cpb-root .cpb-reviews-agg-score {
  font-family: var(--cpb-serif); font-size: 48px; font-weight: 400;
  color: var(--cpb-white); line-height: 1; letter-spacing: -0.03em;
}
.cpb-root .cpb-reviews-agg-stars { color: var(--cpb-gold); font-size: 16px; letter-spacing: 4px; }
.cpb-root .cpb-reviews-agg-count { font-size: 14px; color: var(--cpb-mist); }
.cpb-root .cpb-reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--cpb-border); margin-bottom: 2px;
}
.cpb-root .cpb-reviews-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--cpb-border);
}
.cpb-root .cpb-review-card {
  background: var(--cpb-near-bl); padding: 28px 26px;
  display: flex; flex-direction: column;
  transition: background 0.25s var(--cpb-ease);
}
.cpb-root .cpb-review-card:hover { background: #141A22; }
.cpb-root .cpb-review-src-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.cpb-root .cpb-review-stars { color: var(--cpb-gold); font-size: 14px; letter-spacing: 2px; }
.cpb-root .cpb-review-badge {
  font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cpb-slate); background: rgba(255,255,255,0.04);
  padding: 3px 8px; border-radius: 2px;
}
.cpb-root .cpb-review-qmark {
  font-family: var(--cpb-serif); font-size: 44px; color: rgba(200,146,42,0.12);
  line-height: 0.7; margin-bottom: 8px; display: block;
}
.cpb-root .cpb-review-body {
  font-family: var(--cpb-serif); font-size: 17px; font-style: italic;
  font-weight: 400; color: var(--cpb-ghost); line-height: 1.72;
  margin-bottom: 20px; flex: 1;
  /* FIX: WP blockquote/p margins */
  margin-top: 0; padding: 0; border: none;
}
.cpb-root .cpb-review-meta {
  padding-top: 16px; border-top: 1px solid var(--cpb-border);
  display: flex; align-items: center; justify-content: space-between;
}
.cpb-root .cpb-review-name { font-size: 15px; font-weight: 500; color: var(--cpb-white); }
.cpb-root .cpb-review-detail { font-size: 13px; color: var(--cpb-slate); margin-top: 1px; }
.cpb-root .cpb-reviews-footer {
  margin-top: 32px; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.cpb-root .cpb-reviews-plats { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; }
.cpb-root .cpb-plat-chip {
  font-size: 13px; color: var(--cpb-mist); background: rgba(255,255,255,0.05);
  padding: 3px 10px; border-radius: 2px; letter-spacing: 0.03em;
}

/* ── BRANDS ───────────────────────────────────────────────────────────────── */
.cpb-root .cpb-brands {
  background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border); border-bottom: 1px solid var(--cpb-border);
}
.cpb-root .cpb-brands-inner {
  display: grid; grid-template-columns: 1fr 2fr; gap: 72px; align-items: center;
}
.cpb-root .cpb-brands-list { display: flex; flex-direction: column; }
.cpb-root .cpb-brand-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0; border-bottom: 1px solid var(--cpb-border);
  transition: border-color 0.2s;
}
.cpb-root .cpb-brand-item:first-child { border-top: 1px solid var(--cpb-border); }
.cpb-root .cpb-brand-item:hover { border-color: rgba(200,146,42,0.25); }
.cpb-root .cpb-brand-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--cpb-gold); flex-shrink: 0;
}
.cpb-root .cpb-brand-name {
  font-family: var(--cpb-serif); font-size: 18px; font-weight: 400; color: var(--cpb-ghost);
  text-transform: none; letter-spacing: 0;
}

/* ── PRODUCTS ─────────────────────────────────────────────────────────────── */
.cpb-root .cpb-products { background: var(--cpb-black); }
.cpb-root .cpb-products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; background: var(--cpb-border); margin-top: 44px;
}
.cpb-root .cpb-product-card {
  background: var(--cpb-near-bl); padding: 26px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.2s;
}
.cpb-root .cpb-product-card:hover { background: #141A22; }
.cpb-root .cpb-product-name {
  font-family: var(--cpb-serif); font-size: 21px; font-weight: 500; color: var(--cpb-white);
  text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-product-desc { font-size: 15px; color: var(--cpb-mist); font-weight: 300; }

/* ── GALLERY / BEFORE-AFTER ───────────────────────────────────────────────── */
.cpb-root .cpb-gallery { background: var(--cpb-near-bl); }
.cpb-root .cpb-gallery-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 24px; margin-bottom: 44px; flex-wrap: wrap;
}
.cpb-root .cpb-gallery-note {
  font-size: 15px; color: var(--cpb-slate); font-style: italic; margin-top: 8px;
}
.cpb-root .cpb-gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
}
.cpb-root .cpb-gallery-card {
  background: var(--cpb-panel); overflow: hidden; cursor: pointer;
  /* FIX: explicit display type */
  display: flex; flex-direction: column;
}
/* Before/after image container — FIX key area */
.cpb-root .cpb-ba-imgs {
  display: grid; grid-template-columns: 1fr 1fr;
  /* FIX: explicit height in px, not relying on child content */
  height: 220px;
  position: relative;
  overflow: hidden;
}
.cpb-root .cpb-ba-img {
  position: relative; overflow: hidden;
  /* FIX: remove flex centering that fights with img cover */
  display: block;
}
.cpb-root .cpb-ba-img img {
  width: 100%; height: 100%; object-fit: cover;
  /* FIX: position and display so it fills the half-cell */
  display: block;
  position: absolute; top: 0; left: 0;
}
.cpb-root .cpb-ba-before { background: #1C1208; }
.cpb-root .cpb-ba-after  { background: #0A1A10; }
.cpb-root .cpb-ba-lbl {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  z-index: 5; white-space: nowrap;
  font-size: 10px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 3px 9px; border-radius: 2px;
  /* FIX: explicit pointer-events so label doesn't block image interaction */
  pointer-events: none;
}
.cpb-root .cpb-ba-before .cpb-ba-lbl {
  background: rgba(60,30,10,0.85); color: rgba(210,150,70,0.95);
}
.cpb-root .cpb-ba-after .cpb-ba-lbl {
  background: rgba(10,40,20,0.85); color: rgba(90,190,110,0.95);
}
/* Divider line */
.cpb-root .cpb-ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(200,146,42,0.5);
  transform: translateX(-50%); z-index: 4; pointer-events: none;
}
.cpb-root .cpb-ba-swap {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 6; width: 26px; height: 26px; border-radius: 50%;
  background: var(--cpb-gold); color: var(--cpb-black);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; pointer-events: none;
}
.cpb-root .cpb-gallery-foot {
  padding: 13px 16px; background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border);
  display: flex; align-items: center; justify-content: space-between;
}
.cpb-root .cpb-gallery-svc {
  font-family: var(--cpb-serif); font-size: 16px; font-weight: 500; color: var(--cpb-white);
}
.cpb-root .cpb-gallery-type {
  font-size: 13px; color: var(--cpb-mist); background: rgba(255,255,255,0.05);
  padding: 3px 10px; border-radius: 10px;
}
.cpb-root .cpb-gallery-cta { text-align: center; margin-top: 36px; }

/* ── SPECIALS ─────────────────────────────────────────────────────────────── */
.cpb-root .cpb-specials {
  background: var(--cpb-panel); border-top: 1px solid var(--cpb-border);
}
.cpb-root .cpb-specials-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 40px;
}
.cpb-root .cpb-offer-card {
  padding: 28px; background: var(--cpb-black);
  border: 1px solid rgba(192,57,43,0.3); border-left: 3px solid var(--cpb-red);
  border-radius: 3px;
}
.cpb-root .cpb-offer-title {
  font-family: var(--cpb-serif); font-size: 21px; font-weight: 500;
  color: var(--cpb-white); margin-bottom: 8px; text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-offer-desc {
  font-size: 16px; color: var(--cpb-mist); line-height: 1.65; margin-bottom: 18px; margin-top: 0;
}
.cpb-root .cpb-offer-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(192,57,43,0.15); border: 1px solid rgba(192,57,43,0.3);
  border-radius: 3px; padding: 6px 12px;
  font-size: 15px; font-weight: 500; color: #E07060;
}
.cpb-root .cpb-gift-card {
  padding: 28px; background: var(--cpb-black);
  border: 1px solid rgba(200,146,42,0.25); border-left: 3px solid var(--cpb-gold);
  border-radius: 3px;
}
.cpb-root .cpb-gift-title {
  font-family: var(--cpb-serif); font-size: 21px; font-weight: 500;
  color: var(--cpb-white); margin-bottom: 8px; text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-gift-desc {
  font-size: 16px; color: var(--cpb-mist); line-height: 1.65; margin-bottom: 18px; margin-top: 0;
}

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.cpb-root .cpb-contact { background: var(--cpb-near-bl); }
.cpb-root .cpb-contact-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start;
}
.cpb-root .cpb-contact-info { display: flex; flex-direction: column; }
.cpb-root .cpb-contact-row {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0; border-bottom: 1px solid var(--cpb-border);
}
.cpb-root .cpb-contact-row:first-child { border-top: 1px solid var(--cpb-border); }
.cpb-root .cpb-contact-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(200,146,42,0.1); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.cpb-root .cpb-contact-icon svg { width: 15px; height: 15px; color: var(--cpb-gold); }
.cpb-root .cpb-contact-label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cpb-slate); margin-bottom: 3px; display: block;
}
.cpb-root .cpb-contact-val {
  font-size: 16px; color: var(--cpb-ghost); line-height: 1.55;
  margin: 0; padding: 0;
}
.cpb-root .cpb-contact-val a { color: var(--cpb-ghost); transition: color 0.2s; }
.cpb-root .cpb-contact-val a:hover { color: var(--cpb-gold); }
.cpb-root .cpb-contact-val small { font-size: 14px; color: var(--cpb-slate); }
.cpb-root .cpb-dir-box {
  margin-top: 24px; padding: 22px; background: var(--cpb-panel);
  border: 1px solid var(--cpb-border); border-radius: 4px;
}
.cpb-root .cpb-dir-title {
  font-size: 13px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cpb-gold); margin-bottom: 12px;
  display: flex; align-items: center; gap: 7px;
}
.cpb-root .cpb-dir-title svg { width: 12px; height: 12px; }
.cpb-root .cpb-dir-note {
  font-size: 15px; color: var(--cpb-mist); font-style: italic;
  margin-bottom: 12px; margin-top: 0;
}
.cpb-root .cpb-dir-steps {
  display: flex; flex-direction: column; gap: 7px;
  counter-reset: dir;
  list-style: none; margin: 0; padding: 0;
}
.cpb-root .cpb-dir-step {
  font-size: 15px; color: var(--cpb-slate);
  display: flex; gap: 10px; counter-increment: dir; margin: 0; padding: 0;
}
.cpb-root .cpb-dir-step::before {
  content: counter(dir) '.'; color: var(--cpb-gold-dim); flex-shrink: 0; font-weight: 500;
}
.cpb-root .cpb-payments {
  margin-top: 24px; padding: 16px 18px; background: var(--cpb-panel);
  border: 1px solid var(--cpb-border); border-radius: 4px;
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.cpb-root .cpb-pay-label { font-size: 13px; color: var(--cpb-slate); flex-shrink: 0; }
.cpb-root .cpb-pay-chip {
  font-size: 14px; font-weight: 500; color: var(--cpb-ghost);
  background: rgba(255,255,255,0.06); padding: 3px 10px; border-radius: 3px;
}

/* ── FINAL CTA ────────────────────────────────────────────────────────────── */
.cpb-root .cpb-final {
  position: relative; padding: 96px 0;
  background: var(--cpb-panel); overflow: hidden;
}
.cpb-root .cpb-final::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--cpb-gold-dim), transparent);
}
.cpb-root .cpb-final-inner {
  text-align: center; max-width: 600px; margin: 0 auto;
  position: relative; z-index: 2;
}
.cpb-root .cpb-final-h2 {
  font-family: var(--cpb-serif);
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 500; color: var(--cpb-white); margin-bottom: 14px;
  line-height: 1.15; letter-spacing: -0.02em;
  text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-final-sub {
  font-size: 16px; color: var(--cpb-mist); margin-bottom: 36px;
  font-weight: 300; line-height: 1.7; margin-top: 0;
}
.cpb-root .cpb-final-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 14px; flex-wrap: wrap; margin-bottom: 28px;
}
.cpb-root .cpb-final-or { font-size: 15px; color: var(--cpb-steel); }
.cpb-root .cpb-final-detail {
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.cpb-root .cpb-final-detail-item {
  font-size: 14px; color: var(--cpb-slate);
  display: flex; align-items: center; gap: 0; margin: 4px 8px;
}

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
.cpb-root .cpb-footer {
  background: #05080C; border-top: 1px solid var(--cpb-border); padding: 52px 0 0;
}
.cpb-root .cpb-footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 44px;
}
.cpb-root .cpb-footer-brand-name {
  font-family: var(--cpb-serif); font-size: 18px; font-weight: 500;
  color: var(--cpb-white); margin-bottom: 8px;
  text-transform: none; border: none; padding: 0;
}
.cpb-root .cpb-footer-tagline {
  font-size: 15px; color: var(--cpb-slate); line-height: 1.75;
  margin-bottom: 16px; font-weight: 300; margin-top: 0;
}
.cpb-root .cpb-footer-contact {
  font-size: 15px; color: #2E3E4E; line-height: 2.2; margin: 0; padding: 0;
}
.cpb-root .cpb-footer-contact a { color: #2E3E4E; transition: color 0.2s; }
.cpb-root .cpb-footer-contact a:hover { color: var(--cpb-mist); }
.cpb-root .cpb-footer-col-head {
  font-size: 12px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cpb-steel); margin-bottom: 16px; display: block;
}
.cpb-root .cpb-footer-link {
  display: block; font-size: 15px; color: #2E3E4E; margin-bottom: 9px;
  transition: color 0.2s; padding: 0;
}
.cpb-root .cpb-footer-link:hover { color: var(--cpb-mist); }
.cpb-root .cpb-footer-bottom {
  border-top: 1px solid var(--cpb-border); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.cpb-root .cpb-footer-copy { font-size: 13px; color: #1A2530; }
.cpb-root .cpb-footer-owner { font-size: 13px; color: #1A2530; }

/* ── MOBILE STICKY CTA ────────────────────────────────────────────────────── */
.cpb-root .cpb-mobile-sticky {
  display: none;
  position: fixed; /* FIX: fixed not sticky — sticky fails when ancestor has overflow */
  bottom: 0; left: 0; right: 0;
  /* FIX: z-index must exceed WP admin bar (99999) */
  z-index: 100001;
  background: var(--cpb-gold); padding: 15px 24px;
  align-items: center; justify-content: center; gap: 9px;
  font-size: 17px; font-weight: 500; color: var(--cpb-black);
  border-top: 1px solid rgba(0,0,0,0.15);
  font-family: var(--cpb-sans);
  text-decoration: none;
}
.cpb-root .cpb-mobile-sticky svg { width: 17px; height: 17px; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1040px) {
  .cpb-root .cpb-trust-bar-inner { grid-template-columns: 1fr 1fr; }
  .cpb-root .cpb-trust-item:nth-child(2) { border-right: none; }
  .cpb-root .cpb-trust-item:nth-child(3) { border-right: 1px solid var(--cpb-border); }
  .cpb-root .cpb-svc-grid { grid-template-columns: 1fr 1fr; }
  .cpb-root .cpb-svc-grid-2 { grid-template-columns: 1fr 1fr; }
  .cpb-root .cpb-includes-inner { grid-template-columns: 1fr; gap: 40px; }
  .cpb-root .cpb-brands-inner { grid-template-columns: 1fr; gap: 40px; }
  .cpb-root .cpb-products-grid { grid-template-columns: repeat(2, 1fr); }
  .cpb-root .cpb-contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .cpb-root .cpb-footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .cpb-root .cpb-hero-badge { right: 16px; }
  .cpb-root .cpb-hero-photo { width: 46%; }
}

@media (max-width: 768px) {
  .cpb-root .cpb-container { padding: 0 18px; }
  .cpb-root .cpb-section    { padding: 56px 0; }
  .cpb-root .cpb-section-sm { padding: 44px 0; }

  /* Hero mobile */
  .cpb-root .cpb-hero { min-height: 520px; }
  .cpb-root .cpb-hero-photo { display: none; } /* Full overlay bg instead */
  .cpb-root .cpb-hero-bg {
    background:
      linear-gradient(180deg, rgba(9,9,11,0.90) 0%, rgba(9,9,11,0.75) 100%),
      /* fallback dark bg when photo hidden */
      linear-gradient(135deg, #111926, #1a2535);
  }
  .cpb-root .cpb-hero-content { padding: 64px 0 80px; }
  .cpb-root .cpb-hero-h1 { font-size: 34px; }
  .cpb-root .cpb-hero-ctas { flex-direction: column; align-items: flex-start; }
  .cpb-root .cpb-hero-badge { display: none; }

  /* Trust bar */
  .cpb-root .cpb-trust-bar-inner {
    grid-template-columns: 1fr 1fr; padding: 0 18px;
  }
  .cpb-root .cpb-trust-item { padding: 18px 12px 18px 0; }
  .cpb-root .cpb-trust-item:nth-child(3) { border-right: none; border-top: 1px solid var(--cpb-border); }
  .cpb-root .cpb-trust-item:nth-child(4) { border-right: none; border-top: 1px solid var(--cpb-border); }

  /* Services */
  .cpb-root .cpb-services-header { margin-bottom: 28px; }
  .cpb-root .cpb-svc-grid { grid-template-columns: 1fr; }
  .cpb-root .cpb-svc-grid-2 { grid-template-columns: 1fr; }

  /* Process */
  .cpb-root .cpb-process-grid { grid-template-columns: 1fr; gap: 28px; }
  .cpb-root .cpb-process-grid::before { display: none; }
  .cpb-root .cpb-process-step { padding: 0; text-align: left; }
  .cpb-root .cpb-process-num { margin: 0 0 16px; }

  /* Includes */
  .cpb-root .cpb-includes-list { grid-template-columns: 1fr; }
  .cpb-root .cpb-optional-grid { grid-template-columns: 1fr; }

  /* Gallery */
  .cpb-root .cpb-gallery-header { margin-bottom: 28px; }
  .cpb-root .cpb-gallery-grid { grid-template-columns: 1fr; }
  .cpb-root .cpb-ba-imgs { height: 200px; }

  /* Reviews */
  .cpb-root .cpb-reviews-header { margin-bottom: 28px; }
  .cpb-root .cpb-reviews-grid { grid-template-columns: 1fr; }
  .cpb-root .cpb-reviews-grid-2 { grid-template-columns: 1fr; }

  /* Brands */
  .cpb-root .cpb-brands-inner { grid-template-columns: 1fr; }

  /* Products */
  .cpb-root .cpb-products-grid { grid-template-columns: 1fr 1fr; }

  /* Specials */
  .cpb-root .cpb-specials-grid { grid-template-columns: 1fr; gap: 20px; }

  /* Contact */
  .cpb-root .cpb-contact-inner { grid-template-columns: 1fr; }

  /* Final CTA */
  .cpb-root .cpb-final-btns { flex-direction: column; }

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

  /* Mobile sticky — show on mobile only */
  .cpb-root .cpb-mobile-sticky { display: flex; }

  /* ── MOBILE TYPOGRAPHY — considerably larger for phone readability ───────── */
  .cpb-root                       { font-size: 18px; }
  .cpb-root .cpb-eyebrow          { font-size: 14px; letter-spacing: 0.12em; }
  .cpb-root .cpb-hero-eyebrow     { font-size: 14px; letter-spacing: 0.12em; }
  .cpb-root .cpb-body-lead        { font-size: 18px; line-height: 1.7; }
  .cpb-root .cpb-svc-name         { font-size: 24px; }
  .cpb-root .cpb-svc-tag          { font-size: 13px; }
  .cpb-root .cpb-svc-desc         { font-size: 17px; line-height: 1.65; }
  .cpb-root .cpb-svc-include      { font-size: 17px; }
  .cpb-root .cpb-svc-price-label  { font-size: 13px; }
  .cpb-root .cpb-svc-price-main   { font-size: 40px; }
  .cpb-root .cpb-svc-price-tier   { font-size: 16px; }
  .cpb-root .cpb-svc-cta          { font-size: 16px; }
  .cpb-root .cpb-includes-item    { font-size: 17px; }
  .cpb-root .cpb-optional-item    { font-size: 17px; }
  .cpb-root .cpb-optional-title   { font-size: 14px; }
  .cpb-root .cpb-trust-val        { font-size: 22px; }
  .cpb-root .cpb-trust-label      { font-size: 16px; line-height: 1.4; }
  .cpb-root .cpb-hero-meta-row    { font-size: 17px; }
  .cpb-root .cpb-review-body      { font-size: 18px; line-height: 1.7; }
  .cpb-root .cpb-review-name      { font-size: 17px; }
  .cpb-root .cpb-review-detail    { font-size: 15px; }
  .cpb-root .cpb-reviews-agg-count { font-size: 16px; }
  .cpb-root .cpb-plat-chip        { font-size: 15px; }
  .cpb-root .cpb-btn              { font-size: 17px; padding: 15px 28px; }
  .cpb-root .cpb-lnk              { font-size: 16px; }
  .cpb-root .cpb-footer-copy      { font-size: 15px; }
  .cpb-root .cpb-footer-owner     { font-size: 15px; }
  .cpb-root .cpb-hero-badge-label { font-size: 13px; }
}



/* ═══════════════════════════════════════════════════════════════════════════
   CUSTOM PORTERING — RENDERING FIX PATCH
   Apply this CSS via WordPress Customizer > Additional CSS
   OR add to the plugin's enqueued stylesheet.
   These rules use !important only where WP theme specificity requires it.
   ═══════════════════════════════════════════════════════════════════════════

   ISSUES FIXED (from screenshots 1–3):
   1.  Hero section height — too short, badge cut off
   2.  Hero left side — black void, no background gradient
   3.  Hero content — shifted right due to WP .entry-content padding
   4.  Hero padding-top — excessive gap above headline
   5.  Full-width breakout — failing because WP parent has overflow:hidden
   6.  Service grid — 3-col collapsing to 1-col inside narrow WP wrapper
   7.  Service card images — not filling full card width
   8.  Empty center column in service grid
   9.  Section padding — too tall, creates large gaps
   10. Grid uses viewport breakpoints — WP content area is narrower than viewport
   ═══════════════════════════════════════════════════════════════════════════ */


/* ── FIX 1 & 5: FULL-WIDTH BREAKOUT — OVERRIDE SAFELY ─────────────────────
   The margin: -50vw / width: 100vw technique fails when any ancestor
   has overflow:hidden. Replace with a safer approach that doesn't
   depend on ancestor overflow. We target the WP content wrapper directly.
   ───────────────────────────────────────────────────────────────────────── */

/* Force the WP page content wrapper to allow full-width children */
.page-id-0 .entry-content,
.home .entry-content,
.page .entry-content,
.page-content,
.entry-content,
#content .entry-content,
#primary .entry-content,
.wp-block-post-content,
main#main,
#main,
.site-main {
  overflow: visible !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
}

/* The cpb-root breakout — now that overflow is cleared, this will work */
.cpb-root {
  position: relative !important;
  left: 50% !important;
  right: 50% !important;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  width: 100vw !important;
  max-width: 100vw !important;
  /* Remove font-size that conflicts with WP theme */
  font-size: 16px !important;
}


/* ── FIX 2: HERO HEIGHT — ACCOUNT FOR WP ADMIN BAR + THEME NAV ────────────
   WP admin bar: 32px (logged in)
   Theme nav height: ~60px (observed from screenshot)
   Total WP chrome above fold: ~92px
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-hero {
  min-height: 720px !important;
  /* Fallback for when no admin bar: */
  min-height: max(720px, calc(100vh - 95px)) !important;
}


/* ── FIX 3: HERO BACKGROUND — ENSURE DARK COVER FILLS ENTIRE SECTION ──────
   The hero-bg gradient was only covering the right (photo) half.
   Ensure the section background color covers everything.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-hero {
  background-color: #111318 !important;
}

.cpb-root .cpb-hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  /* Full gradient that covers entire hero, not just photo side */
  background:
    linear-gradient(115deg,
      rgba(9,9,11,0.97) 0%,
      rgba(9,9,11,0.97) 38%,
      rgba(14,20,30,0.72) 62%,
      rgba(9,9,11,0.42) 100%
    ) !important;
}


/* ── FIX 4: HERO CONTENT — REMOVE WP .entry-content PADDING BLEED ─────────
   WP adds padding to .entry-content which stacks with .cpb-container.
   Zero out the hero content so only .cpb-container controls the indent.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-hero-content {
  padding-top: 56px !important;
  padding-bottom: 64px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}

.cpb-root .cpb-container {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

/* Hero-specific container — slightly more left padding to clear the 
   empty space caused by the theme layout */
.cpb-root .cpb-hero .cpb-container {
  padding-left: 48px !important;
}


/* ── FIX 5: SERVICE GRID — USE AUTO-FIT INSTEAD OF FIXED BREAKPOINTS ──────
   The WP content area is narrower than the viewport even at 1456px wide
   because the theme wraps content. auto-fit with minmax() respects the
   ACTUAL available width rather than viewport width.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-svc-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
  gap: 2px !important;
}

.cpb-root .cpb-svc-grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
  gap: 2px !important;
}


/* ── FIX 6: SERVICE CARD IMAGES — FORCE FULL WIDTH ────────────────────────
   Images were floating centered inside cards rather than filling edge-to-edge.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-svc-img-wrap {
  width: 100% !important;
  height: 200px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  display: block !important;
  /* Remove any inherited alignment from WP figure/img styles */
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  text-align: left !important;
}

.cpb-root .cpb-svc-img-wrap img,
.cpb-root .cpb-svc-sm-img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  /* WP themes add max-width:100% to images which is fine, 
     but also sometimes add height:auto which breaks object-fit */
  height: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cpb-root .cpb-svc-sm-img-wrap {
  width: 100% !important;
  height: 160px !important;
  overflow: hidden !important;
  flex-shrink: 0 !important;
  display: block !important;
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* ── FIX 7: BEFORE/AFTER GALLERY IMAGES — SAME TREATMENT ──────────────────
   The ba-img cells need explicit height and images need position:absolute fill
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-ba-imgs {
  height: 220px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  position: relative !important;
  overflow: hidden !important;
}

.cpb-root .cpb-ba-img {
  position: relative !important;
  overflow: hidden !important;
  display: block !important;
  height: 220px !important;
}

.cpb-root .cpb-ba-img img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  display: block !important;
  max-width: none !important;
  /* Override any WP alignment plugin styles */
  float: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
}


/* ── FIX 8: SECTION PADDING — REDUCE EXCESSIVE GAPS ───────────────────────
   WP adds margin to paragraphs and headings. Combined with section padding
   of 88px, gaps between sections are too large.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-section {
  padding-top: 64px !important;
  padding-bottom: 64px !important;
}

.cpb-root .cpb-section-sm {
  padding-top: 48px !important;
  padding-bottom: 48px !important;
}

/* Remove WP default paragraph margins inside the component */
.cpb-root p {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* Remove WP default heading margins */
.cpb-root h1, .cpb-root h2, .cpb-root h3,
.cpb-root h4, .cpb-root h5, .cpb-root h6 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border: none !important;
  /* WP themes often add border-bottom to headings */
  border-bottom: none !important;
  box-shadow: none !important;
}

/* Remove WP ul/ol styles inside component */
.cpb-root ul, .cpb-root ol {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.cpb-root li {
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  list-style-type: none !important;
}

/* Remove WP bullet before pseudo elements that fight our custom ones */
.cpb-root li::marker {
  content: none !important;
  display: none !important;
}


/* ── FIX 9: TRUST BAR — FULL WIDTH BREAKOUT ────────────────────────────── */
.cpb-root .cpb-trust-bar {
  width: 100% !important;
  display: block !important;
}

.cpb-root .cpb-trust-bar-inner {
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 40px !important;
  padding-right: 40px !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
}


/* ── FIX 10: SERVICES HEADER — PREVENT WP MARGIN COLLAPSE ─────────────────
   The large gap above "SERVICES & PRICING" is caused by margin collapse
   between the trust bar bottom margin and the section padding-top.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-services {
  /* Prevent margin collapse from above section */
  padding-top: 64px !important;
  /* overflow:hidden also prevents margin collapse but breaks sticky */
  /* Use padding-top instead */
}

.cpb-root .cpb-services-header {
  margin-bottom: 40px !important;
}


/* ── FIX 11: HERO PHOTO — ENSURE IT RENDERS ───────────────────────────────
   Confirm the photo panel has proper positioning and doesn't get
   overridden by WP theme absolute positioning resets.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-hero-photo {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 55% !important;
  overflow: hidden !important;
  z-index: 0 !important;
  display: block !important;
}

.cpb-root .cpb-hero-photo img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  display: block !important;
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.cpb-root .cpb-hero-photo::after {
  content: '' !important;
  position: absolute !important;
  top: 0 !important; left: 0 !important; bottom: 0 !important;
  width: 45% !important;
  background: linear-gradient(90deg, #111318, transparent) !important;
  z-index: 2 !important;
  pointer-events: none !important;
}


/* ── FIX 12: SERVICE CARD LAYOUT — FORCE CORRECT FLEX DIRECTION ───────────
   Cards use flex column but WP sometimes converts flex children.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-svc-card {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  /* Remove any WP theme border/shadow on cards */
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;
}

.cpb-root .cpb-svc-card-sm {
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.cpb-root .cpb-svc-body {
  padding: 24px 24px 26px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.cpb-root .cpb-svc-sm-body {
  padding: 20px 24px 24px !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}


/* ── FIX 13: REVIEW CARDS — PREVENT WP BLOCKQUOTE STYLING ─────────────────
   WP adds border-left, padding, and background to blockquote elements.
   Our review body uses <p> but the WP theme may target p inside certain
   containers with extra margins.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-review-body {
  border: none !important;
  border-left: none !important;
  padding: 0 !important;
  background: none !important;
  margin: 0 0 20px 0 !important;
}

.cpb-root .cpb-review-card {
  border-radius: 0 !important;
  /* WP themes add shadows to .card / box elements */
  box-shadow: none !important;
}


/* ── FIX 14: FOOTER — ENSURE DARK BACKGROUND SHOWS ────────────────────────
   WP themes sometimes apply background-color to footer elements that
   override the component's footer background.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root .cpb-footer {
  background-color: #05080C !important;
  color: inherit !important;
}

.cpb-root .cpb-footer * {
  color: inherit;
}


/* ── FIX 15: MOBILE STICKY — ENSURE IT APPEARS ON MOBILE ──────────────────
   Must use position:fixed not sticky. Z-index above WP admin bar.
   ───────────────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .cpb-root .cpb-mobile-sticky {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 100001 !important;
    /* Add bottom padding for iOS Safari home indicator */
    padding-bottom: max(15px, env(safe-area-inset-bottom)) !important;
  }

  /* Push footer content above the sticky bar */
  .cpb-root .cpb-footer {
    padding-bottom: 70px !important;
  }
}


/* ── FIX 16: WP IMAGE ALIGNMENT OVERRIDES ─────────────────────────────────
   WP adds .aligncenter, .alignleft etc. to images which can break layouts.
   Scope these overrides to inside our component only.
   ───────────────────────────────────────────────────────────────────────── */
.cpb-root img.aligncenter,
.cpb-root img.alignleft,
.cpb-root img.alignright,
.cpb-root img.alignnone,
.cpb-root figure.aligncenter,
.cpb-root figure.alignleft,
.cpb-root figure.alignright {
  float: none !important;
  margin: 0 !important;
  display: block !important;
}

/* WP Gutenberg adds figcaption which can add extra height to image wrappers */
.cpb-root figcaption {
  display: none !important;
}


/* ── FIX 17: MOBILE RESPONSIVE — CORRECT BREAKPOINTS ──────────────────────
   Previous version used viewport-based breakpoints but WP content area
   is ~760-800px wide even on a 1456px viewport. Use container-aware
   thresholds.
   ───────────────────────────────────────────────────────────────────────── */

/* On smaller viewports, trust bar goes 2-col */
@media (max-width: 900px) {
  .cpb-root .cpb-trust-bar-inner {
    grid-template-columns: 1fr 1fr !important;
  }
  .cpb-root .cpb-trust-item:nth-child(2) {
    border-right: none !important;
  }
  .cpb-root .cpb-trust-item:nth-child(3) {
    border-right: 1px solid var(--cpb-border) !important;
    border-top: 1px solid var(--cpb-border) !important;
  }
  .cpb-root .cpb-trust-item:nth-child(4) {
    border-top: 1px solid var(--cpb-border) !important;
  }
}

@media (max-width: 768px) {
  .cpb-root .cpb-hero {
    min-height: 520px !important;
  }
  .cpb-root .cpb-hero-photo {
    /* On mobile, hide the photo and use the dark bg instead */
    display: none !important;
  }
  .cpb-root .cpb-hero-content {
    padding-top: 48px !important;
    padding-bottom: 60px !important;
  }
  .cpb-root .cpb-hero .cpb-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .cpb-root .cpb-container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .cpb-root .cpb-trust-bar-inner {
    grid-template-columns: 1fr 1fr !important;
    padding: 0 20px !important;
  }
  .cpb-root .cpb-trust-item:nth-child(3) {
    border-right: none !important;
  }
  .cpb-root .cpb-hero-badge {
    display: none !important;
  }
  .cpb-root .cpb-hero-ctas {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
  .cpb-root .cpb-process-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .cpb-root .cpb-process-grid::before {
    display: none !important;
  }
  .cpb-root .cpb-includes-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .cpb-root .cpb-brands-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .cpb-root .cpb-contact-inner {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }
  .cpb-root .cpb-footer-inner {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }
  .cpb-root .cpb-specials-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
  .cpb-root .cpb-final-btns {
    flex-direction: column !important;
    align-items: center !important;
  }
  .cpb-root .cpb-gallery-grid {
    grid-template-columns: 1fr !important;
  }
  .cpb-root .cpb-reviews-grid,
  .cpb-root .cpb-reviews-grid-2 {
    grid-template-columns: 1fr !important;
  }
  .cpb-root .cpb-includes-list {
    grid-template-columns: 1fr !important;
  }
  .cpb-root .cpb-optional-grid {
    grid-template-columns: 1fr !important;
  }
  .cpb-root .cpb-products-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}

/* ── END OF PATCH ─────────────────────────────────────────────────────────── */


/* ════════════════════════════════════════════════════════════════════════════
   BLANK-TEMPLATE OVERRIDES
   blank.php produces a fully clean <body> — no Genesis wrappers, no
   entry-content, no sidebars.  .cpb-root is a direct child of <body> so the
   position/left/margin-left breakout technique is NOT needed and actually
   BREAKS the layout (shifts content off-center).
   These rules appear LAST so they win over everything above.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── html + body baseline
      NOTE: "body.cpb-blank-page html" is INVALID CSS (html can't be a
      descendant of body). Correct form is a comma-separated list. ────────── */
html,
body.cpb-blank-page {
  margin:    0 !important;
  padding:   0 !important;
  width:     100% !important;
  max-width: none !important;
}

/* ── Admin bar: WP JS sets html { margin-top: 32px } for logged-in admins.
      Our inline reset in blank.php handles this, but repeat here for safety. */
html.wp-toolbar {
  margin-top: 0 !important;
}
body.admin-bar {
  margin-top:  0 !important;
  padding-top: 0 !important;
}

/* ── Sticky nav shifts down 32px when WP admin bar is visible ───────────── */
body.admin-bar .cpb-root .cpb-site-nav {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  /* Admin bar is 46px tall on mobile */
  body.admin-bar .cpb-root .cpb-site-nav {
    top: 46px !important;
  }
}

/* ── .cpb-root: simple full-width block, no breakout tricks ─────────────── */
.cpb-root {
  position: relative !important;
  /* Cancel the 50vw breakout — causes misalignment in clean-body context */
  left: auto !important;
  right: auto !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  font-size: 16px !important;
  overflow-x: hidden !important;
}

/* ── Service grids: explicit column count, never viewport-dependent ──────── */
/* Desktop: 3-column always when viewport ≥ 700 px */
@media (min-width: 700px) {
  .cpb-root .cpb-svc-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2px !important;
    width: 100% !important;
  }
  .cpb-root .cpb-svc-grid-2 {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 2px !important;
    width: 100% !important;
  }
}

/* Tablet: 2-column between 480–699 px */
@media (min-width: 480px) and (max-width: 699px) {
  .cpb-root .cpb-svc-grid,
  .cpb-root .cpb-svc-grid-2 {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile: single column */
@media (max-width: 479px) {
  .cpb-root .cpb-svc-grid,
  .cpb-root .cpb-svc-grid-2 {
    grid-template-columns: 1fr !important;
  }
}

/* ── Container: must be fully unlocked in clean-body context ────────────── */
.cpb-root .cpb-container {
  width: 100% !important;
  max-width: 1120px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: clamp(20px, 4vw, 48px) !important;
  padding-right: clamp(20px, 4vw, 48px) !important;
}

/* ── Sections span full root width ─────────────────────────────────────── */
.cpb-root .cpb-section,
.cpb-root .cpb-section-sm,
.cpb-root .cpb-trust-bar,
.cpb-root .cpb-services,
.cpb-root .cpb-hero,
.cpb-root .cpb-footer {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
}

/* ── Hero: position:relative so absolute children (bg, photo) resolve
      against the hero section itself ──────────────────────────────────── */
.cpb-root .cpb-hero {
  position: relative !important;
  overflow: hidden !important;
}

/* ── Mobile sticky: always position:fixed, above WP admin bar ────────── */
.cpb-root .cpb-mobile-sticky {
  position: fixed !important;
  z-index: 100001 !important;
}

/* ─── END BLANK-TEMPLATE OVERRIDES ──────────────────────────────────────── */


/* ═══════════════════════════════════════════════════════════════════════════
   INTERIOR PAGES — v1.4.0
   Navigation · Inner Hero · Services Detail · Gallery · Contact · Footer
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── SITE NAVIGATION ─────────────────────────────────────────────────────── */
.cpb-root .cpb-site-nav {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(9,9,11,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--cpb-border);
  transition: box-shadow 0.3s var(--cpb-ease);
}
.cpb-root .cpb-site-nav--scrolled {
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}
.cpb-root .cpb-site-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px,4vw,48px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cpb-root .cpb-nav-brand {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.cpb-root .cpb-nav-brand-name {
  font-family: var(--cpb-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--cpb-cream);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.cpb-root .cpb-nav-brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: var(--cpb-slate);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.cpb-root .cpb-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.cpb-root .cpb-nav-link {
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--cpb-mist);
  text-decoration: none;
  padding: 6px 12px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.cpb-root .cpb-nav-link:hover {
  color: var(--cpb-cream);
  background: var(--cpb-panel);
}
.cpb-root .cpb-nav-link--active {
  color: var(--cpb-gold);
  background: transparent;
  font-weight: 500;
}
.cpb-root .cpb-nav-cta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cpb-gold);
  text-decoration: none;
  padding: 8px 16px;
  border: 1px solid var(--cpb-gold-dim);
  border-radius: 3px;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cpb-root .cpb-nav-cta svg { width: 14px; height: 14px; }
.cpb-root .cpb-nav-cta:hover {
  background: var(--cpb-gold);
  color: var(--cpb-black);
  border-color: var(--cpb-gold);
}
/* Hamburger */
.cpb-root .cpb-nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 3px;
}
.cpb-root .cpb-nav-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--cpb-mist);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}
.cpb-root .cpb-nav-toggle--open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.cpb-root .cpb-nav-toggle--open span:nth-child(2) { opacity: 0; }
.cpb-root .cpb-nav-toggle--open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
/* Mobile nav drawer */
.cpb-root .cpb-nav-mobile {
  display: flex;
  flex-direction: column;
  background: var(--cpb-near-bl);
  border-top: 1px solid var(--cpb-border);
  padding: 8px 0 16px;
}
.cpb-root .cpb-nav-mobile-link,
.cpb-root .cpb-nav-mobile-call {
  display: block;
  padding: 12px clamp(16px,4vw,48px);
  font-size: 17px;
  color: var(--cpb-mist);
  text-decoration: none;
  border-bottom: 1px solid var(--cpb-border);
  transition: color 0.2s, background 0.2s;
}
.cpb-root .cpb-nav-mobile-link:last-of-type { border-bottom: none; }
.cpb-root .cpb-nav-mobile-link:hover { color: var(--cpb-cream); background: var(--cpb-panel); }
.cpb-root .cpb-nav-mobile-link.cpb-nav-link--active { color: var(--cpb-gold); }
.cpb-root .cpb-nav-mobile-call {
  margin: 8px clamp(16px,4vw,48px) 0;
  padding: 11px 20px;
  background: var(--cpb-gold);
  color: var(--cpb-black) !important;
  border: none;
  border-radius: 3px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-align: center;
}

/* ── INNER PAGE HERO ─────────────────────────────────────────────────────── */
.cpb-root .cpb-inner-hero {
  position: relative;
  width: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  background: var(--cpb-near-bl);
  overflow: hidden;
}
.cpb-root .cpb-inner-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(9,9,11,0.97) 0%, rgba(15,20,30,0.88) 100%),
    url('https://www.cardetailingmilwaukee.com/wp-content/uploads/2017/04/hero-image3.jpg') center/cover no-repeat;
  z-index: 0;
}
.cpb-root .cpb-inner-hero .cpb-container {
  position: relative;
  z-index: 1;
  padding-top: clamp(48px, 8vw, 88px);
  padding-bottom: clamp(40px, 6vw, 72px);
}
.cpb-root .cpb-inner-hero-content { max-width: 680px; }
.cpb-root .cpb-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpb-slate);
  margin-bottom: 20px;
}
.cpb-root .cpb-breadcrumb a {
  color: var(--cpb-slate);
  text-decoration: none;
  transition: color 0.2s;
}
.cpb-root .cpb-breadcrumb a:hover { color: var(--cpb-gold); }
.cpb-root .cpb-breadcrumb span { color: var(--cpb-slate); }
.cpb-root .cpb-breadcrumb span[aria-current] { color: var(--cpb-mist); }
.cpb-root .cpb-inner-hero-h1 {
  font-family: var(--cpb-serif);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--cpb-white);
  margin: 8px 0 16px;
  letter-spacing: -0.01em;
}
.cpb-root .cpb-inner-hero-h1 em {
  font-style: italic;
  color: var(--cpb-gold);
}
.cpb-root .cpb-inner-hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 300;
  color: var(--cpb-mist);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 520px;
}
.cpb-root .cpb-inner-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ── FOOTER ──────────────────────────────────────────────────────────────── */
.cpb-root .cpb-footer {
  background: var(--cpb-black);
  border-top: 1px solid var(--cpb-border);
  padding: clamp(48px,8vw,88px) 0 0;
}
.cpb-root .cpb-footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--cpb-border);
}
.cpb-root .cpb-footer-brand-name {
  font-family: var(--cpb-serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--cpb-cream);
  margin-bottom: 10px;
}
.cpb-root .cpb-footer-tagline {
  font-size: 15px;
  color: var(--cpb-slate);
  line-height: 1.6;
  margin-bottom: 16px;
  max-width: 260px;
}
.cpb-root .cpb-footer-contact {
  font-size: 15px;
  line-height: 1.8;
  color: var(--cpb-slate);
}
.cpb-root .cpb-footer-contact a {
  color: var(--cpb-mist);
  text-decoration: none;
  transition: color 0.2s;
}
.cpb-root .cpb-footer-contact a:hover { color: var(--cpb-gold); }
.cpb-root .cpb-footer-col-head {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cpb-slate);
  margin-bottom: 14px;
}
.cpb-root .cpb-footer-link {
  display: block;
  font-size: 15px;
  color: var(--cpb-mist);
  text-decoration: none;
  margin-bottom: 9px;
  transition: color 0.2s;
}
.cpb-root .cpb-footer-link:hover { color: var(--cpb-gold); }
.cpb-root .cpb-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
}
.cpb-root .cpb-footer-copy {
  font-size: 13px;
  color: var(--cpb-steel);
}
.cpb-root .cpb-footer-owner {
  font-size: 13px;
  color: var(--cpb-steel);
}

/* ── SERVICES DETAIL PAGE ────────────────────────────────────────────────── */
.cpb-root .cpb-svc-detail { background: var(--cpb-near-bl); }
.cpb-root .cpb-detail-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.cpb-root .cpb-detail-block {
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-radius: 4px;
  padding: 32px;
}
.cpb-root .cpb-detail-block-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cpb-gold);
  margin-bottom: 8px;
}
.cpb-root .cpb-detail-block-title {
  font-family: var(--cpb-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--cpb-cream);
  margin: 0 0 20px;
  line-height: 1.3;
}
.cpb-root .cpb-optional-grid-lg {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.cpb-root .cpb-optional-card {
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-radius: 4px;
  padding: 20px;
}
.cpb-root .cpb-optional-card-icon {
  font-size: 18px;
  color: var(--cpb-gold);
  margin-bottom: 8px;
}
.cpb-root .cpb-optional-card-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--cpb-cream);
  margin-bottom: 6px;
}
.cpb-root .cpb-optional-card-desc {
  font-size: 14px;
  color: var(--cpb-slate);
  line-height: 1.5;
  margin: 0;
}

/* ── MOTORCYCLE PAGE SPECIFICS ───────────────────────────────────────────── */
.cpb-root .cpb-moto-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cpb-root .cpb-moto-price-callout {
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-left: 3px solid var(--cpb-gold);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 28px;
}
.cpb-root .cpb-moto-price-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cpb-gold);
  margin-bottom: 4px;
}
.cpb-root .cpb-moto-price-val {
  font-family: var(--cpb-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--cpb-cream);
  margin-bottom: 6px;
}
.cpb-root .cpb-moto-price-note {
  font-size: 14px;
  color: var(--cpb-slate);
  line-height: 1.5;
}
.cpb-root .cpb-brands-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cpb-root .cpb-brand-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cpb-root .cpb-brand-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cpb-gold);
  flex-shrink: 0;
}
.cpb-root .cpb-brand-name {
  font-size: 16px;
  color: var(--cpb-mist);
}

/* ── GALLERY GRID ────────────────────────────────────────────────────────── */
.cpb-root .cpb-gallery-section { background: var(--cpb-black); }
.cpb-root .cpb-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cpb-root .cpb-gallery-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 3px;
  background: var(--cpb-panel);
  border: none;
  cursor: pointer;
  padding: 0;
  aspect-ratio: 16/10;
}
.cpb-root .cpb-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s var(--cpb-ease);
}
.cpb-root .cpb-gallery-item:hover img,
.cpb-root .cpb-gallery-item:focus-visible img { transform: scale(1.06); }
.cpb-root .cpb-gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(9,9,11,0.0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}
.cpb-root .cpb-gallery-item-overlay svg {
  width: 28px; height: 28px;
  color: var(--cpb-white);
  opacity: 0;
  transition: opacity 0.3s;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.8));
}
.cpb-root .cpb-gallery-item:hover .cpb-gallery-item-overlay,
.cpb-root .cpb-gallery-item:focus-visible .cpb-gallery-item-overlay {
  background: rgba(9,9,11,0.45);
}
.cpb-root .cpb-gallery-item:hover .cpb-gallery-item-overlay svg,
.cpb-root .cpb-gallery-item:focus-visible .cpb-gallery-item-overlay svg { opacity: 1; }
.cpb-root .cpb-gallery-item:focus-visible {
  outline: 2px solid var(--cpb-gold);
  outline-offset: 2px;
}
/* Gallery item footer label (standalone photos) */
.cpb-root .cpb-gallery-item {
  display: flex; flex-direction: column;
  aspect-ratio: unset;
}
.cpb-root .cpb-gallery-item img {
  flex: 1; min-height: 0;
  aspect-ratio: 16/10;
}
.cpb-root .cpb-gallery-item-foot {
  padding: 8px 12px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 6px; flex-shrink: 0;
  background: var(--cpb-panel);
  border-top: 1px solid var(--cpb-border);
}
.cpb-root .cpb-gallery-item-label {
  font-size: 13px; font-weight: 500; color: var(--cpb-white);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cpb-root .cpb-gallery-item-type {
  font-size: 11px; color: var(--cpb-mist);
  background: rgba(255,255,255,0.05);
  padding: 2px 8px; border-radius: 10px; flex-shrink: 0;
}

/* ── GALLERY SECTION TITLES ─────────────────────────────────────────────── */
.cpb-root .cpb-gallery-section-title {
  text-align: center; margin-bottom: 40px;
}
.cpb-root .cpb-gallery-section--standalone {
  background: var(--cpb-dark, #0D1117);
  border-top: 1px solid var(--cpb-border);
}

/* ── BEFORE & AFTER — PAIRED CARDS (2 separate images) ──────────────────── */
.cpb-root .cpb-ba-pairs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.cpb-root .cpb-ba-card {
  background: var(--cpb-panel);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--cpb-border);
}
.cpb-root .cpb-ba-pair-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 280px;
  position: relative;
}
.cpb-root .cpb-ba-half {
  position: relative; overflow: hidden;
  display: block; padding: 0; border: none; cursor: pointer;
  background: none;
}
.cpb-root .cpb-ba-half img {
  width: 100%; height: 100%; object-fit: cover;
  display: block; position: absolute; top: 0; left: 0;
  transition: transform 0.4s var(--cpb-ease);
}
.cpb-root .cpb-ba-half:hover img,
.cpb-root .cpb-ba-half:focus-visible img { transform: scale(1.05); }
.cpb-root .cpb-ba-half:focus-visible {
  outline: 2px solid var(--cpb-gold); outline-offset: -2px;
}
.cpb-root .cpb-ba-badge {
  position: absolute; z-index: 5; pointer-events: none;
  bottom: 10px; font-size: 10px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 2px;
}
.cpb-root .cpb-ba-half--before { background: #1A1008; }
.cpb-root .cpb-ba-half--before .cpb-ba-badge {
  left: 10px;
  background: rgba(40,10,10,0.88); color: rgba(230,110,70,0.97);
}
.cpb-root .cpb-ba-half--after { background: #081A10; }
.cpb-root .cpb-ba-half--after .cpb-ba-badge {
  right: 10px;
  background: rgba(10,40,15,0.88); color: rgba(80,210,110,0.97);
}
/* Gold divider between before/after */
.cpb-root .cpb-ba-divider-line {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: rgba(200,146,42,0.65);
  transform: translateX(-50%); z-index: 4; pointer-events: none;
}

/* ── BEFORE & AFTER — COMPOSITE CARDS (single image showing both) ────────── */
.cpb-root .cpb-ba-composites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.cpb-root .cpb-ba-composite-wrap {
  position: relative; display: block; width: 100%;
  padding: 0; border: none; cursor: pointer;
  overflow: hidden; background: none;
  aspect-ratio: 4/3;
}
.cpb-root .cpb-ba-composite-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s var(--cpb-ease);
}
.cpb-root .cpb-ba-composite-wrap:hover img,
.cpb-root .cpb-ba-composite-wrap:focus-visible img { transform: scale(1.04); }
.cpb-root .cpb-ba-composite-wrap:focus-visible {
  outline: 2px solid var(--cpb-gold); outline-offset: -2px;
}

/* ── B&A CARD FOOTER ────────────────────────────────────────────────────── */
.cpb-root .cpb-ba-card-foot {
  padding: 10px 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  border-top: 1px solid var(--cpb-border);
}
.cpb-root .cpb-ba-card-label {
  font-size: 14px; font-weight: 500; color: var(--cpb-white);
}
.cpb-root .cpb-ba-card-type {
  font-size: 11px; color: var(--cpb-mist);
  background: rgba(255,255,255,0.05);
  padding: 3px 9px; border-radius: 10px; flex-shrink: 0;
}

/* ── GALLERY PAGE RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .cpb-root .cpb-ba-composites-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  .cpb-root .cpb-ba-pairs-grid      { grid-template-columns: 1fr; }
  .cpb-root .cpb-ba-composites-grid { grid-template-columns: repeat(2,1fr); }
  .cpb-root .cpb-ba-pair-wrap       { height: 220px; }
}
@media (max-width: 480px) {
  .cpb-root .cpb-ba-composites-grid { grid-template-columns: 1fr; }
}

/* Lightbox */
.cpb-root .cpb-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100002;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpb-root .cpb-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.92);
}
.cpb-root .cpb-lightbox-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(92vw, 1100px);
  width: 100%;
  padding: 0 48px;
}
.cpb-root .cpb-lightbox-img-wrap {
  width: 100%;
  max-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cpb-root .cpb-lightbox-img-wrap img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 3px;
  display: block;
}
.cpb-root .cpb-lightbox-close {
  position: fixed;
  top: 20px; right: 20px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--cpb-white);
  transition: background 0.2s;
  z-index: 2;
}
.cpb-root .cpb-lightbox-close svg { width: 18px; height: 18px; }
.cpb-root .cpb-lightbox-close:hover { background: rgba(255,255,255,0.2); }
.cpb-root .cpb-lightbox-prev,
.cpb-root .cpb-lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--cpb-white);
  transition: background 0.2s;
  z-index: 2;
}
.cpb-root .cpb-lightbox-prev { left: 12px; }
.cpb-root .cpb-lightbox-next { right: 12px; }
.cpb-root .cpb-lightbox-prev svg,
.cpb-root .cpb-lightbox-next svg { width: 20px; height: 20px; }
.cpb-root .cpb-lightbox-prev:hover,
.cpb-root .cpb-lightbox-next:hover { background: rgba(255,255,255,0.2); }
.cpb-root .cpb-lightbox-caption {
  margin-top: 16px;
  font-size: 15px;
  color: var(--cpb-mist);
  text-align: center;
  max-width: 600px;
}
.cpb-root .cpb-lightbox-counter {
  margin-top: 6px;
  font-size: 13px;
  color: var(--cpb-slate);
  letter-spacing: 0.06em;
}

/* ── CONTACT PAGE ────────────────────────────────────────────────────────── */
.cpb-root .cpb-contact { background: var(--cpb-black); }
.cpb-root .cpb-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.cpb-root .cpb-contact-row {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.cpb-root .cpb-contact-icon {
  width: 40px; height: 40px;
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--cpb-gold);
}
.cpb-root .cpb-contact-icon svg { width: 16px; height: 16px; }
.cpb-root .cpb-contact-label {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cpb-gold);
  margin-bottom: 4px;
}
.cpb-root .cpb-contact-val {
  font-size: 16px;
  color: var(--cpb-mist);
  margin: 0;
  line-height: 1.6;
}
.cpb-root .cpb-contact-val a {
  color: var(--cpb-ghost);
  text-decoration: none;
  transition: color 0.2s;
}
.cpb-root .cpb-contact-val a:hover { color: var(--cpb-gold); }
.cpb-root .cpb-contact-val small { font-size: 14px; color: var(--cpb-slate); }
/* GPS directions box */
.cpb-root .cpb-dir-box {
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-left: 3px solid var(--cpb-gold);
  border-radius: 4px;
  padding: 20px 24px;
  margin-top: 8px;
}
.cpb-root .cpb-dir-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--cpb-gold);
  margin-bottom: 8px;
}
.cpb-root .cpb-dir-title svg { width: 14px; height: 14px; }
.cpb-root .cpb-dir-note {
  font-size: 14px;
  color: var(--cpb-slate);
  margin: 0 0 12px;
  line-height: 1.5;
}
.cpb-root .cpb-dir-steps {
  margin: 0;
  padding-left: 18px;
}
.cpb-root .cpb-dir-step {
  font-size: 15px;
  color: var(--cpb-mist);
  margin-bottom: 6px;
  line-height: 1.5;
}
.cpb-root .cpb-payments {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.cpb-root .cpb-pay-label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cpb-slate);
}
.cpb-root .cpb-pay-chip {
  font-size: 13px;
  font-weight: 500;
  color: var(--cpb-mist);
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-radius: 3px;
  padding: 3px 9px;
}
/* Contact Form */
.cpb-root .cpb-contact-form-wrap {
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-radius: 4px;
  padding: 32px;
}
.cpb-root .cpb-contact-form { display: flex; flex-direction: column; gap: 0; }
.cpb-root .cpb-form-row { display: flex; gap: 16px; }
.cpb-root .cpb-form-row-2 > * { flex: 1; min-width: 0; }
.cpb-root .cpb-form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  width: 100%;
}
.cpb-root .cpb-form-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cpb-slate);
  margin-bottom: 6px;
}
.cpb-root .cpb-form-label span[aria-hidden] { color: var(--cpb-gold); margin-left: 2px; }
.cpb-root .cpb-form-input,
.cpb-root .cpb-form-textarea,
.cpb-root .cpb-form-select {
  background: var(--cpb-steel);
  border: 1px solid var(--cpb-border);
  border-radius: 3px;
  padding: 11px 14px;
  font-size: 16px;
  font-family: var(--cpb-sans);
  color: var(--cpb-ghost);
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}
.cpb-root .cpb-form-input::placeholder,
.cpb-root .cpb-form-textarea::placeholder { color: var(--cpb-slate); }
.cpb-root .cpb-form-input:focus,
.cpb-root .cpb-form-textarea:focus,
.cpb-root .cpb-form-select:focus {
  border-color: var(--cpb-gold);
  background: var(--cpb-near-bl);
  box-shadow: 0 0 0 3px rgba(200,146,42,0.15);
}
.cpb-root .cpb-form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.cpb-root .cpb-form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
  cursor: pointer;
}
.cpb-root .cpb-form-select option { background: var(--cpb-near-bl); color: var(--cpb-ghost); }
.cpb-root .cpb-form-success-msg,
.cpb-root .cpb-form-error-msg {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.5;
}
.cpb-root .cpb-form-success-msg {
  background: rgba(30,80,30,0.3);
  border: 1px solid rgba(50,150,50,0.3);
  color: #7FBA7F;
}
.cpb-root .cpb-form-success-msg svg { width: 18px; height: 18px; flex-shrink: 0; color: #5DBF5D; }
.cpb-root .cpb-form-error-msg {
  background: rgba(90,20,20,0.3);
  border: 1px solid rgba(180,40,40,0.3);
  color: #E08080;
}
.cpb-root .cpb-form-success-msg a,
.cpb-root .cpb-form-error-msg a { color: inherit; font-weight: 600; text-decoration: underline; }
.cpb-root .cpb-form-submit:disabled { opacity: 0.65; cursor: not-allowed; }

/* ── INCLUDES & DETAIL SECTIONS (reused homepage style + interior pages) ─── */
.cpb-root .cpb-includes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════════════════════════════════════
   RESPONSIVE — INTERIOR PAGES
   ══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .cpb-root .cpb-detail-two-col    { grid-template-columns: 1fr; gap: 28px; }
  .cpb-root .cpb-moto-intro-grid   { grid-template-columns: 1fr; gap: 40px; }
  .cpb-root .cpb-contact-inner     { grid-template-columns: 1fr; gap: 40px; }
  .cpb-root .cpb-gallery-grid      { grid-template-columns: repeat(3,1fr); }
  .cpb-root .cpb-footer-inner      { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cpb-root .cpb-includes-inner    { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .cpb-root .cpb-nav-links { display: none; }
  .cpb-root .cpb-nav-cta   { display: none; }
  .cpb-root .cpb-nav-toggle { display: flex; }
  .cpb-root .cpb-gallery-grid { grid-template-columns: repeat(2,1fr); gap: 6px; }
  .cpb-root .cpb-lightbox-inner { padding: 0 52px; }
  .cpb-root .cpb-inner-hero-h1 { font-size: clamp(28px,6vw,44px); }
  .cpb-root .cpb-form-row-2 { flex-direction: column; gap: 0; }
  .cpb-root .cpb-footer-inner { grid-template-columns: 1fr; }
  .cpb-root .cpb-footer-bottom { flex-direction: column; text-align: center; }
  .cpb-root .cpb-contact-form-wrap { padding: 20px; }
  .cpb-root .cpb-detail-block { padding: 20px; }
}

@media (max-width: 480px) {
  .cpb-root .cpb-gallery-grid { grid-template-columns: repeat(2,1fr); gap: 4px; }
  .cpb-root .cpb-lightbox-inner { padding: 0 44px; }
  .cpb-root .cpb-inner-hero-ctas { flex-direction: column; align-items: flex-start; }
}

/* ── Sections & container widths for interior pages ─────────────────────── */
.cpb-root #cpb-services-page .cpb-section,
.cpb-root #cpb-services-page .cpb-section-sm,
.cpb-root #cpb-services-page .cpb-specials,
.cpb-root #cpb-services-page .cpb-final,
.cpb-root #cpb-moto-page    .cpb-section,
.cpb-root #cpb-moto-page    .cpb-final,
.cpb-root #cpb-gallery-page .cpb-gallery-section,
.cpb-root #cpb-gallery-page .cpb-final,
.cpb-root #cpb-contact-page .cpb-contact,
.cpb-root #cpb-contact-page .cpb-final {
  width: 100% !important;
  max-width: 100% !important;
}

/* ─── END INTERIOR PAGES ────────────────────────────────────────────────── */

/* ══════════════════════════════════════════════════════════════════════════
   SEO / GEO / AEO COMPONENTS  (v1.5.0)
   ── Quick-answer box, FAQ accordion, About page, Location pages ──────────
   ══════════════════════════════════════════════════════════════════════════ */

/* ── Quick-answer / pricing-summary box ──────────────────────────────────── */
/* Outer strip — full-width background band */
.cpb-quick-answer-section {
  background: #0f1a24;
  border-top: 1px solid rgba(200,162,80,.18);
  border-bottom: 1px solid rgba(200,162,80,.18);
  padding: 40px 0;
}

/* Inner card — centered within the container */
.cpb-quick-answer {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(200,162,80,.25);
  border-left: 4px solid var(--cpb-gold);
  border-radius: 8px;
  padding: 28px 32px;
  max-width: 860px;
  margin: 0 auto;
}
.cpb-quick-answer p {
  margin: 0 0 10px;
  color: var(--cpb-white);
  line-height: 1.7;
}
.cpb-quick-answer p:last-child { margin-bottom: 0; }
.cpb-quick-answer strong { color: var(--cpb-gold); }
.cpb-quick-answer a { color: var(--cpb-gold); }

.cpb-freshness-note {
  font-size: 13px !important;
  color: var(--cpb-slate);
  font-style: italic;
  margin-top: 8px !important;
}

/* ── FAQ Section ─────────────────────────────────────────────────────────── */
.cpb-faq-section {
  background: var(--cpb-dark-soft);
}
.cpb-faq-list {
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cpb-faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cpb-faq-item:first-child {
  border-top: 1px solid rgba(255,255,255,.08);
}

.cpb-faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  color: var(--cpb-white);
  list-style: none;
  gap: 16px;
  line-height: 1.35;
}
.cpb-faq-q::-webkit-details-marker { display: none; }
.cpb-faq-q::after {
  content: '+';
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(200,162,80,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 300;
  color: var(--cpb-gold);
  transition: transform .2s ease, background .2s ease;
}
.cpb-faq-item[open] > .cpb-faq-q::after {
  content: '−';
  background: rgba(200,162,80,.1);
  transform: rotate(0deg);
}
.cpb-faq-item[open] > .cpb-faq-q {
  color: var(--cpb-gold);
}

.cpb-faq-a {
  padding: 0 0 24px;
}
.cpb-faq-a p {
  color: #b0b8c4;
  line-height: 1.75;
  margin: 0 0 12px;
}
.cpb-faq-a p:last-child { margin-bottom: 0; }
.cpb-faq-a a { color: var(--cpb-gold); text-decoration: underline; }
.cpb-faq-a strong { color: var(--cpb-white); }

/* ── About page ──────────────────────────────────────────────────────────── */
.cpb-about-section { background: var(--cpb-dark); }

.cpb-about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: start;
}

.cpb-about-main h3 {
  color: var(--cpb-white);
  margin: 36px 0 12px;
}
.cpb-about-main h3:first-of-type { margin-top: 24px; }
.cpb-about-main p {
  color: #b0b8c4;
  line-height: 1.75;
  margin: 0 0 16px;
}
.cpb-about-main a { color: var(--cpb-gold); text-decoration: underline; }
.cpb-about-main strong { color: var(--cpb-white); }

.cpb-about-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: sticky;
  top: 80px;
}

.cpb-about-fact-card {
  background: var(--cpb-gold);
  border-radius: 10px;
  padding: 32px;
  text-align: center;
  margin-bottom: 20px;
}
.cpb-about-fact-year {
  font-size: 64px;
  font-weight: 800;
  color: var(--cpb-dark);
  line-height: 1;
  font-family: var(--cpb-font-display);
}
.cpb-about-fact-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--cpb-dark);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 6px;
}

.cpb-about-info-block {
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.cpb-about-info-block:last-child { border-bottom: none; }
.cpb-about-info-head {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--cpb-gold);
  margin-bottom: 8px;
}
.cpb-about-info-block p {
  color: #b0b8c4;
  margin: 0 0 6px;
  line-height: 1.55;
}
.cpb-about-info-block p:last-child { margin-bottom: 0; }
.cpb-about-info-block a { color: inherit; }

/* About services grid */
.cpb-about-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cpb-about-svc-link {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: var(--cpb-dark);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 20px;
  text-decoration: none;
  transition: border-color .2s, background .2s;
}
.cpb-about-svc-link:hover {
  border-color: var(--cpb-gold);
  background: rgba(200,162,80,.06);
}
.cpb-about-svc-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--cpb-white);
}
.cpb-about-svc-price {
  font-size: 13px;
  color: var(--cpb-gold);
}

/* ── Location pages ──────────────────────────────────────────────────────── */
.cpb-loc-section { background: var(--cpb-dark); }

.cpb-loc-grid {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 64px;
  align-items: start;
}
.cpb-loc-main h3 {
  color: var(--cpb-white);
  margin: 32px 0 10px;
}
.cpb-loc-main h3:first-of-type { margin-top: 24px; }
.cpb-loc-main p {
  color: #b0b8c4;
  line-height: 1.75;
  margin: 0 0 14px;
}
.cpb-loc-main a { color: var(--cpb-gold); }
.cpb-loc-main strong { color: var(--cpb-white); }

.cpb-loc-svc-list {
  margin: 12px 0 20px 0;
  padding-left: 20px;
}
.cpb-loc-svc-list li {
  color: #b0b8c4;
  margin-bottom: 6px;
  line-height: 1.55;
}

.cpb-loc-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Mobile — all new components ────────────────────────────────────────── */
@media (max-width: 768px) {
  .cpb-quick-answer {
    padding: 22px 20px;
  }

  .cpb-about-grid,
  .cpb-loc-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cpb-about-sidebar,
  .cpb-loc-sidebar {
    position: static;
    order: -1;
  }
  .cpb-about-services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .cpb-about-fact-year {
    font-size: 48px;
  }
  .cpb-faq-q {
    font-size: 17px;
    padding: 18px 0;
  }
}
@media (max-width: 480px) {
  .cpb-about-services-grid {
    grid-template-columns: 1fr;
  }
}


/* ════════════════════════════════════════════════════════════════════════════
   TYPOGRAPHY ENFORCEMENT  (v1.4.7)
   ─────────────────────────────────────────────────────────────────────────
   WHY THIS BLOCK EXISTS
   Previous font-size changes were not rendering on the live site because:
     1. Plugin header Version: was frozen at 1.4.0 — WP Engine page/object
        cache never invalidated, so every page load served stale HTML with
        the old CSS URL baked in.
     2. wp_enqueue_style used a hardcoded constant version string; switched
        to filemtime() so the URL changes automatically on every file save.
     3. Class-only selectors (.cpb-root .some-class) can lose to theme rules
        that use element + class combos like "body .entry-content p {}".

   THIS BLOCK uses element-type selectors inside .cpb-root so they beat any
   Genesis / theme / Elementor rule that targets bare elements. Every rule
   carries !important to defeat inline style overrides too.
   All rules are scoped to .cpb-root — zero global bleed.
   ════════════════════════════════════════════════════════════════════════════ */

/* ── Paragraphs & lists (the most common body-copy elements) ─────────────── */
.cpb-root p   { font-size: 17px !important; line-height: 1.75 !important; }
.cpb-root li  { font-size: 17px !important; line-height: 1.65 !important; }

/* ── Headings ─────────────────────────────────────────────────────────────── */
.cpb-root h1  { font-size: clamp(34px, 4.8vw, 62px) !important; line-height: 1.1 !important; }
.cpb-root h2  { font-size: clamp(28px, 4.2vw, 52px) !important; line-height: 1.12 !important; }
.cpb-root h3  { font-size: 24px !important; line-height: 1.25 !important; }
.cpb-root h4,
.cpb-root h5,
.cpb-root h6  { font-size: 18px !important; line-height: 1.3 !important; }

/* ── Anchors inherit their container size — no fixed px here ────────────── */
.cpb-root a   { font-size: inherit !important; }

/* ── Named component classes — belt-and-suspenders on top of element rules ─ */
.cpb-root .cpb-body-lead     { font-size: 18px !important; }
.cpb-root .cpb-svc-desc      { font-size: 17px !important; }
.cpb-root .cpb-svc-name      { font-size: 22px !important; }
.cpb-root .cpb-svc-include   { font-size: 17px !important; }
.cpb-root .cpb-svc-price-tier { font-size: 16px !important; }
.cpb-root .cpb-svc-cta       { font-size: 15px !important; }
.cpb-root .cpb-includes-item { font-size: 17px !important; }
.cpb-root .cpb-optional-item { font-size: 17px !important; }
.cpb-root .cpb-trust-val     { font-size: 20px !important; }
.cpb-root .cpb-trust-label   { font-size: 16px !important; }
.cpb-root .cpb-hero-meta-row { font-size: 16px !important; }
.cpb-root .cpb-review-body   { font-size: 17px !important; }
.cpb-root .cpb-review-name   { font-size: 16px !important; }
.cpb-root .cpb-review-detail { font-size: 14px !important; }
.cpb-root .cpb-eyebrow       { font-size: 13px !important; }
.cpb-root .cpb-hero-eyebrow  { font-size: 13px !important; }
.cpb-root .cpb-btn           { font-size: 16px !important; }
.cpb-root .cpb-lnk           { font-size: 15px !important; }
.cpb-root .cpb-footer-copy   { font-size: 14px !important; }
.cpb-root .cpb-footer-owner  { font-size: 14px !important; }

/* ── MOBILE — everything larger, element-level enforcement ──────────────── */
@media (max-width: 768px) {
  .cpb-root p  { font-size: 18px !important; line-height: 1.75 !important; }
  .cpb-root li { font-size: 18px !important; line-height: 1.65 !important; }
  .cpb-root h3 { font-size: 26px !important; }
  .cpb-root h4,
  .cpb-root h5,
  .cpb-root h6 { font-size: 20px !important; }

  .cpb-root .cpb-body-lead     { font-size: 19px !important; }
  .cpb-root .cpb-svc-desc      { font-size: 18px !important; }
  .cpb-root .cpb-svc-name      { font-size: 24px !important; }
  .cpb-root .cpb-svc-include   { font-size: 18px !important; }
  .cpb-root .cpb-svc-price-tier { font-size: 17px !important; }
  .cpb-root .cpb-svc-cta       { font-size: 16px !important; }
  .cpb-root .cpb-includes-item { font-size: 18px !important; }
  .cpb-root .cpb-optional-item { font-size: 18px !important; }
  .cpb-root .cpb-trust-val     { font-size: 22px !important; }
  .cpb-root .cpb-trust-label   { font-size: 17px !important; }
  .cpb-root .cpb-hero-meta-row { font-size: 17px !important; }
  .cpb-root .cpb-review-body   { font-size: 18px !important; }
  .cpb-root .cpb-review-name   { font-size: 17px !important; }
  .cpb-root .cpb-eyebrow       { font-size: 14px !important; }
  .cpb-root .cpb-hero-eyebrow  { font-size: 14px !important; }
  .cpb-root .cpb-btn           { font-size: 17px !important; padding: 15px 28px !important; }
  .cpb-root .cpb-lnk           { font-size: 16px !important; }
  .cpb-root .cpb-footer-copy   { font-size: 15px !important; }
  .cpb-root .cpb-footer-owner  { font-size: 15px !important; }
}

/* ══════════════════════════════════════════════════════════
   Services Dropdown Navigation (v1.6.0)
   ══════════════════════════════════════════════════════════ */

.cpb-root .cpb-nav-dropdown {
  position: relative;
}

.cpb-root .cpb-nav-dropdown-trigger {
  background: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
}

.cpb-root .cpb-nav-arrow {
  width: 11px;
  height: 11px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.cpb-root .cpb-nav-dropdown:hover .cpb-nav-arrow,
.cpb-root .cpb-nav-dropdown.cpb-open .cpb-nav-arrow {
  transform: rotate(180deg);
}

.cpb-root .cpb-nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: -16px;
  min-width: 220px;
  background: var(--cpb-panel);
  border: 1px solid var(--cpb-border);
  border-top: 2px solid var(--cpb-gold);
  padding: 8px 0;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}

.cpb-root .cpb-nav-dropdown:hover .cpb-nav-dropdown-panel,
.cpb-root .cpb-nav-dropdown.cpb-open .cpb-nav-dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cpb-root .cpb-nav-dropdown-link {
  display: block;
  padding: 9px 20px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-transform: none;
  color: var(--cpb-mist);
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}

.cpb-root .cpb-nav-dropdown-link:hover {
  color: var(--cpb-gold);
  background: rgba(255, 255, 255, 0.03);
}

.cpb-root .cpb-nav-dropdown-link--active {
  color: var(--cpb-gold);
}

.cpb-root .cpb-nav-dropdown-divider {
  height: 1px;
  background: var(--cpb-border);
  margin: 6px 0;
}

/* Mobile: service group header */
.cpb-root .cpb-nav-mobile-group-head {
  padding: 14px 24px 6px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cpb-gold);
  border-top: 1px solid var(--cpb-border);
}

/* Mobile: service sub-links (indented) */
.cpb-root .cpb-nav-mobile-sublink {
  padding-left: 36px !important;
  font-size: 13px !important;
  color: var(--cpb-mist) !important;
}

/* Responsive: hide dropdown panel on very small screens (covered by mobile menu) */
@media (max-width: 768px) {
  .cpb-root .cpb-nav-dropdown-panel { display: none !important; }
  .cpb-root .cpb-nav-arrow { display: none; }
}

/* ── SERVICE FEATURE: Photo + Benefits split layout ────────────── */
.cpb-svc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--cpb-border);
  background: var(--cpb-border);
  border-radius: 4px;
  overflow: hidden;
}
.cpb-svc-feature-photo {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  background: var(--cpb-near-bl);
}
.cpb-svc-feature-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cpb-svc-feature-body {
  background: var(--cpb-panel);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cpb-svc-benefit-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.cpb-svc-benefit-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.cpb-svc-benefit-item:last-child { border-bottom: none; }
.cpb-svc-benefit-icon {
  width: 14px;
  height: 14px;
  color: var(--cpb-gold);
  flex-shrink: 0;
  margin-top: 4px;
}
.cpb-svc-benefit-title {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--cpb-white);
  margin-bottom: 3px;
  letter-spacing: 0;
  text-transform: none;
}
.cpb-svc-benefit-body {
  font-size: 13px;
  color: var(--cpb-mist);
  line-height: 1.65;
  display: block;
}

/* Responsive: stack on tablet/mobile */
@media (max-width: 820px) {
  .cpb-svc-feature-grid {
    grid-template-columns: 1fr;
  }
  .cpb-svc-feature-photo {
    min-height: 260px;
  }
  .cpb-svc-feature-body {
    padding: 32px 24px;
  }
}
@media (max-width: 480px) {
  .cpb-svc-feature-photo { min-height: 200px; }
  .cpb-svc-feature-body  { padding: 24px 18px; }
}

/* ══════════════════════════════════════════════════════════
   SERVICE PAGE IMPROVEMENTS — v1.6.1
   ══════════════════════════════════════════════════════════ */

/* ── Missing color tokens (used in service page sections) ── */
.cpb-root {
  --cpb-dark:      #0D1117;
  --cpb-dark-soft: #131820;
}

/* ── Service area card grid ─────────────────────── */
.cpb-svc-area-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--cpb-border);
  border: 1px solid var(--cpb-border);
  margin-bottom: 40px;
  overflow: hidden;
}
.cpb-svc-area-card {
  background: var(--cpb-panel);
  padding: 26px 24px 24px;
  border-top: 3px solid transparent;
}
.cpb-svc-area-card--home {
  border-top-color: var(--cpb-gold-dim);
}
.cpb-svc-area-city {
  font-family: var(--cpb-serif);
  font-size: 16px;
  font-weight: 500;
  color: var(--cpb-white);
  margin-bottom: 10px;
  line-height: 1.3;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.cpb-svc-area-card--home .cpb-svc-area-city {
  color: var(--cpb-gold);
}
.cpb-svc-area-badge {
  display: inline-block;
  font-family: var(--cpb-sans);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cpb-black);
  background: var(--cpb-gold);
  padding: 2px 7px;
  border-radius: 2px;
  flex-shrink: 0;
}
.cpb-svc-area-body {
  font-size: 15px;
  color: var(--cpb-mist);
  line-height: 1.72;
  margin: 0;
}
.cpb-svc-area-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--cpb-border);
}
.cpb-svc-area-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 900px) {
  .cpb-svc-area-grid { grid-template-columns: repeat(2, 1fr); }
  .cpb-svc-area-card { padding: 22px 18px 20px; }
}
@media (max-width: 540px) {
  .cpb-svc-area-grid { grid-template-columns: 1fr; }
  .cpb-svc-area-footer { flex-direction: column; align-items: flex-start; }
}

/* ── Benefit card text — bump 13 → readable ─────── */
.cpb-root .cpb-svc-benefit-title { font-size: 14px !important; }
.cpb-root .cpb-svc-benefit-body  { font-size: 15px !important; line-height: 1.68 !important; }

/* ── Sidebar info block body text ────────────────── */
.cpb-root .cpb-about-sidebar .cpb-about-info-block p { font-size: 15px; line-height: 1.65; }
.cpb-root .cpb-about-sidebar .cpb-about-info-head { font-size: 11px; }
