/*
Fixrn.com — static PHP/HTML site stylesheet.

DESIGN IDENTITY: "Dispatch Ticket" — grounded in how a real service call
actually works: a dispatched job, a ticket, a number to call. The
signature element (see .fixrn-ticket below) is styled like a torn
service-ticket stub, reused everywhere the phone CTA appears, so the
one thing this whole site needs to say — "call this number, help is
coming" — has a consistent, tactile, memorable visual home rather than
being just another rounded button.

Deliberately NOT loading any external font — every typeface below is a
system stack. Zero additional network requests, consistent with the
same reasoning that already removed Font Awesome's CDN library. The
"display" feel comes from weight/tracking on the system sans, not an
imported condensed face.
*/

:root {
  /* Ink / paper — the base surface. Warm paper instead of stark white:
     evokes a printed work order, not a SaaS dashboard. */
  --ink: #14213D;
  --paper: #F7F4EC;
  --paper-card: #FFFDF8;

  /* Verdigris — the brand color, deepened from the original flat teal
     toward an aged-copper-pipe tone. Used for links, badges, secondary
     accents — NOT the call-to-action (that's --signal, below), so the
     brand color and the "act now" color stay visually distinct. */
  --verdigris: #2F6E68;
  --verdigris-deep: #23504C;
  --verdigris-light: #6FA39C;
  --verdigris-pale: #8FC2BB;

  /* Signal — the one bold color in the system. Used only for the
     dispatch-ticket CTA. Evokes hazard/utility signage amber without
     tipping into literal caution-tape yellow. */
  --signal: #E2861F;
  --signal-deep: #B8690F;

  /* Alert — reserved strictly for genuine safety warnings (gas smell,
     truth-alert boxes). Deliberately a different hue family from
     --signal, so "call now" and "this is dangerous" never compete for
     the same color. */
  --alert: #B33A24;
  --alert-bg: #FBEAE6;
  --alert-border: #E7B8AC;

  /* Neutral grays — functional, unchanged from the original build. */
  --steel: #64748B;
  --steel-light: #94A3B8;
  --line: #E2E8F0;
  --line-soft: #CBD5E1;
  --surface: #F8FAFC;

  /* Type system — three system-stack roles, no webfont requests.
     Display: bold + tight tracking stands in for a condensed display
     face. Body: standard humanist system stack. Utility/mono: for
     phone numbers, ticket details, and data values — the same role
     IBM Plex Mono plays on other sites in this portfolio, done here
     with zero extra network weight. */
  --font-display: -apple-system, "Segoe UI", system-ui, Roboto, sans-serif;
  --font-body: -apple-system, "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", "Cascadia Code", "Roboto Mono", Menlo, Consolas, monospace;
}

* { box-sizing: border-box; }

html {
  background: var(--paper);
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ==========================================================================
   Ad slot containers — fixed dimensions reserve layout space up front so
   ads never cause a Cumulative Layout Shift (CLS) penalty once they load.
   ========================================================================== */

.fixrn-ad-slot {
  display: block;
  margin: 24px auto;
  text-align: center;
  overflow: hidden;
}

.fixrn-ad-slot .fixrn-ad-label {
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #9aa0a6;
  margin-bottom: 6px;
}

/* sidebar_below_cta — 300x250 */
.fixrn-ad-sidebar_below_cta {
  min-height: 250px;
  max-width: 300px;
}

/* below_faq — 728x90 (responsive down to 320x50 on mobile) */
.fixrn-ad-below_faq {
  min-height: 90px;
  max-width: 728px;
}
@media (max-width: 500px) {
  .fixrn-ad-below_faq { min-height: 50px; }
}

/* between_why_cards — fluid in-article unit */
.fixrn-ad-between_why_cards {
  min-height: 100px;
  max-width: 100%;
}

/* footer_pre_copyright — 728x90 */
.fixrn-ad-footer_pre_copyright {
  min-height: 90px;
  max-width: 728px;
}
@media (max-width: 500px) {
  .fixrn-ad-footer_pre_copyright { min-height: 50px; }
}

/* state_hub_feed — 300x250, repeated between city cards */
.fixrn-ad-state_hub_feed {
  min-height: 250px;
  max-width: 300px;
  grid-column: span 1;
}

/* ==========================================================================
   3-image auto-injection — basic responsive treatment
   ========================================================================== */

.fixrn-auto-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
  background-color: #eef1f4; /* visible placeholder tone while loading / if a fallback is used */
}

