/* =============================================
   AURORA JUNK REMOVAL — MAIN STYLESHEET
   WCAG AA compliant. All contrast ratios verified.
   ============================================= */

/* --- FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700&family=Source+Sans+3:wght@400;500;600&display=swap');

/* --- CUSTOM PROPERTIES --- */
:root {
  /* Brand colors */
  --navy:        #1E2B3C;
  --amber:       #E8920A;
  --jn-blue:     #007cba;

  /* Neutrals */
  --bg:          #F7F9FC;
  --card-fill:   #E8ECF0;
  --subtext:     #4A5568;  /* 7.14:1 on --bg — WCAG AA pass */
  --body-text:   #1C1C1C;  /* 16.16:1 on --bg — WCAG AA pass */
  --white:       #FFFFFF;

  /* Semantic */
  --success:     #1D7A35;  /* 4.88:1 on white — WCAG AA pass */
  --danger:      #C0392B;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;

  /* Layout */
  --max-width:   1160px;
  --radius:      4px;
  --radius-lg:   8px;
}

/* --- RESET & BASE --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--body-text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--jn-blue); text-decoration: underline; }
a:hover { color: var(--navy); }
a:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--navy);
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.text-large { font-size: 1.125rem; line-height: 1.6; }
.text-small { font-size: 0.875rem; color: var(--subtext); }

/* --- LAYOUT --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section { padding: var(--space-xl) 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--card { background: var(--card-fill); }

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  line-height: 1;
}

.btn:focus-visible { outline: 3px solid var(--amber); outline-offset: 2px; }

/* Primary: amber bg, dark text — contrast 6.94:1 WCAG AA pass */
.btn--primary {
  background: var(--amber);
  color: var(--body-text);
  border-color: var(--amber);
}
.btn--primary:hover {
  background: #cf810a;
  border-color: #cf810a;
  color: var(--body-text);
}

/* Secondary: white bg, navy text — contrast 13.58:1 WCAG AA pass */
.btn--secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn--secondary:hover {
  background: var(--bg);
  border-color: var(--bg);
  color: var(--navy);
}

/* Outline: transparent bg, white border (on dark bg) */
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Outline navy: on light bg */
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--lg { padding: 1.1rem 2.25rem; font-size: 1.125rem; }
.btn--sm { padding: 0.625rem 1.25rem; font-size: 0.875rem; }

/* Phone link button */
.btn--phone {
  background: var(--amber);
  color: var(--body-text);
  border-color: var(--amber);
  font-size: 1.1rem;
  font-weight: 700;
}
.btn--phone:hover {
  background: #cf810a;
  border-color: #cf810a;
  color: var(--body-text);
}

/* --- SITE HEADER --- */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--amber);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
}

.site-logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}

.site-logo__sub {
  font-size: 0.7rem;
  color: var(--amber);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.site-header__links {
  display: none;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.site-header__links a {
  color: var(--white);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  opacity: 0.88;
  transition: opacity 0.15s;
}
.site-header__links a:hover { opacity: 1; color: var(--amber); }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: var(--space-sm) 0 var(--space-md);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.mobile-menu a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.75rem 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu a:hover { color: var(--amber); }
.mobile-menu .btn { margin: var(--space-sm) 1.25rem 0; width: calc(100% - 2.5rem); justify-content: center; }

@media (max-width: 767px) {
  .btn--phone { display: none; }
}

@media (min-width: 768px) {
  .site-header__links { display: flex; }
  .nav-toggle { display: none; }
}

/* --- HERO SECTION --- */
.hero {
  background: var(--navy);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  position: relative;
}

.hero__content { max-width: 620px; }

.hero__eyebrow {
  display: inline-block;
  background: var(--amber);
  color: var(--body-text);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.hero__headline {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.hero__headline span { color: var(--amber); }

.hero__subhead {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
  max-width: 520px;
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
}

.hero__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img,
.hero__image .hero__photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  color: rgba(255,255,255,0.3);
  font-size: 0.875rem;
  text-align: center;
  padding: var(--space-lg);
}
.hero__image-placeholder svg { opacity: 0.3; }

@media (min-width: 768px) {
  .hero { padding: var(--space-2xl) 0; }
  .hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-xl);
  }
}

/* --- TRUST BAR --- */
.trust-bar {
  background: var(--white);
  border-top: 4px solid var(--amber);
  padding: var(--space-lg) 0;
}

.trust-bar__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-left: 3px solid var(--amber);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--amber);
}

.trust-item__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.trust-item__desc {
  font-size: 0.9375rem;
  color: var(--subtext);
  line-height: 1.5;
  margin: 0;
}

