/* Nationwide Pardon - Record Suspension Landing
   Brand: Moving Forward - deep red, charcoal, white, light grey */

:root {
  --red: #b4232c;
  --red-dark: #8f1a22;
  --red-soft: #f8e9ea;
  --charcoal: #1c1c1c;
  --charcoal-2: #2a2a2a;
  --grey-100: #f5f5f5;
  --grey-200: #e8e8e8;
  --grey-400: #9a9a9a;
  --grey-600: #5c5c5c;
  --white: #ffffff;
  --text: #1c1c1c;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow-form: 0 0 0 1px rgba(28, 28, 28, 0.08);
  --font-sans: "Source Sans 3", system-ui, -apple-system, sans-serif;
  --font-serif: "Libre Baskerville", Georgia, serif;
  --header-h: 72px;
  --sidebar-sticky-top: calc(var(--header-h) + 1.25rem);
  --mobile-bar-h: 80px;
  --sticky-h: 72px;
  --max: 1120px;
  --narrow: 720px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--red);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover {
  color: var(--red-dark);
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--charcoal);
}

h1 { font-size: clamp(1.85rem, 4vw, 2.65rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); }
h3 { font-size: 1.15rem; font-family: var(--font-sans); font-weight: 600; }

p { margin: 0 0 1em; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  width: min(100% - 2rem, var(--narrow));
}

/* -- Header -- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
  color: var(--charcoal);
  height: var(--header-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--grey-200);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.5rem;
  width: min(100% - 2rem, var(--max));
}

.header-center {
  margin: 0;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-company-name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.01em;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
  min-width: 0;
}

.logo-img {
  display: block;
  height: 56px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  text-decoration: none;
  white-space: nowrap;
  font-weight: 700;
}

.phone-icon {
  flex-shrink: 0;
  display: block;
}

.header-phone {
  color: var(--charcoal);
  font-size: 0.95rem;
}

.header-phone:hover {
  color: var(--red);
}

.phone-link-inline {
  color: var(--red);
  font-weight: 600;
}

.phone-link-inline:hover {
  color: var(--red-dark);
}

/* -- Buttons -- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 48px;
  padding: 0.75rem 1.35rem;
  border: none;
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-dark);
  color: var(--white);
}

.btn-block {
  width: 100%;
}

/* -- Hero -- */
.hero {
  position: relative;
  background: linear-gradient(
    155deg,
    #2d2d2d 0%,
    var(--charcoal) 42%,
    #1a1214 100%
  );
  color: var(--white);
  padding: 2.5rem 0 0;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, var(--white) 1px, transparent 1px),
    linear-gradient(var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2rem;
}

.hero-grid--form {
  align-items: center;
  grid-template-columns: minmax(0, 1fr) minmax(0, 380px);
  gap: 2.5rem;
}

.hero-form-wrap {
  width: 100%;
  max-width: 380px;
  justify-self: end;
}

.hero-form-wrap .lead-form-hero .form-body {
  padding: 0.65rem 1rem 1rem;
}

.hero-form-wrap .lead-form-hero .form-title {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.hero-form-wrap .form-top {
  gap: 0.85rem;
  margin-bottom: 0.65rem;
  align-items: center;
}

.hero-form-wrap .form-intro {
  padding-bottom: 0;
  justify-content: center;
}

.hero-form-wrap .form-hero-photo {
  width: 118px;
  max-height: 108px;
  margin-top: 0;
}

.hero-form-wrap .form-hero-photo img {
  max-height: 108px;
}

.hero-form-wrap .form-proof-row {
  font-size: 0.72rem;
  gap: 0.25rem;
  margin-bottom: 0.12rem;
}

.hero-form-wrap .form-proof-row .google-g,
.hero-form-wrap .form-proof-row .facebook-f {
  width: 14px;
  height: 14px;
}

.hero-form-wrap .form-proof-row .stars-inline {
  font-size: 0.72rem;
}

.hero-form-wrap .form-proof-meta {
  font-size: 0.72rem;
  line-height: 1.3;
}

.hero-form-wrap .choice-fieldset {
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.55rem 0.55rem;
  border-radius: 8px;
}

.hero-form-wrap .choice-fieldset legend {
  font-size: 0.8rem;
  padding: 0 0.3rem;
  margin-left: 0.3rem;
}

.hero-form-wrap .choice-grid {
  gap: 0.35rem;
}

.hero-form-wrap .choice {
  min-height: 40px;
  padding: 0.5rem 0.65rem;
  font-size: 0.82rem;
  gap: 0.5rem;
}

.hero-form-wrap .choice input {
  width: 0.95rem;
  height: 0.95rem;
}

.hero-form-wrap .btn {
  padding: 0.65rem 1rem;
  font-size: 0.88rem;
}

.hero-form-wrap .form-micro {
  font-size: 0.72rem;
  margin-top: 0.5rem;
}

.hero .solution-photo img {
  min-height: 0;
  max-height: clamp(260px, 34vw, 400px);
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 30%;
}

.hero-copy .eyebrow,
.section-eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.hero-copy .eyebrow { color: #f0a8ad; }

.hero h1 {
  color: var(--white);
  margin-bottom: 0.75rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: #d8d8d8;
  max-width: 36em;
}

.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.5rem;
}

.hero-bullets li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.45rem;
  color: #e8e8e8;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--red);
}

.stars,
.stars-inline {
  color: #e8b923;
  letter-spacing: 0.05em;
}

.google-rating {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
}

.google-rating-center {
  justify-content: center;
}

.google-g {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.facebook-f {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-metric-logos {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 0.35rem;
}

.trust-metric-logos .google-g,
.trust-metric-logos .facebook-f {
  width: 16px;
  height: 16px;
}

/* Social reviews bar (below page heroes) */
.social-reviews-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 0.75rem 0;
}

.social-reviews-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.social-review-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem 0.45rem;
  font-size: 0.88rem;
  color: var(--grey-600);
}

.social-review-pill strong {
  color: var(--charcoal);
}

.social-review-pill--muted {
  color: var(--grey-600);
}

.social-review-stat strong {
  color: var(--charcoal);
}

.form-proof-row .facebook-f {
  width: 18px;
  height: 18px;
}

.sidebar-card__header .facebook-f {
  width: 18px;
  height: 18px;
}

