/* =============================================================
   Shawnee, KS city page — r41
   Scoped to .shawnee-page. Distinct architecture from OP, Lenexa, Olathe.
   White + grey base with brand gold accents. Inter only. Small radius.
   ============================================================= */

.shawnee-page {
  --sh-line:      rgba(15, 23, 42, 0.12);
  --sh-line-2:    rgba(15, 23, 42, 0.06);
  --sh-ink:       #0b0f1a;
  --sh-ink-2:     #14213d;
  --sh-muted:     #475569;
  --sh-bg:        #ffffff;
  --sh-bg-2:      #f6f7fb;
  --sh-bg-3:      #eef0f6;
  --sh-gold:      #c9a227;
  --sh-gold-2:    #e8c14b;
  --sh-gold-3:    #b58a16;
  --sh-gold-soft: rgba(201, 162, 39, 0.10);
  --sh-radius-sm: 4px;
  --sh-radius:    8px;
  --sh-radius-lg: 12px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--sh-ink);
  background: var(--sh-bg);
}

.shawnee-page * { box-sizing: border-box; }
.shawnee-page section { padding: 64px 0; }
.shawnee-page .local-page__wrap { width: min(1200px, 92vw); margin-inline: auto; }
.shawnee-page h1, .shawnee-page h2, .shawnee-page h3, .shawnee-page h4 {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0 0 12px;
  color: var(--sh-ink);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.shawnee-page p { margin: 0 0 12px; color: var(--sh-muted); line-height: 1.6; }
.shawnee-page a { color: var(--sh-gold-3); }

/* =================== HERO BANNER ==================== */
.sh-hero {
  padding: 88px 0 72px;
  background:
    radial-gradient(800px 300px at 50% -10%, var(--sh-gold-soft), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, var(--sh-bg-2) 100%);
  border-bottom: 1px solid var(--sh-line-2);
  text-align: center;
}
.sh-hero > .local-page__wrap {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.sh-hero__kicker {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sh-gold-soft);
  color: var(--sh-gold-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.sh-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  margin: 18px auto 16px;
  max-width: 900px;
}
.sh-hero__title .underline {
  background: linear-gradient(180deg, transparent 60%, var(--sh-gold-2) 60%);
  padding: 0 6px;
}
.sh-hero__lede {
  font-size: 1.12rem;
  color: var(--sh-muted);
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.6;
}
.sh-hero__cta {
  display: inline-flex; gap: 12px; flex-wrap: wrap; justify-content: center;
}
.sh-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 22px;
  border-radius: var(--sh-radius);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
  letter-spacing: 0.01em;
}
.shawnee-page a.sh-btn--gold,
.shawnee-page a.sh-btn--gold:link,
.shawnee-page a.sh-btn--gold:visited { background: var(--sh-gold); color: #ffffff; border-color: var(--sh-gold); }
.shawnee-page a.sh-btn--gold:hover,
.shawnee-page a.sh-btn--gold:focus { background: var(--sh-gold-3); border-color: var(--sh-gold-3); color: #ffffff; transform: translateY(-1px); }
.shawnee-page a.sh-btn--ghost,
.shawnee-page a.sh-btn--ghost:link,
.shawnee-page a.sh-btn--ghost:visited { background: #fff; color: var(--sh-ink); border-color: var(--sh-ink); }
.shawnee-page a.sh-btn--ghost:hover,
.shawnee-page a.sh-btn--ghost:focus { background: var(--sh-ink); color: #fff; }

/* =================== PROBLEMS WE SOLVE ==================== */
.sh-pain {
  padding: 72px 0;
  background: #ffffff;
  border-bottom: 1px solid var(--sh-line-2);
}
.sh-pain__head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
}
.sh-pain__h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  font-weight: 800;
}
.sh-pain__sub {
  font-size: 1.05rem;
  color: var(--sh-muted);
  line-height: 1.6;
}
.sh-pain__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) { .sh-pain__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .sh-pain__grid { grid-template-columns: 1fr; } }
.sh-pain__card {
  background: var(--sh-bg-2);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}
.sh-pain__problem {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b91c1c;
  background: rgba(185, 28, 28, 0.08);
  padding: 4px 10px;
  border-radius: var(--sh-radius-sm);
  align-self: flex-start;
  margin-bottom: 6px;
}
.sh-pain__h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--sh-ink);
  line-height: 1.3;
  margin: 0 0 6px;
}
.sh-pain__copy {
  font-size: 0.92rem;
  color: var(--sh-muted);
  margin: 0 0 14px;
  line-height: 1.55;
  flex-grow: 1;
}
.sh-pain__fix {
  border-top: 1px solid var(--sh-line);
  padding-top: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--sh-ink-2);
  line-height: 1.5;
}
.sh-pain__fix::before {
  content: "✓";
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sh-gold);
  color: var(--sh-ink);
  font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
}
.sh-pain__fix strong { font-weight: 800; color: var(--sh-ink); display: block; margin-bottom: 2px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--sh-gold-3); }