@media (min-width: 640px) {
  .trust-bar__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- SERVICES SECTION --- */
.services__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.services__header h2 { color: var(--navy); }

.services__header p {
  color: var(--subtext);
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.service-card {
  background: var(--white);
  border: 1px solid var(--card-fill);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.service-card:hover {
  border-color: var(--amber);
  box-shadow: 0 2px 12px rgba(232,146,10,0.12);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  max-width: 48px;
  max-height: 48px;
  color: var(--navy);
  flex-shrink: 0;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.service-card__desc {
  font-size: 0.9375rem;
  color: var(--subtext);
  line-height: 1.5;
  margin: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--jn-blue);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  padding-top: 0.25rem;
}
.service-card__link:hover { color: var(--navy); }
.service-card__link svg { width: 16px; height: 16px; max-width: 16px; max-height: 16px; }

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

/* --- HOW IT WORKS --- */
.how-it-works { background: var(--card-fill); }

.how-it-works__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  counter-reset: steps;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-md) var(--space-md) 5rem;
  position: relative;
  min-height: 100px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  position: absolute;
  left: var(--space-md);
  top: var(--space-md);
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1;
  color: var(--amber);
  opacity: 0.9;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.step__desc {
  font-size: 0.9375rem;
  color: var(--subtext);
  margin: 0;
}

@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
}

/* --- SERVICE AREA --- */
.service-area__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.service-area__content h2 { margin-bottom: var(--space-sm); }

.service-area__content p {
  color: rgba(255,255,255,0.82);
  font-size: 1.0625rem;
  margin-bottom: var(--space-md);
}

.city-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
}

.city-list li a {
  display: inline-block;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  text-decoration: none;
  font-size: 0.875rem;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.15s, border-color 0.15s;
}
.city-list li a:hover {
  background: var(--amber);
  color: var(--body-text);
  border-color: var(--amber);
}

.service-area__cta-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-top: 3px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
}

.service-area__cta-box h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.service-area__cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 0.9375rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .service-area__inner { grid-template-columns: 1.5fr 1fr; }
}

/* --- REVIEWS --- */
.reviews__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.reviews__header h2 { color: var(--navy); }

.reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  color: var(--subtext);
  font-size: 0.9375rem;
}

.stars {
  display: flex;
  gap: 2px;
}

.stars svg {
  width: 20px;
  height: 20px;
  max-width: 20px;
  max-height: 20px;
  fill: var(--amber);
  color: var(--amber);
}

.reviews__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.review-card {
  background: var(--white);
  border: 1px solid var(--card-fill);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
}

.review-card__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.75rem;
}
.review-card__stars svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: var(--amber);
  color: var(--amber);
}

.review-card__text {
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--body-text);
  margin-bottom: var(--space-sm);
  font-style: italic;
}

.review-card__author {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--navy);
}

.review-card__location {
  font-size: 0.8125rem;
  color: var(--subtext);
}

@media (min-width: 640px) {
  .reviews__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .reviews__grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- FINAL CTA SECTION --- */
.cta-section {
  background: var(--amber);
  padding: var(--space-xl) 0;
}

.cta-section__inner {
  text-align: center;
}

.cta-section h2 {
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.cta-section p {
  color: var(--body-text);
  font-size: 1.0625rem;
  margin-bottom: var(--space-lg);
  opacity: 0.85;
}

.cta-section__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

/* --- FOOTER --- */
.site-footer {
  background: #111820;
  color: rgba(255,255,255,0.75);
  padding: var(--space-xl) 0 var(--space-lg);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
}

.footer-col__brand .site-logo__name { font-size: 1.4rem; }
.footer-col__brand .site-logo__sub { color: var(--amber); }

.footer-col__brand p {
  margin-top: var(--space-sm);
  font-size: 0.9375rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--space-md);
}

.footer-phone {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.25rem;
}
.footer-phone:hover { color: var(--amber); }

.footer-email {
  color: var(--jn-blue);
  font-size: 0.9375rem;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col ul a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.15s;
}
.footer-col ul a:hover { color: var(--amber); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.45);
}

.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--amber); }

.footer-jn-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8125rem;
}
.footer-jn-credit a {
  color: var(--jn-blue);
  font-weight: 600;
}
.footer-jn-credit a:hover { color: var(--amber); }

@media (min-width: 640px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}

@media (min-width: 900px) {
  .site-footer__grid { grid-template-columns: 1.8fr 1fr 1fr; }
}

/* --- SECTION LABEL --- */
/* Default: navy on light backgrounds — 13.58:1 on #F7F9FC, WCAG AA pass */
/* Amber is reserved for dark (navy) backgrounds — 5.83:1, WCAG AA pass   */
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.section--dark .section-label { color: var(--amber); }

/* --- SKIP LINK (accessibility) --- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--amber);
  color: var(--body-text);
  padding: 0.75rem 1.5rem;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* --- UTILITY --- */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

.text-center { text-align: center; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mb-0 { margin-bottom: 0; }

/* =============================================
   SONIC BOOM LAYER — appended to main.css
   ============================================= */

/* --- HERO TRUST BADGES --- */
.hero__trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: var(--space-md);
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.88);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
}