.calc-social-proof {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.45rem;
  padding-bottom: 0.75rem;
  margin-bottom: 0.75rem;
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.calc-social-proof .google-g,
.calc-social-proof .facebook-f {
  width: 18px;
  height: 18px;
}

.card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.card-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.form-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.4rem;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.form-proof-line {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.35;
}

.form-proof-meta {
  margin-top: 0.15rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--grey-600);
}

/* -- Forms -- */
.lead-form {
  background: var(--white);
  color: var(--text);
  border-radius: 14px;
  padding: 1.5rem 1.35rem 1.35rem;
  border: 1px solid #e5e5e5;
}

.lead-form-hero {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
}

.lead-form-hero .form-progress {
  margin: 0;
  border-radius: 0;
  height: 5px;
  background: #e8e8e8;
}

.form-body {
  position: relative;
  padding: 0.85rem 1.25rem 1.25rem;
}

.form-progress {
  height: 5px;
  background: #e8e8e8;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 0;
}

.form-progress-bar {
  display: block;
  height: 100%;
  width: 50%;
  background: var(--red);
  border-radius: 0;
  transition: width 0.25s ease;
}

.form-progress-bar[data-progress="2"] {
  width: 100%;
}

.form-step-label {
  margin: 0 0 0.55rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #8a8a8a;
}

/* Header: photo left, copy right — vertically centered at all widths */
.form-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
  margin: 0 0 0.85rem;
}

.form-intro {
  position: relative;
  z-index: 1;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.form-hero-photo {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  margin: 0;
  width: 148px;
  max-height: 140px;
  background: transparent;
  pointer-events: none;
}

.form-hero-photo img {
  width: 100%;
  height: auto;
  max-height: 140px;
  object-fit: contain;
  object-position: bottom left;
  display: block;
}

.lead-form-with-photo {
  padding: 0;
  overflow: hidden;
}

.lead-form-with-photo > .form-body {
  padding: 0.85rem 1.25rem 1.25rem;
}

.form-intro-text {
  font-size: 0.88rem;
  color: var(--grey-600);
  margin: 0.35rem 0 0;
  line-height: 1.45;
}

.sidebar-card--with-photo {
  padding: 0;
  overflow: hidden;
}

/* Sidebar panels (TOC + form) — Co Painting-style stacked cards */
.sidebar-panel {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-form);
}

.sidebar-panel--toc {
  padding: 0.65rem 0.75rem 0.7rem;
}

.sidebar-panel--form {
  padding: 1rem 1.1rem 1.15rem;
}

.sidebar-trust-head {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.85rem;
}

.sidebar-trust-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  border: 2px solid var(--grey-200);
  background: var(--grey-100);
}

.sidebar-trust-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.sidebar-trust-proof {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.sidebar-trust-rating {
  margin: 0.2rem 0 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: var(--charcoal);
}

.sidebar-trust-rating strong {
  font-weight: 700;
}

.sidebar-trust-meta {
  margin: 0.15rem 0 0;
  font-size: 0.72rem;
  line-height: 1.35;
  color: var(--grey-600);
}

.sidebar-form-title {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 0.85rem;
  color: var(--charcoal);
  line-height: 1.25;
}

.sidebar-panel--form .sidebar-contact-form .field-label {
  font-weight: 700;
  font-size: 0.88rem;
}

.sidebar-panel--form .sidebar-contact-form input {
  background: #faf8f3;
  border-color: var(--grey-200);
}

.sidebar-panel--form .choice-grid {
  grid-template-columns: 1fr;
  gap: 0.45rem;
}

.sidebar-panel--form .choice {
  min-height: 42px;
  padding: 0.55rem 0.75rem;
  font-size: 0.86rem;
}

.sidebar-or-call {
  margin: 0.85rem 0 0;
  font-size: 0.88rem;
  text-align: center;
  color: var(--grey-600);
}

.sidebar-or-call .phone-link {
  color: var(--red);
  font-weight: 700;
  text-decoration: none;
}

.sidebar-or-call .phone-link:hover {
  text-decoration: underline;
}

.form-title {
  font-family: var(--font-sans);
  font-size: clamp(1.15rem, 2.6vw, 1.45rem);
  font-weight: 700;
  margin: 0 0 0.35rem;
  line-height: 1.2;
  color: #111;
}

.lead-form-hero .form-step[data-step="1"] {
  position: relative;
  z-index: 1;
}

.lead-form-hero .form-top:not([hidden]) + .form-step .choice-fieldset {
  margin-top: 0.6rem;
}

.form-proof-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0 0 0.3rem;
  font-size: 0.84rem;
  font-weight: 500;
  color: #555;
}

.form-proof-row .google-g {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-proof-row .facebook-f {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.form-proof-row .stars-inline {
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.form-proof-apps {
  min-width: 0;
}

.form-proof-meta {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #8a8a8a;
  line-height: 1.35;
}

.form-proof-stack {
  margin: 0;
}

.lead-form:not(.lead-form-hero) .form-proof-stack {
  margin: 0 0 1.1rem;
}

.lead-form:not(.lead-form-hero) .form-proof-row {
  flex-wrap: wrap;
  white-space: normal;
  margin-bottom: 0.25rem;
}

.lead-form:not(.lead-form-hero) .form-proof-meta {
  margin-bottom: 0;
}

.choice-fieldset {
  margin: 0 0 1rem;
  padding: 0.9rem 0.8rem 0.8rem;
  border: 1px solid #d6d6d6;
  border-radius: 10px;
  background: var(--white);
  min-width: 0;
}

.choice-fieldset legend {
  float: none;
  width: auto;
  max-width: calc(100% - 1.25rem);
  padding: 0 0.4rem;
  margin-left: 0.4rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: #111;
  background: var(--white);
  line-height: 1.3;
}

.field {
  margin-bottom: 0.9rem;
}

.field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
}

.field input {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--grey-100);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
}

.field input:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  background: var(--white);
}

.field input.is-invalid {
  border-color: var(--red);
  background: var(--red-soft);
}

.choice-grid {
  display: grid;
  gap: 0.5rem;
  margin: 0;
}

.choice-fieldset .choice-grid {
  margin-top: 0.15rem;
}

.choice {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  min-height: 48px;
  padding: 0.75rem 0.9rem;
  border: none;
  border-radius: 8px;
  background: #f0f0f0;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  color: #111;
}

.choice:has(input:checked) {
  background: var(--red-soft);
  box-shadow: inset 0 0 0 1.5px var(--red);
}

