/*
Theme Name: Score Pros
Theme URI: https://getscorepros.com
Description: Score Pros — Professional credit repair & consulting. CBS editorial design system.
Author: Marc Henderson
Version: 2.0.0
Template: kadence
Requires at least: 6.0
Requires PHP: 7.4
License: Proprietary
Text Domain: scorepros
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS — CBS editorial + brand doc corrections
   ═══════════════════════════════════════════════════════ */
:root {
  --bg: #FAFAF8;
  --bg-warm: #F5F3EE;
  --bg-ink: #111110;
  --bg-ink-soft: #1C1C1A;
  --bg-ink-mid: #252523;
  --surface: #FFFFFF;

  --text: #111110;
  --text-2: #555550;
  --text-3: #8A8A82;
  --inv: #FAFAF8;
  --inv-m: rgba(250,250,248,.55);

  /* Brand green — per brand doc: "#00AE01 exclusively for primary CTA buttons" */
  --brand: #00AE01;
  --brand-h: #009901;
  --brand-s: rgba(0,174,1,.06);
  --brand-b: rgba(0,174,1,.15);

  /* Warm — ochre (CBS labels/dividers) */
  --warm: #C4841D;
  --warm-h: #D4941D;
  --warm-s: rgba(196,132,29,.08);

  --green: #2D7A4F;
  --red: #C0392B;

  --brd: rgba(0,0,0,.06);
  --brd-s: rgba(0,0,0,.1);
  --brd-i: rgba(255,255,255,.08);

  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  --mono: 'Space Mono', 'Courier New', monospace;

  --mw: 1140px;
  --mw-n: 760px;
  --r: 10px;
  --r-l: 16px;
  --r-x: 24px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--text); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brand); }
button { font-family: inherit; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.gsp-skip {
  position: absolute; top: -100%; left: 16px; z-index: 10000;
  padding: 12px 24px; background: var(--brand); color: #fff;
  font-weight: 600; border-radius: 0 0 6px 6px; transition: top .2s;
}
.gsp-skip:focus { top: 0; color: #fff; }

/* ═══════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════ */
.gsp-wrap {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
}
.gsp-narrow {
  max-width: var(--mw-n);
  margin: 0 auto;
}

.gsp-section { padding: 96px 0; }
.gsp-section--warm { background: var(--bg-warm); }
.gsp-section--ink { background: var(--bg-ink); color: var(--inv); }
.gsp-section--ink-soft { background: var(--bg-ink-soft); color: var(--inv); }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY — CBS editorial scale
   ═══════════════════════════════════════════════════════ */
.gsp-label {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 16px;
  display: block;
}

/* CBS dark pill label (hero) */
.gsp-label--pill {
  display: inline-block;
  background: var(--bg-ink);
  color: var(--inv);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  margin-bottom: 24px;
}

h1, .gsp-h1 {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 60px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
h1 em, .gsp-h1 em {
  font-style: italic;
  font-weight: 700;
}

h2, .gsp-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

h3, .gsp-h3 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}

.gsp-h4 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}

.gsp-body { font-size: 16px; line-height: 1.7; color: var(--text-2); }
.gsp-body--inv { color: var(--inv-m); }
.gsp-body--lg { font-size: 18px; line-height: 1.75; }

.gsp-mono {
  font-family: var(--mono);
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS — brand doc: "#00AE01 exclusively for primary CTA"
   "Black and white for all other UI elements"
   ═══════════════════════════════════════════════════════ */
.gsp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: all .25s var(--ease);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
  min-width: 44px;
}

.gsp-btn--primary {
  background: var(--brand);
  color: #fff;
}
.gsp-btn--primary:hover {
  background: var(--brand-h);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0,174,1,.25);
}
.gsp-btn--primary:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.gsp-btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--brd-s);
}
.gsp-btn--outline:hover {
  border-color: var(--text);
  color: var(--text);
  transform: translateY(-1px);
}

.gsp-btn--sm { font-size: 13px; padding: 10px 20px; }
.gsp-btn--lg { font-size: 17px; padding: 18px 36px; }