/* =================== OUTCOMES BAND ==================== */
.sh-outcomes {
  padding: 64px 0;
  background: var(--sh-ink);
  color: #fff;
}
.sh-outcomes__head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.sh-outcomes__head h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  color: #ffffff;
  font-weight: 800;
}
.sh-outcomes__head p { color: rgba(255,255,255,0.78); font-size: 1.02rem; }
.sh-outcomes__head .sh-persona__eyebrow {
  background: rgba(232, 193, 75, 0.15);
  color: var(--sh-gold-2);
}
.sh-outcomes__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 900px) { .sh-outcomes__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .sh-outcomes__grid { grid-template-columns: 1fr; } }
.sh-outcomes__cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--sh-radius);
  padding: 22px;
}
.sh-outcomes__cell h3 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--sh-gold-2);
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.sh-outcomes__cell p {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* =================== QUICK-QUOTE BAND ==================== */
.sh-quote {
  background: #ffffff;
  border-top: 1px solid var(--sh-line-2);
  border-bottom: 1px solid var(--sh-line-2);
  padding: 56px 0;
}
.sh-quote__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
}
@media (max-width: 900px) { .sh-quote__grid { grid-template-columns: 1fr; } }
.sh-quote__copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
}
.sh-quote__copy p { font-size: 1.02rem; }
.sh-quote__form {
  background: var(--sh-bg-2);
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  padding: 28px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
}

/* =================== STATS COUNTER STRIP ==================== */
.sh-stats {
  background: var(--sh-bg-2);
  padding: 56px 0;
  border-bottom: 1px solid var(--sh-line-2);
}
.sh-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: center;
}
@media (max-width: 820px) { .sh-stats__grid { grid-template-columns: repeat(2, 1fr); } }
.sh-stats__cell {
  background: #fff;
  padding: 32px 18px;
  border-radius: var(--sh-radius-lg);
  border: 1px solid var(--sh-line-2);
}
.sh-stats__num {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 900;
  color: var(--sh-ink);
  letter-spacing: -0.02em;
  display: block;
  font-variant-numeric: tabular-nums;
}
.sh-stats__num .acc { color: var(--sh-gold-3); }
.sh-stats__label {
  display: block;
  margin-top: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sh-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* =================== PERSONAS ==================== */
.sh-persona__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.sh-persona__eyebrow {
  display: inline-block;
  padding: 4px 10px;
  background: var(--sh-gold-soft);
  color: var(--sh-gold-3);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--sh-radius-sm);
  margin-bottom: 12px;
}
.sh-persona__h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.sh-persona__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 980px) { .sh-persona__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .sh-persona__grid { grid-template-columns: 1fr; } }
.sh-persona__card {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-top: 4px solid var(--sh-gold);
  border-radius: var(--sh-radius-lg);
  padding: 24px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.sh-persona__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.08);
}
.sh-persona__card h3 {
  font-size: 1.08rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.sh-persona__card p { font-size: 0.95rem; margin: 0; }
.sh-persona__tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: var(--sh-bg-2);
  color: var(--sh-ink-2);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--sh-radius-sm);
}