.choice input {
  accent-color: var(--red);
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
}

.form-micro {
  margin: 0.75rem 0 0;
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--grey-600);
  text-align: center;
}

.form-back {
  display: block;
  margin: 0.85rem auto 0;
  padding: 0;
  border: none;
  background: none;
  color: var(--grey-600);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  cursor: pointer;
}

.form-back:hover {
  color: var(--red);
}

.form-success {
  text-align: center;
  padding: 1rem 0.5rem;
}

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 0.75rem;
  border-radius: 50%;
  background: #1f7a3f;
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -- Agency logo marquee -- */
.agency-marquee {
  background: #f7f7f7;
  border-bottom: 1px solid var(--grey-200);
  padding: 1.35rem 0 1.1rem;
  overflow: hidden;
}

.agency-marquee__head {
  margin-bottom: 0.85rem;
}

.agency-marquee__label {
  margin: 0;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.agency-marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.agency-marquee__track {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: max-content;
  margin: 0;
  padding: 0.15rem 0;
  list-style: none;
  animation: agency-marquee-scroll 55s linear infinite;
}

.agency-marquee__item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 0.55rem;
  opacity: 0.72;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
}

.agency-marquee__item:hover {
  opacity: 1;
}

.agency-marquee__item img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.agency-marquee__note {
  margin: 0.85rem auto 0;
  max-width: 52rem;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.4;
  color: #9a9a9a;
}

@keyframes agency-marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .agency-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    gap: 0.85rem;
  }

  .agency-marquee__track .agency-marquee__item:nth-child(n+22) {
    display: none;
  }
}

/* -- Trust strip -- */
.trust-strip {
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
  padding: 1rem 0;
  margin: 0;
}

.trust-strip--attached {
  position: relative;
  z-index: 1;
  margin-top: 0.5rem;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  border-top: 1px solid var(--grey-200);
}

.hero + .section.pain {
  padding-top: 2.5rem;
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem 1rem;
  text-align: center;
  font-size: 0.92rem;
  color: var(--grey-600);
}

@media (min-width: 901px) {
  .trust-strip-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.trust-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  min-height: 0;
}

.trust-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 0.35rem;
  color: var(--charcoal);
}

.trust-icon svg {
  width: 36px;
  height: 36px;
  display: block;
}

.trust-metric strong {
  display: block;
  color: var(--charcoal);
  font-size: 1.15rem;
  line-height: 1.2;
}

.trust-metric span {
  display: block;
  line-height: 1.3;
}

/* -- Sections -- */
.section {
  padding: 4rem 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-head .lead,
.lead {
  font-size: 1.05rem;
  color: var(--grey-600);
}

.section-eyebrow.light,
.final-copy .section-eyebrow {
  color: #f0a8ad;
}

.section-cta {
  text-align: center;
  margin-top: 2.25rem;
}

/* Pain */
.pain {
  background: var(--white);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 1.5rem;
}

.pain-card {
  padding: 1.25rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--red);
}

.pain-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.pain-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.pain-card h3 {
  margin-bottom: 0.4rem;
}

.pain-card p {
  margin: 0;
  color: var(--grey-600);
}

/* Solution */
.solution {
  background: var(--grey-100);
}

.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 2.5rem;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.55rem;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--red);
  font-weight: 700;
}

.check-list.light li {
  color: #e8e8e8;
}

.solution-photo {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
}

.solution-photo img {
  width: 100%;
  min-height: 380px;
  max-height: none;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 30%;
}

.solution-photo figcaption {
  padding: 0.75rem 1rem;
  background: var(--charcoal);
  color: #d8d8d8;
  font-size: 0.9rem;
  text-align: center;
}

/* Process */
.process {
  background: var(--white);
}

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  counter-reset: none;
}

.step {
  padding: 1.35rem 1.15rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--red);
}

.step-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 0.5rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey-600);
}

/* Benefits */
.benefits {
  background: var(--grey-100);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.benefit {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  border: 1px solid var(--grey-200);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.75rem;
  color: var(--charcoal);
}

.benefit-icon svg {
  width: 40px;
  height: 40px;
}

.benefit p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--grey-600);
}

/* Proof */
.proof {
  background: var(--white);
}

.testimonials-slider {
  position: relative;
}

.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.quote {
  margin: 0;
  padding: 1.35rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-rating {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.quote-rating .google-g {
  width: 18px;
  height: 18px;
}

.quote p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--charcoal-2);
}

.quote footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.88rem;
}

.quote footer span {
  color: var(--grey-600);
}

.testimonials-nav {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.15rem;
}

.testimonials-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-200);
  border-radius: 50%;
  background: var(--white);
  color: var(--charcoal);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.testimonials-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

.testimonials-dots {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.testimonials-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: var(--grey-200);
  padding: 0;
  cursor: pointer;
}

.testimonials-dot.is-active {
  background: var(--red);
  width: 18px;
  border-radius: 99px;
}

/* Form band */
.form-band {
  background: var(--charcoal);
  color: var(--white);
  position: relative;
}

.form-band::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    linear-gradient(90deg, var(--white) 1px, transparent 1px),
    linear-gradient(var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.form-band-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.form-band h2 {
  color: var(--white);
}

.form-band p {
  color: #d0d0d0;
}

.lead-form-light {
  box-shadow: none;
}

/* FAQ */
.faq {
  background: var(--white);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq-item {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--grey-100);
  padding: 0 1rem;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 600;
  padding: 0.85rem 0;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  color: var(--red);
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--grey-600);
  font-size: 0.98rem;
}

.faq-silo {
  margin-bottom: 2.5rem;
}

.faq-silo__title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--charcoal);
}

.faq-silo__intro {
  margin: 0 0 1rem;
  color: var(--grey-600);
  font-size: 0.95rem;
}

.faq-hub .lead {
  margin-bottom: 2rem;
}

/* Final CTA */
.final-cta {
  background: var(--charcoal);
  color: var(--white);
  padding-bottom: 2.5rem;
}

.final-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 400px);
  gap: 2rem;
  align-items: start;
}

.final-copy h2 {
  color: var(--white);
}

.final-copy p {
  color: #d0d0d0;
}

.final-phone {
  margin-top: 0.5rem;
  font-size: 1.35rem;
  color: var(--white);
  gap: 0.45rem;
}

