/* ==========================================================================
   HARBOR — national emergency-restoration template v4
   A polished evolution of the estate's classic city template + the Call Fast
   national look: deep harbor navy, sky-cyan accents, warm orange call actions,
   serif display headings, rounded cards, soft shadows, light-first grounds.
   One stylesheet. No external requests. No JS required for any interaction.
   Components read semantic tokens (--bg/--bg-2/--fg/--fg-muted/--line/--accent);
   ground switches via .on-navy / .on-paper on the section.
   ========================================================================== */

/* --- reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, ul, ol, li, figure, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* --- tokens --------------------------------------------------------------- */
:root {
  /* raw palette */
  --navy:       #0B2540;   /* deep harbor navy */
  --navy-2:     #113356;   /* panel navy */
  --navy-3:     #1A4370;   /* raised navy */
  --line-navy:  #24507F;
  --sky:        #2E9BD6;   /* primary accent */
  --sky-deep:   #1B7FB8;   /* AA-safe link blue on white */
  --sky-wash:   #E8F4FB;   /* pale cyan tint band */
  --sky-on-dark:#7CC4EA;
  --flame:      #F26B1D;   /* call-action orange */
  --flame-press:#D5570F;
  --gold:       #F5A623;   /* stars, guarantee seal */
  --safe:       #1E8E5A;   /* checkmarks */
  --paper:      #F5F8FB;
  --card:       #FFFFFF;
  --line-paper: #DCE6EF;
  --text-ink:   #16283A;
  --text-mute:  #40566D;
  --text-light: #EAF2F9;
  --text-mute-d:#B7CCE0;

  /* type */
  --font-serif: Georgia, "Times New Roman", "Palatino Linotype", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --t-xs:   .875rem;
  --t-sm:   .9375rem;
  --t-cap:  1.0625rem;
  --t-base: 1.125rem;
  --t-md:   1.25rem;
  --t-lg:   1.5rem;
  --t-xl:   clamp(1.65rem, 1.2rem + 1.4vw, 2.1rem);
  --t-2xl:  clamp(2rem, 1.4rem + 2.4vw, 3rem);
  --t-3xl:  clamp(2.35rem, 1.5rem + 3.4vw, 3.65rem);
  --t-4xl:  clamp(2.5rem, 1.5rem + 4vw, 4.25rem);

  /* space */
  --s1: .25rem; --s2: .5rem;  --s3: .75rem; --s4: 1rem;
  --s5: 1.5rem; --s6: 2rem;   --s7: 3rem;   --s8: 4rem;  --s9: 6rem;

  --rad: 14px;
  --rad-sm: 8px;
  --pill: 999px;
  --shadow: 0 8px 28px rgba(11, 37, 64, .09);
  --shadow-lg: 0 18px 48px rgba(11, 37, 64, .16);
  --measure: 66ch;
  --shell: 1320px;

  /* semantic defaults (paper ground) */
  --bg: var(--paper); --bg-2: var(--card); --fg: var(--text-ink);
  --fg-muted: var(--text-mute); --line: var(--line-paper); --accent: var(--sky-deep);
}

.on-navy {
  --bg: var(--navy); --bg-2: var(--navy-2); --fg: var(--text-light);
  --fg-muted: var(--text-mute-d); --line: var(--line-navy); --accent: var(--sky-on-dark);
}
.on-paper {
  --bg: var(--paper); --bg-2: var(--card); --fg: var(--text-ink);
  --fg-muted: var(--text-mute); --line: var(--line-paper); --accent: var(--sky-deep);
}
.on-wash {
  --bg: var(--sky-wash); --bg-2: var(--card); --fg: var(--text-ink);
  --fg-muted: var(--text-mute); --line: #C9DFEE; --accent: var(--sky-deep);
}

/* --- base ---------------------------------------------------------------- */
body {
  background: var(--paper);
  color: var(--text-ink);
  font-family: var(--font-sans);
  font-size: var(--t-base);
  font-weight: 500;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
:focus-visible { outline: 3px solid var(--flame); outline-offset: 2px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: var(--s4); top: -100%; z-index: 100;
  background: var(--navy); color: #fff; padding: var(--s3) var(--s4);
  font-weight: 700; border-radius: 0 0 var(--rad-sm) var(--rad-sm);
}
.skip:focus { top: 0; }

/* --- layout primitives --------------------------------------------------- */
.container { width: 100%; max-width: var(--shell); margin-inline: auto; padding-inline: var(--s5); }
.stack { display: flex; flex-direction: column; gap: var(--s4); }
.cluster { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s3); }
.measure { max-width: var(--measure); }
.table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--rad); border: 1px solid var(--line); background: var(--bg-2); }

.section { background: var(--bg); color: var(--fg); padding-block: var(--s8); }
.section--tight { padding-block: var(--s7); }
.section-head { display: flex; flex-direction: column; gap: var(--s3); max-width: 64ch; margin-bottom: var(--s6); }
.section-head--center { align-items: center; text-align: center; margin-inline: auto; }

/* --- type ---------------------------------------------------------------- */
/* Serif display, the classic-template signature. Sans everywhere else. */
.h1, .h2, .h3 { font-family: var(--font-serif); font-weight: 700; letter-spacing: -.01em; text-wrap: balance; }
.h1 { font-size: var(--t-4xl); line-height: 1.08; }
.h2 { font-size: var(--t-2xl); line-height: 1.14; }
.h3 { font-size: var(--t-xl); line-height: 1.2; }
.h4 { font-family: var(--font-sans); font-weight: 750; font-size: var(--t-md); line-height: 1.3; letter-spacing: -.01em; text-wrap: balance; }
.lede { font-size: var(--t-md); font-weight: 500; color: var(--fg-muted); max-width: 58ch; line-height: 1.6; }