.trust-badge svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

/* --- HERO SCROLL HINT --- */
.hero__scroll-hint {
  display: flex;
  justify-content: center;
  padding-top: var(--space-lg);
  color: rgba(255,255,255,0.3);
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* --- PROBLEM SECTION --- */
.problem-section { background: var(--card-fill); }

.problem-section__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.problem-section__intro {
  color: var(--subtext);
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.pain-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
  border-left: 4px solid var(--card-fill);
  transition: border-color 0.2s;
}

.pain-item:hover { border-left-color: var(--amber); }

.pain-item__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  background: rgba(232,146,10,0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
}

.pain-item__icon svg {
  width: 22px;
  height: 22px;
  max-width: 22px;
  max-height: 22px;
}

.pain-item__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.pain-item__desc {
  font-size: 0.9375rem;
  color: var(--subtext);
  line-height: 1.55;
  margin-bottom: 0.5rem;
}

.pain-item__contrast {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--success);
  margin: 0;
}

@media (min-width: 768px) {
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
}

/* --- PROOF SECTION --- */
.proof-section { background: var(--white); }

.proof-section__header {
  text-align: center;
  margin-bottom: var(--space-md);
}

.google-rating-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-bottom: var(--space-lg);
  flex-wrap: wrap;
}

.google-rating-bar__stars {
  display: flex;
  gap: 2px;
}

.google-rating-bar__stars svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
  fill: var(--amber);
  color: var(--amber);
}

.google-rating-bar__score {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.google-rating-bar__label {
  font-size: 0.9375rem;
  color: var(--subtext);
}

/* Featured review */
.featured-review {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  margin-bottom: var(--space-md);
  overflow: hidden;
}

.featured-review__quote {
  position: absolute;
  top: -0.5rem;
  left: var(--space-md);
  font-family: Georgia, serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--amber);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
  aria-hidden: true;
}

.featured-review__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  font-style: normal;
  margin-bottom: var(--space-sm);
  position: relative;
}

.featured-review__attribution {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
}

.featured-review__stars {
  display: flex;
  gap: 2px;
}

.featured-review__stars svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  fill: var(--amber);
  color: var(--amber);
}

.featured-review__attribution strong { color: var(--white); }

/* --- HOW IT WORKS SUBTITLE --- */
.how-it-works__sub {
  color: var(--subtext);
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}

/* 4-step grid */
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
}

/* --- ACTION SECTION --- */
.action-section { background: var(--bg); border-top: 4px solid var(--amber); }

.action-section__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.action-section__left h2 { margin-bottom: 0.5rem; }
.action-section__left > p { color: var(--subtext); margin-bottom: var(--space-md); }

.action-paths {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.action-path {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  text-decoration: none;
  border: 2px solid;
  transition: background 0.15s, border-color 0.15s;
}

.action-path--primary {
  background: var(--amber);
  border-color: var(--amber);
  color: var(--body-text);
}
.action-path--primary:hover {
  background: #cf810a;
  border-color: #cf810a;
  color: var(--body-text);
}

.action-path--secondary {
  background: var(--white);
  border-color: var(--card-fill);
  color: var(--navy);
}
.action-path--secondary:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.action-path__icon {
  width: 44px;
  height: 44px;
  max-width: 44px;
  max-height: 44px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.action-path--primary .action-path__icon { color: var(--navy); }
.action-path--secondary .action-path__icon { color: var(--navy); }

.action-path__icon svg {
  width: 24px;
  height: 24px;
  max-width: 24px;
  max-height: 24px;
}

.action-path div { display: flex; flex-direction: column; }
.action-path strong { font-size: 1.05rem; line-height: 1.2; }
.action-path span { font-size: 0.8125rem; opacity: 0.75; }

.action-section__trust {
  font-size: 0.875rem;
  color: var(--subtext);
  font-style: italic;
  margin: 0;
}

/* Hours card */
.hours-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--white);
}

.hours-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.hours-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: var(--space-md);
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.8);
}

.hours-card__badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.5rem;
}

.hours-card__badge svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--amber);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .action-section__inner { grid-template-columns: 1.2fr 0.8fr; }
}