.final-phone .phone-icon {
  width: 1.35rem;
  height: 1.35rem;
}

.final-phone-label {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.final-phone-number {
  font-weight: 800;
}

.final-phone:hover {
  color: #f0a8ad;
}

.footer-contact .phone-link {
  color: var(--white);
}

.footer-contact .phone-link:hover {
  color: #f0a8ad;
}

.disclaimer {
  margin-top: 2rem;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #8a8a8a;
  text-align: center;
}

/* Footer */
.site-footer {
  background: #111;
  color: #b0b0b0;
  padding: 2.5rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  display: block;
  height: 72px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.55rem;
  background: var(--white);
  border-radius: var(--radius);
}

.footer-brand p,
.footer-contact p {
  margin: 0;
  font-size: 0.92rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: flex-start;
}

.footer-contact a {
  color: var(--white);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #f0a8ad;
}

.footer-bottom {
  border-top: 1px solid #2a2a2a;
  padding-top: 1rem;
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: var(--white);
  border-top: 1px solid var(--grey-200);
}

.sticky-cta[hidden] {
  display: none;
}

body.has-sticky-cta {
  padding-bottom: var(--sticky-h);
}

/* -- Responsive -- */
@media (max-width: 900px) {
  .header-center {
    font-size: 0.78rem;
    white-space: normal;
    overflow: visible;
    line-height: 1.25;
  }

  .header-center .header-company-name {
    font-size: 0.82rem;
    line-height: 1.25;
    display: block;
  }

  .header-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.6rem;
  }

  .hero-grid--form {
    grid-template-columns: 1fr;
  }

  .hero-form-wrap {
    max-width: none;
    justify-self: stretch;
  }

  .hero-grid,
  .solution-grid,
  .form-band-grid,
  .final-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .steps,
  .benefits-grid,
  .pain-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .testimonials::-webkit-scrollbar {
    display: none;
  }

  .testimonials .quote {
    flex: 0 0 100%;
    scroll-snap-align: start;
    min-height: 220px;
  }

  .testimonials-nav {
    display: flex;
  }

  .solution-photo {
    max-width: none;
    margin-inline: 0;
  }

  .solution-photo img {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .hero {
    padding-top: 1.75rem;
  }
}

@media (max-width: 560px) {
  .logo-img {
    height: 48px;
  }

  .form-top {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.75rem;
  }

  .form-intro {
    text-align: left;
    padding: 0;
    justify-content: center;
  }

  .form-hero-photo {
    width: 112px;
    max-height: 108px;
    margin: 0;
  }

  .form-hero-photo img {
    max-height: 108px;
    object-position: bottom left;
  }

  .lead-form-hero .form-title,
  .form-title {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }

  .form-proof-row {
    font-size: 0.75rem;
  }

  .form-proof-meta {
    font-size: 0.75rem;
  }

  .steps,
  .benefits-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .header-phone {
    font-size: 0.88rem;
  }

  .section {
    padding: 3rem 0;
  }
}

@media (min-width: 901px) {
  .sticky-cta {
    display: none !important;
  }

  body.has-sticky-cta {
    padding-bottom: 0;
  }
}

/* -- Full site header (mega menu + side drawer) -- */
.site-header--full .header-inner {
  grid-template-columns: auto 1fr auto;
  gap: 0.75rem 1rem;
}

.site-header--full .header-center {
  display: none;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-header {
  display: none;
  min-height: 42px;
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.15rem;
  justify-self: center;
}

.nav-item {
  position: relative;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.55rem 0.75rem;
  border: none;
  background: none;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius);
  white-space: nowrap;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-link.is-active {
  color: var(--red);
  background: var(--red-soft);
}

.nav-chevron {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.nav-trigger[aria-expanded="true"] .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 280px;
  padding: 1rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 48px rgba(28, 28, 28, 0.12);
  z-index: 200;
}

.nav-dropdown[hidden] {
  display: none;
}

.nav-dropdown.nav-mega {
  width: min(920px, 94vw);
  padding: 1.25rem;
}

@media (min-width: 901px) {
  .nav-dropdown.nav-mega {
    position: fixed;
    top: var(--header-h);
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    max-height: calc(100vh - var(--header-h) - 1rem);
    overflow-y: auto;
  }
}

.nav-mega-head {
  margin-bottom: 1rem;
}

.nav-mega-head .tag {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-mega-intro {
  margin: 0;
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.5;
  max-width: 40rem;
}

.nav-mega-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.nav-mega-columns.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.nav-mega-col-title {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

.nav-mega-col-feature {
  display: block;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--charcoal);
  text-decoration: none;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--grey-200);
}

.nav-mega-col-feature:hover {
  color: var(--red);
}

.nav-mega-col-link {
  display: block;
  padding: 0.28rem 0;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
}

.nav-mega-col-link:hover {
  color: var(--red);
}

.nav-mega-col-link small {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-400);
  font-weight: 400;
  margin-top: 0.1rem;
}

.nav-tools-grid,
.nav-location-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.35rem 0.75rem;
  max-height: 340px;
  overflow-y: auto;
}

.nav-tool-link,
.nav-location-link {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: background 0.15s ease;
}

.nav-tool-link:hover,
.nav-location-link:hover {
  background: var(--red-soft);
}

.nav-tool-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 0.15rem;
  color: var(--red);
}

.nav-tool-copy strong,
.nav-location-link strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}

.nav-tool-copy span,
.nav-location-link span {
  display: block;
  font-size: 0.78rem;
  color: var(--grey-600);
  line-height: 1.35;
}

.nav-dropdown-foot {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--grey-200);
}

.nav-dropdown-foot p {
  margin: 0 0 0.35rem;
  font-size: 0.85rem;
  color: var(--grey-600);
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
  text-decoration: none;
}

.btn-line:hover {
  color: var(--red-dark);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  height: 2.5rem;
  padding: 0.35rem 0.55rem 0.35rem 0.65rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--charcoal);
}

.nav-toggle-label {
  line-height: 1;
}

.nav-toggle-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 1.1rem;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle-bars .nav-toggle-bar:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

body.nav-open .nav-toggle-bars .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle-bars .nav-toggle-bar:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Mobile top nav only below 901px - desktop mega-menu from 901px up */
.mobile-top-nav {
  display: none;
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}

.mobile-top-nav-inner {
  display: flex;
  align-items: stretch;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0.5rem;
}