/* Eyebrow: the Call Fast signature, an orange dash then spaced caps. */
.eyebrow {
  display: inline-flex; align-items: center; gap: var(--s3);
  font-size: var(--t-xs); font-weight: 750; letter-spacing: .16em;
  text-transform: uppercase; color: var(--accent);
}
.eyebrow::before { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--flame); flex: 0 0 auto; }
.section-head--center .eyebrow::after { content: ""; width: 26px; height: 3px; border-radius: 2px; background: var(--flame); flex: 0 0 auto; }

.muted { color: var(--fg-muted); }
.tnum { font-variant-numeric: tabular-nums; }
.small { font-size: var(--t-sm); }

/* --- topbar -------------------------------------------------------------- */
.topbar { background: var(--navy); color: var(--text-light); font-size: var(--t-sm); font-weight: 600; }
.topbar .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: var(--s2) var(--s6); padding-block: var(--s2); }
.topbar a { text-decoration: underline; text-underline-offset: 3px; font-weight: 750; }
.topbar a:hover, .topbar a:focus-visible { color: var(--sky-on-dark); }
.status-dot {
  display: inline-block; width: 8px; height: 8px; border-radius: 50%;
  background: #4ADE80; margin-right: .45em; vertical-align: baseline;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, .25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px rgba(74,222,128,.25);} 50% { box-shadow: 0 0 0 6px rgba(74,222,128,.12);} }

/* --- header -------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--card);
  border-bottom: 1px solid var(--line-paper);
  box-shadow: 0 2px 14px rgba(11,37,64,.06);
}
.header-inner { display: flex; align-items: center; gap: var(--s5); padding-block: var(--s3); }
.brand { display: flex; align-items: center; gap: var(--s3); flex: 0 0 auto; color: var(--navy); }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; filter: drop-shadow(0 2px 6px rgba(46,155,214,.35)); }
.brand b { display: block; font-family: var(--font-serif); font-size: var(--t-lg); font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.brand small {
  display: block; font-size: var(--t-xs); font-weight: 750; letter-spacing: .14em;
  text-transform: uppercase; color: var(--sky-deep);
}

.nav { margin-left: auto; }
.nav-list { display: flex; gap: var(--s5); font-size: var(--t-cap); font-weight: 700; color: var(--text-ink); }
.nav-list a { padding-block: var(--s2); border-bottom: 2px solid transparent; transition: color .15s, border-color .15s; }
.nav-list a:hover, .nav-list a:focus-visible { color: var(--sky-deep); }
.nav-list a[aria-current="page"] { color: var(--sky-deep); border-bottom-color: var(--flame); }
.nav-toggle { display: none; }

/* header call pill: white outline capsule with orange phone chip (Call Fast) */
.header-call {
  display: inline-flex; align-items: center; gap: var(--s3);
  border: 2px solid var(--navy); border-radius: var(--pill);
  padding: var(--s1); padding-right: var(--s5);
  color: var(--navy); transition: box-shadow .15s, transform .15s;
}
.header-call:hover, .header-call:focus-visible { box-shadow: var(--shadow); transform: translateY(-1px); }
.call-chip {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--flame); color: #fff; flex: 0 0 auto;
}
.call-chip svg { width: 19px; height: 19px; }
.header-call .call-lines { display: flex; flex-direction: column; line-height: 1.15; }
.header-call .call-lines small { font-size: var(--t-xs); font-weight: 750; letter-spacing: .1em; text-transform: uppercase; color: var(--sky-deep); }
.header-call .call-lines b { font-size: var(--t-md); font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: -.01em; }

/* --- buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s2);
  border-radius: var(--pill); font-weight: 800; letter-spacing: -.005em;
  padding: var(--s3) var(--s6); font-size: var(--t-md);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.btn--call { background: var(--flame); color: #fff; box-shadow: 0 6px 18px rgba(242,107,29,.35); }
.btn--call:hover, .btn--call:focus-visible { background: var(--flame-press); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(242,107,29,.4); }
.btn--call:active { transform: translateY(0); }
.btn--sky { background: var(--sky); color: #fff; box-shadow: 0 6px 18px rgba(46,155,214,.3); }
.btn--sky:hover, .btn--sky:focus-visible { background: var(--sky-deep); transform: translateY(-2px); }
.btn--ghost { border: 2px solid var(--line); color: var(--fg); font-size: var(--t-cap); padding: var(--s2) var(--s5); }
.btn--ghost:hover, .btn--ghost:focus-visible { border-color: var(--accent); color: var(--accent); }
.hero .btn--ghost, .page-head .btn--ghost {
  border-color: rgba(255,255,255,.78); color: #fff; background: rgba(255,255,255,.06);
}
.hero .btn--ghost:hover, .hero .btn--ghost:focus-visible,
.page-head .btn--ghost:hover, .page-head .btn--ghost:focus-visible {
  border-color: #fff; background: #fff; color: var(--navy);
}
.btn--big { width: 100%; padding: var(--s4) var(--s6); font-size: var(--t-lg); }

.call-note { font-size: var(--t-sm); color: var(--fg-muted); }
.call-note b { color: var(--fg); }

/* --- hero ---------------------------------------------------------------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(90% 70% at 88% 0%, rgba(46,155,214,.28), transparent 55%),
    radial-gradient(70% 60% at -8% 100%, rgba(27,127,184,.2), transparent 55%),
    linear-gradient(168deg, var(--navy-2) 0%, var(--navy) 55%, #081B30 100%);
  color: var(--text-light);
  padding-block: var(--s8);
}
.hero::after { /* faint wave rings, the water motif without an image */
  content: ""; position: absolute; right: -140px; top: -140px; width: 460px; height: 460px;
  border-radius: 50%; border: 1px solid rgba(124,196,234,.18);
  box-shadow: 0 0 0 60px rgba(124,196,234,.05), 0 0 0 130px rgba(124,196,234,.04), 0 0 0 210px rgba(124,196,234,.03);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; gap: var(--s7); grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr); align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: var(--s5); }