/* ==========================================================================
   Social share bar (Font Awesome icons)
   ========================================================================== */

.fixrn-share-bar {
  display: flex;
  gap: 10px;
  margin: 16px 0;
}

.fixrn-share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.15s ease, background-color 0.15s ease;
}

.fixrn-share-icon:hover {
  transform: translateY(-2px);
  background: var(--verdigris);
}

/* ==========================================================================
   Logo — two-tone wordmark + wrench badge, shared by header and footer
   ========================================================================== */

.fixrn-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.fixrn-logo__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--verdigris);
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

.fixrn-logo__text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.fixrn-logo__fix {
  color: var(--ink);
}

.fixrn-logo__rn {
  color: var(--verdigris);
}

/* ==========================================================================
   Header — logo + CTA only, no navigation
   ========================================================================== */

.fixrn-header {
  background: var(--paper-card);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.fixrn-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Secondary bar, stacked under the logo/CTA row rather than crammed into
   it — keeps the tested logo+ticket layout untouched on narrow screens. */
.fixrn-nav {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.fixrn-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  gap: 22px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.fixrn-nav__inner::-webkit-scrollbar {
  display: none;
}

.fixrn-nav__inner a {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.fixrn-nav__inner a:hover {
  color: var(--verdigris-deep);
  border-bottom-color: var(--signal);
}

.fixrn-nav__search {
  margin-left: auto;
  flex-shrink: 0;
}

.fixrn-nav__search input {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 13px;
  font-family: var(--font-body);
  background: var(--paper-card);
  color: var(--ink);
  width: 140px;
  transition: width 0.2s ease, border-color 0.2s ease;
}

.fixrn-nav__search input:focus {
  outline: none;
  border-color: var(--verdigris);
  width: 180px;
}

.fixrn-header__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--paper-card);
  color: var(--ink);
  text-decoration: none;
  padding: 9px 16px 9px 13px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--signal);
  border-radius: 6px;
  font-weight: 600;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(20, 33, 61, 0.08);
}

.fixrn-header__cta:hover {
  border-left-color: var(--signal-deep);
  box-shadow: 0 3px 8px rgba(20, 33, 61, 0.12);
  color: var(--ink);
  transform: translateY(-1px);
}

.fixrn-header__cta i {
  font-size: 15px;
  color: var(--signal-deep);
}

.fixrn-header__cta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.fixrn-header__cta-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  font-weight: 700;
  color: var(--signal-deep);
}

.fixrn-header__cta-number {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

@media (max-width: 480px) {
  .fixrn-header__cta-label { display: none; }
  .fixrn-header__cta { padding: 9px 12px; }
}

/* ==========================================================================
   Footer — logo, quick links, social, sitemap
   ========================================================================== */

.fixrn-footer {
  background: var(--ink);
  color: #CBD5E1;
  margin-top: 48px;
}

.fixrn-footer .fixrn-logo__fix {
  color: #fff;
}

.fixrn-footer .fixrn-logo__rn {
  color: var(--verdigris-light);
}

.fixrn-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px 32px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 32px;
  align-items: start;
}

@media (max-width: 780px) {
  .fixrn-footer__inner {
    grid-template-columns: 1fr;
    padding: 40px 20px 24px;
  }
}

.fixrn-footer__tagline {
  margin: 14px 0 0;
  font-size: 14px;
  color: #94A3B8;
  max-width: 320px;
}

.fixrn-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-top: 6px;
}

.fixrn-footer__links a {
  color: #CBD5E1;
  text-decoration: none;
  font-size: 14px;
}

.fixrn-footer__links a:hover {
  color: var(--verdigris-light);
}

.fixrn-footer__social {
  display: flex;
  gap: 10px;
}

