/* ============================================================
   CENTRAL VALLEY DRUG TESTING — "Clean Clinical" light theme
   White base · professional blue · slate gray · trust green.
   Shared design system + motion for all pages.
   ============================================================ */

:root {
  /* Light clinical palette */
  --paper:      #ffffff;
  --mist:       #f4f8fd;   /* section alt bg */
  --mist-2:     #eef3fa;
  --blue:       #1f5fe0;   /* primary */
  --blue-2:     #4c86f2;
  --blue-deep:  #0f3f9e;
  --blue-soft:  #e8f0fe;
  --blue-glow:  rgba(31, 95, 224, 0.28);
  --navy:       #0e2447;   /* dark sections / footer */
  --navy-2:     #14315e;
  --slate:      #5b6b84;   /* accent gray */
  --green:      #17a34a;   /* trust / verified */
  --green-soft: #e4f6ec;

  --ink:        #10233f;   /* headings/text on light */
  --ink-dim:    #46566f;
  --ink-faint:  #8494ab;
  --line:       #e3e9f2;
  --line-2:     #d5deeb;
  --card:       #ffffff;
  --card-2:     #f8fbff;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --shadow: 0 24px 60px -28px rgba(16, 40, 80, 0.28);
  --shadow-sm: 0 10px 30px -16px rgba(16, 40, 80, 0.22);
  --maxw: 1200px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
  letter-spacing: 0.005em;
}

/* ---- Fixed light background (subtle blue tints, clean) ---- */
.depth-bg {
  position: fixed; inset: 0; z-index: -3;
  background:
    radial-gradient(1100px 700px at 12% -8%, #eaf1fe 0%, transparent 55%),
    radial-gradient(1000px 800px at 98% 4%, #eef4ff 0%, transparent 52%),
    radial-gradient(1200px 1000px at 50% 116%, #eef5ff 0%, transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f6f9fe 55%, #ffffff 100%);
}
.depth-bg::before, .depth-bg::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: 0.35;
}
.depth-bg::before {
  width: 52vw; height: 52vw; top: -12%; left: -8%;
  background: radial-gradient(circle, rgba(31,95,224,0.18), transparent 66%);
  animation: drift1 30s ease-in-out infinite;
}
.depth-bg::after {
  width: 48vw; height: 48vw; bottom: -14%; right: -10%;
  background: radial-gradient(circle, rgba(76,134,242,0.16), transparent 66%);
  animation: drift2 34s ease-in-out infinite;
}
@keyframes drift1 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(6vw,5vh) scale(1.1);} }
@keyframes drift2 { 0%,100%{transform:translate(0,0) scale(1);} 50%{transform:translate(-6vw,-4vh) scale(1.08);} }

/* molecular / chain-of-custody network canvas */
#field { position: fixed; inset: 0; z-index: -2; pointer-events: none; opacity: 0.7; }

/* fine sheen overlay */
.grid-overlay {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: 0.6;
  background:
    linear-gradient(115deg, transparent 42%, rgba(31,95,224,0.03) 50%, transparent 60%);
}