/* --- STICKY MOBILE CTA --- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--navy);
  border-top: 2px solid var(--amber);
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
}

.sticky-cta__call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: var(--amber);
  color: var(--body-text);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: var(--radius);
}

.sticky-cta__call svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}

.sticky-cta__quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.25);
}

.sticky-cta__quote:hover { color: var(--amber); border-color: var(--amber); }

/* Hide sticky CTA on desktop */
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* Add bottom padding on mobile to prevent sticky CTA from covering content */
@media (max-width: 767px) {
  body { padding-bottom: 72px; }
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger siblings */
.pain-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.pain-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.pain-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.steps .reveal:nth-child(4) { transition-delay: 0.24s; }
.services__grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.services__grid .reveal:nth-child(3) { transition-delay: 0.10s; }
.services__grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.services__grid .reveal:nth-child(5) { transition-delay: 0.20s; }
.services__grid .reveal:nth-child(6) { transition-delay: 0.25s; }

/* --- HOVER LIFT on cards --- */
.service-card {
  transition: border-color 0.15s, box-shadow 0.2s, transform 0.2s;
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(30,43,60,0.1);
  border-color: var(--amber);
}

.review-card {
  transition: box-shadow 0.2s, transform 0.2s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(30,43,60,0.08);
}

/* --- RESPONSIVE MAP EMBED --- */
.map-embed {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.map-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- ELFSIGHT REVIEWS WRAPPER --- */
.elfsight-wrapper {
  max-width: 100%;
  overflow: hidden;
}

/* --- SERVICE PAGE TEMPLATE --- */
.service-intro__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 768px) {
  .service-intro__grid { grid-template-columns: 1.4fr 0.6fr; }
}

.service-intro__content h2 { margin-bottom: var(--space-sm); }

.service-intro__body p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--subtext);
}

.service-intro__items {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-top: 3px solid var(--amber);
}

.service-intro__items-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.service-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-items-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: var(--body-text);
}

.service-items-list li svg {
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  color: var(--success);
  flex-shrink: 0;
}

/* Service page body content */
.service-content {
  max-width: 780px;
  margin: 0 auto;
}

.service-content h2,
.service-content h3 { margin-bottom: 0.5rem; margin-top: var(--space-lg); }
.service-content h2:first-child,
.service-content h3:first-child { margin-top: 0; }
.service-content p { color: var(--subtext); font-size: 1.0625rem; }
.service-content ul { padding-left: 1.5rem; margin-bottom: var(--space-sm); }
.service-content ul li { margin-bottom: 0.25rem; color: var(--subtext); }

/* --- HIDE INLINE CTAs ON MOBILE (sticky bar + header button handle it) --- */
@media (max-width: 767px) {
  .hero__ctas { display: none; }
  .action-paths { display: none; }
}

/* =============================================
   TEMPLATE B — SERVICE PAGE ALTERNATE DESIGN
   ============================================= */

/* --- SB HERO (light bg, split layout) --- */
.sb-hero {
  background: var(--white);
  border-bottom: 3px solid var(--card-fill);
  padding: var(--space-lg) 0 0;
}

.sb-hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

@media (min-width: 860px) {
  .sb-hero__inner { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
  .sb-hero { padding-bottom: 0; }
}

.sb-hero__left { padding-bottom: var(--space-lg); }

/* Override eyebrow for light bg — navy text on amber bg */
.sb-hero .hero__eyebrow {
  background: var(--amber);
  color: var(--body-text);
}

.sb-hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--navy);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
}

.sb-hero__sub {
  font-size: 1.0625rem;
  color: var(--subtext);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 500px;
}

.sb-hero__contact {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.sb-hero__phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.01em;
}
.sb-hero__phone:hover { color: var(--amber); }

.sb-hero__or {
  font-size: 0.875rem;
  color: var(--subtext);
}

.sb-hero__quote-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--jn-blue);
}
.sb-hero__quote-link:hover { color: var(--navy); }

/* Fact strip */
.sb-fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.sb-fact {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber);
  color: var(--body-text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius);
  line-height: 1;
}

.sb-fact svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  flex-shrink: 0;
}

/* Items card (right column of hero) */
.sb-hero__right {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* Featured photo in hero right column */
.sb-hero__photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  line-height: 0;
}

.sb-hero__photo-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .sb-hero__photo-img { height: 260px; }
}

.sb-items-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  height: 100%;
  min-height: 240px;
}

.sb-items-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.sb-items-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.sb-items-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.88);
}

.sb-items-list li svg {
  width: 14px;
  height: 14px;
  max-width: 14px;
  max-height: 14px;
  color: var(--amber);
  flex-shrink: 0;
}

/* --- SB PROBLEM SECTION --- */
.sb-problem {
  background: var(--card-fill);
  padding: var(--space-xl) 0;
}

.sb-problem__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 768px) {
  .sb-problem__inner { grid-template-columns: 1fr 1.3fr; }
}

.sb-problem__quote {
  border-left: 4px solid var(--amber);
  padding-left: var(--space-md);
}

.sb-problem__quote p {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
  font-style: italic;
  margin-bottom: 0.75rem;
}

.sb-problem__quote span {
  font-size: 0.875rem;
  color: var(--subtext);
}