.fixrn-footer__social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #CBD5E1;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.fixrn-footer__social-icon:hover {
  background: var(--verdigris);
  color: #fff;
}

.fixrn-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.fixrn-footer__bottom p {
  margin: 0;
  color: #94A3B8;
}

.fixrn-footer__bottom a {
  color: var(--verdigris-light);
  text-decoration: none;
}

.fixrn-footer__bottom a:hover {
  text-decoration: underline;
}
/* ==========================================================================
   Fixrn Static Pages — comprehensive layout + Kadence override stylesheet
   Loaded ONLY on: template-about.php, template-contact.php,
   template-privacy-policy.php, template-terms-of-service.php
   (see inc/enqueue.php — conditional enqueue keeps this off every other
   page so it can safely be this opinionated.)
   ========================================================================== */

/* --- Hard override: kill Kadence's default title bar / entry header no
   matter what filter/version is running (belt-and-suspenders alongside
   the kadence_title_bar_type filter in inc/hide-title.php). --- */
body.fixrn-hide-title .entry-header,
body.fixrn-hide-title .page-header,
body.fixrn-hide-title .entry-title,
body.fixrn-hide-title .kadence-title-bar,
body.fixrn-hide-title .site-title-bar {
	display: none !important;
}

/* --- Hard override: neutralize Kadence's default content max-width /
   padding on these templates so our own container controls layout. --- */
.fixrn-static-page,
.fixrn-static-page.entry,
.fixrn-static-page .entry-content {
	max-width: none !important;
	padding: 0 !important;
	margin: 0 !important;
}

.fixrn-static-container {
	max-width: 960px;
	margin: 0 auto;
	padding: 0 24px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.fixrn-static-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	background-color: var(--ink); /* shows while the image loads / if it fails */
	padding: 96px 24px;
	text-align: center;
	color: #fff;
}

.fixrn-static-hero__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(15, 23, 42, 0.75) 0%, rgba(15, 23, 42, 0.55) 100%);
}

.fixrn-static-hero__inner {
	position: relative;
	max-width: 720px;
	margin: 0 auto;
}

.fixrn-back-home {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: #CBD5E1;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 20px;
	transition: color 0.15s ease;
}

.fixrn-back-home:hover {
	color: var(--verdigris-pale);
}

.fixrn-static-hero__eyebrow {
	text-transform: uppercase;
	letter-spacing: 0.08em;
	font-size: 13px;
	font-weight: 600;
	color: var(--verdigris-pale); /* teal accent */
	margin-bottom: 12px;
}

.fixrn-static-hero__title {
	font-size: clamp(28px, 4vw, 44px);
	line-height: 1.15;
	font-weight: 700;
	margin: 0 0 16px;
	color: #fff !important; /* override Kadence heading color defaults */
}

.fixrn-static-hero__subtitle {
	font-size: 18px;
	line-height: 1.5;
	color: #E2E8F0;
	margin: 0;
}

@media (max-width: 600px) {
	.fixrn-static-hero { padding: 64px 20px; }
}

/* ==========================================================================
   Generic static-page section rhythm
   ========================================================================== */

.fixrn-static-section {
	padding: 48px 0;
	border-bottom: 1px solid #E2E8F0;
}

.fixrn-static-section:last-child {
	border-bottom: none;
}

.fixrn-static-section h2 {
	font-size: 26px;
	margin-bottom: 16px;
}

.fixrn-static-section p {
	font-size: 16px;
	line-height: 1.7;
	color: #334155;
	margin-bottom: 16px;
}

/* ==========================================================================
   About — 3-step "How It Works"
   ========================================================================== */

.fixrn-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
	margin-top: 24px;
}

.fixrn-step {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 28px 20px;
	text-align: center;
}

.fixrn-step__number {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	background: var(--verdigris);
	color: #fff;
	font-weight: 700;
	margin-bottom: 12px;
}

.fixrn-step h3 {
	font-size: 18px;
	margin: 0 0 8px;
}

.fixrn-step p {
	font-size: 14px;
	color: #64748B;
	margin: 0;
}

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

