:root {
  --charcoal: #111827;   /* body text */
  --red: #C8102E;        /* brand red — primary accent / CTAs */
  --red-dark: #A50D26;   /* red hover */
  --navy: #172554;       /* brand blue — dark surfaces + secondary accent (replaces old green) */
  --gray: #DDE3ED;
  --muted: #4B5563;
  --line: #C4CCD8;
  --bg: #FFFFFF;
  --bg-soft: #F3F5F9;
  --container: 1040px;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: "Montserrat", system-ui, -apple-system, sans-serif;
  color: var(--charcoal);
  background: var(--bg);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

section { padding: 60px 0; }
/* offset anchor jumps so the sticky bar doesn't cover the target */
section[id], .service-card[id] { scroll-margin-top: 96px; }
.band-soft { background: var(--bg-soft); }
.band-dark { background: var(--navy); color: #fff; }
.band-dark .eyebrow { color: var(--red); }
.band-dark .section-title { color: #fff; }
.band-dark .tagline { color: #fff; }
.band-dark .nav { border-color: rgba(255,255,255,.22); }
.band-dark .area-rest { color: #D1D5DB; }

/* ---- Eyebrow + section title ---- */
.eyebrow {
  font-size: .8rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--navy); text-align: center; margin-bottom: 10px;
}
.eyebrow-light { color: var(--red); }
.eyebrow-red { color: var(--red); }
.section-title {
  font-size: 1.9rem; font-weight: 600; letter-spacing: -.01em;
  text-align: center; margin-bottom: 40px;
}
.section-title-light { color: #fff; }
.section-title-red { color: var(--red); }
.section-title-navy { color: var(--navy); }

/* ---- Hero ---- */
.hero { padding: 46px 0 58px; text-align: center; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.header-logo { width: 100%; max-width: 520px; margin: 0 auto 18px; }
.tagline {
  font-size: 1.05rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--navy); margin-bottom: 20px;
}
.lead { font-size: 1.25rem; font-weight: 500; max-width: 600px; margin: 8px auto 28px; line-height: 1.45; }

/* ---- Nav ---- */
.nav {
  position: relative; z-index: 10;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 30px;
  margin: 6px auto 28px; padding: 14px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  font-size: 1.1rem; font-weight: 600; max-width: 600px;
}
.nav a { color: var(--red); text-decoration: none; }
.nav a:hover { color: var(--red-dark); }
.nav-item { position: relative; display: inline-flex; align-items: center; }
.submenu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17,24,39,.14); padding: 6px 0; min-width: 250px; z-index: 100; text-align: left;
}
.nav-item.open .submenu { display: block; }
@media (hover: hover) and (pointer: fine) {
  .nav-item:hover .submenu, .nav-item:focus-within .submenu { display: block; }
}
.nav .submenu a { display: block; padding: 8px 18px; font-size: .95rem; font-weight: 500; color: var(--charcoal); white-space: nowrap; }
.nav .submenu a:hover { background: var(--bg-soft); color: var(--red); }

/* ---- Buttons ---- */
.actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-size: 1.04rem; font-weight: 600; text-decoration: none;
  padding: 14px 24px; border-radius: 11px;
  transition: background .15s, border-color .15s, color .15s, transform .05s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 19px; height: 19px; flex: none; }
.btn-call { background: var(--red); color: #fff; }
.btn-call:hover { background: var(--red-dark); }
.btn-text { background: #fff; color: var(--red); border: 2px solid var(--line); }
.btn-text:hover { border-color: var(--red); color: var(--red); }
.btn-text-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.45); }
.btn-text-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---- Trust strip ---- */
.trust { padding: 28px 0; }
.trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 46px; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 30px; height: 30px; color: var(--red); flex: none; }
.trust-item strong { display: block; font-size: 1rem; font-weight: 600; color: var(--charcoal); line-height: 1.25; }
.trust-item span { display: block; font-size: .9rem; color: var(--muted); }

/* ---- Services ---- */
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.service-card {
  background: #fff; color: var(--charcoal); border: 1px solid var(--line); border-radius: 14px;
  padding: 22px 20px; box-shadow: 0 1px 3px rgba(17,24,39,.05);
  transition: border-color .15s, box-shadow .15s, transform .15s;
}
.service-card:hover { border-color: var(--red); box-shadow: 0 10px 24px rgba(17,24,39,.09); transform: translateY(-2px); }
.service-card svg { width: 30px; height: 30px; color: var(--red); margin-bottom: 13px; }
.service-card h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 6px; }
.service-card p { font-size: .92rem; color: var(--muted); line-height: 1.5; }

/* ---- How it works ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { text-align: center; }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%; background: var(--red);
  color: #fff; font-size: 1.2rem; font-weight: 700; margin-bottom: 14px;
}
.step h3 { font-size: 1.06rem; font-weight: 600; margin-bottom: 7px; }
.step p { font-size: .92rem; color: var(--muted); line-height: 1.5; max-width: 230px; margin: 0 auto; }

/* ---- Pricing ---- */
.price-card {
  max-width: 440px; margin: 0 auto; background: #fff; color: var(--charcoal); border: 1px solid var(--line);
  border-radius: 16px; padding: 34px 28px; text-align: center; box-shadow: 0 4px 18px rgba(17,24,39,.07);
}
.price-row { display: flex; align-items: baseline; justify-content: center; gap: 10px; }
.price-fine { font-size: .8rem; color: var(--charcoal); margin-top: 2px; line-height: 1.4; }
.price-fine + .price-row { margin-top: 16px; }
.price { font-size: 2.4rem; font-weight: 700; line-height: 1; }
.price-sub .price { font-size: 1.7rem; color: var(--charcoal); }
.price-label { font-size: 1rem; color: var(--muted); }
.price-note { font-size: .9rem; color: var(--muted); margin: 18px 0 22px; }
.price-card .btn { width: 100%; }

