/* ===================================================================
   EverCool — styles.css
   System-font, custom-property driven design system. No frameworks.
   Written for production minification (see /DEPLOYMENT.md).
   =================================================================== */

:root {
  /* --- Color system: deep midnight navy / crisp white / ice-cyan,
         with a restrained warm accent reserved for heating context --- */
  --navy-950: #060b14;
  --navy-900: #0a1628;
  --navy-800: #0f2038;
  --navy-700: #16304f;
  --ice-400: #7fd9e8;
  --ice-300: #a9e8f0;
  --cool-500: #3f8fd6;
  --link-600: #2570bb; /* AA-compliant link blue for text on light backgrounds */
  --warm-500: #e8955a;
  --white: #ffffff;
  --paper: #f6f8fb;
  --ink-900: #0b1220;
  --ink-600: #47546a;
  --ink-400: #7a879c;
  --line: #e3e8f0;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji";

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;

  --gap: clamp(1rem, 2vw, 1.75rem);
  --section-pad: clamp(3rem, 7vw, 6.5rem);
  --wrap-max: 1180px;

  --shadow-1: 0 1px 2px rgba(10, 22, 40, 0.06), 0 8px 24px -12px rgba(10, 22, 40, 0.18);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
html, body { height: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-900);
  background: var(--white);
  line-height: 1.55;
  font-size: clamp(1rem, 0.94rem + 0.25vw, 1.0625rem);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3 { line-height: 1.15; font-weight: 700; letter-spacing: -0.01em; }

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

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

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  background: var(--navy-900);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: 100;
  transition: top 0.15s var(--ease);
}
.skip-link:focus { top: 1rem; }

:focus-visible {
  outline: 2.5px solid var(--cool-500);
  outline-offset: 2px;
}

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.98rem;
  border: 1.5px solid transparent;
  min-height: 44px;
  transition: transform 0.15s var(--ease), background-color 0.15s var(--ease), border-color 0.15s var(--ease);
  cursor: pointer;
}
.btn-primary {
  background: var(--ice-400);
  color: var(--navy-950);
}
.btn-primary:hover { background: var(--ice-300); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-secondary:hover { border-color: var(--white); }
.btn-call {
  background: var(--navy-900);
  color: var(--white);
  padding: 0.65rem 1.15rem;
  font-size: 0.92rem;
}
.btn-call:hover { background: var(--navy-800); }
.btn-block { width: 100%; }

@media (hover: hover) {
  .btn:hover { transform: translateY(-1px); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding-block: 0.85rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-900);
  margin-right: auto;
}
.brand-mark { flex: none; height: 32px; width: auto; }
.brand-text {
  display: flex;
  flex-direction: column;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  line-height: 1.1;
}
.brand-sub {
  font-weight: 500;
  font-size: 0.68rem;
  color: var(--ink-600);
  letter-spacing: 0.02em;
}
.primary-nav ul { display: flex; gap: 1.75rem; }
.primary-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-600);
}
.primary-nav a:hover { color: var(--navy-900); }
.header-cta { flex: none; }

.mobile-nav { display: none; position: relative; }
.mobile-nav summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.menu-icon, .menu-icon::before, .menu-icon::after {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy-900);
  border-radius: 2px;
  position: relative;
}
.menu-icon::before, .menu-icon::after { content: ""; position: absolute; }
.menu-icon::before { top: -7px; }
.menu-icon::after { top: 7px; }
.mobile-nav ul {
  position: absolute;
  right: 0; top: calc(100% + 0.5rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  padding: 0.5rem;
  min-width: 220px;
  display: flex;
  flex-direction: column;
}
.mobile-nav li a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--ink-900);
}
.mobile-nav li a:hover { background: var(--paper); }