/* ==========================================================================
   Contact page — form + sidebar layout
   ========================================================================== */

.fixrn-contact-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 48px;
	padding: 56px 24px;
}

@media (max-width: 780px) {
	.fixrn-contact-grid { grid-template-columns: 1fr; padding: 40px 20px; }
}

.fixrn-contact-form-col h2 {
	font-size: 24px;
	margin-bottom: 20px;
}

.fixrn-contact-form .fixrn-form-row {
	margin-bottom: 18px;
}

.fixrn-contact-form label {
	display: block;
	font-weight: 600;
	font-size: 14px;
	margin-bottom: 6px;
	color: var(--ink);
}

.fixrn-contact-form input[type="text"],
.fixrn-contact-form input[type="email"],
.fixrn-contact-form textarea {
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #CBD5E1;
	border-radius: 8px;
	font-size: 15px;
	font-family: inherit;
	box-sizing: border-box;
}

.fixrn-contact-form input:focus,
.fixrn-contact-form textarea:focus {
	outline: none;
	border-color: var(--verdigris);
	box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.fixrn-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.fixrn-form-submit {
	background: var(--verdigris);
	color: #fff;
	border: none;
	border-radius: 8px;
	padding: 14px 28px;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.fixrn-form-submit:hover {
	background: var(--verdigris-deep);
}

.fixrn-form-notice {
	padding: 14px 16px;
	border-radius: 8px;
	margin-bottom: 20px;
	font-size: 14px;
}

.fixrn-form-notice--success {
	background: #ECFDF5;
	color: #065F46;
	border: 1px solid #A7F3D0;
}

.fixrn-form-notice--error {
	background: #FEF2F2;
	color: #991B1B;
	border: 1px solid #FECACA;
}

.fixrn-contact-card {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 20px;
	margin-bottom: 20px;
}

.fixrn-contact-card h3 {
	font-size: 15px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: #64748B;
	margin: 0 0 8px;
}

.fixrn-contact-card p {
	margin: 0 0 6px;
	font-size: 15px;
	color: var(--ink);
}

.fixrn-contact-note {
	font-size: 13px !important;
	color: #94A3B8 !important;
}

/* ==========================================================================
   Legal docs — Privacy Policy / Terms of Service
   ========================================================================== */

.fixrn-legal-container {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 48px;
	padding: 56px 24px;
	align-items: start;
}

@media (max-width: 860px) {
	.fixrn-legal-container { grid-template-columns: 1fr; padding: 40px 20px; }
}

.fixrn-legal-toc {
	position: sticky;
	top: 24px;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	padding: 20px;
}

.fixrn-legal-toc ol {
	margin: 0;
	padding-left: 20px;
	font-size: 14px;
}

.fixrn-legal-toc li {
	margin-bottom: 10px;
}

.fixrn-legal-toc a {
	color: var(--verdigris);
	text-decoration: none;
}

.fixrn-legal-toc a:hover {
	text-decoration: underline;
}

.fixrn-legal-body section {
	margin-bottom: 40px;
	scroll-margin-top: 24px;
}

.fixrn-legal-body h2 {
	font-size: 22px;
	margin-bottom: 12px;
	color: var(--ink);
}

.fixrn-legal-body p,
.fixrn-legal-body li {
	font-size: 15px;
	line-height: 1.7;
	color: #334155;
}

.fixrn-legal-body ul {
	padding-left: 20px;
	margin-bottom: 16px;
}
/* ==========================================================================
   Fixrn programmatic pages — single-fixrn_service.php + taxonomy-fixrn_state.php
   Loaded only on those two templates (see inc/enqueue.php).
   ========================================================================== */

/* --- Same hard override as static-pages.css, extended to CPT/taxonomy
   views so Kadence's default entry header/width never shows through. --- */
.fixrn-service-page,
.fixrn-service-page .entry-content,
.fixrn-state-hub .entry-content {
	max-width: none !important;
	padding: 0 !important;
}

/* ==========================================================================
   Breadcrumbs
   ========================================================================== */

.fixrn-breadcrumbs {
	padding: 16px 0 0;
}

.fixrn-breadcrumbs ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #64748B;
}

.fixrn-breadcrumbs li:not(:last-child)::after {
	content: "/";
	margin: 0 8px;
	color: #CBD5E1;
}

.fixrn-breadcrumbs a {
	color: var(--verdigris);
	text-decoration: none;
}

.fixrn-breadcrumbs a:hover {
	text-decoration: underline;
}

/* ==========================================================================
   Service page layout — main column + sticky sidebar
   ========================================================================== */

.fixrn-service-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 48px;
	padding: 40px 24px 64px;
}