/* =================== 16-CARD SERVICE MATRIX ==================== */
.sh-matrix {
  background: var(--sh-bg-2);
  border-top: 1px solid var(--sh-line-2);
  border-bottom: 1px solid var(--sh-line-2);
}
.sh-matrix__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.sh-matrix__h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
}
.sh-matrix__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
@media (max-width: 1080px) { .sh-matrix__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px)  { .sh-matrix__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .sh-matrix__grid { grid-template-columns: 1fr; } }
.sh-matrix__card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform .12s ease, border-color .12s ease, box-shadow .12s ease;
  min-height: 168px;
  position: relative;
}
.sh-matrix__card:hover {
  transform: translateY(-2px);
  border-color: var(--sh-gold);
  box-shadow: 0 6px 20px rgba(201, 162, 39, 0.12);
}
.sh-matrix__cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-gold-3);
  margin-bottom: 8px;
}
.sh-matrix__title {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--sh-ink);
  line-height: 1.3;
  margin-bottom: 8px;
}
.sh-matrix__desc {
  font-size: 0.85rem;
  color: var(--sh-muted);
  line-height: 1.5;
  margin: 0;
  flex-grow: 1;
}
.sh-matrix__arrow {
  margin-top: 14px;
  color: var(--sh-gold-3);
  font-weight: 800;
  font-size: 1rem;
}

/* =================== CIVIC + SCHOOL ANCHORS ==================== */
.sh-civic__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 900px) { .sh-civic__grid { grid-template-columns: 1fr; } }
.sh-civic__body h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
}
.sh-civic__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 8px;
  padding: 0;
  list-style: none;
}
@media (max-width: 560px) { .sh-civic__list { grid-template-columns: 1fr; } }
.sh-civic__list li {
  background: var(--sh-bg-2);
  border-left: 3px solid var(--sh-gold);
  border-radius: var(--sh-radius-sm);
  padding: 14px 14px;
  font-size: 0.92rem;
}
.sh-civic__list strong {
  display: block;
  font-weight: 800;
  color: var(--sh-ink);
  margin-bottom: 2px;
  font-size: 0.95rem;
}
.sh-civic__list span { color: var(--sh-muted); font-size: 0.85rem; }

/* =================== TECH PILL CLOUD ==================== */
.sh-stack {
  background: var(--sh-bg-2);
}
.sh-stack__head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.sh-stack__cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.sh-stack__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--sh-ink);
  letter-spacing: 0.01em;
  transition: border-color .12s ease, color .12s ease;
}
.sh-stack__pill:hover { border-color: var(--sh-gold); color: var(--sh-gold-3); }
.sh-stack__pill::before {
  content: "";
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--sh-gold);
}

/* =================== COMPLIANCE CALLOUT ==================== */
.sh-comply__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-lg);
  padding: 36px;
}
@media (max-width: 900px) { .sh-comply__grid { grid-template-columns: 1fr; padding: 28px; } }
.sh-comply h2 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); font-weight: 800; }
.sh-comply__checks { list-style: none; padding: 0; margin: 0; }
.sh-comply__checks li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--sh-line-2);
  font-size: 0.95rem;
  color: var(--sh-ink-2);
}
.sh-comply__checks li:last-child { border-bottom: 0; }
.sh-comply__checks li::before {
  content: "✓";
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--sh-gold);
  color: var(--sh-ink);
  font-weight: 900;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.sh-comply__checks strong { font-weight: 800; color: var(--sh-ink); }

/* =================== VERTICAL PROCESS STEPPER ==================== */
.sh-process {
  background: var(--sh-bg-2);
}
.sh-process__head { text-align: center; max-width: 760px; margin: 0 auto 36px; }
.sh-process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
}
.sh-process__steps::before {
  content: "";
  position: absolute;
  left: 23px;
  top: 24px;
  bottom: 24px;
  width: 2px;
  background: var(--sh-gold-soft);
}
.sh-process__step {
  position: relative;
  padding: 16px 0 16px 70px;
  list-style: none;
}
.sh-process__num {
  position: absolute;
  left: 0;
  top: 12px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--sh-ink);
  color: var(--sh-gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 900;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--sh-line);
}
.sh-process__step:nth-child(odd) .sh-process__num {
  background: var(--sh-gold);
  color: var(--sh-ink);
}
.sh-process__step h3 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 4px;
}
.sh-process__step p { font-size: 0.95rem; margin: 0; }

/* =================== REVIEWS 2-COL QUOTE GRID ==================== */
.sh-reviews__head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.sh-reviews__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
@media (max-width: 820px) { .sh-reviews__grid { grid-template-columns: 1fr; } }
.sh-reviews__card {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-left: 4px solid var(--sh-gold);
  border-radius: var(--sh-radius);
  padding: 22px;
}
.sh-reviews__avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--sh-ink);
  color: var(--sh-gold-2);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}
