/* =========================================================
   Blocked Drains Auckland
   Palette sampled from logo_primary.png: navy #0b3e63, cyan #22a0d8
   Plain CSS, no build step.
   ========================================================= */

:root {
  --navy:        #0b3e63;
  --navy-800:    #093352;
  --navy-900:    #072a44;
  --cyan:        #22a0d8;
  --cyan-600:    #1b86b8;
  --link:        #0f6ea3;   /* AA on white */
  --accent:      #ffb703;   /* urgency / call CTA */
  --accent-600:  #eda600;

  --ink:         #12242f;
  --ink-soft:    #4d616e;
  --ink-faint:   #6b7f8c;
  --line:        #dfe6ec;
  --line-soft:   #eef2f6;
  --bg:          #ffffff;
  --bg-alt:      #f4f8fb;
  --bg-tint:     #eaf4fa;

  --max:         1180px;
  --radius:      10px;
  --radius-lg:   16px;
  --shadow-sm:   0 1px 2px rgba(9,42,68,.06), 0 2px 8px rgba(9,42,68,.05);
  --shadow-md:   0 4px 12px rgba(9,42,68,.08), 0 12px 32px rgba(9,42,68,.07);

  --font-head: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--ink);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
.wrap--narrow { max-width: 780px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
  font-weight: 800;
}
h1 { font-size: clamp(1.95rem, 4.6vw, 2.95rem); }
h2 { font-size: clamp(1.5rem, 3.2vw, 2.1rem); margin-bottom: .55em; }
h3 { font-size: 1.19rem; margin-bottom: .35em; font-weight: 750; }
h4 { font-size: 1.02rem; font-weight: 750; }
p  { margin-bottom: 1rem; color: var(--ink-soft); }
p:last-child { margin-bottom: 0; }
a  { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }
strong { color: var(--ink); font-weight: 700; }
img { max-width: 100%; height: auto; display: block; }

:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

/* prose blocks inside content sections */
.prose p { margin-bottom: 1.05rem; }
.prose ul, .prose ol { margin: 0 0 1.15rem 1.15rem; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.5em; }
.prose > :first-child { margin-top: 0; }
.prose a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--navy); color: #fff;
  padding: 14px 26px; border-radius: var(--radius);
  font-weight: 700; font-family: var(--font-body); font-size: 1rem;
  border: 2px solid var(--navy); cursor: pointer; text-align: center;
  transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex: none; }