@media (max-width: 860px) {
	.fixrn-service-layout { grid-template-columns: 1fr; padding: 32px 20px 48px; }
}

.fixrn-service-main h1 {
	font-size: clamp(26px, 3.5vw, 36px);
	margin-bottom: 16px;
}

.fixrn-service-intro {
	font-size: 17px;
	line-height: 1.7;
	color: #334155;
	margin-bottom: 32px;
}

.fixrn-service-main section {
	margin-bottom: 40px;
}

.fixrn-service-main h2 {
	font-size: 22px;
	margin-bottom: 16px;
}

.fixrn-why-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 700px) {
	.fixrn-why-cards { grid-template-columns: 1fr; }
}

.fixrn-why-card {
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 10px;
	padding: 20px;
}

.fixrn-why-card h3 {
	font-size: 16px;
	margin: 0 0 8px;
}

.fixrn-why-card p {
	font-size: 14px;
	color: #64748B;
	margin: 0;
}

.fixrn-issue-list {
	padding-left: 20px;
}

.fixrn-issue-list li {
	font-size: 15px;
	line-height: 1.6;
	color: #334155;
	margin-bottom: 6px;
}

.fixrn-faq-item {
	border-bottom: 1px solid #E2E8F0;
	padding: 16px 0;
}

.fixrn-faq-item h3 {
	font-size: 16px;
	margin: 0 0 6px;
}

.fixrn-faq-item p {
	font-size: 14px;
	color: #64748B;
	margin: 0;
}

/* --- Sidebar --- */

.fixrn-service-sidebar {
	align-self: start;
	position: sticky;
	top: 24px;
}

.fixrn-cta-card {
	position: relative;
	background: var(--ink);
	color: #fff;
	border-radius: 4px;
	padding: 30px 22px 20px;
	text-align: center;
	margin-bottom: 20px;
	border-left: 5px solid var(--signal);
}

.fixrn-cta-card::before {
	content: "DISPATCH";
	position: absolute;
	top: 10px;
	right: 14px;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 0.12em;
	color: var(--signal);
	font-family: var(--font-mono);
}

.fixrn-cta-card h3 {
	margin: 4px 0 8px;
	font-size: 18px;
	color: #fff;
}

.fixrn-cta-card p {
	font-size: 14px;
	color: #CBD5E1;
	margin: 0 0 14px;
}

.fixrn-cta-button {
	display: inline-block;
	background: var(--signal);
	color: var(--ink);
	text-decoration: none;
	font-weight: 700;
	font-family: var(--font-mono);
	letter-spacing: -0.01em;
	padding: 12px 26px;
	border-radius: 5px;
	transition: background-color 0.15s ease, transform 0.15s ease;
	border-top: 1px dashed rgba(20, 33, 61, 0.35);
	padding-top: 13px;
}

.fixrn-cta-button:hover {
	background: var(--signal-deep);
	color: #fff;
	transform: translateY(-1px);
}

.fixrn-sidebar-toc {
	background: var(--surface);
	border: 1px solid var(--line);
	border-radius: 8px;
	padding: 16px 18px;
	margin-bottom: 16px;
}

.fixrn-sidebar-toc h4 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--steel);
	margin: 0 0 10px;
	font-family: var(--font-body);
	font-weight: 700;
}

.fixrn-sidebar-toc ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.fixrn-sidebar-toc li {
	margin-bottom: 8px;
}

.fixrn-sidebar-toc li:last-child {
	margin-bottom: 0;
}

