/* =========================================================
   Pest Control Auckland — site styles
   Plain CSS, no build step.
   Palette is taken from the shield logo: navy + orange.
   ========================================================= */

:root {
  --navy:         #16294f;   /* logo shield */
  --navy-deep:    #0f1d3a;   /* footer / topbar */
  --navy-soft:    #24406f;
  --orange:       #f0621f;   /* logo beetle — primary CTA */
  --orange-dark:  #d24d10;
  --orange-tint:  #fff2ec;

  --ink:          #16233a;
  --ink-soft:     #4d5c74;
  --ink-faint:    #7a879b;
  --line:         #dfe4ec;
  --line-soft:    #eef1f6;
  --bg:           #ffffff;
  --bg-alt:       #f5f7fa;
  --bg-sand:      #fbf8f4;

  --green:        #17794b;   /* verification ticks */
  --star:         #f5a623;

  --max:          1180px;
  --narrow:       760px;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 1px 2px rgba(22,41,79,.05), 0 12px 28px -12px rgba(22,41,79,.18);
  --shadow-lg:    0 30px 60px -24px rgba(22,41,79,.32);

  --font-head: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, 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);
  font-size: 17px;
  color: var(--ink);
  line-height: 1.68;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-head);
  line-height: 1.13;
  color: var(--navy);
  letter-spacing: -.02em;
  font-weight: 800;
}
h1 { font-size: clamp(2.1rem, 4.6vw, 3.35rem); }
h2 { font-size: clamp(1.65rem, 3.1vw, 2.35rem); margin-bottom: .55em; }
h3 { font-size: 1.22rem; margin-bottom: .4em; font-weight: 700; }
h4 { font-size: 1.02rem; margin-bottom: .4em; font-weight: 700; }
p  { margin-bottom: 1.05rem; color: var(--ink-soft); }
a  { color: var(--orange-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

strong, b { color: var(--ink); font-weight: 600; }

img { max-width: 100%; height: auto; display: block; }

::selection { background: var(--orange); color: #fff; }

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

/* skip link */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--navy); color: #fff; padding: 12px 20px; font-weight: 600;
}
.skip:focus { left: 0; }

/* ---------- prose (body copy blocks, blog) ---------- */
.prose > p { max-width: 68ch; }
.prose h2 { margin-top: 1.9em; }
.prose h3 { margin-top: 1.5em; }
.prose > ul, .prose > ol { max-width: 68ch; margin: 0 0 1.15rem 1.15rem; color: var(--ink-soft); }
.prose li { margin-bottom: .5rem; }
.prose li::marker { color: var(--orange); font-weight: 700; }
.prose a { text-decoration: underline; text-underline-offset: 2px; text-decoration-thickness: 1px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--orange);
  color: #fff !important;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .01em;
  border: 2px solid var(--orange);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .12s ease;
  text-decoration: none !important;
}
.btn:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-1px); }
.btn svg { flex: none; }
.btn--navy { background: var(--navy); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-soft); border-color: var(--navy-soft); }
.btn--ghost { background: transparent; color: var(--navy) !important; border-color: var(--navy); }
.btn--ghost:hover { background: var(--navy); color: #fff !important; }
.btn--onDark { background: transparent; color: #fff !important; border-color: rgba(255,255,255,.6); }
.btn--onDark:hover { background: #fff; color: var(--navy) !important; border-color: #fff; }
.btn--white { background: #fff; color: var(--orange-dark) !important; border-color: #fff; }
.btn--white:hover { background: var(--bg-alt); border-color: var(--bg-alt); }
.btn--lg { padding: 17px 34px; font-size: 1.08rem; }
.btn--block { display: flex; width: 100%; justify-content: center; }

.muted { color: var(--ink-faint); font-size: .89rem; }

/* ---------- eyebrow / labels ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  text-transform: uppercase; letter-spacing: .13em;
  font-size: .74rem; font-weight: 700; color: var(--orange);
  margin-bottom: 12px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: var(--orange); }
.eyebrow--plain::before { display: none; }

/* ---------- utility top bar ---------- */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,.82);
  font-size: .84rem;
}
.topbar__inner {
  max-width: var(--max); margin: 0 auto; padding: 8px 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
}
.topbar__list { display: flex; gap: 22px; list-style: none; flex-wrap: wrap; }
.topbar__list li { display: flex; align-items: center; gap: 7px; }
.topbar__list svg { flex: none; opacity: .8; }
.topbar a { color: #fff; font-weight: 600; }
@media (max-width: 860px) { .topbar { display: none; } }

/* ---------- header / nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.97);
  backdrop-filter: saturate(150%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; padding: 11px 20px; max-width: var(--max); margin: 0 auto;
}
.nav__logo { display: flex; align-items: center; gap: 11px; text-decoration: none !important; }
.nav__logo img { max-height: 50px; width: auto; }
.nav__wordmark { display: block; line-height: 1.12; }
.nav__wordmark b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: 1.09rem; color: var(--navy); letter-spacing: -.025em;
}
.nav__wordmark span {
  display: block; font-size: .705rem; color: var(--ink-faint);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
@media (max-width: 400px) { .nav__wordmark { display: none; } }

.nav__links { display: flex; align-items: center; gap: 5px; list-style: none; }
.nav__links > li > a {
  display: block; color: var(--navy); font-weight: 600; font-size: .95rem;
  padding: 9px 12px; border-radius: var(--radius-sm);
}
.nav__links > li > a:hover { color: var(--orange-dark); background: var(--bg-alt); text-decoration: none; }
.nav__links > li > a[aria-current="page"] { color: var(--orange-dark); }

/* dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after {
  content: ""; display: inline-block; margin-left: 6px; vertical-align: 2px;
  border: 4px solid transparent; border-top-color: currentColor; opacity: .55;
}
.dropdown {
  display: none; position: absolute; top: calc(100% + 10px); left: 0;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  min-width: 268px; padding: 8px; box-shadow: var(--shadow-lg);
}
.has-dropdown::after {
  content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 14px; 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: 9px 13px; font-size: .93rem; color: var(--navy);
  font-weight: 600; border-radius: var(--radius-sm);
}
.dropdown a:hover { background: var(--orange-tint); color: var(--orange-dark); text-decoration: none; }

.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__call {
  display: flex; align-items: center; gap: 10px;
  background: var(--orange); color: #fff !important;
  padding: 9px 18px 9px 15px; border-radius: 999px; font-weight: 700;
  white-space: nowrap;
}
.nav__call:hover { background: var(--orange-dark); text-decoration: none; }
.nav__call span { display: block; line-height: 1.1; }
.nav__call small { display: block; font-size: .66rem; font-weight: 600; opacity: .88; letter-spacing: .04em; text-transform: uppercase; }
.nav__call b { font-size: 1rem; letter-spacing: .01em; color: #fff; }

/* mobile nav toggle */
.nav__toggle {
  display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 8px 10px; font-size: 1.25rem; line-height: 1; cursor: pointer; color: var(--navy);
}
@media (max-width: 1040px) {
  .nav__links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: 10px 20px 18px; box-shadow: var(--shadow);
    max-height: calc(100vh - 80px); overflow-y: auto;
  }
  .nav__links.open { display: flex; }
  .nav__links > li { width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav__links > li:last-child { border-bottom: 0; }
  .nav__links > li > a { padding: 13px 4px; }
  .has-dropdown > a::after { display: none; }
  .dropdown { position: static; display: block; box-shadow: none; border: 0; padding: 0 0 8px 12px; min-width: 0; }
  .dropdown a { padding: 8px 4px; font-size: .9rem; color: var(--ink-soft); }
  .nav__toggle { display: block; }
  .nav__cta .nav__call { padding: 8px 14px; }
  .nav__cta .nav__call small { display: none; }
}
@media (max-width: 520px) {
  .nav__call b { font-size: .9rem; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.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(104deg, rgba(15,29,58,.95) 0%, rgba(15,29,58,.88) 42%, rgba(15,29,58,.62) 72%, rgba(15,29,58,.5) 100%);
}
.hero__inner {
  position: relative; z-index: 2; max-width: var(--max); margin: 0 auto;
  padding: 62px 20px 58px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: 54px; align-items: center;
}
.hero--simple .hero__inner { grid-template-columns: 1fr; padding: 54px 20px 50px; max-width: 900px; margin: 0 auto; }
.hero__eyebrow { color: #ffb894; }
.hero__eyebrow::before { background: var(--orange); }
.hero h1 { color: #fff; margin: 0 0 16px; max-width: 15ch; }
.hero--simple h1 { max-width: 20ch; }
.hero__lead { color: rgba(255,255,255,.88); font-size: 1.14rem; max-width: 52ch; }
.hero__cta { margin-top: 26px; display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.hero__points { list-style: none; margin: 24px 0 0; display: grid; gap: 9px; }
.hero__points li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255,255,255,.9); font-size: 1rem; font-weight: 500;
}
.hero__points svg { flex: none; margin-top: 5px; color: #6ee7a8; }
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; gap: 34px; padding: 46px 20px 44px; }
  .hero h1 { max-width: none; }
}

/* hero booking card */
.hero-card {
  background: #fff; border-radius: var(--radius); padding: 26px;
  box-shadow: var(--shadow-lg); color: var(--ink);
}
.hero-card h2 { font-size: 1.42rem; margin-bottom: .25em; }
.hero-card > p { font-size: .93rem; margin-bottom: 18px; }
.hero-card__foot {
  margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--line-soft);
  font-size: .84rem; color: var(--ink-faint); text-align: center;
}

/* ---------- trust strip ---------- */
.trustbar { background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.trustbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  max-width: var(--max); margin: 0 auto; padding: 0 20px;
}
.trustbar__item {
  display: flex; align-items: center; gap: 13px; padding: 20px 22px 20px 0;
  border-right: 1px solid var(--line);
}
.trustbar__item:last-child { border-right: 0; }
.trustbar__item:not(:first-child) { padding-left: 22px; }
.trustbar__icon {
  flex: none; width: 40px; height: 40px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--orange);
}
.trustbar__item b { display: block; font-family: var(--font-head); font-size: .96rem; color: var(--navy); line-height: 1.25; }
.trustbar__item span { display: block; font-size: .82rem; color: var(--ink-faint); line-height: 1.35; }
@media (max-width: 900px) {
  .trustbar__grid { grid-template-columns: 1fr 1fr; }
  .trustbar__item:nth-child(2n) { border-right: 0; }
  .trustbar__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}
@media (max-width: 520px) {
  .trustbar__grid { grid-template-columns: 1fr; }
  .trustbar__item { border-right: 0; border-bottom: 1px solid var(--line); padding-left: 0 !important; }
  .trustbar__item:last-child { border-bottom: 0; }
}

/* ---------- sections ---------- */
.section { padding: 68px 0; }
.section--tight { padding: 46px 0; }
.section--alt { background: var(--bg-alt); }
.section--sand { background: var(--bg-sand); }
.section--navy { background: var(--navy); color: rgba(255,255,255,.85); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }
.section--navy p { color: rgba(255,255,255,.82); }
.section--navy .eyebrow { color: #ffb894; }
.section--navy .eyebrow::before { background: var(--orange); }
.section__lead { max-width: 66ch; font-size: 1.08rem; }
.section__head { max-width: 62ch; margin-bottom: 34px; }
.center { text-align: center; }
.center .section__lead, .center .section__head { margin-left: auto; margin-right: auto; }

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

.media-frame { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.media-frame img { width: 100%; }

/* ---------- grids & cards ---------- */
.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: 960px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.card p:last-child { margin-bottom: 0; }
.card__icon {
  width: 44px; height: 44px; border-radius: 11px; margin-bottom: 16px;
  background: var(--orange-tint); color: var(--orange-dark);
  display: grid; place-items: center;
}
.section--navy .card { background: rgba(255,255,255,.055); border-color: rgba(255,255,255,.14); }
.section--navy .card p { color: rgba(255,255,255,.78); }
.section--navy .card__icon { background: rgba(240,98,31,.18); color: #ffb894; }

/* service card with link + price */
.svc-card { display: flex; flex-direction: column; }
.svc-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.svc-card ul { list-style: none; margin: 14px 0 0; display: grid; gap: 7px; }
.svc-card ul li {
  position: relative; padding-left: 20px; font-size: .93rem; color: var(--ink-soft);
}
.svc-card ul li::before {
  content: ""; position: absolute; left: 0; top: .58em;
  width: 7px; height: 7px; border-radius: 50%; background: var(--orange);
}
.svc-card__foot {
  margin-top: auto; padding-top: 18px; display: flex; align-items: baseline;
  justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
.svc-card__price { font-family: var(--font-head); font-weight: 800; color: var(--navy); font-size: .95rem; }
.svc-card__price span { display: block; font-family: var(--font-body); font-weight: 500; font-size: .76rem; color: var(--ink-faint); letter-spacing: .03em; text-transform: uppercase; }
.svc-card__link { font-weight: 700; font-size: .93rem; white-space: nowrap; }

/* ---------- quick answer / key facts ---------- */
.answer {
  background: var(--orange-tint);
  border: 1px solid #f8d5c4;
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  padding: 24px 26px;
  margin: 0 0 32px;
}
.answer h2, .answer h3 {
  font-size: .78rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--orange-dark); margin-bottom: 10px; font-family: var(--font-head);
}
.answer p { color: var(--ink); font-size: 1.06rem; margin-bottom: 0; }
.answer p + p { margin-top: .8rem; }
.answer ul { margin: 12px 0 0 18px; color: var(--ink); }
.answer ul li { margin-bottom: 5px; }

.keyfacts { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.keyfacts dl { display: grid; grid-template-columns: max-content 1fr; }
.keyfacts dt, .keyfacts dd {
  padding: 13px 20px; border-bottom: 1px solid var(--line-soft); font-size: .95rem;
}
.keyfacts dt { font-weight: 700; color: var(--navy); background: var(--bg-alt); white-space: nowrap; }
.keyfacts dd { color: var(--ink-soft); }
.keyfacts dl > :nth-last-child(-n+2) { border-bottom: 0; }
@media (max-width: 560px) {
  .keyfacts dl { grid-template-columns: 1fr; }
  .keyfacts dt { border-bottom: 0; }
  .keyfacts dd { padding-top: 4px; }
}

/* ---------- checklist ---------- */
.checklist { list-style: none; display: grid; gap: 11px; margin: 0; }
.checklist li { position: relative; padding-left: 32px; color: var(--ink-soft); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: .3em;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat;
}
.checklist--x li::before {
  background: var(--ink-faint) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/11px no-repeat;
}
.section--navy .checklist li { color: rgba(255,255,255,.82); }

/* ---------- process steps ---------- */
.steps { list-style: none; counter-reset: step; display: grid; gap: 0; margin: 0; }
.steps li {
  counter-increment: step; position: relative;
  padding: 0 0 30px 62px;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--navy); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: .88rem;
  display: grid; place-items: center; z-index: 1;
}
.steps li::after {
  content: ""; position: absolute; left: 19px; top: 44px; bottom: -4px;
  width: 2px; background: var(--line);
}
.steps li:last-child { padding-bottom: 0; }
.steps li:last-child::after { display: none; }
.steps h3 { margin-bottom: .25em; padding-top: 7px; }
.steps p { margin-bottom: 0; }
.section--navy .steps li::before { background: var(--orange); }
.section--navy .steps li::after { background: rgba(255,255,255,.2); }

/* horizontal variant */
.steps--row { grid-template-columns: repeat(4, 1fr); gap: 26px; }
.steps--row li { padding: 0; }
.steps--row li::before { position: static; margin-bottom: 14px; }
.steps--row li::after { left: 46px; right: -26px; top: 19px; bottom: auto; width: auto; height: 2px; }
@media (max-width: 900px) {
  .steps--row { grid-template-columns: 1fr 1fr; }
  .steps--row li::after { display: none; }
}
@media (max-width: 560px) { .steps--row { grid-template-columns: 1fr; } }

/* ---------- link lists ---------- */
.linklist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; list-style: none; margin: 0; }
@media (max-width: 860px) { .linklist { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .linklist { grid-template-columns: 1fr; } }
.linklist a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 13px 16px; border: 1px solid var(--line);
  border-radius: var(--radius-sm); background: #fff; color: var(--navy);
  font-weight: 600; font-size: .95rem;
}
.linklist a::after { content: "→"; color: var(--ink-faint); font-weight: 400; }
.linklist a:hover { border-color: var(--orange); color: var(--orange-dark); text-decoration: none; background: var(--orange-tint); }
.linklist a:hover::after { color: var(--orange); }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; }
.pills a {
  display: inline-block; padding: 7px 15px; border-radius: 999px;
  border: 1px solid var(--line); background: #fff;
  font-size: .89rem; font-weight: 600; color: var(--navy);
}
.pills a:hover { border-color: var(--orange); background: var(--orange-tint); color: var(--orange-dark); text-decoration: none; }
.section--navy .pills a { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: #fff; }
.section--navy .pills a:hover { background: var(--orange); border-color: var(--orange); }

/* ---------- tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
table { width: 100%; border-collapse: collapse; }
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--line-soft); font-size: .95rem; }
th { background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .84rem; text-transform: uppercase; letter-spacing: .06em; }
td { color: var(--ink-soft); }
td:first-child { color: var(--ink); font-weight: 600; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:nth-child(even) { background: var(--bg-alt); }
.table-note { font-size: .87rem; color: var(--ink-faint); margin-top: 12px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2px 22px; transition: border-color .15s ease;
}
.faq details[open] { border-color: var(--orange); }
.faq summary {
  cursor: pointer; font-weight: 700; font-family: var(--font-head);
  font-size: 1.05rem; color: var(--navy); padding: 17px 34px 17px 0;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 2px; top: 50%; width: 13px; height: 13px;
  margin-top: -7px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f0621f' stroke-width='3.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(135deg); }
.faq details > div, .faq details > p { padding-bottom: 18px; }
.faq details p:last-child { margin-bottom: 0; }
.faq details a { text-decoration: underline; text-underline-offset: 2px; }

/* ---------- credentials / compliance block ---------- */
.creds { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 800px) { .creds { grid-template-columns: 1fr; } }
.cred {
  display: flex; gap: 14px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 22px;
}
.cred svg { flex: none; color: var(--green); margin-top: 3px; }
.cred b { display: block; font-family: var(--font-head); color: var(--navy); margin-bottom: 3px; }
.cred p { font-size: .92rem; margin-bottom: 0; }

/* ---------- callout / aside ---------- */
.callout {
  border-left: 4px solid var(--navy); background: var(--bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 20px 24px; margin: 26px 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout b { color: var(--navy); }
.callout--warn { border-left-color: var(--orange); background: var(--orange-tint); }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--orange);
  background-image: linear-gradient(120deg, var(--orange) 0%, #e2530f 100%);
  color: #fff; padding: 60px 20px;
}
.cta-band__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: .3em; max-width: 20ch; }
.cta-band p { color: rgba(255,255,255,.92); margin-bottom: 0; max-width: 48ch; }
.cta-band__actions { display: flex; gap: 13px; flex-wrap: wrap; align-items: center; }
.cta-band .btn--white { color: var(--orange-dark) !important; }

/* ---------- forms ---------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow);
}
.hero-card .form-row, .form-card .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 620px) { .form-row { grid-template-columns: 1fr !important; } }
.field { margin-bottom: 14px; }
.field label { display: block; font-weight: 600; font-size: .87rem; margin-bottom: 5px; color: var(--navy); }
.field input, .field textarea, .field select {
  width: 100%; padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  font-family: var(--font-body); font-size: 1rem; color: var(--ink); background: #fff;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(240,98,31,.14);
}
.field textarea { min-height: 120px; resize: vertical; }
.field-hint { font-size: .8rem; color: var(--ink-faint); margin-top: 5px; }

/* ---------- 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: 8px; align-items: center;
}
.crumbs li { display: flex; align-items: center; gap: 8px; color: var(--ink-faint); }
.crumbs li:not(:last-child)::after { content: "/"; color: var(--line); }
.crumbs a { color: var(--ink-soft); font-weight: 500; }
.crumbs a:hover { color: var(--orange-dark); }
.crumbs [aria-current] { color: var(--navy); font-weight: 600; }

/* ---------- blog ---------- */
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 980px) { .post-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .post-grid { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { border-color: var(--orange); transform: translateY(-2px); box-shadow: var(--shadow); }
.post-card__img { aspect-ratio: 16 / 9; overflow: hidden; background: var(--bg-alt); }
.post-card__img img { width: 100%; height: 100%; object-fit: cover; }
.post-card__body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.post-card__tag {
  font-size: .72rem; text-transform: uppercase; letter-spacing: .1em;
  font-weight: 700; color: var(--orange-dark); margin-bottom: 9px; font-family: var(--font-head);
}
.post-card h3 { font-size: 1.13rem; margin-bottom: .45em; }
.post-card h3 a { color: var(--navy); }
.post-card h3 a:hover { color: var(--orange-dark); text-decoration: none; }
.post-card p { font-size: .93rem; margin-bottom: 0; }
.post-card__meta {
  margin-top: auto; padding-top: 16px; font-size: .82rem; color: var(--ink-faint);
  display: flex; gap: 12px; flex-wrap: wrap;
}

.post-hero { background: var(--navy); color: #fff; padding: 50px 20px 46px; }
.post-hero__inner { max-width: 820px; margin: 0 auto; }
.post-hero h1 { color: #fff; font-size: clamp(1.9rem, 4vw, 2.85rem); margin-bottom: 16px; }
.post-hero__meta {
  display: flex; gap: 18px; flex-wrap: wrap; align-items: center;
  color: rgba(255,255,255,.72); font-size: .89rem; margin-top: 20px;
  padding-top: 18px; border-top: 1px solid rgba(255,255,255,.16);
}
.post-hero__standfirst { color: rgba(255,255,255,.88); font-size: 1.13rem; margin-bottom: 0; }

.post-body { padding: 48px 0 60px; }
.post-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 52px; align-items: start; }
@media (max-width: 1000px) { .post-layout { grid-template-columns: 1fr; gap: 36px; } }
.post-aside { position: sticky; top: 92px; display: grid; gap: 20px; }
@media (max-width: 1000px) { .post-aside { position: static; } }
.aside-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 22px; background: #fff; }
.aside-card--navy { background: var(--navy); border-color: var(--navy); }
.aside-card--navy h3, .aside-card--navy p { color: #fff; }
.aside-card--navy p { color: rgba(255,255,255,.82); }
.aside-card h3 { font-size: 1.02rem; }
.aside-card ul { list-style: none; display: grid; gap: 9px; margin: 12px 0 0; font-size: .92rem; }
.aside-card ul a { color: var(--navy); font-weight: 600; }
.aside-card ul a:hover { color: var(--orange-dark); }

.toc { background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 26px; margin-bottom: 32px; }
.toc h2 { font-size: .78rem !important; text-transform: uppercase; letter-spacing: .12em; color: var(--ink-faint); margin: 0 0 12px !important; }
.toc ol { margin: 0 0 0 18px; display: grid; gap: 6px; }
.toc a { color: var(--navy); font-weight: 600; font-size: .95rem; text-decoration: none; }
.toc a:hover { color: var(--orange-dark); text-decoration: underline; }

.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.post-tags span {
  font-size: .8rem; background: var(--bg-alt); border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 13px; color: var(--ink-soft);
}

/* review / reference note */
.byline {
  display: flex; align-items: center; gap: 12px; margin-top: 34px;
  padding: 18px 22px; background: var(--bg-alt); border-radius: var(--radius); border: 1px solid var(--line);
}
.byline__mark {
  flex: none; width: 42px; height: 42px; border-radius: 10px; background: var(--navy);
  display: grid; place-items: center;
}
.byline p { font-size: .89rem; margin-bottom: 0; }
.byline b { color: var(--navy); }

.sources { font-size: .9rem; }
.sources ul { list-style: none; display: grid; gap: 8px; margin: 12px 0 0; }
.sources li { padding-left: 18px; position: relative; color: var(--ink-soft); }
.sources li::before { content: "↗"; position: absolute; left: 0; color: var(--orange); }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.72); padding: 58px 0 26px; font-size: .94rem; }
.site-footer h4 {
  color: #fff; margin-bottom: 15px; font-family: var(--font-head);
  font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 700;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.1fr; gap: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer p { color: rgba(255,255,255,.68); font-size: .93rem; }
.site-footer ul { list-style: none; display: grid; gap: 9px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: #fff; }
.footer-brand { display: flex; align-items: center; gap: 11px; margin-bottom: 16px; }
.footer-brand img { max-height: 46px; width: auto; background: #fff; border-radius: 8px; padding: 3px; }
.footer-brand b { font-family: var(--font-head); color: #fff; font-size: 1.08rem; display: block; letter-spacing: -.02em; }
.footer-brand span { font-size: .72rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .1em; }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact svg { flex: none; margin-top: 5px; opacity: .6; }
.footer-disclaimer { font-size: .82rem; color: rgba(255,255,255,.45); margin-top: 14px; line-height: 1.55; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 42px; padding-top: 20px;
  font-size: .84rem; color: rgba(255,255,255,.45);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-bottom ul { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(255,255,255,.55); }

/* areas list in footer */
.footer-areas { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 26px; }
.footer-areas h4 { margin-bottom: 12px; }
.footer-areas p { font-size: .87rem; color: rgba(255,255,255,.55); line-height: 1.9; margin-bottom: 0; }
.footer-areas a { color: rgba(255,255,255,.62); }

/* ---------- 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 calc(9px + env(safe-area-inset-bottom));
  gap: 9px; box-shadow: 0 -6px 22px rgba(22,41,79,.1);
}
.callbar a { flex: 1; justify-content: center; padding: 13px 10px; font-size: .96rem; }
@media (max-width: 760px) {
  .callbar { display: flex; }
  body { padding-bottom: 72px; }
}

/* ---------- misc ---------- */
.hr { height: 1px; background: var(--line); border: 0; margin: 40px 0; }
.stack-sm > * + * { margin-top: 10px; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }

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

@media print {
  .site-header, .topbar, .callbar, .cta-band, .site-footer, .hero__media { display: none !important; }
}

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