.gsp-btn[disabled],
.gsp-btn--loading { opacity: .6; cursor: not-allowed; pointer-events: none; }

/* ═══════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════ */
.gsp-card {
  background: var(--surface);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 32px;
  transition: all .3s var(--ease);
}
.gsp-card:hover {
  border-color: var(--brand-b);
  box-shadow: 0 8px 32px rgba(0,0,0,.06);
  transform: translateY(-2px);
}

.gsp-card--dark {
  background: var(--bg-ink-mid);
  border-color: var(--brd-i);
  color: var(--inv);
}

.gsp-card--accent-top { border-top: 3px solid var(--brand); }
.gsp-card--red-top { border-top: 3px solid var(--red); }

/* ═══════════════════════════════════════════════════════
   HEADER — CBS light cream
   ═══════════════════════════════════════════════════════ */
.gsp-header {
  background: var(--bg);
  border-bottom: 1px solid var(--brd);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.gsp-header__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.gsp-logo {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.gsp-logo:hover,
.gsp-logo:focus { color: var(--text); }
.gsp-logo__dot { color: var(--warm); margin: 0 1px; }

.gsp-nav { display: flex; align-items: center; gap: 28px; }

.gsp-nav__link {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  text-decoration: none;
  transition: color .2s;
  padding: 4px 0;
}
.gsp-nav__link:hover,
.gsp-nav__link:focus,
.gsp-nav__link--active { color: var(--text); }

/* Nav CTA — brand green per doc */
.gsp-nav__cta {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  padding: 10px 20px;
  background: var(--brand);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  transition: all .25s var(--ease);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}
.gsp-nav__cta:hover {
  background: var(--brand-h);
  color: #fff;
  transform: translateY(-1px);
}

/* Hamburger */
.gsp-hamburger {
  display: none;
  background: none; border: none; cursor: pointer; padding: 8px;
  flex-direction: column; gap: 5px; min-height: 44px; min-width: 44px;
  justify-content: center; align-items: center;
}
.gsp-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text);
  transition: all .3s var(--ease);
}
.gsp-hamburger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.gsp-hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.gsp-hamburger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.gsp-mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--bg); z-index: 999; padding: 32px 24px;
  flex-direction: column; overflow-y: auto;
  border-top: 1px solid var(--brd);
}
.gsp-mobile-menu[aria-hidden="false"] { display: flex; }

.gsp-mobile-menu__link {
  font-family: var(--sans); font-size: 18px; font-weight: 500;
  color: var(--text-2); text-decoration: none; padding: 16px 0;
  border-bottom: 1px solid var(--brd); display: block; min-height: 44px;
}
.gsp-mobile-menu__link:hover,
.gsp-mobile-menu__link:focus { color: var(--text); }

.gsp-mobile-menu .gsp-nav__cta {
  margin-top: 24px; text-align: center; font-size: 16px;
  padding: 16px; display: block; justify-content: center;
}

@media (max-width: 768px) {
  .gsp-nav { display: none; }
  .gsp-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   FOOTER — dark ink (CBS pattern)
   ═══════════════════════════════════════════════════════ */
.gsp-footer {
  background: var(--bg-ink);
  color: var(--inv);
  border-top: 1px solid var(--brd-i);
}

.gsp-footer__inner {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 64px 24px 40px;
}

.gsp-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.gsp-footer__desc {
  font-size: 14px;
  color: var(--inv-m);
  line-height: 1.7;
  margin: 16px 0;
}

.gsp-footer__phone {
  font-family: var(--mono);
  font-size: 15px;
  color: var(--brand);
  text-decoration: none;
  display: inline-block;
  margin-top: 12px;
}
.gsp-footer__phone:hover { color: var(--brand-h); }

.gsp-footer__heading {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--inv);
  margin-bottom: 20px;
}

.gsp-footer__link {
  font-size: 14px;
  color: var(--inv-m);
  text-decoration: none;
  display: block;
  padding: 5px 0;
  transition: color .2s;
}
.gsp-footer__link:hover { color: var(--brand); }