.fixrn-sidebar-toc a {
	font-size: 13.5px;
	color: var(--ink);
	text-decoration: none;
	line-height: 1.4;
	display: block;
}

.fixrn-sidebar-toc a:hover {
	color: var(--verdigris-deep);
	text-decoration: underline;
}

.fixrn-audio-read {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--surface);
	border: 1px solid var(--line);
	border-left: 4px solid var(--verdigris);
	border-radius: 8px;
	padding: 12px 16px;
	margin: 16px 0 28px;
}

.fixrn-audio-read button {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--paper-card);
	border: 1px solid var(--line);
	border-radius: 6px;
	padding: 8px 14px;
	font-size: 13.5px;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
	font-family: var(--font-body);
	transition: border-color 0.15s ease, color 0.15s ease;
}

.fixrn-audio-read button:hover {
	border-color: var(--verdigris);
	color: var(--verdigris-deep);
}

.fixrn-audio-read .fixrn-icon {
	width: 13px;
	height: 13px;
}

.fixrn-audio-stop {
	padding: 8px 10px !important;
}

.fixrn-audio-rate {
	font-size: 13px;
	padding: 7px 8px;
	border-radius: 6px;
	border: 1px solid var(--line);
	background: var(--paper-card);
	color: var(--ink);
	font-family: var(--font-body);
}

.fixrn-audio-status {
	font-size: 12.5px;
	color: var(--steel);
	margin-left: auto;
}

/* ==========================================================================
   Checklist template — the "dual strategy" component. On screen it's a
   normal part of the article; on print, everything else on the page is
   hidden and only this renders, so the live SEO page and the printable
   take-home reference are the same file, not two separate builds.
   ========================================================================== */

.fixrn-checklist-template {
	background: var(--paper-card);
	border: 2px dashed var(--verdigris);
	border-radius: 10px;
	padding: 20px 22px;
	margin: 24px 0 32px;
}

.fixrn-checklist-template__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 14px;
}

.fixrn-checklist-template__header h2 {
	margin: 0;
	font-size: 19px;
}

.fixrn-checklist-print-btn {
	background: var(--signal);
	color: var(--ink);
	border: none;
	border-radius: 6px;
	padding: 9px 16px;
	font-size: 13px;
	font-weight: 700;
	font-family: var(--font-body);
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.fixrn-checklist-print-btn:hover {
	background: var(--signal-deep);
	color: #fff;
}

.fixrn-checklist-template__steps {
	list-style: none;
	margin: 0;
	padding: 0;
	counter-reset: none;
}

.fixrn-checklist-template__steps li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 8px 0;
	border-bottom: 1px solid var(--line);
	font-size: 15px;
	line-height: 1.5;
}

.fixrn-checklist-template__steps li:last-child {
	border-bottom: none;
}

.fixrn-checklist-box {
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	border: 2px solid var(--verdigris);
	border-radius: 4px;
	margin-top: 2px;
}

.fixrn-checklist-template__footer {
	margin: 14px 0 0;
	font-size: 12px;
	color: var(--steel);
	text-align: right;
}

@media print {
	body * {
		visibility: hidden;
	}
	#fixrn-printable-checklist,
	#fixrn-printable-checklist * {
		visibility: visible;
	}
	#fixrn-printable-checklist {
		position: absolute;
		left: 0;
		top: 0;
		width: 100%;
		border: none;
		padding: 0;
	}
	.fixrn-checklist-print-btn {
		display: none; /* no reason to print the print button */
	}
	.fixrn-checklist-box {
		border-color: #000;
	}
	.fixrn-sticky-call-bar {
		display: none;
	}
}

/* ==========================================================================
   Mobile sticky call bar — the "merge" from the template comparison: the
   existing content-rich page keeps everything it has, this just adds a
   thumb-reachable, always-visible CTA specifically for mobile emergency
   traffic. Complements the sticky header CTA rather than replacing it.
   ========================================================================== */

.fixrn-sticky-call-bar {
	display: none;
}