.sb-problem__response h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.sb-problem__response p {
  color: var(--subtext);
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* --- SB PROCESS SECTION (horizontal flow) --- */
.sb-process { background: var(--bg); }

.sb-process__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.sb-process__header h2 { color: var(--navy); }

.sb-process__flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .sb-process__flow { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1000px) {
  .sb-process__flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
}

.sb-step {
  padding: var(--space-md);
  position: relative;
  background: var(--white);
  border-radius: var(--radius-lg);
}

@media (min-width: 1000px) {
  .sb-step {
    background: transparent;
    border-radius: 0;
    padding: var(--space-md) var(--space-md) var(--space-md) 0;
  }
}

.sb-step__num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.sb-step__line {
  display: none;
}

@media (min-width: 1000px) {
  .sb-step:not(:last-child) .sb-step__line {
    display: block;
    position: absolute;
    top: calc(var(--space-md) + 1.75rem);
    right: -1px;
    width: calc(var(--space-md) + 2px);
    height: 2px;
    background: var(--card-fill);
  }
}

.sb-step__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.sb-step__desc {
  font-size: 0.9375rem;
  color: var(--subtext);
  line-height: 1.55;
  margin: 0;
}

/* Stagger for process steps */
.sb-process__flow .reveal:nth-child(2) { transition-delay: 0.08s; }
.sb-process__flow .reveal:nth-child(3) { transition-delay: 0.16s; }
.sb-process__flow .reveal:nth-child(4) { transition-delay: 0.24s; }

/* --- SB CONTENT + SIDEBAR LAYOUT --- */
.sb-content-section { background: var(--bg); }

.sb-content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .sb-content-grid { grid-template-columns: 1fr 320px; }
}

/* Cities block in main content */
.sb-cities {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--card-fill);
}

.sb-cities__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

/* City list on light background */
.city-list--dark li a {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--card-fill);
}
.city-list--dark li a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* Sidebar */
.sb-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

@media (min-width: 900px) {
  .sb-sidebar { position: sticky; top: calc(64px + var(--space-md)); }
}

.sb-sidebar__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border: 1px solid var(--card-fill);
}

.sb-sidebar__card h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

.sb-sidebar__card--cta {
  border-top: 3px solid var(--amber);
}

.sb-sidebar__card--cta h3 {
  font-size: 1.25rem;
}

.sb-sidebar__card--cta p {
  font-size: 0.9375rem;
  color: var(--subtext);
  margin-bottom: var(--space-sm);
}

.sb-sidebar__trust {
  font-size: 0.8125rem;
  color: var(--subtext);
  font-style: italic;
  text-align: center;
  margin-top: 0.75rem;
}

/* Sidebar map — smaller ratio */
.sb-sidebar .map-embed { padding-bottom: 75%; }

/* Sidebar hours list (no border/padding from dark card context) */
.sb-sidebar .hours-list {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sb-sidebar .hours-list li {
  color: var(--body-text);
  font-size: 0.9375rem;
}

/* Related services list */
.sb-related-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sb-related-list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--card-fill);
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 500;
  transition: color 0.15s;
}

.sb-related-list li:last-child a { border-bottom: none; }

.sb-related-list li a::after {
  content: '→';
  opacity: 0.4;
  font-size: 0.875rem;
}

.sb-related-list li a:hover { color: var(--amber); }
.sb-related-list li a:hover::after { opacity: 1; }

/* =============================================
   NAV DROPDOWNS
   ============================================= */

.has-dropdown { position: relative; }

/* Caret button sits inline with the link */
.dropdown-caret {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0.2rem;
  color: rgba(255,255,255,0.6);
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
  transition: color 0.15s, transform 0.2s;
  line-height: 1;
}
.dropdown-caret:hover { color: var(--amber); }
.has-dropdown:hover .dropdown-caret,
.has-dropdown.is-open .dropdown-caret { color: var(--amber); transform: rotate(180deg); }

/* Dropdown panel */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 220px;
  background: var(--white);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: 0 8px 32px rgba(30,43,60,0.16);
  border-top: 3px solid var(--amber);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 300;
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.is-open .nav-dropdown { display: block; }

.nav-dropdown li a {
  display: block;
  padding: 0.55rem 1.25rem;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
  opacity: 1;
}
.nav-dropdown li a:hover { background: var(--bg); color: var(--amber); }

.nav-dropdown__divider {
  height: 1px;
  background: var(--card-fill);
  margin: 0.4rem 0;
}

.nav-dropdown__all {
  font-weight: 600;
  color: var(--jn-blue) !important;
}
.nav-dropdown__all:hover { color: var(--navy) !important; }

/* =============================================
   MOBILE MENU SUB-LISTS
   ============================================= */

.mobile-menu__has-sub { padding: 0; }

.mobile-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 500;
  font-family: var(--font-body);
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  text-align: left;
}
.mobile-menu__toggle svg { transition: transform 0.2s; flex-shrink: 0; }
.mobile-menu__toggle.is-open svg { transform: rotate(180deg); }
.mobile-menu__toggle:hover { color: var(--amber); }