@media (max-width: 860px) {
  .primary-nav, .header-cta { display: none; }
  .mobile-nav { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  /* Navy fallback shows instantly and stays visible through the scrim —
     no flash-of-unstyled-photo, and identical look if the image is blocked. */
  background: radial-gradient(120% 140% at 15% 0%, var(--navy-800) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: var(--white);
  overflow: clip;
  padding-block: clamp(3.5rem, 9vw, 7rem) clamp(3rem, 7vw, 5.5rem);
}
.hero-media {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-media picture, .hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-scrim {
  position: absolute;
  inset: 0;
  /* Mobile/narrow: text spans full width, so keep a moderate uniform veil —
     enough to guarantee body-text contrast, low enough that the photo still reads. */
  background:
    linear-gradient(180deg, rgba(6, 11, 20, 0.72) 0%, rgba(6, 11, 20, 0.58) 45%, rgba(6, 11, 20, 0.78) 100%);
}
@media (min-width: 900px) {
  .hero-scrim {
    /* Wide viewports: the text column (max 760px) sits on the left, so the veil is
       art-directed — dark enough behind the copy to hold contrast, fading out toward
       the right so the real technician photo is actually visible, not just implied. */
    background:
      linear-gradient(100deg,
        rgba(6, 11, 20, 0.90) 0%,
        rgba(6, 11, 20, 0.84) 28%,
        rgba(6, 11, 20, 0.6) 46%,
        rgba(6, 11, 20, 0.32) 64%,
        rgba(6, 11, 20, 0.18) 100%),
      linear-gradient(180deg, rgba(6, 11, 20, 0.2) 0%, transparent 22%, transparent 76%, rgba(6, 11, 20, 0.5) 100%);
  }
}
.flow-line {
  position: absolute;
  left: -5%;
  width: 110%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(127, 217, 232, 0.35), transparent);
}
.flow-line.l1 { top: 22%; }
.flow-line.l2 { top: 74%; }

.hero-inner { position: relative; max-width: 760px; }
/* Text sits over a photo now, not a flat fill — a soft shadow keeps every line
   readable even where the scrim thins out to reveal the image (see .hero-scrim). */
.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice-300);
  margin-bottom: 1.1rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.65);
}
.hero h1 {
  font-size: clamp(2.1rem, 1.5rem + 3.2vw, 3.6rem);
  color: var(--white);
  margin-bottom: 1.1rem;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
}
.hero-sub {
  font-size: clamp(1rem, 0.95rem + 0.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.78);
  max-width: 56ch;
  margin-bottom: 2rem;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-phone { margin-top: 1.1rem; font-size: 0.95rem; color: rgba(255, 255, 255, 0.7); }
.hero-phone a { font-weight: 700; color: var(--ice-300); }

/* ---------- Trust strip ---------- */
.trust-strip {
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  padding-block: 1rem;
  padding-inline: 0;
  margin-block: 0;
  justify-content: center;
  list-style: none;
}
.trust-inner li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
}
.trust-icon { color: var(--ice-400); font-size: 0.5rem; }

/* ---------- Sections shared ---------- */
section { padding-block: var(--section-pad); }
.section-head { max-width: 68ch; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head h2 { font-size: clamp(1.65rem, 1.3rem + 1.4vw, 2.35rem); color: var(--navy-900); margin-bottom: 0.9rem; }
.section-lede { color: var(--ink-600); font-size: clamp(1rem, 0.97rem + 0.2vw, 1.1rem); }

/* Defer paint cost for below-fold sections */
.decision, .process, .local, .why, .testimonial, .faq, .summary {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

/* ---------- Services ---------- */
.services { background: var(--paper); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.25rem);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.service-icon { color: var(--cool-500); }
.service-card h3 { font-size: 1.2rem; color: var(--navy-900); }
.service-card p { color: var(--ink-600); flex: 1; }
.card-link {
  font-weight: 700;
  color: var(--navy-900);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.card-link:hover { color: var(--link-600); }

/* ---------- Decision (AEO) ---------- */
.decision-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--gap);
}
.decision-card {
  border-left: 3px solid var(--ice-400);
  padding-left: 1.25rem;
}
.decision-card h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 0.6rem; }
.decision-card p { color: var(--ink-600); }

.decision-table-wrap {
  margin-top: clamp(2rem, 4vw, 3rem);
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}
.decision-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
  min-width: 560px;
}
.decision-table caption {
  text-align: left;
  padding: 1rem 1.25rem 0.25rem;
  color: var(--ink-600);
  font-size: 0.85rem;
}
.decision-table th, .decision-table td {
  text-align: left;
  padding: 0.85rem 1.25rem;
  border-top: 1px solid var(--line);
}
.decision-table thead th {
  color: var(--navy-900);
  font-weight: 700;
  background: var(--paper);
}
.decision-table tbody th {
  color: var(--navy-900);
  font-weight: 700;
  white-space: nowrap;
}
.decision-table td { color: var(--ink-600); }