.mobile-top-nav-inner::-webkit-scrollbar {
  display: none;
}

.mobile-top-nav-link {
  flex: 0 0 auto;
  padding: 0.7rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}

.mobile-top-nav-link:hover,
.mobile-top-nav-link.is-active {
  color: var(--red);
  border-bottom-color: var(--red);
  background: var(--red-soft);
}

/* Side drawer (mobile + tablet) */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 300;
  visibility: hidden;
  pointer-events: none;
}

.nav-drawer.is-open {
  visibility: visible;
  pointer-events: auto;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(28, 28, 28, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nav-drawer.is-open .nav-drawer-backdrop {
  opacity: 1;
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 400px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-left: 1px solid var(--grey-200);
  box-shadow: -12px 0 48px rgba(0, 0, 0, 0.1);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.15rem;
  border-bottom: 1px solid var(--grey-200);
}

.nav-drawer-brand {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--charcoal);
}

.nav-drawer-brand img {
  height: 44px;
  width: auto;
}

.nav-drawer-brand span {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
}

.nav-drawer-close {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: var(--grey-100);
  border-radius: var(--radius);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  color: var(--charcoal);
}

.nav-drawer-intro {
  padding: 0.95rem 1.2rem;
  background: var(--grey-100);
  border-bottom: 1px solid var(--grey-200);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--grey-600);
}

.nav-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 0.5rem 0;
}

.nav-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.05rem 1.2rem;
  border: none;
  border-bottom: 1px solid var(--grey-200);
  background: none;
  font-family: var(--font-sans);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--charcoal);
  cursor: pointer;
  text-align: left;
}

.nav-accordion-trigger-sub {
  padding-left: 1.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  background: var(--grey-100);
}

.nav-accordion-panel {
  padding: 0.35rem 0 0.5rem;
  background: var(--grey-100);
}

.nav-accordion-panel-nested {
  padding-left: 0.5rem;
}

.nav-drawer-sublink {
  display: block;
  padding: 0.65rem 1.2rem 0.65rem 1.75rem;
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--grey-600);
  text-decoration: none;
}

.nav-drawer-sublink:hover {
  color: var(--red);
  background: var(--red-soft);
}

.nav-drawer-sublink-all {
  font-weight: 700;
  color: var(--red);
}

.nav-drawer-link {
  display: block;
  padding: 1.05rem 1.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
  border-bottom: 1px solid var(--grey-200);
}

.nav-drawer-foot {
  padding: 1.1rem 1.2rem calc(1.1rem + env(safe-area-inset-bottom));
  border-top: 1px solid var(--grey-200);
  background: var(--white);
}

.nav-drawer-foot .btn {
  font-size: 1.05rem;
  min-height: 3.1rem;
  padding: 0.9rem 1rem;
}

.nav-drawer-foot a.btn-block[href^="tel:"] {
  font-size: 1.15rem !important;
  min-height: 3.1rem;
  padding: 0.9rem 1rem !important;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-drawer-note {
  margin: 0.65rem 0 0;
  font-size: 0.88rem;
  color: var(--grey-600);
  text-align: center;
}

.nav-drawer-social {
  padding: 0.75rem 1.2rem 0.85rem;
  border-top: 1px solid var(--grey-200);
}

.nav-drawer-social-label {
  margin: 0 0 0.55rem;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-600);
}

.nav-drawer-social-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: nowrap;
}

.nav-drawer-social-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  padding: 0 !important;
  margin: 0;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--grey-100);
  text-decoration: none;
  color: var(--charcoal) !important;
  border-bottom: 1px solid var(--grey-200) !important;
}

.nav-drawer-social-link:hover {
  background: var(--red-soft) !important;
  border-color: var(--red) !important;
  color: var(--red) !important;
}

.nav-drawer-icon {
  width: 1.1rem;
  height: 1.1rem;
  flex-shrink: 0;
  display: block;
}

.nav-drawer-social-link img[src$="x.svg"],
.nav-drawer-social-link img[src$="tiktok.svg"] {
  filter: none;
}

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(155deg, #2d2d2d 0%, var(--charcoal) 42%, #1a1214 100%);
  color: var(--white);
  padding: 2.75rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero .hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(90deg, var(--white) 1px, transparent 1px),
    linear-gradient(var(--white) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.page-hero--photo {
  background: #1a1a1a;
  min-height: clamp(220px, 32vw, 340px);
  display: flex;
  align-items: flex-end;
  padding: 3.25rem 0 2.75rem;
}

.page-hero--photo .hero-pattern {
  display: none;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page-hero__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.55) 0%, rgba(10, 10, 10, 0.72) 45%, rgba(10, 10, 10, 0.88) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.35) 0%, transparent 55%);
  pointer-events: none;
}

.page-hero--photo .page-hero-inner {
  position: relative;
  z-index: 2;
}

.page-hero--photo .breadcrumb,
.page-hero--photo .breadcrumb a {
  color: rgba(255, 255, 255, 0.72);
}

.page-hero--photo .breadcrumb a:hover {
  color: #f0a8ad;
}

.page-hero--photo .lead {
  color: rgba(232, 232, 232, 0.92);
  max-width: 40rem;
}

.page-hero-inner {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.65rem;
}

.page-hero .lead {
  color: #d0d0d0;
  max-width: 42em;
}

.breadcrumb {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  color: #b0b0b0;
}

.breadcrumb a {
  color: #f0a8ad;
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--white);
}

/* Cards grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.15rem;
}

.card-link {
  display: block;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.card-link:hover {
  border-color: var(--red);
  box-shadow: 0 8px 24px rgba(180, 35, 44, 0.08);
}

.card-link h3 {
  margin-bottom: 0.4rem;
}

.card-link p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--grey-600);
}

.card-link .card-cta {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--red);
}

.section-alt {
  background: var(--grey-100);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

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

/* Tool pages */
.tool-panel {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.tool-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.calc-field {
  margin-bottom: 1rem;
}

.calc-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.calc-field select,
.calc-field input {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: var(--grey-100);
}

.calc-result {
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  background: var(--grey-100);
  border-left: 4px solid var(--red);
}

.calc-result.is-good {
  border-left-color: #1f7a3f;
  background: #eef8f1;
}

.calc-result.is-warn {
  border-left-color: #c47f17;
  background: #fef8ec;
}

.calc-result.is-bad {
  border-left-color: var(--red);
  background: var(--red-soft);
}

.calc-result h3 {
  margin-bottom: 0.5rem;
}

.checklist-group {
  margin-bottom: 1.5rem;
}

.checklist-group h3 {
  margin-bottom: 0.65rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid var(--red-soft);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--grey-200);
  cursor: pointer;
}