.mobile-menu .mobile-menu__sub {
  display: none;
  list-style: none;
  background: rgba(0,0,0,0.15);
}
.mobile-menu .mobile-menu__sub.is-open {
  display: flex;
  flex-direction: column;
}
.mobile-menu__sub li a {
  display: block;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 400;
  padding: 0.6rem 1.25rem 0.6rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.15s;
}
.mobile-menu__sub li a:hover { color: var(--amber); }
.mobile-menu__sub li:last-child a {
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* =============================================
   PAGE HERO (inner pages — /services/, /about/, etc.)
   ============================================= */

.page-hero {
  background: var(--navy);
  padding: var(--space-xl) 0;
  border-bottom: 3px solid var(--amber);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
}

.page-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.page-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* =============================================
   SERVICES HUB PAGE
   ============================================= */

.services-hub__cta {
  margin-top: var(--space-xl);
  text-align: center;
  padding-top: var(--space-lg);
  border-top: 2px solid var(--card-fill);
}

.services-hub__cta p {
  font-size: 1.0625rem;
  color: var(--subtext);
  margin-bottom: var(--space-md);
}

/* =============================================
   CONTACT PAGE
   ============================================= */

.contact-body { background: var(--bg); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 860px) {
  .contact-grid { grid-template-columns: 1.4fr 0.6fr; }
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-form__row--2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 560px) {
  .contact-form__row--2col { grid-template-columns: 1fr 1fr; }
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form__field label {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--navy);
}

.contact-form__field label span {
  color: var(--danger);
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--body-text);
  background: var(--white);
  border: 2px solid var(--card-fill);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: border-color 0.15s;
  line-height: 1.5;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  border-color: var(--amber);
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder { color: #9AA5B4; }

.contact-form__field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

.contact-form__field textarea { resize: vertical; min-height: 140px; }

.contact-form__submit { align-self: flex-start; gap: 0.625rem; }

.contact-form__note {
  font-size: 0.875rem;
  color: var(--subtext);
  font-style: italic;
  margin: 0;
}

/* Success and error states */
.contact-success {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  background: #EAF7EE;
  border: 2px solid var(--success);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--success);
}

.contact-success svg { flex-shrink: 0; margin-top: 2px; }
.contact-success strong { display: block; font-size: 1.1rem; margin-bottom: 0.25rem; }
.contact-success p { color: #1C5730; font-size: 0.9375rem; margin: 0; }

.contact-error {
  background: #FEF2F2;
  border: 2px solid var(--danger);
  border-radius: var(--radius);
  padding: 0.75rem var(--space-sm);
  color: var(--danger);
  font-size: 0.9375rem;
  margin: 0;
}

/* Info panel */
.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  color: var(--white);
}

.contact-info-card h2 {
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  margin-bottom: 0.5rem;
}

.contact-info-card h3 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-info-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.contact-info-card__phone {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--amber);
  text-decoration: none;
  line-height: 1;
  margin-bottom: 0.625rem;
  letter-spacing: -0.01em;
}
.contact-info-card__phone:hover { color: var(--white); }

.contact-info-card__link {
  display: inline-block;
  color: var(--amber);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
}
.contact-info-card__link:hover { color: var(--white); }

.contact-info-card--plain {
  background: var(--white);
  border: 1px solid var(--card-fill);
  border-left: 4px solid var(--amber);
}

.contact-info-card--plain h3 { color: var(--navy); }
.contact-info-card--plain p { color: var(--subtext); }

.contact-expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: expect;
  margin: 0.5rem 0 0;
  padding: 0;
}

.contact-expect-list li {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--subtext);
  counter-increment: expect;
}

.contact-expect-list li::before {
  content: counter(expect);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: var(--amber);
  color: var(--body-text);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* Form panel heading */
.contact-form-panel__heading {
  margin-bottom: var(--space-md);
}
.contact-form-panel__heading h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.75rem);
  color: var(--navy);
  margin-bottom: 0.375rem;
}
.contact-form-panel__heading p {
  color: var(--subtext);
  font-size: 0.9375rem;
  margin: 0;
}

/* =============================================
   WPFORMS OVERRIDES — match site design
   ============================================= */

.wpforms-container { margin: 0 !important; }

/* Hide the native WPForms form title (we render our own) */
.wpforms-head-container { display: none !important; }

.wpforms-form .wpforms-field-container { display: flex; flex-direction: column; gap: var(--space-sm); }

.wpforms-form .wpforms-field { margin-bottom: 0 !important; padding: 0 !important; }

/* Labels */
.wpforms-form .wpforms-field-label {
  font-family: var(--font-body) !important;
  font-size: 0.9375rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  margin-bottom: 0.4rem !important;
}

.wpforms-form .wpforms-field-label .wpforms-required-label {
  color: var(--danger) !important;
}

