/* ===========================================================================
   Donel & D Plumbing — Marketing site
   Design tokens, layout, and components (translated from the design handoff)
   =========================================================================== */

:root {
  /* Navy / dark */
  --navy: #0a2540;
  --navy-deep: #071d33;
  /* Primary blue */
  --blue: #1577c9;
  --blue-hover: #0f66b3;
  --blue-link: #0f5fa8;
  --blue-light: #7cc0ff;
  /* Blue tints */
  --chip-bg: #eaf2fb;
  --chip-border: #d6e6f5;
  --tint-1: #f4f8fc;
  --tint-2: #eef5fb;
  --tint-3: #f6f9fc;
  /* Text */
  --ink: #16293c;
  --ink-2: #46596b;
  --ink-muted: #56697b;
  --ink-label: #5f7488;
  --ink-meta: #607387;
  /* On-dark text */
  --on-dark-1: #cfe0f0;
  --on-dark-2: #aebfd0;
  --on-dark-3: #a9bccf;
  --on-dark-4: #8ba3bb;
  --on-dark-5: #8aa3bd;
  --on-dark-6: #dbe6f0;
  /* Borders */
  --border: #e4ebf2;
  --border-2: #eef2f6;
  --border-input: #dde6ee;
  --border-3: #e0e8f0;
  /* Accents */
  --gold: #f5a623;
  --green: #1f9d57;
  --green-disc: #e7f7ee;
  --green-dot: #3ecf8e;

  --maxw: 1180px;
  --pad: 20px;
  --shadow-cta-sm: 0 8px 18px -8px rgba(21,119,201,.7);
  --shadow-cta-lg: 0 14px 28px -12px rgba(21,119,201,.75);
  --shadow-card: 0 22px 40px -22px rgba(10,37,64,.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 0;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
::selection { background: var(--blue); color: #fff; }
input, textarea, button { font-family: inherit; }

:focus-visible {
  outline: 3px solid rgba(21,119,201,.45);
  outline-offset: 3px;
}

.no-scrollbar { scrollbar-width: none; -ms-overflow-style: none; }
.no-scrollbar::-webkit-scrollbar { display: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.section { padding-top: clamp(48px,7vw,88px); padding-bottom: clamp(48px,7vw,88px); }

.ic { flex-shrink: 0; }

/* ---- Shared headings / eyebrows ---- */
.eyebrow {
  display: block;
  font-size: 12.5px; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
}
.eyebrow--light { color: var(--blue-light); }
.h2 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(26px,4.5vw,40px); line-height: 1.1; letter-spacing: -.02em;
  color: var(--navy); margin: 10px 0 0; max-width: 680px; text-wrap: balance;
}
.h2--light { color: #fff; }
.section__lead {
  font-size: 16.5px; line-height: 1.6; color: var(--ink-2);
  margin: 14px 0 0; max-width: 620px;
}
.section__lead--light { color: var(--on-dark-2); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; font-weight: 700; white-space: nowrap;
  border: none; cursor: pointer; transition: background .2s, border-color .2s, transform .2s;
}
.btn--primary {
  background: var(--blue); color: #fff; font-size: 14.5px;
  padding: 11px 18px; border-radius: 10px; box-shadow: var(--shadow-cta-sm);
}
.btn--primary:hover { background: var(--blue-hover); }
.btn--lg { font-size: 16px; padding: 15px 24px; border-radius: 12px; box-shadow: var(--shadow-cta-lg); gap: 9px; }
.btn--ghost {
  background: #fff; color: var(--navy); font-size: 16px;
  padding: 15px 24px; border-radius: 12px; border: 1.5px solid #d6e0ea;
}
.btn--block { display: flex; width: 100%; justify-content: center; }

/* ===================== ANNOUNCEMENT BAR ===================== */
.announce { background: var(--navy); color: var(--on-dark-1); font-size: 13px; letter-spacing: .01em; }
.announce[hidden] { display: none; }
.announce__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 9px var(--pad);
  display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; justify-content: center; text-align: center;
}
.announce__msg { display: inline-flex; align-items: center; gap: 7px; font-weight: 600; color: #fff; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--green-dot); box-shadow: 0 0 0 4px rgba(62,207,142,.18); }
.announce__sep { opacity: .5; }
.announce__call { color: var(--blue-light); text-decoration: none; font-weight: 600; }

/* ===================== HEADER ===================== */
.header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header__bar {
  max-width: var(--maxw); margin: 0 auto; padding: 9px var(--pad);
  display: flex; align-items: center; gap: 16px;
}
.header__logo { display: flex; align-items: center; text-decoration: none; flex: 1 1 auto; min-width: 0; }
.header__logo img { height: clamp(48px,5vw,58px); width: auto; max-width: 100%; object-fit: contain; }
.header__cta { flex-shrink: 0; }
.header__nav { border-top: 1px solid var(--border-2); overflow-x: auto; -webkit-overflow-scrolling: touch; }
.header__nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  display: flex; gap: 4px; justify-content: center; white-space: nowrap;
}
.header__nav-inner a {
  padding: 9px 13px; color: var(--ink-label); text-decoration: none;
  font-size: 13.5px; font-weight: 600;
}
.header__nav-inner a:hover { color: var(--blue); }

/* ===================== HERO ===================== */
.hero { background: linear-gradient(180deg, var(--tint-1), #fff); border-bottom: 1px solid var(--border-2); }
.hero__inner {
  display: flex; flex-wrap: wrap; gap: clamp(24px,4vw,48px); align-items: center;
  padding-top: clamp(28px,5vw,56px); padding-bottom: clamp(26px,4.5vw,44px);
}
.hero__text { flex: 1 1 340px; min-width: 300px; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--chip-bg); color: var(--blue-link);
  font-size: 12.5px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 7px 13px; border-radius: 99px; border: 1px solid var(--chip-border);
}
.hero__h1 {
  font-family: 'Archivo', sans-serif; font-weight: 800;
  font-size: clamp(32px,5vw,48px); line-height: 1.05; letter-spacing: -.02em;
  color: var(--navy); margin: 16px 0 0; text-wrap: balance;
}
.hero__lead { font-size: clamp(16px,2.2vw,18px); line-height: 1.58; color: var(--ink-2); margin: 16px 0 0; max-width: 540px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.hero-proof {
  list-style: none; margin: 20px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 10px;
  max-width: 560px;
}
.hero-proof li {
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 11px 12px; min-width: 0;
}
.hero-proof strong {
  display: block; font-family: 'Archivo', sans-serif; font-weight: 800;
  color: var(--navy); font-size: clamp(15px,1.8vw,18px); line-height: 1.05;
  overflow-wrap: anywhere;
}
.hero-proof span { display: block; color: var(--ink-label); font-size: 12.5px; font-weight: 600; margin-top: 4px; }
.ic--check { color: var(--blue); }

.hero__media { flex: 1 1 320px; min-width: 290px; position: relative; }
.hero__photo {
  position: relative; border-radius: 18px; overflow: hidden;
  border: 1px solid #dde7f0; box-shadow: 0 30px 60px -28px rgba(10,37,64,.4);
  aspect-ratio: 4/3; background: var(--tint-1);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__review {
  position: absolute; left: 14px; bottom: 14px; background: #fff;
  border: 1px solid var(--border); border-radius: 13px; padding: 13px 16px;
  box-shadow: 0 14px 30px -14px rgba(10,37,64,.35);
  display: flex; flex-direction: column; line-height: 1; max-width: 240px;
}
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; }
.hero__review-quote { font-size: 13px; color: #33485c; font-weight: 600; margin-top: 6px; line-height: 1.35; }
.hero__review-by { font-size: 11.5px; color: var(--ink-meta); margin-top: 5px; }

/* ---- Trust bar ---- */
.trustwrap { padding-bottom: clamp(24px,3.5vw,34px); }
.trust {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(150px,1fr));
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  border-radius: 14px; overflow: hidden;
}
.trust__cell { background: #fff; padding: 15px 16px; display: flex; flex-direction: column; gap: 7px; }
.trust__ic { color: var(--blue); display: inline-flex; }
.trust__big { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px; color: var(--navy); line-height: 1.05; }
.trust__small { font-size: 12.5px; color: var(--ink-label); font-weight: 500; }

/* ===================== GRIDS / CARDS ===================== */
.grid { display: grid; gap: 16px; margin-top: 36px; }
.grid--services { grid-template-columns: repeat(auto-fit, minmax(270px,1fr)); }
.grid--why { grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); margin-top: 38px; }
.grid--steps { grid-template-columns: repeat(auto-fit, minmax(250px,1fr)); }
.grid--reviews { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); margin-top: 34px; }

.card { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 24px; }
.card__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 19px; color: var(--navy); margin: 16px 0 0; }
.card__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); margin: 9px 0 0; }

.service { transition: box-shadow .2s, transform .2s, border-color .2s; }
.service:hover { box-shadow: var(--shadow-card); transform: translateY(-3px); border-color: #cfe0f2; }
.service__badge {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--chip-bg); color: var(--blue-link); border: 1px solid var(--chip-border);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 15px;
}
.tags { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 16px; }
.tag {
  font-size: 11.5px; font-weight: 600; color: var(--ink-label);
  background: #f3f6fa; border: 1px solid #e6edf3; padding: 5px 10px; border-radius: 7px;
}

/* ---- Dark sections (Why / Contact) ---- */
.section--dark { background: var(--navy); color: #fff; }
.feature {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 24px;
}
.feature__ic {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(124,192,255,.16); color: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
}
.feature__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18px; margin: 16px 0 0; }
.feature__desc { font-size: 14.5px; line-height: 1.55; color: var(--on-dark-3); margin: 9px 0 0; }

/* ---- How it works ---- */
.step { position: relative; background: var(--tint-3); border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.step__n {
  position: absolute; top: 18px; right: 22px;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 36px; color: #e3ebf4; line-height: 1;
}
.step__ic {
  width: 50px; height: 50px; border-radius: 13px; background: var(--blue); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 20px -10px rgba(21,119,201,.7);
}
.step__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 18.5px; color: var(--navy); margin: 18px 0 0; }
.step__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); margin: 9px 0 0; }
.how__cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 30px; }
.how__hint { font-size: 14.5px; color: var(--ink-label); font-weight: 500; }