.sh-reviews__quote {
  font-size: 0.96rem;
  color: var(--sh-ink-2);
  line-height: 1.55;
  margin: 0 0 10px;
}
.sh-reviews__name {
  font-weight: 800;
  color: var(--sh-ink);
  font-size: 0.9rem;
}
.sh-reviews__role {
  color: var(--sh-muted);
  font-size: 0.82rem;
  margin-left: 6px;
}
.sh-reviews__stars {
  color: var(--sh-gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-top: 4px;
}

/* =================== FAQ 2-COL ==================== */
.sh-faq { background: var(--sh-bg-2); }
.sh-faq__head { text-align: center; max-width: 760px; margin: 0 auto 32px; }
.sh-faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: min-content;
  align-items: start;
  gap: 14px;
}
@media (max-width: 820px) { .sh-faq__grid { grid-template-columns: 1fr; } }
.sh-faq__item {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-left: 4px solid var(--sh-gold);
  border-radius: var(--sh-radius);
  padding: 0;
}
.sh-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 50px 18px 20px;
  font-weight: 700;
  color: var(--sh-ink);
  font-size: 1rem;
  position: relative;
}
.sh-faq__item summary::-webkit-details-marker { display: none; }
.sh-faq__item summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  color: var(--sh-gold-3);
  font-size: 1.4rem;
  font-weight: 900;
  line-height: 1;
}
.sh-faq__item[open] summary::after { content: "−"; }
.sh-faq__body {
  padding: 0 20px 18px;
  color: var(--sh-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* =================== COVERAGE STRIP ==================== */
.sh-cover__head { text-align: center; max-width: 760px; margin: 0 auto 28px; }
.sh-cover__strip {
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius);
  padding: 22px 26px;
  margin-bottom: 24px;
}
.sh-cover__row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 0;
  border-bottom: 1px solid var(--sh-line-2);
}
.sh-cover__row:last-child { border-bottom: 0; padding-bottom: 0; }
.sh-cover__row:first-child { padding-top: 0; }
@media (max-width: 600px) {
  .sh-cover__row { grid-template-columns: 1fr; gap: 8px; }
}
.sh-cover__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sh-cover__label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sh-gold-3);
  padding-top: 6px;
}
.sh-cover__chip {
  display: inline-flex;
  padding: 6px 10px;
  background: var(--sh-bg-2);
  border-radius: var(--sh-radius-sm);
  font-size: 0.85rem;
  color: var(--sh-ink-2);
  font-weight: 600;
}
.sh-sister {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
}
.sh-sister__btn {
  display: inline-flex;
  padding: 8px 14px;
  background: #fff;
  border: 1px solid var(--sh-line);
  border-radius: var(--sh-radius-sm);
  font-size: 0.82rem;
  color: var(--sh-ink);
  text-decoration: none;
  font-weight: 700;
  transition: background .12s ease, color .12s ease, border-color .12s ease;
}
.sh-sister__btn:hover {
  background: var(--sh-gold);
  color: var(--sh-ink);
  border-color: var(--sh-gold);
}

/* =================== GOLD CTA BAR ==================== */
.sh-cta-bar {
  background: linear-gradient(120deg, var(--sh-gold) 0%, var(--sh-gold-2) 100%);
  padding: 48px 0;
  color: var(--sh-ink);
}
.sh-cta-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
}
.sh-cta-bar__copy h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.8rem);
  font-weight: 900;
  color: var(--sh-ink);
  margin: 0 0 6px;
}
.sh-cta-bar__copy p {
  margin: 0;
  color: var(--sh-ink-2);
  font-size: 1rem;
}
.sh-cta-bar__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.sh-cta-bar .sh-btn--ink {
  background: var(--sh-ink);
  color: var(--sh-gold-2);
  border-color: var(--sh-ink);
}
.sh-cta-bar .sh-btn--ink:hover { background: var(--sh-ink-2); }
.sh-cta-bar .sh-btn--white {
  background: #fff;
  color: var(--sh-ink);
  border-color: #fff;
}
.sh-cta-bar .sh-btn--white:hover { background: var(--sh-bg-2); }