.gsp-footer__bottom {
  border-top: 1px solid var(--brd-i);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
}

.gsp-footer__copy { font-size: 13px; color: var(--inv-m); }
.gsp-footer__disclaimer {
  font-size: 11px;
  color: rgba(250,250,248,.3);
  line-height: 1.6;
  max-width: 600px;
}

@media (max-width: 768px) {
  .gsp-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gsp-footer__bottom { flex-direction: column; }
}
@media (max-width: 480px) {
  .gsp-footer__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   HERO — CBS editorial: light cream, left-aligned
   ═══════════════════════════════════════════════════════ */
.gsp-hero {
  background: var(--bg);
  color: var(--text);
  padding: 80px 0 0;
}

.gsp-hero__content {
  max-width: var(--mw);
  margin: 0 auto;
  padding: 0 24px 56px;
}

.gsp-hero__sub {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 0 36px;
}

.gsp-hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.gsp-hero__note {
  font-size: 13px;
  color: var(--text-3);
}

/* Hero stats bar */
.gsp-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--mw);
  margin: 0 auto;
  padding: 28px 24px;
  border-top: 1px solid var(--brd);
}

.gsp-hero__stat-num {
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  margin-bottom: 6px;
}

.gsp-hero__stat-label {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--text-3);
}

/* Hero trust badges — CBS mono text */
.gsp-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  max-width: var(--mw);
  margin: 0 auto;
  padding: 24px 24px 32px;
  border-top: 1px solid var(--brd);
}

.gsp-hero__badge {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-3);
}

@media (max-width: 600px) {
  .gsp-hero__stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gsp-hero__badges { gap: 16px; }
}

/* Subpage hero — centered, narrower */
.gsp-hero--sub {
  text-align: center;
  padding: 64px 0 0;
}
.gsp-hero--sub .gsp-hero__content {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px 48px;
}
.gsp-hero--sub .gsp-hero__sub {
  margin-left: auto;
  margin-right: auto;
}
.gsp-hero--sub .gsp-hero__ctas {
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════
   SECTION HEADER — CBS centered intro
   ═══════════════════════════════════════════════════════ */
.gsp-section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.gsp-section-header p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-top: 12px;
}
.gsp-section--ink .gsp-section-header p { color: var(--inv-m); }

/* ═══════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════ */
.gsp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.gsp-stat__num {
  font-family: var(--mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 8px;
}
.gsp-stat__label {
  font-size: 13px;
  color: var(--text-3);
  font-weight: 500;
}
.gsp-section--ink .gsp-stat__num { color: var(--brand); }
.gsp-section--ink .gsp-stat__label { color: var(--inv-m); }

@media (max-width: 600px) {
  .gsp-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* ═══════════════════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════════════════ */
.gsp-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.gsp-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gsp-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

@media (max-width: 900px) {
  .gsp-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .gsp-grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .gsp-grid-2 { grid-template-columns: 1fr; }
  .gsp-grid-4 { grid-template-columns: 1fr; }
}

.gsp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 768px) {
  .gsp-split { grid-template-columns: 1fr; gap: 24px; }
}

/* ═══════════════════════════════════════════════════════
   CHECKLISTS
   ═══════════════════════════════════════════════════════ */
.gsp-checklist { list-style: none; padding: 0; }
.gsp-checklist li {
  position: relative;
  padding: 12px 0 12px 32px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-2);
  border-bottom: 1px solid var(--brd);
}
.gsp-checklist li:last-child { border-bottom: none; }
.gsp-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: 700;
  font-size: 14px;
}

.gsp-xlist li::before { content: '\2717'; color: var(--red); }

.gsp-section--ink .gsp-checklist li { border-color: var(--brd-i); color: var(--inv-m); }
.gsp-section--ink .gsp-checklist li::before { color: var(--brand); }
.gsp-section--warm .gsp-checklist li { border-color: rgba(0,0,0,.08); }