/* ---- Layout ---- */
.wrap { width: 90%; max-width: var(--maxw); margin: 0 auto; }
section { position: relative; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--blue);
  padding: 0.4rem 0.9rem; border: 1px solid var(--blue-soft);
  border-radius: 100px; background: var(--blue-soft);
}
.eyebrow.gold { color: #9a7412; background: #fbf3df; border-color: #f0e3bf; }
.eyebrow.emer { color: var(--green); background: var(--green-soft); border-color: #c9ecd6; }
/* bare eyebrow in hero / page headers — plain editorial label, no bubble */
.hero .eyebrow, .page-hero .eyebrow { background: transparent; border-color: transparent; padding: 0; letter-spacing: 0.2em; color: var(--blue); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.08; letter-spacing: -0.015em; color: var(--ink); }
h2.display { font-size: clamp(2.1rem, 5vw, 3.6rem); margin: 1.1rem 0; }
h2.display em { font-style: italic; color: var(--blue); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--ink-dim); max-width: 62ch; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.95rem 1.6rem; border-radius: 100px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem;
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--blue) 0%, var(--blue-2) 100%); color: #fff; box-shadow: 0 12px 30px -10px var(--blue-glow); }
.btn-primary:hover { box-shadow: 0 18px 40px -10px var(--blue-glow); }
.btn-emer { background: var(--green); color: #fff; box-shadow: 0 12px 30px -12px rgba(23,163,74,.5); }
.btn-ghost { background: #fff; color: var(--ink); border-color: var(--line-2); }
.btn-ghost:hover { border-color: var(--blue); color: var(--blue); }
.btn-gold { background: linear-gradient(135deg, #e6c471, #f2dda0); color: #4a3a10; box-shadow: 0 12px 30px -12px rgba(230,196,113,.5); }

/* ---- Card ---- */
.glass {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 20px; box-shadow: var(--shadow);
}

/* ---- Trust badge seals (borderless, editorial — no bubbles) ---- */
.badge-row { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; margin-top: 1.7rem; }
.seal {
  display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.82rem; font-weight: 600;
  color: var(--ink-dim); background: transparent; border: none; padding: 0;
}
.seal svg { width: 17px; height: 17px; color: var(--green); flex: none; }

/* ============================================================ HEADER / NAV */
header.site { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1rem 0; transition: padding .4s var(--ease), background .4s, box-shadow .4s, border-color .4s; border-bottom: 1px solid transparent; }
header.site.scrolled { padding: 0.6rem 0; background: rgba(255,255,255,0.9); backdrop-filter: blur(16px); border-bottom: 1px solid var(--line); box-shadow: 0 6px 24px -18px rgba(16,40,80,.4); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; color: var(--ink); flex: none; }
.brand .mark { width: 40px; height: 40px; border-radius: 12px; flex: none; background: linear-gradient(135deg, var(--blue), var(--blue-2)); display: grid; place-items: center; box-shadow: 0 8px 20px -8px var(--blue-glow); }
.brand .mark svg { width: 23px; height: 23px; color: #fff; }
.brand b { font-family: var(--serif); font-size: 1.24rem; font-weight: 600; letter-spacing: 0; color: var(--ink); white-space: nowrap; }
.brand span { display: block; font-size: 0.58rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 1.6rem; flex-wrap: nowrap; }
.nav-links a { color: var(--ink-dim); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .25s; white-space: nowrap; line-height: 1; }
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 1.2rem; }
.nav-call { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--ink); font-weight: 600; font-size: 0.92rem; text-decoration: none; transition: color .25s; white-space: nowrap; }
.nav-call:hover { color: var(--blue); }
.nav-call .nc-ico { display: inline-flex; }
.nav-call .nc-ico svg { width: 16px; height: 16px; color: var(--blue); }
.burger { display: none; background: #fff; border: 1px solid var(--line-2); border-radius: 10px; width: 44px; height: 44px; color: var(--ink); cursor: pointer; }
.burger svg { color: var(--ink); }

/* dropdown */
.has-drop { position: relative; }
.drop { position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(8px); min-width: 470px; padding: 0.8rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.2rem; opacity: 0; pointer-events: none; transition: opacity .28s var(--ease), transform .28s var(--ease); background: #fff; border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow); }
.has-drop:hover .drop { opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.drop a { padding: 0.6rem 0.8rem; border-radius: 10px; font-size: 0.86rem; color: var(--ink-dim); transition: background .2s, color .2s; }
.drop a:hover { background: var(--blue-soft); color: var(--blue); }

/* mobile drawer */
.drawer { position: fixed; inset: 0; z-index: 200; background: rgba(255,255,255,0.98); backdrop-filter: blur(16px); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1rem; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); overflow-y: auto; padding: 4rem 1rem; }
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer a { color: var(--ink); font-family: var(--serif); font-size: 1.4rem; text-decoration: none; }
.drawer a:hover { color: var(--blue); }
.drawer .close { position: absolute; top: 1.4rem; right: 5%; background: #fff; border: 1px solid var(--line-2); border-radius: 10px; width: 46px; height: 46px; color: var(--ink); font-size: 1.4rem; cursor: pointer; }

/* ============================================================ TOP CALL/TEXT BAR (mobile) */
.callbar { display: none; }
@media (max-width: 680px) {
  .callbar { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; position: fixed; bottom: 0; left: 0; right: 0; z-index: 150; background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -6px 20px -12px rgba(16,40,80,.3); }
  .callbar a { text-align: center; padding: 0.7rem 0.3rem; text-decoration: none; color: var(--ink); font-size: 0.72rem; font-weight: 700; display: flex; flex-direction: column; align-items: center; gap: 0.2rem; border-right: 1px solid var(--line); }
  .callbar a:last-child { border-right: none; }
  .callbar a .ci { font-size: 1.05rem; }
  .callbar a.call { color: var(--blue); }
  .callbar a.text { color: var(--green); }
  body { padding-bottom: 62px; }
}

/* ============================================================ HERO */
.hero { min-height: 100vh; display: flex; align-items: center; padding: 8rem 0 5rem; position: relative; }
.hero-inner { max-width: 880px; }
.hero h1 { font-size: clamp(2.35rem, 5.6vw, 4.35rem); margin: 1.4rem 0 1.3rem; letter-spacing: 0.006em; line-height: 1.13; word-spacing: 0.04em; text-wrap: balance; }
.hero h1 em { font-style: italic; color: var(--blue); }
.hero .lead { font-size: clamp(1.1rem, 1.9vw, 1.35rem); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; margin-top: 2.2rem; }
.assurances { display: flex; flex-wrap: wrap; gap: 1.1rem 2rem; margin-top: 2.6rem; padding-top: 2rem; border-top: 1px solid var(--line); }
.assurances div { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--ink-dim); }
.assurances b { color: var(--ink); font-weight: 700; }
.check { color: var(--green); flex: none; font-weight: 800; }
.scroll-hint { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ink-faint); display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.scroll-hint .dot { width: 1px; height: 34px; background: linear-gradient(var(--blue), transparent); animation: sink 2.2s ease-in-out infinite; }
@keyframes sink { 0%,100%{opacity:.3;transform:scaleY(.6);transform-origin:top;} 50%{opacity:1;transform:scaleY(1);} }

/* hero media (photo band) */
.hero-media { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: right center; opacity: 0.5; }
.hero-media::after { content: ""; position: absolute; inset: 0; background:
  linear-gradient(90deg, #fff 0%, rgba(255,255,255,.72) 30%, rgba(255,255,255,.04) 66%, rgba(255,255,255,.55) 100%),
  linear-gradient(0deg, #fff 0%, rgba(255,255,255,.05) 34%, rgba(255,255,255,.04) 66%, rgba(255,255,255,.72) 100%); }

/* photo banner strip (top of pages) */
.photostrip { position: relative; height: 300px; overflow: hidden; border-radius: 0 0 28px 28px; }
.photostrip img { width: 100%; height: 100%; object-fit: cover; }
.photostrip::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(14,36,71,0.30) 0%, rgba(14,36,71,0.10) 40%, rgba(255,255,255,0.0) 100%); }

/* ============================================================ SECTION SCAFFOLD */
.section-pad { padding: 5.5rem 0; }
.section-pad.alt { background: var(--mist); }
.section-head { max-width: 660px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

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

.cat-card { padding: 1.9rem; border-radius: 18px; text-decoration: none; color: var(--ink); background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), border-color .3s, box-shadow .3s; position: relative; overflow: hidden; display: block; }
.cat-card::after { content: ""; position: absolute; inset: 0; background: radial-gradient(400px 200px at var(--mx,50%) var(--my,0%), var(--blue-soft), transparent 70%); opacity: 0; transition: opacity .5s; }
.cat-card:hover { transform: translateY(-5px); border-color: var(--blue-2); box-shadow: var(--shadow); }
.cat-card:hover::after { opacity: 0.6; }
.cat-card > * { position: relative; z-index: 1; }
.cat-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 1.1rem; background: var(--blue-soft); border: 1px solid #d5e3fb; }
.cat-ico svg { width: 27px; height: 27px; color: var(--blue); }
.cat-kicker { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue); font-weight: 800; }
.cat-card h3 { font-size: 1.4rem; margin: 0.35rem 0 0.6rem; }
.cat-card p { font-size: 0.92rem; color: var(--ink-dim); margin: 0; }
.cat-card .arrow { margin-top: 1.1rem; color: var(--blue); font-weight: 700; font-size: 0.86rem; display: inline-flex; gap: 0.4rem; }

.price-chip { display: inline-block; margin-top: 0.9rem; font-size: 0.82rem; font-weight: 700; color: var(--green); background: var(--green-soft); border: 1px solid #cbedd7; padding: 0.25rem 0.7rem; border-radius: 100px; }

/* ---- Steps ---- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; counter-reset: s; }
.step { padding: 1.8rem; border-radius: 18px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative; }
.step .n { counter-increment: s; width: 40px; height: 40px; border-radius: 11px; background: linear-gradient(135deg, var(--blue), var(--blue-2)); color: #fff; display: grid; place-items: center; font-weight: 800; margin-bottom: 1rem; }
.step .n::before { content: counter(s); }
.step h3 { font-size: 1.18rem; margin-bottom: 0.4rem; }
.step p { font-size: 0.9rem; color: var(--ink-dim); }

/* ---- Feature split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split .panel { padding: 2.5rem; border-radius: 22px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.stat-row { display: flex; gap: 2.5rem; margin-top: 2rem; flex-wrap: wrap; }
.stat b { font-family: var(--serif); font-size: 2.6rem; color: var(--blue); display: block; line-height: 1; }
.stat span { font-size: 0.82rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.1em; }

/* ---- Reviews ---- */
.review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.3rem; }
.review { padding: 1.8rem; border-radius: 18px; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.review .stars { color: #e6a917; font-size: 0.95rem; letter-spacing: 0.1em; margin-bottom: 0.8rem; }
.review p { font-size: 0.94rem; color: var(--ink-dim); font-style: italic; margin-bottom: 1rem; }
.review .who { font-size: 0.84rem; color: var(--ink); font-weight: 700; }
.review .who span { color: var(--ink-faint); font-weight: 400; }

/* ---- Pricing table ---- */
.ptable { width: 100%; border-collapse: collapse; margin-top: 1.5rem; font-size: 0.94rem; overflow: hidden; border-radius: 14px; border: 1px solid var(--line); }
.ptable th { background: var(--navy); color: #fff; text-align: left; padding: 0.9rem 1.1rem; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; font-weight: 700; }
.ptable td { padding: 0.85rem 1.1rem; border-bottom: 1px solid var(--line); color: var(--ink-dim); vertical-align: top; }
.ptable tr:nth-child(even) td { background: var(--mist); }
.ptable td b { color: var(--green); }

/* ---- FAQ ---- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details { border: 1px solid var(--line); border-radius: 14px; background: var(--card); margin-bottom: 0.8rem; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq summary { padding: 1.2rem 1.4rem; cursor: pointer; font-weight: 700; color: var(--ink); list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; font-size: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--blue); font-size: 1.4rem; transition: transform .3s; flex: none; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 1.4rem 1.3rem; color: var(--ink-dim); font-size: 0.94rem; }

/* ---- Local CTA band ---- */
.local-band { padding: 3rem; border-radius: 26px; text-align: center; overflow: hidden; position: relative; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%); border: none; box-shadow: var(--shadow); }
.local-band .eyebrow { color: #9fc0ff; background: rgba(76,134,242,.16); border-color: rgba(120,160,240,.3); }
.local-band h2, .local-band h2 em { color: #fff; }
.local-band h2 em { color: #8fb6ff; }
.local-band .lead { color: #c4d3ea; }
.local-band .contact-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.8rem; margin-top: 1.8rem; }
.contact-chip { display: inline-flex; flex-direction: column; align-items: center; gap: 0.15rem; padding: 1rem 1.4rem; min-width: 140px; border-radius: 16px; text-decoration: none; background: rgba(255,255,255,0.06); border: 1px solid rgba(160,190,240,0.28); color: #fff; transition: transform .35s var(--ease), background .3s, border-color .3s; }
.contact-chip:hover { transform: translateY(-3px); background: rgba(255,255,255,0.12); border-color: #6f9bf0; }
.contact-chip .ico { font-size: 1.2rem; }
.contact-chip b { font-size: 0.95rem; color: #fff; }
.contact-chip span { font-size: 0.72rem; color: #9fb3d4; }

/* ---- Form ---- */
.form-wrap { padding: 2.6rem; border-radius: 24px; max-width: 780px; margin: 0 auto; background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.4rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 0.78rem; letter-spacing: 0.04em; color: var(--ink-dim); font-weight: 700; }
.field input, .field select, .field textarea { background: #fff; border: 1px solid var(--line-2); border-radius: 12px; padding: 0.85rem 1rem; color: var(--ink); font-family: var(--sans); font-size: 0.95rem; transition: border-color .3s, box-shadow .3s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-soft); }
.field select option { background: #fff; }
.consent { grid-column: 1/-1; display: flex; gap: 0.7rem; align-items: flex-start; font-size: 0.82rem; color: var(--ink-dim); }
.consent input { margin-top: 0.25rem; accent-color: var(--blue); }

/* ---- Footer ---- */
footer.site { padding: 4.5rem 0 2.5rem; margin-top: 0; background: var(--navy); color: #c4d3ea; }
footer.site .brand b, footer.site .brand span { color: #fff; }
footer.site .brand span { color: #8ea6cc; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2.5rem; }
.foot-grid h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7e97bd; margin-bottom: 1.1rem; }
.foot-grid a { display: block; color: #b5c6e0; text-decoration: none; font-size: 0.9rem; padding: 0.28rem 0; transition: color .25s; }
.foot-grid a:hover { color: #fff; }
.foot-brand p { font-size: 0.9rem; color: #8ea6cc; margin-top: 0.9rem; max-width: 36ch; }
.disclaimer { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(160,190,240,0.18); font-size: 0.8rem; color: #7e97bd; line-height: 1.7; }
.disclaimer b { color: #b5c6e0; }

/* ---- Breadcrumb + article ---- */
.crumb { padding-top: 7.5rem; font-size: 0.85rem; color: var(--ink-faint); }
.crumb a { color: var(--ink-dim); text-decoration: none; }
.crumb a:hover { color: var(--blue); }
.article { max-width: 800px; margin: 0 auto; padding: 1.5rem 0 2rem; }
.article h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 2.4rem 0 1rem; }
.article h3 { font-size: 1.3rem; margin: 1.8rem 0 0.7rem; color: var(--blue); }
.article p { color: var(--ink-dim); margin-bottom: 1.1rem; font-size: 1.02rem; }
.article ul, .article ol { color: var(--ink-dim); margin: 0 0 1.3rem 1.3rem; }
.article li { margin-bottom: 0.5rem; }
.article .callout { padding: 1.4rem 1.6rem; border-radius: 16px; border-left: 4px solid var(--blue); margin: 1.6rem 0; font-size: 0.95rem; background: var(--mist); }
.article .callout.emer { border-left-color: var(--green); background: var(--green-soft); }
.article .callout.gold { border-left-color: #e6b800; background: #fbf6e4; }
.article strong { color: var(--ink); }
.page-hero { padding: 9rem 0 2rem; }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); margin: 1rem 0; text-wrap: balance; }
.page-hero h1 em { font-style: italic; color: var(--blue); }

/* ============================================================ SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .07s; } .reveal.d2 { transition-delay: .14s; }
.reveal.d3 { transition-delay: .21s; } .reveal.d4 { transition-delay: .28s; }
.parallax { will-change: transform; }
@media (prefers-reduced-motion: reduce) { *{animation:none!important;transition:none!important;} .reveal{opacity:1;transform:none;} html{scroll-behavior:auto;} }

/* ============================================================ RESPONSIVE */
@media (max-width: 960px) {
  .grid-3, .grid-4, .review-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .split, .foot-grid { grid-template-columns: 1fr; gap: 2rem; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .drop { min-width: 380px; }
}
@media (max-width: 680px) {
  .nav-links, .nav-cta .btn-ghost, .nav-cta .btn-primary { display: none; }
  .burger { display: grid; place-items: center; }
  .grid-3, .grid-4, .grid-2, .review-grid, .steps, .form-grid, .foot-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 6rem; }
  .assurances { gap: 0.8rem 1.4rem; }
  .local-band, .form-wrap { padding: 1.6rem; }
  .split .panel { padding: 1.6rem; }
  .photostrip { height: 200px; }
  /* Hero CTA: stack Call / Text / Book as 3 full-width tap targets */
  .hero-cta { flex-direction: column; align-items: stretch; gap: 0.7rem; margin-top: 1.8rem; }
  .hero-cta .btn { width: 100%; justify-content: center; padding-top: 1.05rem; padding-bottom: 1.05rem; font-size: 1rem; }
  /* keep header phone tidy on small screens */
  .brand b { font-size: 1.06rem; }
  .nav-call { font-size: 0.86rem; }
}
@media (max-width: 380px) {
  /* free up room so the header phone number always fits next to the logo */
  .brand span { display: none; }
  .brand b { font-size: 0.98rem; }
  .nav { gap: 0.6rem; }
}

/* ---- Detection-window / comparison tables (resources) ---- */
.table-wrap { overflow-x: auto; margin: 1.6rem 0; border-radius: 14px; box-shadow: var(--shadow-sm); }
.data-table { width: 100%; border-collapse: collapse; background: var(--card); font-size: 0.98rem; min-width: 420px; }
.data-table thead th { background: var(--navy); color: #fff; text-align: left; padding: 0.9rem 1.1rem; font-family: var(--sans); font-weight: 600; font-size: 0.92rem; letter-spacing: 0.01em; }
.data-table tbody td { padding: 0.85rem 1.1rem; border-top: 1px solid var(--line); color: var(--ink-dim); vertical-align: top; }
.data-table tbody tr:nth-child(even) td { background: var(--mist); }
.data-table tbody td:first-child { color: var(--ink); width: 42%; }