/* ---------- Process ---------- */
.process { background: var(--navy-900); color: var(--white); }
.process .section-head h2 { color: var(--white); }
.process .section-lede { color: rgba(255, 255, 255, 0.72); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--gap);
  counter-reset: step;
}
.process-steps li {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.step-num {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ice-400);
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.process-steps h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.process-steps p { color: rgba(255, 255, 255, 0.72); font-size: 0.95rem; }

/* ---------- Local / service area ---------- */
.local-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.local-copy p { color: var(--ink-600); margin-bottom: 1rem; }
.local-copy p:last-child { margin-bottom: 0; }
.local-graphic { display: flex; flex-direction: column; align-items: center; gap: 1.75rem; }
.fact-list {
  width: 100%;
  max-width: 280px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 1.1rem 1.35rem;
}
.fact-list div { display: flex; justify-content: space-between; gap: 1rem; padding-block: 0.5rem; }
.fact-list div + div { border-top: 1px solid var(--line); }
.fact-list dt { font-size: 0.82rem; color: var(--ink-600); font-weight: 600; }
.fact-list dd { margin: 0; font-size: 0.85rem; color: var(--navy-900); font-weight: 700; text-align: right; }
.fact-list dd a { color: var(--link-600); }
.radar {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 143, 214, 0.12), transparent 70%);
}
.radar .ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(63, 143, 214, 0.35);
  border-radius: 50%;
}
.radar .r2 { inset: 15%; }
.radar .r3 { inset: 32%; }
.radar .pin {
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--cool-500);
  box-shadow: 0 0 0 6px rgba(63, 143, 214, 0.18);
}

@media (max-width: 780px) {
  .local-inner { grid-template-columns: 1fr; }
  .local-graphic { order: -1; }
  .radar { width: 160px; height: 160px; }
}

/* ---------- Why EverCool ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--gap);
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--paper), var(--white));
  border: 1px solid var(--line);
}
.why-card h3 { font-size: 1.05rem; color: var(--navy-900); margin-bottom: 0.6rem; }
.why-card p { color: var(--ink-600); font-size: 0.95rem; }

/* ---------- Real work / team photo gallery ---------- */
.gallery { content-visibility: auto; contain-intrinsic-size: 1px 500px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--gap);
}
.gallery-grid-single { max-width: 760px; }
.gallery-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
}
.gallery-item picture, .gallery-item img { display: block; width: 100%; height: auto; }
.gallery-item figcaption {
  padding: 0.9rem 1.1rem;
  font-size: 0.85rem;
  color: var(--ink-600);
  font-weight: 600;
}

/* ---------- Testimonial ---------- */
.testimonial { background: var(--paper); }
.testimonial-card {
  max-width: 760px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  text-align: center;
  box-shadow: var(--shadow-1);
}
.testimonial-card blockquote p {
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  color: var(--navy-900);
  font-weight: 500;
  line-height: 1.5;
}
.testimonial-card figcaption {
  margin-top: 1.25rem;
  font-weight: 700;
  color: var(--ink-600);
}

/* ---------- Conversion / form ---------- */
.convert {
  background: radial-gradient(120% 140% at 85% 100%, var(--navy-800) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  color: var(--white);
}
.convert-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.convert-copy h2 { font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem); color: var(--white); margin-bottom: 0.9rem; }
.convert-copy p { color: rgba(255, 255, 255, 0.78); margin-bottom: 1.5rem; max-width: 46ch; }
.contact-meta { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.4rem; }
.contact-meta a { color: var(--ice-300); font-weight: 600; }
.contact-meta li { font-size: 0.9rem; color: rgba(255, 255, 255, 0.7); }