@media (max-width: 720px) {
	.fixrn-sticky-call-bar {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 10px;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 0;
		z-index: 200;
		background: var(--signal);
		color: var(--ink);
		text-decoration: none;
		font-weight: 700;
		font-size: 15px;
		padding: 14px 16px calc(14px + env(safe-area-inset-bottom, 0px));
		box-shadow: 0 -2px 12px rgba(20, 33, 61, 0.18);
	}

	.fixrn-sticky-call-bar:hover {
		background: var(--signal-deep);
		color: #fff;
	}

	/* Keep real content from ever being hidden behind the fixed bar */
	.fixrn-service-page,
	.fixrn-guide-page {
		padding-bottom: 64px;
	}
}

/* ==========================================================================
   Hero call-box — sits directly under the hero image, above the fold,
   on city/service pages. Distinct from the header CTA (top of screen)
   and the mobile sticky bar (persistent bottom) — this one is the
   "can't miss it while scanning the page" version.
   ========================================================================== */

.fixrn-hero-callbox {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 16px;
	background: var(--ink);
	color: #fff;
	text-decoration: none;
	border-left: 5px solid var(--signal);
	border-radius: 6px;
	padding: 18px 22px;
	margin: -28px auto 32px;
	max-width: 1200px;
	position: relative;
	z-index: 10;
	box-shadow: 0 6px 20px rgba(20, 33, 61, 0.18);
}

.fixrn-hero-callbox:hover {
	background: #1c2d4d;
}

.fixrn-hero-callbox__text {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.fixrn-hero-callbox__text strong {
	font-size: 16px;
	font-family: var(--font-display);
}

.fixrn-hero-callbox__text span {
	font-size: 13px;
	color: #CBD5E1;
}

.fixrn-hero-callbox__number {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--signal);
	color: var(--ink);
	font-weight: 700;
	font-family: var(--font-mono);
	font-size: 16px;
	padding: 10px 18px;
	border-radius: 6px;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.fixrn-hero-callbox {
		margin-top: -20px;
		padding: 16px 18px;
	}
	.fixrn-hero-callbox__text strong {
		font-size: 14.5px;
	}
}

/* ==========================================================================
   State hub — city grid
   ========================================================================== */

.fixrn-state-intro {
	font-size: 16px;
	color: #334155;
	margin: 24px 0 32px;
}

.fixrn-city-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-bottom: 40px;
}

@media (max-width: 860px) {
	.fixrn-city-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
	.fixrn-city-grid { grid-template-columns: 1fr; }
}

.fixrn-city-card {
	display: block;
	background: #F8FAFC;
	border: 1px solid #E2E8F0;
	border-radius: 12px;
	overflow: hidden;
	text-decoration: none;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.fixrn-city-card:hover {
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
}

.fixrn-city-card__img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}

.fixrn-city-card__title {
	font-size: 15px;
	font-weight: 600;
	padding: 14px 16px;
	margin: 0;
	color: var(--ink);
}

.fixrn-city-grid__ad {
	grid-column: 1 / -1;
	display: flex;
	justify-content: center;
}

.fixrn-tier-badge {
	position: absolute;
	margin: 10px;
	background: var(--verdigris);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	padding: 4px 10px;
	border-radius: 999px;
}

.fixrn-city-card {
	position: relative;
}
/* ==========================================================================
   Homepage — front-page.php
   Loaded only on the front page (see inc/enqueue.php).
   ========================================================================== */

.fixrn-home-hero {
  background: var(--ink);
  color: #fff;
  padding: 56px 24px 64px;
  text-align: center;
  border-top: 4px solid var(--signal);
}

.fixrn-home-hero__inner {
  max-width: 720px;
  margin: 0 auto;
}

.fixrn-home-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  margin: 8px 0 16px;
  color: #fff;
}

.fixrn-home-hero__subtitle {
  font-size: 16px;
  color: #CBD5E1;
  margin: 0 0 28px;
  line-height: 1.6;
}

.fixrn-home-hero__cta {
  display: inline-flex;
  font-size: 16px;
  padding: 16px 28px 16px 20px;
  background: var(--paper-card);
}