.checklist-item input {
  margin-top: 0.25rem;
  accent-color: var(--red);
  width: 1.1rem;
  height: 1.1rem;
}

.checklist-item.is-done span {
  text-decoration: line-through;
  color: var(--grey-400);
}

.checklist-progress {
  margin-bottom: 1.25rem;
}

.checklist-progress-bar {
  height: 8px;
  background: var(--grey-200);
  border-radius: 99px;
  overflow: hidden;
}

.checklist-progress-fill {
  height: 100%;
  background: var(--red);
  width: 0%;
  transition: width 0.25s ease;
}

.vocab-search {
  margin-bottom: 1.25rem;
}

.vocab-search input {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-size: 1rem;
}

.vocab-alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1.25rem;
}

.vocab-alpha button {
  min-width: 2rem;
  min-height: 2rem;
  padding: 0 0.4rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: var(--white);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
}

.vocab-alpha button.is-active,
.vocab-alpha button:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.vocab-list dt {
  font-weight: 700;
  color: var(--charcoal);
  margin-top: 1rem;
}

.vocab-list dd {
  margin: 0.25rem 0 0;
  color: var(--grey-600);
  font-size: 0.95rem;
}

.vocab-list dd a {
  font-weight: 600;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-col h4 {
  margin: 0 0 0.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 0.4rem;
}

.footer-col a {
  color: #b0b0b0;
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: #f0a8ad;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.footer-social--icons {
  flex-wrap: wrap;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  padding: 0;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition: background 0.2s, border-color 0.2s;
}

.footer-social-icon:hover {
  background: rgba(180, 35, 44, 0.2);
  border-color: #f0a8ad;
}

.footer-social-icon img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.footer-social-icon img[src$="x.svg"],
.footer-social-icon img[src$="tiktok.svg"] {
  filter: brightness(0) invert(1);
}

.content-prose {
  max-width: 720px;
}

.content-prose h2 {
  margin-top: 2rem;
}

.content-prose ul {
  padding-left: 1.25rem;
}

.content-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  margin: 1.25rem 0;
}

.content-table th,
.content-table td {
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--grey-200);
  text-align: left;
}

.content-table th {
  background: var(--grey-100);
  font-weight: 600;
}

.notice-box {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  font-size: 0.92rem;
  margin: 1.25rem 0;
}

@media (min-width: 901px) and (max-width: 1150px) {
  .site-header--full .header-inner {
    gap: 0.5rem 0.65rem;
  }

  .nav-link,
  .nav-trigger {
    padding: 0.5rem 0.55rem;
    font-size: 0.84rem;
  }

  .btn-header {
    font-size: 0.82rem;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
  }

  .header-phone .phone-text {
    font-size: 0.84rem;
  }
}

@media (min-width: 901px) and (max-width: 1050px) {
  .header-phone .phone-text {
    display: none;
  }
}

@media (min-width: 901px) {
  :root {
    --header-h: 72px;
    --sidebar-sticky-top: calc(var(--header-h) + 1.25rem);
  }

  .desktop-nav {
    display: flex;
  }

  .sidebar-sticky {
    top: var(--sidebar-sticky-top);
  }

  .article-body .article-section {
    scroll-margin-top: var(--sidebar-sticky-top);
  }

  .nav-toggle {
    display: none;
  }

  .mobile-top-nav {
    display: none;
  }

  .btn-header {
    display: inline-flex;
  }

  .site-header--full {
    height: var(--header-h);
  }

  .header-phone span.phone-text {
    display: inline;
  }
}

@media (max-width: 900px) {
  .site-header--full {
    height: var(--header-h);
  }

  .site-header--full .header-inner {
    grid-template-columns: 1fr auto;
    justify-content: space-between;
    gap: 0.65rem 0.85rem;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    justify-self: end;
    margin-left: auto;
    gap: 0.55rem;
  }

  .btn-header {
    display: none;
  }

  .mobile-top-nav {
    display: none;
  }

  .header-phone span.phone-text {
    display: inline;
  }

  .header-phone {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.01em;
  }

  .header-phone .phone-icon {
    width: 22px;
    height: 22px;
  }

  .nav-toggle-label {
    display: none;
  }
}

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

  .nav-mega-columns {
    grid-template-columns: 1fr;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  .nav-drawer-panel,
  .nav-drawer-backdrop,
  .nav-toggle-bar,
  .checklist-progress-fill {
    transition: none;
  }
}

/* ─── Content grid + sidebar form ─── */
.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2.5rem;
  align-items: stretch;
}

.content-primary,
.article-main {
  min-width: 0;
}

.content-sidebar {
  align-self: stretch;
  min-height: 0;
}

.sidebar-sticky {
  position: sticky;
  top: var(--sidebar-sticky-top, calc(var(--header-h) + 1.25rem));
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.content-sidebar .sidebar-panel,
.content-sidebar .sidebar-card,
.content-sidebar .article-toc {
  position: static;
  top: auto;
}

.content-grid--tool .calc-main {
  min-width: 0;
}

.service-body {
  max-width: 780px;
}

.service-body .article-section {
  margin-bottom: 2rem;
}

.service-body .article-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem;
  box-shadow: var(--shadow-form);
}

.sidebar-card__header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
  font-size: 0.82rem;
  color: var(--grey-600);
}

.sidebar-card__title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--charcoal);
}

.sidebar-card__intro {
  font-size: 0.9rem;
  color: var(--grey-600);
  margin: 0 0 1rem;
  line-height: 1.5;
}

.sidebar-contact-form .field {
  margin-bottom: 0.85rem;
}

.sidebar-meta {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.sidebar-trust-text {
  font-weight: 600;
  color: var(--charcoal);
}

/* ─── Article TOC ─── */
.article-toc {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.15rem 1.25rem;
}

.sidebar-panel--toc.article-toc {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.75rem 0.7rem;
}

.article-toc-label {
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--grey-600);
  font-weight: 700;
  margin: 0 0 0.45rem;
}

.toc-list-sidebar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem 0.5rem;
}

.toc-list-sidebar > li {
  margin-bottom: 0;
}