.btn:hover { background: var(--navy-800); border-color: var(--navy-800); text-decoration: none; color: #fff; }
.btn:active { transform: translateY(1px); }
.btn--call { background: var(--accent); border-color: var(--accent); color: var(--navy); }
.btn--call:hover { background: var(--accent-600); border-color: var(--accent-600); color: var(--navy); }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff; }
.btn--onDark { background: #fff; color: var(--navy); border-color: #fff; }
.btn--onDark:hover { background: #eaf1f6; color: var(--navy); border-color: #eaf1f6; }
.btn--outlineLight { background: transparent; color: #fff; border-color: rgba(255,255,255,.65); }
.btn--outlineLight:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--lg { padding: 17px 34px; font-size: 1.06rem; }
.btn--block { width: 100%; }

.muted { color: var(--ink-faint); font-size: .9rem; }
.center { text-align: center; }
.center .section__lead { margin-left: auto; margin-right: auto; }

/* ---------- utility bar ---------- */
.topbar {
  background: var(--navy-900); color: rgba(255,255,255,.86);
  font-size: .85rem; letter-spacing: .01em;
}
.topbar__inner {
  max-width: var(--max); margin: 0 auto; padding: 8px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.topbar__list { display: flex; gap: 20px; list-style: none; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar svg { width: 14px; height: 14px; flex: none; fill: var(--cyan); }
@media (max-width: 720px) { .topbar__inner { justify-content: center; padding: 7px 16px; } .topbar__list { gap: 14px; font-size: .8rem; } }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: #fff; border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 0 rgba(9,42,68,.04);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 11px 20px; max-width: var(--max); margin: 0 auto;
}
.nav__logo { flex: none; }
.nav__logo img { max-height: 48px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav__links > li > a {
  color: var(--navy); font-weight: 650; font-size: .95rem;
  padding: 9px 12px; border-radius: 8px; display: inline-block;
}
.nav__links > li > a:hover { color: var(--link); background: var(--bg-alt); text-decoration: none; }
.nav__links a[aria-current="page"] { color: var(--link); background: var(--bg-tint); }

.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ""; display: inline-block; width: 6px; height: 6px; margin-left: 7px;
  border-right: 2px solid currentColor; border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.dropdown {
  display: none; position: absolute; top: 100%; left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  min-width: 268px; padding: 8px; box-shadow: var(--shadow-md);
}
.has-dropdown::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 12px; display: none; }
.has-dropdown:hover::after, .has-dropdown:focus-within::after { display: block; }
.has-dropdown:hover .dropdown, .has-dropdown:focus-within .dropdown { display: block; }
.dropdown li { list-style: none; }
.dropdown a { display: block; padding: 10px 14px; font-size: .93rem; color: var(--navy); font-weight: 600; border-radius: 7px; }
.dropdown a:hover { background: var(--bg-tint); color: var(--link); text-decoration: none; }

.nav__cta { display: flex; align-items: center; gap: 10px; flex: none; }
.nav__call {
  background: var(--accent); color: var(--navy) !important;
  padding: 11px 18px; border-radius: var(--radius); font-weight: 800; font-size: .97rem;
  display: inline-flex; align-items: center; gap: 8px; white-space: nowrap;
}
.nav__call:hover { background: var(--accent-600); text-decoration: none; }
.nav__call svg { width: 15px; height: 15px; fill: var(--navy); }

.nav__toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: 8px;
  padding: 8px 11px; cursor: pointer; color: var(--navy); line-height: 1;
}
.nav__toggle svg { width: 20px; height: 20px; fill: currentColor; display: block; }

@media (max-width: 1000px) {
  .nav { padding: 10px 16px; gap: 10px; }
  .nav__toggle { display: block; order: 3; }
  .nav__cta { order: 2; margin-left: auto; }
  .nav__links {
    display: none; order: 4; width: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    border-top: 1px solid var(--line); margin-top: 10px; padding-top: 8px;
  }
  .nav__links.open { display: flex; }
  .nav__links > li > a { padding: 12px 6px; display: block; }
  .dropdown { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 6px 14px; min-width: 0; }
  .dropdown a { padding: 9px 6px; font-weight: 500; }
  .has-dropdown > a::after { display: none; }
  .nav__logo img { max-height: 40px; }
}
@media (max-width: 460px) {
  .nav__call span { display: none; }
  .nav__call { padding: 11px 14px; }
}

/* ---------- hero ---------- */
.hero { position: relative; color: #fff; background: var(--navy-900); }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(100deg, rgba(7,42,68,.93) 0%, rgba(7,42,68,.82) 45%, rgba(7,42,68,.42) 100%);
}
.hero__inner { position: relative; z-index: 2; max-width: var(--max); margin: 0 auto; padding: 76px 20px 68px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .09em; font-size: .77rem; font-weight: 800;
  color: var(--accent); background: rgba(255,183,3,.12);
  border: 1px solid rgba(255,183,3,.35); border-radius: 999px; padding: 6px 14px;
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin: 0 0 16px; max-width: 17ch; }
.hero p { color: rgba(255,255,255,.9); font-size: 1.13rem; max-width: 52ch; }
.hero__cta { margin-top: 28px; display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero__points { list-style: none; margin-top: 28px; display: flex; gap: 10px 28px; flex-wrap: wrap; }
.hero__points li { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: .95rem; }
.hero__points svg { width: 18px; height: 18px; fill: var(--accent); flex: none; }
@media (max-width: 700px) { .hero__inner { padding: 52px 20px 48px; } .hero h1 { max-width: none; } }

/* compact hero for secondary pages */
.hero--slim .hero__inner { padding: 54px 20px 48px; }
.hero--slim h1 { max-width: 22ch; }

/* ---------- trust bar ---------- */
.trustbar { background: var(--navy); color: #fff; }
.trustbar__inner {
  max-width: var(--max); margin: 0 auto; padding: 18px 20px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.trustbar__item { display: flex; align-items: center; gap: 11px; }
.trustbar__item svg { width: 24px; height: 24px; fill: var(--accent); flex: none; }
.trustbar__item span { font-size: .92rem; font-weight: 650; line-height: 1.35; }
@media (max-width: 860px) { .trustbar__inner { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
@media (max-width: 460px) { .trustbar__inner { grid-template-columns: 1fr; } .trustbar__item span { font-size: .89rem; } }

/* ---------- sections ---------- */
.section { padding: 66px 0; }
.section--tight { padding: 40px 0; }
.section--alt { background: var(--bg-alt); }
.section--navy { background: var(--navy); color: #fff; }
.section--navy h2, .section--navy h3 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.85); }
.section__eyebrow {
  text-transform: uppercase; letter-spacing: .1em; font-size: .78rem; font-weight: 800;
  color: var(--cyan-600); margin-bottom: 10px;
}
.section--navy .section__eyebrow { color: var(--accent); }
.section__lead { max-width: 66ch; font-size: 1.06rem; }
@media (max-width: 700px) { .section { padding: 48px 0; } }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--wide { grid-template-columns: 1.15fr .85fr; }
@media (max-width: 860px) { .split, .split--wide { grid-template-columns: 1fr; gap: 30px; } }

.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

/* ---------- cards ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .45em; }
.card p:last-child { margin-bottom: 0; }
.card--link { display: flex; flex-direction: column; }
.card--link .card__more { margin-top: auto; padding-top: 14px; font-weight: 700; color: var(--link); }
.card--link:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); }
.card__icon {
  width: 46px; height: 46px; border-radius: 11px; background: var(--bg-tint);
  display: grid; place-items: center; margin-bottom: 16px;
}
.card__icon svg { width: 24px; height: 24px; fill: var(--navy); }
.section--navy .card { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.15); box-shadow: none; }
.section--navy .card__icon { background: rgba(255,255,255,.1); }
.section--navy .card__icon svg { fill: var(--accent); }

/* numbered steps */
.steps { counter-reset: step; display: grid; gap: 20px; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding-top: 52px; }
.step::before {
  counter-increment: step; content: counter(step);
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.05rem;
  font-family: var(--font-head);
}
.section--navy .step::before { background: var(--accent); color: var(--navy); }

/* signs / symptom list */
.checklist { list-style: none; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 11px; align-items: flex-start; color: var(--ink-soft); }
.checklist svg { width: 20px; height: 20px; fill: var(--cyan-600); flex: none; margin-top: 2px; }
.checklist--2 { grid-template-columns: repeat(2, 1fr); gap: 12px 28px; }
@media (max-width: 620px) { .checklist--2 { grid-template-columns: 1fr; } }

/* callout / note box */
.callout {
  border-left: 4px solid var(--cyan); background: var(--bg-tint);
  padding: 20px 22px; border-radius: 0 var(--radius) var(--radius) 0; margin: 26px 0;
}
.callout h3 { margin-bottom: .4em; font-size: 1.06rem; }
.callout p:last-child { margin-bottom: 0; }
.callout--warn { border-left-color: var(--accent); background: #fff8e6; }

/* quick answer block — the paragraph AI engines lift */
.answer {
  border: 1px solid var(--line); border-left: 4px solid var(--navy);
  background: #fff; border-radius: 0 var(--radius) var(--radius) 0;
  padding: 22px 24px; margin: 0 0 28px; box-shadow: var(--shadow-sm);
}
.answer p { color: var(--ink); font-size: 1.05rem; margin-bottom: 0; }
.answer p + p { margin-top: .8rem; }

/* link lists (services / areas) */
.linklist { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; list-style: none; }
@media (max-width: 940px) { .linklist { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .linklist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .linklist { grid-template-columns: 1fr; } }
.linklist a {
  display: flex; align-items: center; gap: 8px;
  padding: 13px 16px; border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--navy); font-weight: 650; font-size: .95rem;
}
.linklist a:hover { border-color: var(--cyan); background: var(--bg-tint); color: var(--link); text-decoration: none; }
.linklist svg { width: 14px; height: 14px; fill: var(--cyan-600); flex: none; }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line); font-size: .95rem; color: var(--ink-soft); }
th { background: var(--bg-alt); font-weight: 750; color: var(--navy); font-size: .9rem; letter-spacing: .01em; }
td strong { color: var(--navy); }
tr:last-child td { border-bottom: 0; }

/* ---------- reviews ---------- */
.review {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.review__stars { display: flex; gap: 3px; margin-bottom: 14px; }
.review__stars svg { width: 17px; height: 17px; fill: var(--accent); }
.review blockquote { color: var(--ink); font-size: 1rem; line-height: 1.6; margin-bottom: 16px; }
.review__who { margin-top: auto; font-size: .88rem; color: var(--ink-faint); font-weight: 600; }
.review__who strong { display: block; color: var(--navy); font-size: .95rem; }

/* ---------- FAQ ---------- */
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2px 22px; margin-bottom: 10px;
}
.faq details[open] { border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-head); color: var(--navy);
  font-size: 1.04rem; padding: 17px 34px 17px 0; list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 4px; top: 50%; width: 10px; height: 10px;
  border-right: 2.5px solid var(--cyan-600); border-bottom: 2.5px solid var(--cyan-600);
  transform: translateY(-70%) rotate(45deg); transition: transform .18s ease;
}
.faq details[open] summary::after { transform: translateY(-30%) rotate(-135deg); }
.faq details > div, .faq details > p { padding-bottom: 18px; }
.faq details p:last-child { margin-bottom: 0; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--navy); color: #fff; text-align: center; padding: 58px 20px; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.86); max-width: 60ch; margin-left: auto; margin-right: auto; }
.cta-band__btns { margin-top: 26px; display: flex; gap: 13px; justify-content: center; flex-wrap: wrap; }

/* ---------- forms ---------- */
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-md); }
.form-card h2 { font-size: 1.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 16px; }
.field label { display: block; font-weight: 700; font-size: .88rem; margin-bottom: 6px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--cyan); outline: 2px solid rgba(34,160,216,.25); outline-offset: 0; }
.field textarea { min-height: 130px; resize: vertical; }
.field__hint { font-size: .82rem; color: var(--ink-faint); margin-top: 5px; }

/* contact detail cards */
.contact-line { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact-line:last-child { border-bottom: 0; }
.contact-line svg { width: 22px; height: 22px; fill: var(--cyan-600); flex: none; margin-top: 3px; }
.contact-line h3 { font-size: 1rem; margin-bottom: .15em; }
.contact-line p { margin-bottom: 0; font-size: .95rem; }
.contact-line a { font-weight: 700; }

/* ---------- breadcrumbs ---------- */
.crumbs { background: var(--bg-alt); border-bottom: 1px solid var(--line); font-size: .85rem; }
.crumbs ol { max-width: var(--max); margin: 0 auto; padding: 11px 20px; list-style: none; display: flex; flex-wrap: wrap; gap: 6px; }
.crumbs li { display: flex; align-items: center; gap: 6px; color: var(--ink-faint); }
.crumbs li + li::before { content: "/"; color: var(--line); }
.crumbs a { color: var(--ink-soft); }
.crumbs a:hover { color: var(--link); }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 940px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
}
.post-card:hover { border-color: var(--cyan); box-shadow: var(--shadow-md); }
.post-card__tag {
  font-size: .74rem; text-transform: uppercase; letter-spacing: .09em; font-weight: 800;
  color: var(--cyan-600); margin-bottom: 10px;
}
.post-card h3 { font-size: 1.13rem; margin-bottom: .5em; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--link); text-decoration: none; }
.post-card p { font-size: .95rem; }
.post-card__meta { margin-top: auto; padding-top: 16px; font-size: .83rem; color: var(--ink-faint); }

.article { max-width: 760px; }
.article__meta { color: var(--ink-faint); font-size: .9rem; margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 22px 26px; margin-bottom: 34px; }
.toc h2 { font-size: 1rem; margin-bottom: .7em; text-transform: uppercase; letter-spacing: .07em; color: var(--ink-faint); }
.toc ol { margin: 0 0 0 1.1rem; }
.toc li { margin-bottom: 7px; color: var(--ink-soft); font-size: .95rem; }

.related { border-top: 1px solid var(--line); margin-top: 44px; padding-top: 32px; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.72); padding: 56px 0 26px; font-size: .93rem; }
.site-footer h4 { color: #fff; margin-bottom: 15px; font-size: .93rem; letter-spacing: .05em; text-transform: uppercase; font-weight: 800; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 38px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer-logo img { max-height: 44px; width: auto; margin-bottom: 16px; }
.footer-contact a { color: #fff; font-weight: 700; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.13); margin-top: 42px; padding-top: 22px;
  font-size: .84rem; color: rgba(255,255,255,.5);
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}
.footer-disclaimer { font-size: .82rem; color: rgba(255,255,255,.48); margin-top: 12px; line-height: 1.55; }
.footer-areas { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.footer-areas a { color: rgba(255,255,255,.6); }

/* ---------- sticky mobile call bar ---------- */
.callbar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  background: #fff; border-top: 1px solid var(--line); padding: 9px 12px;
  box-shadow: 0 -3px 14px rgba(9,42,68,.1);
  gap: 9px;
}
.callbar .btn { flex: 1; padding: 13px 10px; font-size: .97rem; }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 68px; }
}

/* phone link — stable hook for WhatConverts dynamic number insertion */
.wc-phone { font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