.fixrn-home-hero__cta .fixrn-header__cta-number {
  font-size: 19px;
}

.fixrn-home-states {
  padding-top: 48px;
}

.fixrn-state-card {
  text-align: center;
  padding: 8px 0 18px;
}

.fixrn-state-card .fixrn-city-card__title {
  padding-top: 18px;
  padding-bottom: 4px;
}

.fixrn-state-card__count {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  padding: 0 16px 6px;
}

.fixrn-home-link-list {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.fixrn-home-link-list li {
  font-size: 14px;
}

.fixrn-home-link-list a {
  color: var(--verdigris);
  text-decoration: none;
  font-weight: 600;
}

.fixrn-home-link-list a:hover {
  text-decoration: underline;
}

.fixrn-home-secondary-cta {
  text-align: center;
  margin-top: 28px;
}

.fixrn-home-secondary-cta .fixrn-cta-button {
  padding: 14px 32px;
  font-size: 15px;
}

.fixrn-404__inner {
  text-align: center;
  padding: 56px 24px 64px;
  max-width: 640px;
}

.fixrn-404__subtitle {
  font-size: 16px;
  color: #64748B;
  margin: 12px 0 28px;
}

.fixrn-404__cta {
  display: inline-flex;
  margin-bottom: 40px;
}

.fixrn-404__browse-title {
  font-size: 18px;
  margin-bottom: 16px;
}
/* ==========================================================================
   Guide/spoke content — snapshot card, comparison table, truth alert
   Loaded on fixrn_guide singles and fixrn_guide_topic archives.
   ========================================================================== */

.fixrn-snapshot-card {
	background: #F0FDFA;
	border: 1px solid #99F6E4;
	border-radius: 12px;
	padding: 20px 24px;
	margin: 8px 0 28px;
}

.fixrn-snapshot-card__title {
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	color: var(--verdigris-deep);
	margin: 0 0 12px;
}

.fixrn-snapshot-card dl {
	margin: 0;
}

.fixrn-snapshot-card__row {
	display: flex;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 0;
	border-bottom: 1px solid rgba(15, 118, 110, 0.15);
}

.fixrn-snapshot-card__row:last-child {
	border-bottom: none;
}

.fixrn-snapshot-card__row dt {
	font-size: 14px;
	color: #334155;
	font-weight: 600;
}

.fixrn-snapshot-card__row dd {
	font-size: 13.5px;
	font-family: var(--font-mono);
	color: var(--verdigris-deep);
	font-weight: 700;
	text-align: right;
	margin: 0;
}

.fixrn-guide-content {
	font-size: 16px;
	line-height: 1.75;
	color: #334155;
}

.fixrn-guide-content h2 {
	font-size: 22px;
	margin: 32px 0 14px;
}

.fixrn-guide-content p {
	margin-bottom: 16px;
}

.fixrn-comparison-table-wrap {
	overflow-x: auto;
	margin: 24px 0;
}

.fixrn-comparison-table {
	width: 100%;
	border-collapse: collapse;
	font-size: 14px;
}

.fixrn-comparison-table th {
	background: var(--ink);
	color: #fff;
	text-align: left;
	padding: 10px 14px;
}

.fixrn-comparison-table td {
	padding: 10px 14px;
	border-bottom: 1px solid #E2E8F0;
}

.fixrn-comparison-table tr:nth-child(even) td {
	background: #F8FAFC;
}

.fixrn-truth-alert {
	display: flex;
	gap: 12px;
	background: var(--alert-bg);
	border: 1px solid var(--alert-border);
	border-left: 4px solid var(--alert);
	border-radius: 8px;
	padding: 16px 20px;
	margin: 24px 0;
}

.fixrn-truth-alert i {
	color: var(--alert);
	font-size: 18px;
	margin-top: 2px;
	flex-shrink: 0;
}

.fixrn-truth-alert p {
	margin: 0;
	font-size: 14px;
	color: #6B2E1F;
}

.fixrn-related-links {
	margin: 32px 0;
}

.fixrn-related-links h2 {
	font-size: 18px;
	margin-bottom: 10px;
}