.toc-list-sidebar .toc-link {
  border-left: none;
  padding: 0.1rem 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.3;
}

.toc-list-sidebar .toc-link:hover,
.toc-list-sidebar .toc-link.is-active {
  border-left-color: transparent;
}

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

.toc-list > li {
  margin-bottom: 0.35rem;
}

.toc-link {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  text-decoration: none;
  padding: 0.25rem 0 0.25rem 0.5rem;
  border-left: 2px solid transparent;
  line-height: 1.4;
}

.toc-link:hover,
.toc-link.is-active {
  color: var(--red);
  border-left-color: var(--red);
}

.article-body .article-section {
  scroll-margin-top: calc(var(--header-h) + 1.5rem);
}

.article-toc-mobile {
  display: none;
}

/* ─── Calculator / tool panels ─── */
.calc-hero-card {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--charcoal-2) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
}

.calc-hero-card h2 {
  color: var(--white);
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-serif);
}

.calc-hero-card .lead {
  color: #d0d0d0;
  margin: 0;
  font-size: 0.98rem;
}

.calc-hero-card .section-eyebrow {
  color: #f0a8ad;
}

.calc-panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.calc-panel {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow-form);
}

.calc-panel-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--charcoal);
}

.calc-result-placeholder {
  color: var(--grey-600);
  font-size: 0.92rem;
  margin: 0;
}

.calc-trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  background: var(--grey-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-200);
}

.calc-trust-item {
  font-size: 0.85rem;
  color: var(--grey-600);
}

.calc-trust-item strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
}

.calc-trust-item a {
  font-weight: 600;
}

.final-cta .lead-form {
  background: var(--white);
  color: var(--charcoal);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  width: 100%;
  max-width: 400px;
  justify-self: end;
}

.final-cta .lead-form > .form-body {
  padding: 0.65rem 1rem 1rem;
}

.final-cta .lead-form .form-title {
  color: var(--charcoal);
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  line-height: 1.2;
}

.final-cta .form-top {
  gap: 0.85rem;
  margin-bottom: 0.65rem;
  align-items: center;
}

.final-cta .form-intro {
  padding-bottom: 0;
  justify-content: center;
}

.final-cta .form-hero-photo {
  width: 118px;
  max-height: 108px;
  margin-top: 0;
}

.final-cta .form-hero-photo img {
  max-height: 108px;
}

.final-cta .form-proof-row {
  font-size: 0.72rem;
  gap: 0.25rem;
  margin-bottom: 0.12rem;
}

.final-cta .form-proof-row .google-g,
.final-cta .form-proof-row .facebook-f {
  width: 14px;
  height: 14px;
}

.final-cta .form-proof-row .stars-inline {
  font-size: 0.72rem;
}

.final-cta .form-proof-meta {
  color: var(--grey-600);
  font-size: 0.72rem;
  line-height: 1.3;
}

.final-cta .lead-form:not(.lead-form-hero) .form-proof-stack {
  margin-bottom: 0.45rem;
}

.final-cta .choice-fieldset {
  margin-bottom: 0.6rem;
  padding: 0.5rem 0.55rem 0.55rem;
  border-radius: 8px;
}

.final-cta .choice-fieldset legend {
  font-size: 0.8rem;
  padding: 0 0.3rem;
  margin-left: 0.3rem;
}

.final-cta .choice-grid {
  gap: 0.32rem;
}

.final-cta .choice {
  min-height: 36px;
  padding: 0.4rem 0.6rem;
  font-size: 0.82rem;
  gap: 0.5rem;
  border-radius: 6px;
}

.final-cta .choice input {
  width: 0.95rem;
  height: 0.95rem;
}

.final-cta .field {
  margin-bottom: 0.6rem;
}

.final-cta .field-label {
  font-size: 0.8rem;
  margin-bottom: 0.22rem;
}

.final-cta .field input {
  min-height: 40px;
  padding: 0.45rem 0.65rem;
  font-size: 0.9rem;
}

.final-cta .btn-primary {
  min-height: 40px;
  padding: 0.55rem 0.9rem;
  font-size: 0.9rem;
}

.final-cta .form-micro {
  margin-top: 0.45rem;
  font-size: 0.7rem;
  line-height: 1.35;
}

.final-cta .form-back {
  margin-top: 0.55rem;
  font-size: 0.8rem;
}

.final-cta .form-success {
  padding: 0.65rem 0.35rem;
}

.final-cta .success-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
}

.next-steps-list {
  margin: 1.25rem 0;
}

/* ─── Mobile sticky bottom bar ─── */
.mobile-sticky-bar {
  display: none;
}

@media (max-width: 900px) {
  body.has-mobile-bar {
    padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  }

  body.nav-open .mobile-sticky-bar {
    display: none;
  }

  .mobile-sticky-bar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
    padding-bottom: env(safe-area-inset-bottom, 0px);
    background: var(--white);
    border-top: 1px solid var(--grey-200);
    box-shadow: 0 -4px 24px rgba(28, 28, 28, 0.12);
  }

  .mobile-sticky-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-height: var(--mobile-bar-h);
    padding: 0 0.75rem;
    font-family: var(--font-sans);
    font-size: 1.12rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.15;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .mobile-sticky-bar__btn .phone-icon {
    width: 24px;
    height: 24px;
  }

  .mobile-sticky-bar__btn--call {
    background: var(--grey-100);
    color: var(--charcoal);
    border-right: 1px solid var(--grey-200);
  }

  .mobile-sticky-bar__btn--form {
    background: var(--red);
    color: var(--white);
  }

  .mobile-sticky-bar__btn--form:hover {
    background: var(--red-dark);
    color: var(--white);
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .content-sidebar {
    display: none;
  }

  .article-main > .article-toc {
    display: none;
  }

  .calc-panel-grid,
  .calc-trust-strip,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .final-cta .lead-form {
    max-width: none;
    justify-self: stretch;
  }
}