/* ═══════════════════════════════════════════════════════
   BELIEF ROWS
   ═══════════════════════════════════════════════════════ */
.gsp-belief {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--brd);
}
.gsp-section--warm .gsp-belief { border-color: rgba(0,0,0,.08); }
.gsp-belief:last-child { border-bottom: none; }
.gsp-belief__icon {
  color: var(--brand);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════ */
.gsp-faq { max-width: var(--mw-n); margin: 0 auto; }
.gsp-faq__item { border-bottom: 1px solid var(--brd); }

.gsp-faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  font-family: var(--sans); font-size: 16px; font-weight: 600;
  color: var(--text); padding: 24px 40px 24px 0; text-align: left;
  position: relative; line-height: 1.5; min-height: 44px;
}
.gsp-faq__q::after {
  content: '+'; position: absolute; right: 0; top: 24px;
  font-size: 20px; font-weight: 300; color: var(--text-3);
  transition: transform .3s var(--ease);
}
.gsp-faq__q[aria-expanded="true"]::after { content: '\2212'; }

.gsp-faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .3s var(--ease), padding .3s var(--ease);
  font-size: 15px; color: var(--text-2); line-height: 1.7;
}
.gsp-faq__a[aria-hidden="false"] {
  max-height: 500px;
  padding-bottom: 24px;
}

/* ═══════════════════════════════════════════════════════
   CTA BLOCKS
   ═══════════════════════════════════════════════════════ */
.gsp-cta-block {
  text-align: center;
  padding: 40px 24px;
  border-top: 1px solid var(--brd);
  border-bottom: 1px solid var(--brd);
  margin-top: 48px;
}
.gsp-cta-block__note {
  font-size: 14px;
  color: var(--text-3);
  margin-bottom: 16px;
  font-style: italic;
}
.gsp-section--warm .gsp-cta-block { border-color: rgba(0,0,0,.08); }
.gsp-section--ink .gsp-cta-block { border-color: var(--brd-i); }
.gsp-section--ink .gsp-cta-block__note { color: var(--inv-m); }

/* ═══════════════════════════════════════════════════════
   PULLQUOTE
   ═══════════════════════════════════════════════════════ */
.gsp-pullquote {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--text);
  line-height: 1.5;
  padding: 24px 0 24px 24px;
  border-left: 3px solid var(--brand);
  margin: 32px 0;
}
.gsp-pullquote--center {
  text-align: center;
  border-left: none;
  padding-left: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.gsp-section--ink .gsp-pullquote { color: var(--inv); }

/* ═══════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════ */
.gsp-form { max-width: 560px; }
.gsp-form--center { margin: 0 auto; }
.gsp-form__row { margin-bottom: 16px; }
.gsp-form__row--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.gsp-form__label {
  display: block; font-size: 13px; font-weight: 600;
  color: var(--text); margin-bottom: 6px;
}

.gsp-form__input,
.gsp-form__select,
.gsp-form__textarea {
  width: 100%; font-family: var(--sans); font-size: 15px;
  padding: 12px 16px; border: 1px solid var(--brd-s); border-radius: 6px;
  background: var(--surface); color: var(--text);
  transition: border-color .2s, box-shadow .2s; outline: none; min-height: 44px;
}
.gsp-form__input:focus,
.gsp-form__select:focus,
.gsp-form__textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-b);
}
.gsp-form__textarea { min-height: 100px; resize: vertical; }
.gsp-form__consent { font-size: 12px; color: var(--text-3); line-height: 1.6; margin-top: 12px; }

.gsp-form__success { display: none; text-align: center; padding: 32px; }
.gsp-form__success[aria-hidden="false"] { display: block; }

.gsp-section--ink .gsp-form__label { color: var(--inv); }
.gsp-section--ink .gsp-form__input,
.gsp-section--ink .gsp-form__select,
.gsp-section--ink .gsp-form__textarea {
  background: var(--bg-ink-mid); border-color: var(--brd-i); color: var(--inv);
}