/* ===================== GALLERY ===================== */
.gallery__head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; }
.gallery__count { font-size: 14px; color: var(--ink-label); font-weight: 600; }
.masonry { columns: 240px; column-gap: 14px; margin-top: 32px; }
.masonry__item {
  break-inside: avoid; margin-bottom: 14px; border-radius: 14px; overflow: hidden;
  border: 1px solid var(--border-3); cursor: zoom-in; padding: 0; background: var(--tint-3);
  width: 100%; display: block; transition: transform .2s, box-shadow .2s;
}
.masonry__item:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }
.masonry__item img { width: 100%; height: auto; display: block; }
.masonry__item.is-hidden { display: none; }
.gallery__more { display: flex; justify-content: center; margin-top: 24px; }
.gallery__more-btn { cursor: pointer; }

/* ===================== QUOTE / LEAD FORM ===================== */
.quote { background: linear-gradient(180deg, var(--tint-2), #fff); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.quote__inner {
  display: flex; flex-wrap: wrap; gap: clamp(28px,5vw,56px);
  padding-top: clamp(48px,7vw,80px); padding-bottom: clamp(48px,7vw,80px);
}
.quote__left { flex: 1 1 300px; min-width: 280px; }
.quote__right { flex: 1 1 320px; min-width: 300px; }
.emergency { margin-top: 24px; background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 20px; }
.emergency__txt { font-size: 13.5px; color: var(--ink-muted); line-height: 1.55; }
.emergency__phone {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 14px;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; color: var(--blue-link); text-decoration: none;
}
.emergency__hours { font-size: 13px; color: var(--ink-meta); margin-top: 10px; }

.leadform {
  background: #fff; border: 1px solid var(--border); border-radius: 16px;
  padding: clamp(20px,3vw,28px); box-shadow: 0 24px 48px -28px rgba(10,37,64,.3);
}
.leadform__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.leadform__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 19px; color: var(--navy); margin: 0; }
.badge-green { font-size: 11.5px; font-weight: 700; color: var(--green); background: var(--green-disc); padding: 5px 9px; border-radius: 7px; }
.field { display: block; margin-top: 14px; font-size: 13px; font-weight: 600; color: #33485c; }
.field:first-of-type { margin-top: 18px; }
.field__hint { color: var(--ink-meta); font-weight: 500; }
.field input, .field textarea {
  display: block; width: 100%; margin-top: 7px; padding: 13px 14px;
  border: 1.5px solid var(--border-input); border-radius: 10px;
  font-size: 16px; color: var(--ink); outline: none; transition: border-color .15s, box-shadow .15s;
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(21,119,201,.14); }
.field input.invalid, .field textarea.invalid { border-color: #e0556a; }
.field__error { color: #c23a4d; font-size: 13px; margin: 12px 0 0; }
.leadform__fine { font-size: 12px; color: #8a99a8; text-align: center; margin-top: 12px; }
#form-submit { margin-top: 18px; padding: 15px; font-size: 16px; border-radius: 11px; box-shadow: 0 14px 28px -12px rgba(21,119,201,.7); }
/* Honeypot — hidden from real users */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.success {
  background: #fff; border: 1px solid #cfe6d8; border-radius: 16px; padding: 32px;
  box-shadow: 0 24px 48px -28px rgba(10,37,64,.3); text-align: center;
}
.success__ic {
  width: 54px; height: 54px; border-radius: 50%; background: var(--green-disc); color: var(--green);
  display: flex; align-items: center; justify-content: center; margin: 0 auto;
}
.success__title { font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 22px; color: var(--navy); margin: 16px 0 0; }
.success__txt { font-size: 15px; color: var(--ink-2); line-height: 1.6; margin: 10px 0 0; }
.success__txt a { color: var(--blue-link); font-weight: 700; text-decoration: none; }
.success__review {
  display: inline-flex; margin-top: 18px; color: var(--blue);
  font-size: 14px; font-weight: 700; text-decoration: none;
}
.success__review:hover { color: var(--blue-hover); text-decoration: underline; }

/* ===================== REVIEWS ===================== */
.section--center { text-align: center; }
.h2--center { margin-left: auto; margin-right: auto; }
.review-feature {
  position: relative; max-width: 600px; margin: 36px auto 0;
  background: #fff; border: 1px solid var(--border); border-radius: 18px;
  padding: clamp(30px,4vw,44px); box-shadow: var(--shadow-card);
}
.review-feature__mark {
  position: absolute; top: 6px; left: 26px;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 90px; line-height: 1;
  color: var(--chip-bg);
}
.review-feature .stars { font-size: 18px; letter-spacing: 2px; position: relative; }
.review-feature__quote {
  font-family: 'Archivo', sans-serif; font-weight: 500;
  font-size: clamp(19px,3vw,24px); line-height: 1.5; color: #25384a;
  margin: 16px 0 0; text-wrap: balance; position: relative;
}
.review-feature__by { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 12px; }
.review-feature__by .avatar { width: 44px; height: 44px; font-size: 15px; }
.review-feature__by .review__meta { text-align: left; }
.review-feature__link {
  display: inline-block; margin-top: 22px; color: var(--blue);
  font-weight: 700; font-size: 14.5px; text-decoration: none;
}
.review-feature__link:hover { color: var(--blue-hover); text-decoration: underline; }
.review-ask {
  max-width: 760px; margin: 22px auto 0; padding: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: var(--tint-3); border: 1px solid var(--border); border-radius: 16px;
  text-align: left;
}
.review-ask__copy { min-width: 0; }
.review-ask__title {
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 18px;
  color: var(--navy); margin: 0;
}
.review-ask__text { font-size: 14.5px; line-height: 1.55; color: var(--ink-muted); margin: 7px 0 0; }
.review-ask__btn { flex-shrink: 0; }
.review { background: #fff; border: 1px solid var(--border); border-radius: 16px; padding: 26px; }
.review .stars { font-size: 16px; letter-spacing: 2px; }
.review__quote { font-size: 16px; line-height: 1.6; color: #2c3e50; margin: 14px 0 0; font-weight: 500; }
.review__by { margin-top: 18px; display: flex; align-items: center; gap: 11px; }
.avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--chip-bg); color: var(--blue-link);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Archivo', sans-serif; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.review__meta { display: flex; flex-direction: column; line-height: 1.3; }
.review__name { font-weight: 700; font-size: 14.5px; color: var(--navy); }
.review__sub { font-size: 12.5px; color: var(--ink-meta); }

/* ===================== FAQ ===================== */
.faq { background: var(--tint-3); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq__inner { max-width: 840px; margin: 0 auto; padding: clamp(48px,7vw,88px) var(--pad); }
.faq__head { text-align: center; }
.faq__list { display: flex; flex-direction: column; gap: 12px; margin-top: 34px; }
.faq__item { border: 1px solid var(--border); border-radius: 14px; background: #fff; overflow: hidden; }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  text-align: left; background: none; border: none; cursor: pointer; padding: 18px 20px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 16.5px; color: var(--navy);
}
.faq__chev { flex-shrink: 0; color: var(--blue); display: inline-flex; transition: transform .2s; }
.faq__item.open .faq__chev { transform: rotate(180deg); }
.faq__a { display: none; padding: 0 20px 20px; font-size: 15px; line-height: 1.65; color: var(--ink-muted); }
.faq__a p { margin: 0; }
.faq__item.open .faq__a { display: block; }
.faq__foot { text-align: center; margin-top: 28px; font-size: 15.5px; color: var(--ink-muted); }
.faq__foot a { color: var(--blue); font-weight: 700; text-decoration: none; }

/* ===================== CONTACT ===================== */
.contact__inner {
  display: flex; flex-wrap: wrap; gap: clamp(28px,5vw,56px);
  padding-top: clamp(48px,7vw,80px); padding-bottom: clamp(48px,7vw,80px);
}
.contact__left { flex: 1 1 300px; min-width: 280px; }
.contact__right { flex: 1 1 320px; min-width: 300px; }
.contact__right[hidden] { display: none; }
.contact__rows { display: grid; gap: 14px; margin-top: 26px; max-width: 420px; }
.contact__row {
  display: flex; align-items: center; gap: 14px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 13px; padding: 16px; text-decoration: none;
}
.contact__ic { color: var(--blue-light); display: inline-flex; flex-shrink: 0; }
.contact__txt { display: flex; flex-direction: column; line-height: 1.3; }
.contact__label { font-size: 12px; color: var(--on-dark-5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact__val { font-weight: 700; font-size: 15.5px; color: #fff; }
.contact__val--lg { font-family: 'Archivo', sans-serif; font-size: 18px; }
.contact__val--muted { font-weight: 600; font-size: 14.5px; color: var(--on-dark-6); }
.contact__map-label { font-size: 12px; color: var(--on-dark-5); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 12px; }
.map { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255,255,255,.14); aspect-ratio: 4/3; }
.map iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===================== FOOTER ===================== */
.footer { background: var(--navy-deep); color: var(--on-dark-4); }
.footer__inner { padding-top: 32px; padding-bottom: 32px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; justify-content: space-between; }
.footer__logo { display: inline-flex; background: #fff; border-radius: 10px; padding: 8px 13px; }
.footer__logo img { height: 38px; width: auto; }
.footer__txt { font-size: 13px; line-height: 1.6; }
.footer__meta { display: flex; flex-direction: column; gap: 5px; text-align: right; }
.footer__copy { font-size: 12.5px; }
.footer__credit {
  color: #fff; font-size: 12.5px; font-weight: 700; text-decoration: none;
}
.footer__credit:hover { color: var(--blue-light); text-decoration: underline; }

/* ===================== STICKY MOBILE BAR ===================== */
.stickybar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  background: rgba(255,255,255,.94); backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-3); box-shadow: 0 -8px 24px -12px rgba(10,37,64,.18);
  display: none;
}
.stickybar__inner { max-width: var(--maxw); margin: 0 auto; padding: 10px 16px; display: flex; gap: 10px; align-items: center; }
.stickybar__txt { display: flex; flex-direction: column; line-height: 1.15; flex: 1; min-width: 0; }
.stickybar__title { font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 14px; color: var(--navy); }
.stickybar__sub { font-size: 12px; color: var(--ink-label); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.stickybar__call { flex-shrink: 0; font-size: 14.5px; padding: 11px 16px; gap: 7px; box-shadow: 0 10px 20px -10px rgba(21,119,201,.7); }

/* Show sticky bar only on mobile; pad body so it never covers content */
@media (max-width: 768px) {
  .stickybar { display: block; }
  body { padding-bottom: 72px; }
}

/* Hide secondary nav links on small screens */
@media (max-width: 640px) {
  .nav-hide-mobile { display: none !important; }
  .review-ask { align-items: stretch; flex-direction: column; text-align: center; }
  .review-ask__btn { justify-content: center; }
}

/* ===================== LIGHTBOX ===================== */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(7,21,33,.92); display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.lightbox[hidden] { display: none; }
.lightbox__figure { margin: 0; max-width: 92vw; display: flex; flex-direction: column; align-items: center; gap: 12px; }
.lightbox__img {
  width: auto; height: auto; max-width: 92vw; max-height: 78vh;
  object-fit: contain; border-radius: 12px; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7);
}
.lightbox__caption {
  display: flex; flex-wrap: wrap; gap: 10px 16px; justify-content: center;
  color: #fff; font-size: 14px; line-height: 1.45; text-align: center;
}
.lightbox__caption span:last-child { color: var(--on-dark-1); font-weight: 700; }
.lightbox__close, .lightbox__nav {
  position: absolute; background: rgba(255,255,255,.12); color: #fff; border: none; cursor: pointer;
  width: 48px; height: 48px; border-radius: 50%; font-size: 30px; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .15s;
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255,255,255,.25); }
.lightbox__close { top: 18px; right: 18px; font-size: 26px; }
.lightbox__nav--prev { left: 16px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 16px; top: 50%; transform: translateY(-50%); }

@media (max-width: 560px) {
  .announce__inner { padding-top: 7px; padding-bottom: 7px; }
  .header__bar { padding-top: 8px; padding-bottom: 8px; }
  .header__nav-inner { justify-content: flex-start; }
  .header__nav-inner a { padding: 9px 11px; }
  .hero__inner { padding-top: 24px; padding-bottom: 24px; }
  .hero-proof { grid-template-columns: 1fr; gap: 8px; margin-top: 18px; }
  .hero-proof li { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding: 10px 12px; }
  .hero-proof span { margin-top: 0; text-align: right; }
  .hero__media { min-width: 0; }
  .trust { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .trust__cell { padding: 13px 14px; }
  .lightbox__nav { width: 40px; height: 40px; font-size: 24px; }
  .lightbox__nav--prev { left: 8px; }
  .lightbox__nav--next { right: 8px; }
  .lightbox__img { max-height: 72vh; }
  .footer__meta { width: 100%; text-align: left; }
}

@media (max-width: 420px) {
  .header__logo img { height: 54px; max-width: 170px; }
  .header__cta { padding: 10px 13px; }
  .header__cta .ic { display: none; }
  .nav-hide-small { display: none !important; }
}

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