@media (min-width: 901px) {
  .article-main > .article-toc {
    display: none;
  }

  .article-toc-mobile {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .article-toc-mobile {
    display: block;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    z-index: 95;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--grey-200);
    box-shadow: 0 4px 16px rgba(28, 28, 28, 0.08);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .article-toc-mobile.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .article-toc-mobile-inner {
    width: min(var(--max), calc(100% - 2rem));
    margin-inline: auto;
  }

  .article-toc-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.65rem 0;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 0.75rem;
  }

  .article-toc-mobile-label {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--red);
    font-weight: 700;
  }

  .article-toc-mobile-current {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .article-toc-mobile-chevron {
    flex-shrink: 0;
    color: var(--grey-600);
    transition: transform 0.2s ease;
  }

  .article-toc-mobile.is-open .article-toc-mobile-chevron {
    transform: rotate(180deg);
  }

  .article-toc-mobile-panel {
    max-height: min(50vh, 280px);
    overflow-y: auto;
    padding-bottom: 0.65rem;
    border-top: 1px solid var(--grey-200);
  }

  body.toc-mobile-sticky .article-heading {
    scroll-margin-top: calc(var(--header-h) + 3.5rem);
  }
}

/* ─── Province & region location pages ─── */
.region-nav {
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
}

.region-nav__label {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 700;
  margin: 0 0 0.65rem;
}

.region-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
}

.region-nav__list a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}

.region-nav__list a:hover {
  color: var(--red);
}

.region-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.region-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.region-block__title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.region-block__title a {
  color: var(--charcoal);
  text-decoration: none;
}

.region-block__title a:hover {
  color: var(--red);
}

.region-block__meta {
  font-size: 0.85rem;
  color: var(--grey-600);
  margin: 0 0 0.85rem;
}

.region-block__meta a {
  font-weight: 600;
}

.city-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.city-tag {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.3rem 0.65rem;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  color: var(--charcoal);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

a.city-tag:hover {
  border-color: var(--red);
  background: var(--red-soft);
  color: var(--charcoal);
}

.city-list a {
  font-weight: 600;
  color: var(--red);
  text-decoration: none;
}

.city-list a:hover {
  text-decoration: underline;
}

.city-list {
  columns: 2;
  column-gap: 2rem;
  margin: 1rem 0;
  padding-left: 1.1rem;
}

.city-list li {
  break-inside: avoid;
  margin-bottom: 0.25rem;
}

.location-province,
.location-region,
.location-city {
  max-width: 780px;
}

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

  .city-list {
    columns: 1;
  }
}

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

/* ─── Contact page ─── */
.contact-page {
  background: var(--grey-100);
}

.contact-hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(2.25rem, 5vw, 3.25rem);
  background-color: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--contact-hero-bg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.42;
}

.contact-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(28, 28, 28, 0.72) 0%,
    rgba(28, 28, 28, 0.58) 48%,
    rgba(28, 28, 28, 0.48) 100%
  );
  pointer-events: none;
}

.contact-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
}

.contact-hero-tag {
  margin-bottom: 0.65rem !important;
}

.contact-hero h1 {
  margin: 0 0 0.85rem;
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  line-height: 1.12;
  color: var(--white);
}

.contact-hero-lead {
  margin: 0 0 1.35rem;
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.contact-hero-trust {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.35rem;
  padding: 0.85rem 1rem;
  max-width: 26rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
}

.contact-hero-trust__google {
  flex-shrink: 0;
}

.contact-hero-trust__body {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.contact-hero-trust .stars-inline {
  color: #f5c542;
  font-size: 0.72rem;
}

.contact-hero-trust__score {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
}

.contact-hero-trust__score strong {
  color: var(--white);
}

.contact-hero-trust__tagline {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.55);
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.15rem;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius);
  background: transparent;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.contact-hero-btn-note {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}

.contact-main {
  padding: clamp(2.25rem, 5vw, 3.5rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(1.75rem, 4vw, 3rem);
  align-items: start;
}

.contact-info h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.2;
}

.contact-info-lead {
  margin: 0 0 1.35rem;
  max-width: 34rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--grey-600);
}

.contact-details {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0.65rem;
  padding: 1rem 1.05rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-left: 3px solid var(--red);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(28, 28, 28, 0.04);
}

.contact-detail-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--red-soft);
  border-radius: var(--radius);
  color: var(--red);
}

.contact-detail strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}

.contact-detail p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--charcoal);
}

.contact-detail a {
  font-weight: 700;
  color: var(--red);
  text-decoration: none;
}

.contact-detail a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.contact-detail-note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.75rem;
  color: var(--grey-600);
}

.contact-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.contact-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color 0.2s, background 0.2s;
}

.contact-social-link:hover {
  border-color: var(--red);
  background: var(--red-soft);
}

.map-embed {
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(28, 28, 28, 0.04);
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 280px;
  border: 0;
}

.contact-map {
  margin-bottom: 1.25rem;
}

.contact-steps {
  margin-top: 0;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
}

.contact-steps h3 {
  margin: 0 0 0.75rem;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-steps ol {
  margin: 0;
  padding: 0 0 0 1.15rem;
  color: var(--grey-600);
  font-size: 0.88rem;
  line-height: 1.55;
}

.contact-steps li + li {
  margin-top: 0.55rem;
}

.contact-steps strong {
  color: var(--charcoal);
}

.contact-links {
  margin-top: 1.25rem;
  padding: 1.15rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
}

.contact-links h3 {
  margin: 0 0 0.75rem;
  font-size: 0.94rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-links ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-links li + li {
  margin-top: 0.45rem;
}

.contact-links a {
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.contact-links a:hover {
  text-decoration: underline;
}

.contact-disclaimer {
  margin: 1.25rem 0 0;
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--grey-600);
}

.contact-form-wrap {
  position: sticky;
  top: var(--sidebar-sticky-top, calc(var(--header-h) + 1.25rem));
}

.contact-form-card {
  box-shadow: 0 12px 40px rgba(28, 28, 28, 0.1);
}

.contact-form-lead {
  margin: -0.35rem 0 0.85rem;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--grey-600);
}

.contact-page-form .field-label .field-optional {
  font-weight: 500;
  color: var(--grey-600);
}

.contact-page-form select {
  width: 100%;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  background: #faf8f3;
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--text);
}

.contact-page-form select:focus {
  outline: 2px solid var(--red);
  outline-offset: 1px;
  background: var(--white);
}

.contact-page-form select.is-invalid {
  border-color: var(--red);
  background: var(--red-soft);
}

@media (max-width: 900px) {
  .contact-page-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-form-wrap {
    position: static;
    max-width: min(420px, 100%);
    margin-inline: auto;
    width: 100%;
  }

  .contact-hero-actions .btn {
    width: 100%;
  }
}

.form-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