@media (max-width: 480px) {
  .gsp-form__row--2col { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════ */
.gsp-testimonial {
  background: var(--surface);
  border: 1px solid var(--brd);
  border-radius: var(--r);
  padding: 32px;
}
.gsp-testimonial__stars { color: var(--warm); font-size: 16px; letter-spacing: 2px; margin-bottom: 12px; }
.gsp-testimonial__quote { font-size: 15px; color: var(--text-2); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.gsp-testimonial__author { font-size: 13px; font-weight: 600; color: var(--text); }

/* ═══════════════════════════════════════════════════════
   BOOKING SPLITS
   ═══════════════════════════════════════════════════════ */
.gsp-booking-split { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.gsp-booking-col { padding: 28px; border-radius: var(--r); }
.gsp-booking-col--is { background: var(--brand-s); border: 1px solid var(--brand-b); }
.gsp-booking-col--isnt { background: rgba(192,57,43,.04); border: 1px solid rgba(192,57,43,.12); }
@media (max-width: 768px) { .gsp-booking-split { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   BADGE
   ═══════════════════════════════════════════════════════ */
.gsp-badge {
  display: inline-block; font-family: var(--mono); font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  padding: 5px 14px; border-radius: 100px;
  background: var(--brand-s); color: var(--brand); border: 1px solid var(--brand-b);
}
.gsp-badge--warm {
  background: var(--warm-s); color: var(--warm); border-color: rgba(196,132,29,.15);
}

/* ═══════════════════════════════════════════════════════
   SERVICE LEVEL CARDS (Services page)
   ═══════════════════════════════════════════════════════ */
.gsp-service-level {
  padding: 48px 0;
  border-bottom: 1px solid var(--brd);
}
.gsp-service-level:last-child { border-bottom: none; }
.gsp-service-level__best {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 24px;
}
.gsp-service-level__detail h4 {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════
   SIDEBAR (Service Singles)
   ═══════════════════════════════════════════════════════ */
.gsp-content-sidebar {
  display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start;
}
.gsp-sidebar-card {
  background: var(--surface); border: 1px solid var(--brd);
  border-radius: var(--r); padding: 28px; position: sticky; top: 92px;
}
.gsp-sidebar-card__row {
  display: flex; justify-content: space-between; padding: 10px 0;
  border-bottom: 1px solid var(--brd); font-size: 14px;
}
.gsp-sidebar-card__row:last-child { border-bottom: none; }
.gsp-sidebar-card__key { color: var(--text-3); }
.gsp-sidebar-card__val { color: var(--text); font-weight: 600; }
@media (max-width: 900px) {
  .gsp-content-sidebar { grid-template-columns: 1fr; }
  .gsp-sidebar-card { position: static; }
}

/* ═══════════════════════════════════════════════════════
   UTILITY
   ═══════════════════════════════════════════════════════ */
.gsp-tc { text-align: center; }
.gsp-mb-0 { margin-bottom: 0; }
.gsp-mb-8 { margin-bottom: 8px; }
.gsp-mb-12 { margin-bottom: 12px; }
.gsp-mb-16 { margin-bottom: 16px; }
.gsp-mb-24 { margin-bottom: 24px; }
.gsp-mb-32 { margin-bottom: 32px; }
.gsp-mb-48 { margin-bottom: 48px; }
.gsp-mt-16 { margin-top: 16px; }
.gsp-mt-24 { margin-top: 24px; }
.gsp-mt-32 { margin-top: 32px; }
.gsp-mt-48 { margin-top: 48px; }

.gsp-divider { height: 1px; background: var(--brd); margin: 48px 0; }
.gsp-section--ink .gsp-divider { background: var(--brd-i); }

body.admin-bar .gsp-header { top: 32px; }
body.admin-bar .gsp-mobile-menu { top: 100px; }
@media (max-width: 782px) {
  body.admin-bar .gsp-header { top: 46px; }
  body.admin-bar .gsp-mobile-menu { top: 114px; }
}

.wp-block-image { margin: 0; }