.hero h1 { max-width: 24ch; }
.hero .lede { color: #C6D8E8; max-width: 52ch; }
.hero .trust-item { color: #B9CDDF; }

.hero-badge {
  display: inline-flex; align-items: center; gap: var(--s2); align-self: flex-start;
  border: 1px solid rgba(124,196,234,.4); border-radius: var(--pill);
  background: rgba(17,51,86,.55); padding: var(--s2) var(--s4);
  font-size: var(--t-sm); font-weight: 700; color: var(--sky-on-dark);
}

/* hero USPs: two-column checklist like the classic template */
.usp { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3) var(--s5); }
.usp li { display: flex; align-items: flex-start; gap: var(--s2); font-weight: 650; font-size: var(--t-base); line-height: 1.4; }
.usp .tick { flex: 0 0 auto; margin-top: .18em; }

.tick {
  display: inline-flex; align-items: center; justify-content: center;
  width: 21px; height: 21px; border-radius: 50%;
  background: var(--sky); color: #fff;
}
.on-paper .tick, .on-wash .tick { background: var(--safe); }
.tick svg { width: 12px; height: 12px; }

/* --- phone card: THE conversion object, from the classic template --------- */
.phone-card {
  background: var(--card); color: var(--text-ink);
  border-radius: calc(var(--rad) + 4px); box-shadow: var(--shadow-lg);
  padding: var(--s6); display: flex; flex-direction: column; gap: var(--s4);
  text-align: center; align-items: center;
}
.phone-card-kicker { font-size: var(--t-cap); font-weight: 750; color: var(--text-mute); }
.phone-card-number {
  font-family: var(--font-serif); font-weight: 700; color: var(--navy);
  font-size: clamp(1.9rem, 1.3rem + 2.6vw, 2.6rem); line-height: 1;
  letter-spacing: -.01em; font-variant-numeric: tabular-nums; white-space: nowrap;
}
a.phone-card-number:hover, a.phone-card-number:focus-visible { color: var(--sky-deep); }
.phone-card .btn { align-self: stretch; }
.phone-card-list { display: flex; flex-direction: column; gap: var(--s2); align-items: flex-start; width: 100%; padding-top: var(--s3); border-top: 1px solid var(--line-paper); }
.phone-card-list li { display: flex; align-items: flex-start; gap: var(--s2); font-size: var(--t-cap); font-weight: 600; text-align: left; }
.phone-card-list .tick { background: var(--safe); width: 18px; height: 18px; margin-top: .14em; }
.phone-card-list .tick svg { width: 10px; height: 10px; }
.stars { color: var(--gold); letter-spacing: .12em; font-size: var(--t-cap); }
.phone-card .call-note { font-size: var(--t-sm); }

/* --- breadcrumbs --------------------------------------------------------- */
.breadcrumbs { background: var(--sky-wash); border-bottom: 1px solid #C9DFEE; font-size: var(--t-sm); font-weight: 600; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s2); padding-block: var(--s3); color: var(--text-mute); }
.breadcrumbs li { display: flex; align-items: center; gap: var(--s2); }
.breadcrumbs li + li::before { content: "\203A"; color: #A9C4D8; font-size: 1.05em; }
.breadcrumbs a:hover, .breadcrumbs a:focus-visible { color: var(--sky-deep); text-decoration: underline; }
.breadcrumbs [aria-current="page"] { color: var(--text-ink); }

/* --- page head (inner pages): navy band, optional phone card ------------- */
.page-head {
  position: relative; overflow: hidden;
  background:
    radial-gradient(80% 90% at 92% 0%, rgba(46,155,214,.24), transparent 55%),
    linear-gradient(168deg, var(--navy-2) 0%, var(--navy) 70%);
  color: var(--text-light); padding-block: var(--s7);
}
.page-head-grid { display: grid; gap: var(--s6); grid-template-columns: minmax(0, 1.45fr) minmax(0, .9fr); align-items: center; }
.page-head h1 { font-size: var(--t-3xl); max-width: 26ch; }
.page-head .lede { color: #C6D8E8; }
.page-head--solo .page-head-grid { grid-template-columns: minmax(0, 1fr); }
.page-head--solo .hero-copy { max-width: 52rem; }

/* --- cards / grids -------------------------------------------------------- */
.grid { display: grid; gap: var(--s5); }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.card {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--rad);
  padding: var(--s5); display: flex; flex-direction: column; gap: var(--s3);
  box-shadow: 0 2px 10px rgba(11,37,64,.04);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { border-color: #BFD9EC; box-shadow: var(--shadow); }
a.card:hover, a.card:focus-visible { transform: translateY(-4px); }
.card p { color: var(--fg-muted); font-size: var(--t-cap); font-weight: 500; line-height: 1.62; }
.card-more { margin-top: auto; font-weight: 750; font-size: var(--t-cap); color: var(--sky-deep); }
.card-more::after { content: " \2192"; transition: none; }
a.card:hover .card-more { text-decoration: underline; text-underline-offset: 3px; }

.service-title-link { color: var(--navy); text-decoration: none; }
.service-title-link:hover,
.service-title-link:focus-visible { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 3px; }
.quote-link {
  display: inline-flex; align-items: center; align-self: flex-start; margin-top: auto; padding-top: var(--s3);
  color: var(--sky-deep); font-size: var(--t-cap); font-weight: 800; text-decoration: none;
}
.quote-link::before { content: "☎"; margin-right: .45rem; color: var(--flame); }
.quote-link:hover,
.quote-link:focus-visible { color: var(--navy); text-decoration: underline; text-underline-offset: 3px; }

.icon-disc {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: var(--rad-sm);
  background: var(--sky-wash); color: var(--sky-deep); flex: 0 0 auto;
}
.icon-disc svg { width: 26px; height: 26px; }
.card--feature { border-top: 4px solid var(--flame); }
.card--feature .icon-disc { background: #FDEBDD; color: var(--flame-press); }

/* --- signs grid ("when to call", from Call Fast) -------------------------- */
.sign-card { flex-direction: row; align-items: flex-start; gap: var(--s4); }
.sign-card .icon-disc { width: 46px; height: 46px; border-radius: 50%; }
.sign-card .icon-disc svg { width: 22px; height: 22px; }
.sign-card h3 { margin-bottom: var(--s1); }

/* --- process steps (01-04 with connector) --------------------------------- */
.steps { display: grid; gap: var(--s5); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step { position: relative; display: flex; flex-direction: column; gap: var(--s3); background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--rad); padding: var(--s5); box-shadow: 0 2px 10px rgba(11,37,64,.04); }
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-serif); font-weight: 700; font-size: var(--t-md);
}
.step:nth-child(even) .step-num { background: var(--sky-deep); }
.step p { color: var(--fg-muted); font-size: var(--t-cap); font-weight: 500; line-height: 1.62; }

/* --- pricing -------------------------------------------------------------- */
.price-cards { display: grid; gap: var(--s5); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.price-card { text-align: left; }
.price-card .price-label { font-size: var(--t-xs); font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-muted); }
.price-card .price-value { font-family: var(--font-serif); font-weight: 700; font-size: var(--t-xl); color: var(--navy); font-variant-numeric: tabular-nums; }

.price-table { width: 100%; border-collapse: collapse; font-size: var(--t-cap); min-width: 36rem; }
.price-table caption { text-align: left; color: var(--fg-muted); font-size: var(--t-sm); padding: var(--s4) var(--s5); }
.price-table th, .price-table td { text-align: left; padding: var(--s4) var(--s5); border-top: 1px solid var(--line); vertical-align: top; }
.price-table thead th { font-size: var(--t-xs); letter-spacing: .12em; text-transform: uppercase; color: var(--fg-muted); background: var(--sky-wash); border-top: 0; }
.price-table td:last-child, .price-table th:last-child { text-align: right; font-variant-numeric: tabular-nums; font-weight: 800; white-space: nowrap; color: var(--navy); }
.price-table tbody tr:nth-child(even) { background: #F8FBFD; }
.price-table tbody tr:hover { background: var(--sky-wash); }
.price-table .row-note { display: block; font-weight: 400; color: var(--fg-muted); font-size: var(--t-sm); max-width: 52ch; }
.pricing-note { margin-top: var(--s4); font-size: var(--t-cap); line-height: 1.6; max-width: 82ch; }

.factor-list { display: flex; flex-direction: column; gap: var(--s3); }
.factor-list li { display: flex; gap: var(--s3); align-items: flex-start; font-size: var(--t-cap); }
.factor-list b { color: var(--fg); }
.factor-dot { flex: 0 0 auto; width: 10px; height: 10px; border-radius: 50%; background: var(--sky); margin-top: .45em; }

/* --- callouts ------------------------------------------------------------- */
.callout {
  border: 1px solid var(--line); border-left: 5px solid var(--sky);
  background: var(--bg-2); padding: var(--s5); border-radius: var(--rad-sm) var(--rad) var(--rad) var(--rad-sm);
  display: flex; gap: var(--s4); align-items: flex-start; box-shadow: 0 2px 10px rgba(11,37,64,.04);
}
.callout--warn { border-left-color: var(--flame); }
.callout--safety { border-left-color: var(--safe); }
.callout-icon {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%; background: var(--sky-wash); color: var(--sky-deep);
  font-weight: 800; font-size: var(--t-md);
}
.callout--warn .callout-icon { background: #FDEBDD; color: var(--flame-press); }
.callout--safety .callout-icon { background: #E3F4EC; color: var(--safe); }
.callout-body { display: flex; flex-direction: column; gap: var(--s2); }
.callout-body .callout-title { font-size: var(--t-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); }
.callout-body p { color: var(--fg-muted); font-size: var(--t-cap); font-weight: 500; line-height: 1.62; }
.callout-body p b, .callout-body p strong { color: var(--fg); }

/* --- why choose us -------------------------------------------------------- */
.why-card { align-items: flex-start; }
.why-card .icon-disc { border-radius: 50%; }

/* --- guarantee band ------------------------------------------------------- */
.guarantee { border-block: 1px solid var(--line-navy); }
.guarantee-inner { display: flex; flex-wrap: wrap; align-items: center; gap: var(--s5) var(--s7); padding-block: var(--s7); }
.guarantee-seal {
  flex: 0 0 auto; width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 32% 28%, #FFC65C, var(--gold) 62%, #D88C0A);
  color: #4A3005; font-weight: 800; font-size: var(--t-xs); text-align: center;
  letter-spacing: .08em; text-transform: uppercase; line-height: 1.25;
  box-shadow: 0 8px 22px rgba(245,166,35,.35);
  border: 3px solid rgba(255,255,255,.5);
}
.guarantee-copy { flex: 1 1 32ch; display: flex; flex-direction: column; gap: var(--s2); }
.guarantee-copy .h3 { color: #fff; }
.guarantee-copy p { color: var(--text-mute-d); max-width: 60ch; }

/* --- testimonials --------------------------------------------------------- */
.quote-card { gap: var(--s3); }
.quote-card blockquote { font-size: var(--t-base); line-height: 1.55; color: var(--fg); }
.quote-card blockquote::before { content: "\201C"; font-family: var(--font-serif); font-size: 2.4rem; line-height: 0; color: var(--sky); display: block; margin: var(--s3) 0 var(--s2); }
.quote-meta { margin-top: auto; display: flex; flex-direction: column; gap: 2px; font-size: var(--t-sm); color: var(--fg-muted); border-top: 1px solid var(--line); padding-top: var(--s3); }
.quote-meta b { color: var(--fg); font-size: var(--t-cap); }

/* --- FAQ (details/summary, zero JS) --------------------------------------- */
.faq { display: flex; flex-direction: column; gap: var(--s3); }
.faq details {
  background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--rad);
  box-shadow: 0 2px 10px rgba(11,37,64,.04); overflow: hidden;
}
.faq details[open] { border-color: #BFD9EC; box-shadow: var(--shadow); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s4) var(--s5); cursor: pointer; font-weight: 750; font-size: var(--t-md);
  line-height: 1.35; list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%; background: var(--sky-wash); color: var(--sky-deep);
  font-size: var(--t-lg); font-weight: 600; transition: transform .18s;
}
.faq details[open] summary::after { content: "\2212"; transform: rotate(180deg); background: var(--navy); color: #fff; }
.faq summary:hover { color: var(--sky-deep); }
.faq .faq-body { padding: 0 var(--s5) var(--s5); color: var(--fg-muted); display: flex; flex-direction: column; gap: var(--s3); max-width: var(--measure); font-size: var(--t-base); font-weight: 500; line-height: 1.7; }

/* --- prose ---------------------------------------------------------------- */
.prose { max-width: var(--measure); }
.prose > * + * { margin-top: var(--s4); }
.prose h2 { font-family: var(--font-serif); font-size: var(--t-xl); font-weight: 700; line-height: 1.18; margin-top: var(--s7); text-wrap: balance; color: var(--navy); }
.prose h3 { font-family: var(--font-sans); font-size: var(--t-lg); font-weight: 750; letter-spacing: -.01em; margin-top: var(--s6); text-wrap: balance; }
.prose p, .prose li { color: #2F455B; font-weight: 500; line-height: 1.72; }
.prose ul, .prose ol { display: flex; flex-direction: column; gap: var(--s2); padding-left: var(--s5); }
.prose ul li { list-style: none; position: relative; }
.prose ul li::before { content: ""; position: absolute; left: calc(-1 * var(--s4)); top: .58em; width: 8px; height: 8px; border-radius: 50%; background: var(--sky); }
.prose ol { list-style: decimal; }
.prose ol li { list-style: decimal; }
.prose ol li::marker { color: var(--sky-deep); font-weight: 800; font-variant-numeric: tabular-nums; }
.prose a { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 2px; font-weight: 650; }
.prose a:hover { color: var(--navy); text-decoration-thickness: 2px; }
/* contextual-links row: a labeled cluster of keyword anchors under a section */
.related-links { display: flex; flex-wrap: wrap; align-items: baseline; gap: var(--s2) var(--s4); font-size: var(--t-cap); font-weight: 650; padding-top: var(--s4); border-top: 1px solid var(--line); margin-top: var(--s5); }
.related-links .related-label { font-size: var(--t-xs); font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--fg-muted); }
.related-links a { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 3px; }
.related-links a:hover, .related-links a:focus-visible { color: var(--navy); }
.prose strong { font-weight: 750; color: var(--text-ink); }
.prose .eyebrow { color: var(--sky-deep); }

.toc { border: 1px solid var(--line); background: var(--bg-2); padding: var(--s5); border-radius: var(--rad); box-shadow: 0 2px 10px rgba(11,37,64,.04); }
.toc-title { font-size: var(--t-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); margin-bottom: var(--s3); }
.toc ol { display: flex; flex-direction: column; gap: var(--s2); font-size: var(--t-cap); font-weight: 600; list-style: none; }
.toc a { color: #33475C; }
.toc a:hover, .toc a:focus-visible { color: var(--sky-deep); text-decoration: underline; }

/* --- CTA band ------------------------------------------------------------- */
.band { position: relative; overflow: hidden; background: linear-gradient(150deg, var(--navy-2), var(--navy)); color: var(--text-light); }
.band::before { content: ""; position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--flame), var(--gold)); }
.band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s5); padding-block: var(--s7); position: relative; }
.band .h3, .band .h2 { color: #fff; max-width: 30ch; }
.band p { color: var(--text-mute-d); max-width: 52ch; }

/* --- link silos / chips ---------------------------------------------------- */
.link-cols { display: grid; gap: var(--s6); grid-template-columns: repeat(4, minmax(0, 1fr)); }
.link-col { display: flex; flex-direction: column; gap: var(--s3); }
.link-col h3 { font-size: var(--t-xs); font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--fg-muted); }
.link-col ul { display: flex; flex-direction: column; gap: var(--s2); font-size: var(--t-cap); font-weight: 600; }
.link-col a:hover, .link-col a:focus-visible { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.chips { display: flex; flex-wrap: wrap; gap: var(--s2); }
.chip {
  display: inline-flex; align-items: center; padding: var(--s2) var(--s4);
  border: 1px solid var(--line); border-radius: var(--pill);
  font-size: var(--t-sm); font-weight: 700; font-variant-numeric: tabular-nums;
  background: var(--bg-2); color: var(--fg);
  transition: border-color .15s, color .15s, transform .15s;
}
.chip:hover, .chip:focus-visible { border-color: var(--sky); color: var(--sky-deep); transform: translateY(-2px); }

.pill {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: var(--s1) var(--s4); border-radius: var(--pill);
  background: var(--sky-wash); color: var(--sky-deep);
  font-size: var(--t-xs); letter-spacing: .1em; text-transform: uppercase; font-weight: 800;
}
.on-navy .pill { background: rgba(124,196,234,.15); color: var(--sky-on-dark); }

/* --- trust badges row ------------------------------------------------------ */
.trust-row { display: flex; flex-wrap: wrap; gap: var(--s3) var(--s6); align-items: center; }
.trust-item { display: flex; align-items: center; gap: var(--s2); font-size: var(--t-sm); font-weight: 750; color: var(--fg-muted); letter-spacing: .02em; }
.trust-item svg { width: 18px; height: 18px; color: var(--safe); flex: 0 0 auto; }
.on-navy .trust-item { color: var(--text-mute-d); }
.on-navy .trust-item svg { color: var(--sky-on-dark); }

/* --- footer ---------------------------------------------------------------- */
.site-footer { background: var(--navy); color: var(--text-light); padding-block: var(--s8) var(--s9); }
.site-footer::before { content: ""; display: block; height: 5px; margin-top: calc(-1 * var(--s8)); margin-bottom: var(--s8); background: linear-gradient(90deg, var(--sky), var(--navy-3)); }
.footer-top { display: grid; gap: var(--s6); grid-template-columns: minmax(0, 1.35fr) repeat(3, minmax(0, 1fr)); padding-bottom: var(--s7); border-bottom: 1px solid var(--line-navy); }
.footer-brand { display: flex; flex-direction: column; gap: var(--s4); align-items: flex-start; }
.footer-brand .brand { color: #fff; }
.footer-brand .brand small { color: var(--sky-on-dark); }
.footer-brand p { color: var(--text-mute-d); font-size: var(--t-cap); max-width: 36ch; }
.footer-trust { display: flex; flex-wrap: wrap; gap: var(--s2); }
.footer-trust span { padding: var(--s1) var(--s3); border: 1px solid var(--line-navy); border-radius: var(--pill); color: var(--sky-on-dark); font-size: var(--t-xs); font-weight: 750; }
.footer-call { font-size: var(--t-cap); padding: var(--s2) var(--s5); }
.site-footer .link-col h3 { color: var(--sky-on-dark); }
.site-footer .link-col ul { color: var(--text-light); }
.site-footer .link-col a { color: var(--text-light); }
.site-footer .link-col a:hover, .site-footer .link-col a:focus-visible { color: #fff; }
.service-commitment { display: grid; grid-template-columns: minmax(0, .65fr) minmax(0, 2fr); gap: var(--s6); align-items: start; margin-top: var(--s6); padding-block: var(--s5); padding-inline: var(--s5); background: var(--navy-2); border: 1px solid var(--line-navy); border-radius: var(--rad); }
.service-commitment .eyebrow { color: var(--sky-on-dark); margin-bottom: var(--s2); }
.service-commitment .h4 { color: #fff; }
.service-commitment > p { color: var(--text-mute-d); font-size: var(--t-sm); line-height: 1.65; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s4); padding-top: var(--s5); font-size: var(--t-sm); color: var(--text-mute-d); }
.footer-bottom ul { display: flex; flex-wrap: wrap; gap: var(--s4); }
.footer-bottom a:hover, .footer-bottom a:focus-visible { color: var(--sky-on-dark); text-decoration: underline; }
.legal-note { font-size: var(--t-sm); color: var(--text-mute-d); max-width: 82ch; line-height: 1.55; margin-top: var(--s4); }

/* --- sticky mobile call bar ------------------------------------------------ */
.mobile-call { display: none; }

/* --- pilot additions: generated directory and location identity ---------- */
.brand-emblem {
  display: inline-flex; align-items: center; justify-content: center;
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50% 50% 48% 52%;
  background: linear-gradient(145deg, var(--sky), var(--navy-3)); color: #fff;
  font-family: var(--font-serif); font-size: var(--t-xl); font-weight: 700;
  box-shadow: 0 5px 14px rgba(46,155,214,.28);
}
.section-action { margin-top: var(--s6); }
.identity-grid { margin-top: var(--s5); }
.identity-grid .card { min-height: 100%; }

.state-link-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: var(--s3); }
.state-link {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  min-height: 58px; padding: var(--s3) var(--s4); background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--rad-sm); color: var(--navy);
  font-size: var(--t-cap); font-weight: 750; box-shadow: 0 2px 8px rgba(11,37,64,.04);
  transition: color .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.state-link span:last-child { color: var(--sky-deep); font-size: var(--t-md); }
.state-link:hover,
.state-link:focus-visible { color: var(--sky-deep); border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-2px); }

.area-link-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); }
.area-link-grid--zip { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.area-link {
  display: flex; flex-direction: column; justify-content: center; gap: var(--s1);
  min-height: 64px; padding: var(--s3) var(--s4); background: var(--bg-2);
  border: 1px solid var(--line); border-radius: var(--rad-sm); color: var(--navy);
  font-size: var(--t-cap); font-weight: 750; line-height: 1.35;
  transition: color .15s, border-color .15s, box-shadow .15s, transform .15s;
}
.area-link small { color: var(--fg-muted); font-size: var(--t-sm); font-weight: 600; }
.area-link--zip { min-height: 52px; font-size: var(--t-sm); }
.area-link:hover,
.area-link:focus-visible { color: var(--sky-deep); border-color: var(--sky); box-shadow: var(--shadow); transform: translateY(-2px); }

.service-directory { display: flex; flex-direction: column; gap: var(--s7); }
.service-category {
  border: 1px solid var(--line); border-radius: var(--rad);
  background: var(--bg-2); padding: var(--s5); box-shadow: 0 2px 10px rgba(11,37,64,.04);
}
.category-heading { justify-content: space-between; margin-bottom: var(--s5); }
.category-heading .h3 { color: var(--navy); }
.service-category .link-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3) var(--s6); }
.service-category .link-cols li { min-width: 0; }
.service-category .link-cols a {
  display: flex; align-items: flex-start; gap: var(--s2); color: var(--text-ink); line-height: 1.35;
}
.service-category .link-cols a::before {
  content: "\2192"; color: var(--sky-deep); flex: 0 0 auto; font-weight: 800;
}
.service-category .link-cols a:hover,
.service-category .link-cols a:focus-visible { color: var(--sky-deep); text-decoration: underline; text-underline-offset: 3px; }

.service-directory--compact { gap: var(--s5); }
.service-directory--compact .service-category { padding: var(--s4); }
.service-directory--compact .category-heading { margin-bottom: var(--s4); }
.service-directory--compact .category-heading .h3 { font-size: var(--t-lg); }
.service-directory--compact .link-cols { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s2) var(--s5); }
.service-directory--compact .link-cols a { font-size: var(--t-cap); font-weight: 650; padding-block: var(--s1); }
.service-directory--compact .current-service-link { color: var(--sky-deep); font-weight: 800; }

.compact-service-directory { display: flex; flex-direction: column; gap: var(--s7); }
.compact-service-group { display: flex; flex-direction: column; gap: var(--s5); }
.compact-category-heading { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s3); padding-bottom: var(--s3); border-bottom: 1px solid var(--line); }
.compact-category-heading .h3 { color: var(--navy); }
.compact-service-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s5); }
.compact-service-card { display: flex; flex-direction: column; gap: var(--s3); min-height: 100%; padding: var(--s5); background: var(--bg-2); border: 1px solid var(--line); border-top: 3px solid var(--flame); border-radius: var(--rad); box-shadow: 0 2px 10px rgba(11,37,64,.04); transition: transform .18s, box-shadow .18s, border-color .18s; }
.compact-service-card:hover, .compact-service-card:focus-within { transform: translateY(-3px); border-color: #BFD9EC; box-shadow: var(--shadow); }
.compact-service-card p { color: var(--fg-muted); font-size: var(--t-cap); font-weight: 500; line-height: 1.62; }
.compact-service-card .quote-link { padding-top: var(--s2); }

.map-layout { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.6fr); gap: var(--s7); align-items: center; }
.map-copy { display: flex; flex-direction: column; align-items: flex-start; gap: var(--s4); }
.map-frame { overflow: hidden; min-height: 390px; background: var(--sky-wash); border: 1px solid var(--line-paper); border-radius: calc(var(--rad) + 4px); box-shadow: var(--shadow); }
.coverage-map { display: block; width: 100%; height: 390px; border: 0; }