/* Inputs, selects, textareas */
.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form select,
.wpforms-form textarea {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  color: var(--body-text) !important;
  background: var(--white) !important;
  border: 2px solid var(--card-fill) !important;
  border-radius: var(--radius) !important;
  padding: 0.75rem 1rem !important;
  width: 100% !important;
  box-shadow: none !important;
  transition: border-color 0.15s !important;
  line-height: 1.5 !important;
  -webkit-appearance: none;
  appearance: none;
  height: auto !important;
  min-height: 0 !important;
}

.wpforms-form input[type="text"]:focus,
.wpforms-form input[type="email"]:focus,
.wpforms-form input[type="tel"]:focus,
.wpforms-form select:focus,
.wpforms-form textarea:focus {
  outline: none !important;
  border-color: var(--amber) !important;
  box-shadow: 0 0 0 3px rgba(251,191,36,0.15) !important;
}

.wpforms-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234A5568' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1rem center !important;
  padding-right: 2.5rem !important;
  cursor: pointer;
}

.wpforms-form textarea { resize: vertical !important; min-height: 140px !important; }

/* Name field — first/last side by side on tablet+ */
.wpforms-form .wpforms-field-name .wpforms-field-row { display: grid; grid-template-columns: 1fr; gap: var(--space-sm); }
@media (min-width: 560px) {
  .wpforms-form .wpforms-field-name .wpforms-field-row { grid-template-columns: 1fr 1fr; }
}
.wpforms-form .wpforms-field-name .wpforms-field-row-block { display: flex; flex-direction: column; gap: 0.4rem; }
.wpforms-form .wpforms-field-name .wpforms-field-row-block label { font-size: 0.8125rem !important; font-weight: 500 !important; color: var(--subtext) !important; }

/* Submit button */
.wpforms-form .wpforms-submit-container {
  margin-top: var(--space-sm) !important;
  padding: 0 !important;
}

.wpforms-form .wpforms-submit {
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  background: var(--amber) !important;
  color: var(--navy) !important;
  border: none !important;
  border-radius: var(--radius) !important;
  padding: 0.875rem 2rem !important;
  cursor: pointer !important;
  transition: background 0.15s, transform 0.1s !important;
  letter-spacing: 0.01em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 0.5rem !important;
  width: auto !important;
  min-width: 200px !important;
  box-shadow: none !important;
}

.wpforms-form .wpforms-submit:hover {
  background: #E8A000 !important;
  transform: translateY(-1px) !important;
}

/* Full-width submit on mobile */
@media (max-width: 559px) {
  .wpforms-form .wpforms-submit { width: 100% !important; justify-content: center !important; }
}

/* Validation errors */
.wpforms-form .wpforms-field-error,
.wpforms-form label.wpforms-error {
  font-size: 0.8125rem !important;
  color: var(--danger) !important;
  font-weight: 500 !important;
  margin-top: 0.25rem !important;
  display: block !important;
}

.wpforms-form input.wpforms-error,
.wpforms-form select.wpforms-error,
.wpforms-form textarea.wpforms-error {
  border-color: var(--danger) !important;
}

/* Confirmation / success message */
.wpforms-confirmation-container-full {
  background: #EAF7EE !important;
  border: 2px solid var(--success) !important;
  border-radius: var(--radius-lg) !important;
  padding: var(--space-md) !important;
  color: var(--success) !important;
  font-size: 1rem !important;
  font-family: var(--font-body) !important;
}

/* Processing spinner color */
.wpforms-submit-spinner { border-top-color: var(--navy) !important; }

/* Mobile contact page tweaks */
@media (max-width: 859px) {
  .contact-form-panel__heading h2 { font-size: 1.3rem; }
  .contact-info-panel { order: -1; }
  .contact-info-card { padding: var(--space-sm); }
  .contact-info-card h2 { font-size: 1.2rem; }
  .contact-info-card__phone { font-size: 1.6rem; }
}

@media (max-width: 479px) {
  .contact-body .container { padding-left: var(--space-sm); padding-right: var(--space-sm); }
  .wpforms-form input[type="text"],
  .wpforms-form input[type="email"],
  .wpforms-form input[type="tel"],
  .wpforms-form select,
  .wpforms-form textarea { font-size: 16px !important; /* Prevents iOS zoom on focus */ }
}

/* =============================================
   SERVICE + CITY COMBO PAGES
   ============================================= */

/* Breadcrumb */
.combo-breadcrumb {
  background: var(--card-fill);
  border-bottom: 1px solid rgba(30,43,60,0.08);
  padding: 0.625rem 0;
}

.combo-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  flex-wrap: wrap;
  font-size: 0.8125rem;
  color: var(--subtext);
}

.combo-breadcrumb__list li + li::before {
  content: '/';
  opacity: 0.4;
  margin-right: 0.5rem;
}