/* ---- Why me ---- */
.why { padding: 0 0 60px; }
.why-inner { max-width: 680px; margin: 0 auto; text-align: center; }
.why-text { font-size: 1.35rem; font-weight: 500; line-height: 1.5; }

/* ---- Service area ---- */
.area-primary { font-size: 1.3rem; font-weight: 600; text-align: center; margin-bottom: 14px; }
.area-primary-red { color: var(--red); }
.area-rest { font-size: .98rem; color: var(--muted); text-align: center; max-width: 760px; margin: 0 auto; line-height: 1.9; }
@media (max-width: 768px) { .area-br { display: none; } }

/* ---- Contact ---- */
.contact { text-align: center; }
.contact-lead { font-size: 1.1rem; color: #D1D5DB; max-width: 520px; margin: 0 auto 26px; }
.contact .actions { margin-bottom: 18px; }
.hours-line { font-size: .92rem; color: #9CA3AF; }

/* ---- Footer ---- */
footer { background: var(--bg); border-top: 1px solid var(--line); padding: 24px 0; text-align: center; font-size: .85rem; color: var(--navy); }
footer a { color: var(--navy); text-decoration: none; }
.footer-parent { margin-top: 6px; font-size: .78rem; opacity: .7; }

/* ---- Compact sticky bar ---- */
.compact-bar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200; background: var(--navy);
  display: none; padding: 8px 20px; border-bottom: 1px solid rgba(255,255,255,.18); box-shadow: 0 2px 8px rgba(17,24,39,.18);
  overflow: visible;
}
.compact-bar.visible { display: flex; flex-direction: column; align-items: center; gap: 6px; overflow: visible; }
.compact-bar .cb-logo { height: 40px; width: auto; }
.compact-bar .cb-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 26px; }
.compact-bar .cb-nav a { color: #fff; text-decoration: none; font-size: .96rem; font-weight: 600; }
.compact-bar .cb-nav a:hover { color: rgba(255,255,255,.75); }
.cb-nav-item { position: relative; display: inline-flex; align-items: center; }
.cb-submenu {
  display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); margin-top: 2px;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(17,24,39,.18); padding: 6px 0; min-width: 260px; z-index: 400; text-align: left;
}
.cb-nav-item.open .cb-submenu { display: block; }
@media (hover: hover) and (pointer: fine) {
  .cb-nav-item:not(.cb-no-hover):hover .cb-submenu { display: block; }
}
.cb-submenu a { display: block; padding: 8px 18px; font-size: .95rem; font-weight: 500; color: var(--charcoal) !important; white-space: nowrap; text-decoration: none; }
.cb-submenu a:hover { background: var(--bg-soft); color: var(--red) !important; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .trust-inner { display: grid; grid-template-columns: auto 1fr; align-items: center; gap: 16px 14px; width: fit-content; margin: 0 auto; text-align: left; }
  .trust-item { display: contents; }
}
@media (max-width: 768px) {
  section { padding: 48px 0; }
  .section-title { font-size: 1.55rem; margin-bottom: 32px; }
  .lead { font-size: 1.12rem; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .header-logo { max-width: 300px; }
  .nav-item { flex-direction: column; }
  .submenu { position: static; transform: none; margin: 8px 0 0; min-width: 0; width: max-content; max-width: calc(100vw - 48px); box-shadow: none; }
  .cb-nav-item { flex-direction: column; align-items: center; }
  .cb-submenu { position: static; transform: none; margin: 4px 0 0; min-width: 0; width: calc(100vw - 40px); max-width: 320px; box-shadow: none; left: auto; }
  .service-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero .actions, .contact .actions { flex-direction: column; align-items: stretch; }
  .hero .actions .btn, .contact .actions .btn { width: 100%; }
  .why-text { font-size: 1.15rem; }
  .area-primary { font-size: 1.15rem; }
  .compact-bar .cb-logo { height: 32px; }
  .compact-bar .cb-nav { gap: 2px 16px; }
  .compact-bar .cb-nav a { font-size: .85rem; }
}

/* ---- Scroll reveal (drop into place) ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { transition: opacity .7s ease, transform .7s ease; }
.js-ready .reveal { opacity: 0; transform: translateY(20px); }
.js-ready .reveal.visible { opacity: 1; transform: translateY(0); }

/* Hero cascades in on first load (pure CSS — runs with or without JS) */
.hero .header-logo { opacity: 0; animation: fadeUp .9s ease forwards .10s; }
.hero .tagline { opacity: 0; animation: fadeUp .9s ease forwards .25s; }
.hero .nav     { opacity: 0; animation: fadeUp .9s ease forwards .40s; }
.hero .lead    { opacity: 0; animation: fadeUp .9s ease forwards .55s; }
.hero .actions { opacity: 0; animation: fadeUp .9s ease forwards .70s; }