.step .icon-disc { width: 44px; height: 44px; border-radius: 50%; font-weight: 800; }

.knowledge-grid { align-items: stretch; }
.knowledge-card { min-height: 100%; }
.knowledge-card > p { line-height: 1.55; }
.knowledge-card details {
  margin-top: auto; padding-top: var(--s3); border-top: 1px solid var(--line);
}
.knowledge-card summary {
  display: flex; align-items: center; justify-content: space-between; gap: var(--s3);
  color: var(--sky-deep); cursor: pointer; font-size: var(--t-cap); font-weight: 800;
  list-style: none;
}
.knowledge-card summary::-webkit-details-marker { display: none; }
.knowledge-card summary::after {
  content: "+"; display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; flex: 0 0 auto; border-radius: 50%;
  background: var(--sky-wash); color: var(--sky-deep); font-size: var(--t-md);
}
.knowledge-card details[open] summary::after { content: "\2212"; }
.knowledge-detail { padding-top: var(--s3); }
.knowledge-detail p { color: var(--fg-muted); font-size: var(--t-cap); line-height: 1.65; }

/* ======================================================================
   RESPONSIVE
   ====================================================================== */
@media (max-width: 1020px) {
  .hero-grid, .page-head-grid { grid-template-columns: 1fr; gap: var(--s6); }
  .grid-4, .price-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .link-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-category .link-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-directory--compact .link-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-top { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .compact-service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .state-link-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .area-link-grid, .area-link-grid--zip { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .map-layout { grid-template-columns: 1fr; }
  .phone-card { max-width: 30rem; width: 100%; margin-inline: auto; }
  .header-call { display: none; }
}

@media (max-width: 780px) {
  :root { --s8: 3rem; --s9: 4rem; }

  .nav { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-toggle > summary {
    display: inline-flex; align-items: center; gap: var(--s2); list-style: none; cursor: pointer;
    font-size: var(--t-sm); letter-spacing: .1em; text-transform: uppercase; font-weight: 800;
    padding: var(--s2) var(--s4); color: var(--navy);
    border: 2px solid var(--navy); border-radius: var(--pill);
  }
  .nav-toggle > summary::-webkit-details-marker { display: none; }
  .nav-toggle > summary::after { content: "\2261"; font-size: 1.2rem; line-height: 1; }
  .nav-toggle[open] > summary::after { content: "\00D7"; }
  .nav-toggle .nav-list {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; gap: 0;
    background: var(--card); border-bottom: 1px solid var(--line-paper);
    box-shadow: var(--shadow-lg);
    padding: var(--s3) var(--s5) var(--s5);
  }
  .nav-toggle .nav-list li { border-bottom: 1px solid var(--line-paper); }
  .nav-toggle .nav-list li:last-child { border-bottom: 0; }
  .nav-toggle .nav-list a { display: block; padding-block: var(--s3); border-bottom: 0; }
  .header-inner { position: relative; gap: var(--s3); }
  .header-call { display: none; }

  /* The fixed call bar is the primary action on phones and small tablets. */
  .hero .hero-copy > .cluster,
  .page-head .hero-copy > .cluster { display: none; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .band-inner, .guarantee-inner { flex-direction: column; align-items: flex-start; }
  .hero { padding-block: var(--s6) var(--s7); }
  .usp { grid-template-columns: 1fr; }
  .footer-top, .service-commitment { grid-template-columns: 1fr; }
  .state-link-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .area-link-grid, .area-link-grid--zip { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .mobile-call {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
    background: rgba(255,255,255,.96); border-top: 1px solid var(--line-paper);
    box-shadow: 0 -8px 24px rgba(11,37,64,.12);
    padding: var(--s3) var(--s4) calc(var(--s3) + env(safe-area-inset-bottom));
  }
  .mobile-call .btn { width: 100%; }
  body { padding-bottom: 5.5rem; }
}

@media (max-width: 480px) {
  .grid-4, .steps, .price-cards { grid-template-columns: 1fr; }
  .link-cols { grid-template-columns: 1fr; }
  .service-category .link-cols { grid-template-columns: 1fr; }
  .service-directory--compact .link-cols { grid-template-columns: 1fr; }
  .service-category { padding: var(--s4); }
  .compact-service-grid { grid-template-columns: 1fr; }
  .state-link-grid { grid-template-columns: 1fr; }
  .area-link-grid, .area-link-grid--zip { grid-template-columns: 1fr; }
  .map-frame, .coverage-map { min-height: 320px; height: 320px; }
  .container { padding-inline: var(--s4); }

  /* protect the fold on small phones */
  .topbar .container { justify-content: flex-start; gap: var(--s2) var(--s4); }
  .topbar .container span:nth-child(n+2) { display: none; }
  .hero { padding-block: var(--s5) var(--s6); }
  .hero-copy { gap: var(--s4); }
  .hero .lede { font-size: var(--t-base); line-height: 1.5; }
  .brand small { display: none; }
  /* Keep the complete brand and menu inside narrow phone viewports. */
  .site-header .brand { gap: var(--s2); min-width: 0; flex: 1 1 auto; }
  .site-header .brand > span:last-child { min-width: 0; }
  .site-header .brand-mark { width: 36px; height: 36px; }
  .site-header .brand-emblem { width: 36px; height: 36px; }
  .site-header .brand b {
    font-size: clamp(1rem, 4.4vw, var(--t-md));
    line-height: 1.05;
    white-space: normal;
    overflow-wrap: anywhere;
  }
  .header-inner { gap: var(--s2); }
  .nav-toggle { flex: 0 0 auto; }
  .nav-toggle > summary { gap: var(--s1); padding-inline: var(--s2); }
}

@media (max-width: 360px) {
  .nav-toggle > summary {
    width: 42px; height: 42px; padding: 0; justify-content: center;
    gap: 0; font-size: 0;
  }
  .nav-toggle > summary::after { font-size: 1.2rem; }
}

/* print */
@media print {
  .site-header, .mobile-call, .topbar, .hero::after { display: none !important; }
  body { background: #fff; color: #000; padding-bottom: 0; }
  .hero, .band, .site-footer, .page-head, .guarantee { background: #fff !important; color: #000 !important; }
}