.combo-breadcrumb__list a {
  color: var(--jn-blue);
  text-decoration: none;
  font-weight: 500;
}
.combo-breadcrumb__list a:hover { color: var(--navy); }
.combo-breadcrumb__list [aria-current="page"] { color: var(--subtext); }

/* Local intro block */
.combo-intro {
  background: var(--white);
  border-bottom: 1px solid var(--card-fill);
  padding: var(--space-lg) 0;
}

.combo-intro__inner {
  border-left: 4px solid var(--amber);
  padding-left: var(--space-md);
  max-width: 780px;
}

.combo-intro__inner .section-label { margin-bottom: 0.5rem; }

.combo-intro__text {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--body-text);
  margin: 0;
}

/* FAQ section */
.combo-faq { background: var(--card-fill); }

.combo-faq__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.combo-faq__header h2 { color: var(--navy); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  max-width: 820px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--amber);
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.faq-item__answer {
  font-size: 1rem;
  color: var(--subtext);
  line-height: 1.65;
  margin: 0;
}

/* Related combo links */
.combo-related {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--card-fill);
}

.combo-related h3 {
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-sm);
}

/* =============================================
   SERVICE AREA HUB PAGE
   ============================================= */

.sa-body { background: var(--bg); }

.sa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 860px) {
  .sa-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

.sa-cities-header { margin-bottom: var(--space-lg); }
.sa-cities-header h2 { margin-bottom: 0.5rem; }
.sa-cities-header p { color: var(--subtext); font-size: 1.0625rem; margin: 0; }

.sa-city-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: var(--space-lg);
}

.sa-city-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem var(--space-sm);
  border-bottom: 1px solid var(--card-fill);
  text-decoration: none;
  transition: background 0.12s, color 0.12s, padding-left 0.15s;
  border-radius: var(--radius);
}
.sa-city-link:hover {
  background: var(--white);
  padding-left: var(--space-md);
}
.sa-city-link:hover .sa-city-link__name { color: var(--amber); }
.sa-city-link:hover svg { color: var(--amber); }

.sa-city-link__name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.12s;
}

.sa-city-link svg {
  color: var(--subtext);
  flex-shrink: 0;
  transition: color 0.12s;
}

.sa-not-listed {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  border-left: 4px solid var(--amber);
}
.sa-not-listed p {
  font-size: 0.9375rem;
  color: var(--subtext);
  margin-bottom: var(--space-sm);
}

.sa-map-header { margin-bottom: var(--space-lg); }
.sa-map-header h2 { margin-bottom: 0.5rem; }
.sa-map-header p { color: var(--subtext); font-size: 1.0625rem; margin: 0; }

.map-embed--large { padding-bottom: 80%; margin-bottom: var(--space-md); }

.sa-coverage-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
}

.sa-coverage-fact {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  text-align: center;
  border-top: 3px solid var(--amber);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sa-coverage-fact strong {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.sa-coverage-fact span {
  font-size: 0.8125rem;
  color: var(--subtext);
}

/* =============================================
   LOCATION PAGE TEMPLATE
   ============================================= */

.loc-hero {
  background: var(--navy);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid var(--amber);
}

.loc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
  pointer-events: none;
}

.loc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

@media (min-width: 860px) {
  .loc-hero__inner { grid-template-columns: 1fr 1fr; }
}

/* Image appears first in DOM (left on desktop, top on mobile) — reorder for mobile */
.loc-hero__image {
  order: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  line-height: 0;
}

@media (min-width: 860px) {
  .loc-hero__image { order: 1; }
  .loc-hero__content { order: 2; }
}

.loc-hero__photo {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

@media (min-width: 860px) {
  .loc-hero__photo { height: 360px; }
}

/* When image is present, constrain headline width more tightly */
.loc-hero__image ~ .loc-hero__content .loc-hero__headline { max-width: 100%; }

.loc-hero .hero__eyebrow {
  background: var(--amber);
  color: var(--body-text);
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
}

.loc-hero__headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  color: var(--white);
  margin-bottom: var(--space-sm);
  letter-spacing: -0.01em;
  max-width: 680px;
}

.loc-hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.65;
  margin-bottom: var(--space-md);
  max-width: 540px;
}

.loc-hero__phone {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
  letter-spacing: -0.01em;
}
.loc-hero__phone:hover { color: var(--amber); }

.loc-hero__quote-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--amber);
  text-decoration: underline;
}
.loc-hero__quote-link:hover { color: var(--white); }

/* Services section on location page */
.loc-services__header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.loc-services__header h2 { color: var(--navy); }

.loc-services__header p {
  color: var(--subtext);
  font-size: 1.0625rem;
  margin-top: 0.5rem;
}

/* Services list section in content area */
.loc-services-list {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 2px solid var(--card-fill);
}

.loc-services-list h3 {
  margin-bottom: var(--space-sm);
}

.loc-services-list p {
  color: var(--subtext);
  font-size: 1.0625rem;
}