.request-form {
  background: var(--white);
  color: var(--ink-900);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  box-shadow: var(--shadow-1);
}
.request-form h3 { font-size: 1.2rem; color: var(--navy-900); margin-bottom: 0.35rem; }
.form-note { color: var(--ink-600); font-size: 0.85rem; margin-bottom: 1.25rem; }
.form-note a { font-weight: 700; color: var(--link-600); }
.field { margin-bottom: 1rem; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-600);
  margin-bottom: 0.35rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  min-height: 44px;
}
.field textarea { min-height: 88px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--cool-500);
}
.form-status {
  margin-top: 0.85rem;
  font-size: 0.9rem;
  font-weight: 600;
  min-height: 1.2em;
}
.form-status[data-state="success"] { color: #1a7f4e; }
.form-status[data-state="error"] { color: #c53030; }

@media (max-width: 860px) {
  .convert-inner { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 820px;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 0.35rem 1.25rem;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 { font-size: 1rem; color: var(--navy-900); font-weight: 700; }
.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--link-600);
  flex: none;
  transition: transform 0.15s var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { color: var(--ink-600); padding-bottom: 1.1rem; }

/* ---------- SEO summary ---------- */
.summary { background: var(--paper); }
.summary-inner { max-width: 780px; margin-inline: auto; text-align: center; }
.summary-inner .section-head, .summary-inner h2 { margin-bottom: 1.1rem; }
.summary-inner h2 { font-size: clamp(1.4rem, 1.15rem + 1vw, 1.85rem); color: var(--navy-900); }
.summary-text {
  font-size: clamp(1rem, 0.96rem + 0.25vw, 1.1rem);
  color: var(--ink-600);
  text-align: left;
}
.summary-text a { color: var(--link-600); font-weight: 700; }
.summary-facts {
  margin-top: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.summary-facts div { text-align: left; }
.summary-facts dt { font-size: 0.78rem; color: var(--ink-600); font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; margin-bottom: 0.2rem; }
.summary-facts dd { margin: 0; font-size: 0.95rem; color: var(--navy-900); font-weight: 600; }
.summary-facts dd a { color: var(--link-600); }

/* ---------- Final CTA ---------- */
.final-cta { background: var(--navy-950); color: var(--white); }
.final-cta-inner { text-align: center; }
.final-cta h2 { font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.4rem); margin-bottom: 1.5rem; }
.final-cta .hero-actions { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.8); }
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
  padding-block: 3rem;
}
.footer-mark { margin-bottom: 0.75rem; }
.footer-name { font-weight: 800; color: var(--white); margin-bottom: 0.5rem; }
.footer-brand p { margin-bottom: 0.3rem; font-size: 0.92rem; }
.footer-brand a:hover { color: var(--ice-300); }
.footer-nav ul { display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; }
.footer-nav a { font-size: 0.92rem; font-weight: 600; }
.footer-nav a:hover { color: var(--ice-300); }
.footer-privacy {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.1rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 70ch;
}
.footer-privacy strong { color: rgba(255, 255, 255, 0.85); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-block: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Sticky mobile call bar ---------- */
.sticky-call {
  display: none;
  position: fixed;
  left: 0.75rem; right: 0.75rem; bottom: 0.75rem;
  z-index: 60;
}
.sticky-call .btn { box-shadow: var(--shadow-1); }
@media (max-width: 640px) {
  .sticky-call { display: block; }
  .final-cta, .convert { padding-bottom: calc(var(--section-pad) + 4.5rem); }
}

/* ---------- Motion (subtle, transform/opacity only) ---------- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
  }
  .reveal.is-visible { opacity: 1; transform: none; }
}

/* ---------- Simple content pages (Privacy, Service Area) ---------- */
.breadcrumb {
  padding-block: 1.1rem;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: 0.4rem; font-size: 0.85rem; color: var(--ink-600); }
.breadcrumb a { color: var(--link-600); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb li:not(:last-child)::after { content: "/"; margin-left: 0.4rem; color: var(--ink-600); }
.breadcrumb li[aria-current="page"] { color: var(--ink-900); font-weight: 600; }

.page-header { padding-block: clamp(2.5rem, 6vw, 4rem) clamp(1.5rem, 3vw, 2rem); }
.page-header h1 { font-size: clamp(1.8rem, 1.4rem + 2vw, 2.6rem); color: var(--navy-900); margin-bottom: 0.75rem; }
.page-header .page-lede { color: var(--ink-600); font-size: 1.05rem; max-width: 68ch; }

.page-content { padding-block: 0 clamp(3rem, 7vw, 5rem); }
.page-prose { max-width: 68ch; }
.page-prose h2 { font-size: clamp(1.2rem, 1.05rem + 0.6vw, 1.5rem); color: var(--navy-900); margin-block: 2rem 0.75rem; }
.page-prose p { color: var(--ink-600); margin-bottom: 1rem; line-height: 1.65; }
.page-prose p:first-child { margin-top: 0; }
/* :not(.btn) keeps this from overriding button text color when a <a class="btn">
   sits inside .page-prose (see .page-back-cta below) — buttons set their own
   AA-checked color and shouldn't inherit the prose link color. */
.page-prose a:not(.btn) { color: var(--link-600); font-weight: 600; }
.page-prose ul { margin: 0 0 1rem 1.25rem; color: var(--ink-600); }
.page-prose li { margin-bottom: 0.4rem; line-height: 1.6; }
.page-prose .page-updated { font-size: 0.85rem; color: var(--ink-600); margin-top: 2rem; }

.page-back-cta {
  margin-top: 2.5rem;
  padding: 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  max-width: 68ch;
}
.page-back-cta p { margin-bottom: 0.9rem; color: var(--ink-900); font-weight: 600; }
.page-back-cta .hero-actions { margin: 0; }
/* .btn-secondary is designed for the dark hero (white text on a photo/navy
   background) — this card sits on a light --paper background, so it needs
   its own dark-on-light treatment rather than inheriting that variant. */
.page-back-cta .btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.page-back-cta .btn-secondary:hover { background: var(--navy-900); color: var(--white); }
