/* ============================================================
   OzLedger — v2 restyle
   Palette + fonts cloned from Brand_Assets_v2 (Astra/Elementor
   computed CSS in Website_HomePage_v2_Style.txt) to match
   Website_HomePage_v2.png. Client hard rule: never a black/dark
   background — dark text on white or very light grey only.
   Tokens exposed as CSS variables for easy tuning.
   ============================================================ */
:root {
  --green:    #3CB24D;   /* positive / ticks / links-positive / logo "Oz" */
  --green-d:  #2f9b40;
  --green-dk: #005946;   /* deep green for emphasis text */
  --orange:   #FC653C;   /* PRIMARY CTA + service accents (per v2 png) */
  --orange-d: #e5512b;
  --blue:     #046bd2;   /* links */
  --blue-d:   #045cb4;
  --ink:      #1e293b;   /* headings (slate) */
  --btn:      #FC653C;   /* primary buttons — orange, never black */
  --body:     #475569;   /* paragraph text */
  --muted:    #666666;   /* labels / subtext — WCAG AA 4.5:1+ on white and --bg-alt */
  --bg:       #ffffff;
  --bg-alt:   #F0F5FA;   /* surface / alternating sections (Astra color-5) */
  --border:   #D1D5DB;
  --star:     #fb8e28;
  --radius:   12px;
  --shadow:   0 1px 3px rgba(0,0,0,.06), 0 8px 24px rgba(0,0,0,.05);
  --max:      1200px;
  --font:     'Roboto', system-ui, -apple-system, 'Segoe UI', Helvetica, sans-serif;
  --display:  'Roboto Slab', Georgia, 'Times New Roman', serif;
}

/* Self-hosted variable fonts (latin subset) — single file covers the full weight range, no Google Fonts request. */
@font-face {
  font-family: 'Roboto';
  src: url('fonts/roboto-latin.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto Slab';
  src: url('fonts/roboto-slab-latin.woff2') format('woff2');
  font-weight: 400 800;
  font-style: normal;
  font-display: swap;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4 { color: var(--ink); line-height: 1.2; font-weight: 700; font-family: var(--display); letter-spacing: -.01em; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.section-head p { margin-top: 12px; color: var(--muted); }

/* ---------- homepage section spacing (half gap; scoped so other pages keep 80px) ---------- */
body.home section { padding: 40px 0; }
body.home .hero { padding: 36px 0 32px; }
body.home .stats { padding-top: 0; }
body.home .footer { padding-top: 28px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; line-height: 1;
  font-weight: 600; font-size: .95rem;
  padding: 12px 22px; border-radius: 10px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .12s ease, background .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark   { background: var(--btn); color: #fff; }
.btn-dark:hover { background: var(--orange-d); }
.btn-outline{ background: #fff; color: var(--ink); border-color: var(--border); }
.btn-outline:hover { border-color: var(--ink); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-d); }
.icon { width: 16px; height: 16px; vertical-align: -3px; flex-shrink: 0; }
.btn-block  { width: 100%; justify-content: center; }

/* ---------- header / nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { font-size: 1.5rem; font-weight: 800; letter-spacing: -.02em; }
.logo img { height: 42px; width: auto; display: block; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 500; font-size: .95rem; }
.nav-links a:hover { color: var(--green); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn { padding: 9px 16px; font-size: .9rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; font-size: 1.5rem; color: var(--ink); }

/* ---------- hero ---------- */
.hero { padding: 72px 0 64px; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.hero h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.hero-sub { font-family: var(--display); font-weight: 700; color: var(--green-dk);
  font-size: clamp(1.3rem, 2.6vw, 1.9rem); margin-top: 8px; }
.hero .lead { margin: 18px 0 24px; font-size: 1.15rem; max-width: 520px; color: var(--body); }
.rating { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 22px; font-size: 1.15rem; }
.rating .stars { color: var(--star); letter-spacing: 2px; }
.rating a { color: var(--green); font-weight: 600; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.trusted { margin-top: 22px; font-size: .85rem; color: var(--muted); }
.hero-art {
  background: linear-gradient(135deg, #eaf4ec, #F0F5FA);
  border: 1px solid var(--border); border-radius: 20px;
  min-height: 360px; overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; min-height: 360px; object-fit: cover; border-radius: 20px; display: block; }

/* ---------- stats ---------- */
.stats { padding-top: 0; background: var(--bg-alt); }
.stats-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 36px;
}
.stat { text-align: center; }
.stat .num { font-size: 2.6rem; font-weight: 800; color: var(--ink); }
.stat .num .plus { color: var(--green); }
.stat .label { color: var(--muted); font-size: .95rem; margin-top: 4px; }

/* ---------- services ---------- */
.services { background: #fff; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-ico {
  display: grid; place-items: center; width: 48px; height: 48px; margin-bottom: 16px;
  border-radius: 50%; background: rgba(252,101,60,.12); font-size: 1.4rem;
  color: #c43d1f; /* icon stroke (currentColor): 5.2:1 on the orange-tint circle */
}
.card-ico svg { width: 26px; height: 26px; }
.card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.card p { font-size: .95rem; color: var(--body); margin-bottom: 20px; flex: 1; }
.card-link { margin-top: auto; color: #c43d1f; font-weight: 600; font-size: .92rem; } /* darker than --orange: 5.2:1 on white, meets WCAG AA */
.card:hover .card-link { color: #9c3216; } /* 7.3:1 on white */
.services-cta { text-align: center; margin-top: 40px; }

/* ---------- standalone services page ---------- */
.service-grid { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
.service-card {
  flex: 0 1 calc(25% - 15px);
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 24px; scroll-margin-top: 96px;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 8px; }
.service-card p { font-size: .9rem; color: var(--body); }
.process { background: var(--bg-alt); }
.steps { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; margin-top: 40px; }
.step { text-align: center; }
.step-num {
  display: grid; place-items: center; width: 36px; height: 36px; margin: 0 auto 14px;
  border-radius: 50%; background: var(--orange); color: #fff; font-weight: 700; font-size: .95rem;
}
.step h3 { font-size: 1rem; margin-bottom: 6px; }
.step p { font-size: .88rem; color: var(--body); }

/* ---------- reviews ---------- */
.reviews { background: #fff; }
.awards { display: flex; justify-content: center; gap: 28px; margin: 0 0 36px; flex-wrap: wrap; }
.awards img { height: 92px; width: auto; }
.review-note { text-align: center; color: var(--muted); margin-bottom: 32px; font-size: .95rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.review {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 22px; box-shadow: var(--shadow);
}
.review-head { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem; flex-shrink: 0;
  object-fit: cover;
}
.review-head .meta { flex: 1; min-width: 0; }
.review-head .name { font-weight: 600; color: var(--ink); font-size: .95rem; text-decoration: none; }
.review-head .when { font-size: .8rem; color: var(--muted); }
.review-head .g { width: 18px; height: 18px; }
.review .stars { color: var(--star); letter-spacing: 1px; font-size: .9rem; margin-bottom: 8px; }
.review p { font-size: .9rem; color: var(--body); }
.review p.clamped {
  display: -webkit-box; -webkit-box-orient: vertical; -webkit-line-clamp: 4; overflow: hidden;
}
.review-more {
  background: none; border: none; padding: 4px 0 0; margin: 0;
  font-size: .9rem; font-weight: 600; color: var(--blue); cursor: pointer;
}
.review-more:hover { color: var(--blue-d); text-decoration: underline; }
.reviews-cta { text-align: center; margin-top: 36px; }

/* ---------- team ---------- */
.eyebrow {
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .8rem; font-weight: 700; color: var(--green); margin-bottom: 10px;
}
.team-section { background: var(--bg-alt); }
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  max-width: 960px; margin: 0 auto;
}
.team-card {
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px 24px; box-shadow: var(--shadow); text-align: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 4px 12px rgba(0,0,0,.08), 0 16px 32px rgba(0,0,0,.06); }
.team-photo {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 18px; border: 3px solid var(--bg-alt);
}
.team-card .name { font-family: var(--display); font-weight: 700; color: var(--ink); font-size: 1.15rem; }
.team-card .role { color: var(--muted); font-size: .92rem; margin-top: 4px; }
.team-linkedin {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; margin-top: 16px; border-radius: 8px;
  color: var(--blue); border: 1px solid var(--border);
  transition: background .15s ease, color .15s ease, border-color .15s ease;
}
.team-linkedin:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.team-linkedin svg { width: 18px; height: 18px; }
@media (max-width: 760px) { .team-grid { grid-template-columns: 1fr; max-width: 360px; } }

/* ---------- hero award badges ---------- */
.hero-awards { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.hero-awards img { height: 60px; width: auto; }
.hero-awards-cap { font-size: .78rem; line-height: 1.4; color: var(--muted); font-weight: 500; }

/* ---------- why ozledger (points + reviews) ---------- */
.why { background: var(--bg-alt); }
.why-head { margin-bottom: 32px; }
.why-head .eyebrow {
  display: inline-block; font-size: .82rem; font-weight: 700; letter-spacing: .02em;
  text-transform: none; color: var(--green); margin-bottom: 10px;
}
.why-head h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: stretch; }
.why-point { display: flex; gap: 14px; margin-bottom: 24px; }
.why-point:last-child { margin-bottom: 0; }
.why-ico {
  flex-shrink: 0; width: 26px; height: 26px; margin-top: 2px; border-radius: 50%;
  background: rgba(60,178,77,.12); color: var(--green);
  display: grid; place-items: center; font-weight: 700; font-size: .82rem;
}
.why-point h3 { font-size: 1.08rem; margin-bottom: 4px; }
.why-point p { font-size: .92rem; color: var(--body); }
.why-reviews { display: flex; flex-direction: column; }
.why-reviews-scroll { flex: 1; min-height: 0; overflow-y: hidden; padding-right: 0; }
.why-reviews-scroll .reviews-grid { display: flex; flex-direction: column; height: 100%; gap: 12px; }
.why-reviews-scroll .review { flex: 1; min-height: 0; overflow: hidden; }
.why-reviews-scroll .review p.clamped { -webkit-line-clamp: 3; }

@media (max-width: 820px) {
  .why-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--bg-alt); }
/* one continuous shaded bar spanning the four FAQ category tabs; active = orange */
.faq-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 4px;
  max-width: 800px; margin: 0 auto 28px; padding: 4px;
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
}
.faq-tab {
  flex: 1 1 0; min-width: 120px; text-align: center; border: 0; background: transparent;
  color: var(--body); padding: 10px 16px; border-radius: 8px; cursor: pointer;
  font-size: .9rem; font-weight: 600;
}
.faq-tab:hover { color: var(--ink); }
.faq-tab.active { background: var(--orange); color: #fff; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  padding: 20px 0; font-size: 1rem; font-weight: 600; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-q .chev { transition: transform .2s ease; color: var(--green); flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.faq-a p { padding: 0 0 20px; color: var(--body); font-size: .95rem; }
.faq-cta { text-align: center; margin-top: 36px; }

/* ---------- contact page ---------- */
.page-hero { padding: 56px 0 8px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding-top: 32px; align-items: start; }
.office { margin-bottom: 28px; }
.office h3 { font-size: 1.15rem; margin-bottom: 10px; }
.office p { display: flex; align-items: center; gap: 10px; font-size: .95rem; margin-bottom: 6px; }
.office .ico { color: var(--green); width: 18px; height: 18px; flex-shrink: 0; }
.office .ico svg { width: 18px; height: 18px; display: block; }
/* Google Maps embed on the contact page */
.map-embed { margin-top: 24px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border); }
.map-embed iframe { display: block; width: 100%; height: 400px; border: 0; }
/* standalone onboard page */
.onboard-standalone { max-width: 640px; margin: 0 auto; padding: 8px 0 64px; }
.onboard-standalone .form-actions { margin-top: 8px; }
.form-field { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: block; font-size: .85rem; font-weight: 600; color: var(--ink); margin-bottom: 6px; }
input, textarea, select {
  width: 100%; font-family: inherit; font-size: .95rem;
  padding: 11px 13px; border: 1px solid var(--border); border-radius: 8px;
  background: #fff; color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 2px solid var(--green); border-color: var(--green); }
textarea { resize: vertical; min-height: 120px; }
.char-count { font-size: .8rem; color: var(--muted); margin-top: 4px; }
.form-actions { display: flex; justify-content: flex-end; gap: 12px; }

/* onboard modal — individual / business toggle */
.checkbox-field { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.checkbox-field[hidden] { display: none; }
.checkbox-field input[type="checkbox"] { width: 16px; height: 16px; flex-shrink: 0; accent-color: var(--green); cursor: pointer; }
.checkbox-field label { display: inline; font-weight: 400; font-size: .9rem; color: var(--body); margin-bottom: 0; cursor: pointer; }

.entity-toggle { display: flex; gap: 8px; }
.entity-tab {
  flex: 1; border: 1px solid var(--border); background: #fff; color: var(--body);
  padding: 10px 14px; border-radius: 8px; font-size: .9rem; font-weight: 600;
  cursor: pointer; transition: background .15s, color .15s, border-color .15s;
}
.entity-tab.active { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ---------- legal pages (Privacy / Terms) — docs layout ---------- */
.legal { padding-top: 36px; }
/* TOC left, content right; h1 lives in the content column so it shares the
   body's left margin (was previously offset by the old centred .legal-wrap). */
.legal-shell {
  display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 56px;
  align-items: start;
}
.legal-main { max-width: 780px; }
.legal-head h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 16px; }

/* contents sidebar */
.toc {
  position: sticky; top: 96px; align-self: start;
  max-height: calc(100vh - 120px); overflow-y: auto; font-family: var(--font);
}
.toc-search { position: relative; margin-bottom: 18px; }
.toc-search input {
  width: 100%; font-size: .9rem; padding: 9px 12px 9px 34px;
  border: 1px solid var(--border); border-radius: 8px; background: #fff; color: var(--ink);
}
.toc-search input:focus { outline: 2px solid var(--green); border-color: var(--green); }
.toc-search .ico {
  position: absolute; left: 11px; top: 50%; transform: translateY(-50%);
  color: var(--muted); font-size: .9rem; pointer-events: none;
}
.toc-search .ico svg { width: 15px; height: 15px; display: block; }
.toc-label {
  font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 10px;
}
.toc-nav { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--border); }
.toc-nav a {
  display: block; font-size: .87rem; line-height: 1.4; color: var(--body);
  padding: 6px 0 6px 16px; margin-left: -1px; border-left: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.toc-nav a:hover { color: var(--ink); }
.toc-nav a.active { color: var(--green-d); border-left-color: var(--green); font-weight: 600; }
.toc-nav a.hidden { display: none; }
.toc-empty { font-size: .82rem; color: var(--muted); padding: 6px 0 6px 16px; }

.legal .updated {
  display: inline-block; font-size: .82rem; font-weight: 600; color: var(--green-dk);
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: 999px;
  padding: 6px 14px; margin-bottom: 28px;
}
.legal .intro { font-size: 1.05rem; color: var(--body); margin-bottom: 8px; }
.legal h2 {
  font-size: 1.3rem; margin: 36px 0 12px; padding-top: 28px;
  border-top: 1px solid var(--border); scroll-margin-top: 96px;
}
.legal h2:first-of-type { border-top: 0; padding-top: 0; }
.legal p { margin-bottom: 14px; }
.legal ul { margin: 0 0 16px 0; padding-left: 0; list-style: none; }
.legal li { position: relative; padding-left: 26px; margin-bottom: 10px; font-size: .97rem; }
.legal li::before {
  content: ""; position: absolute; left: 6px; top: .6em;
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}
.legal a { color: var(--blue); font-weight: 500; }
.legal a:hover { color: var(--blue-d); text-decoration: underline; }

@media (max-width: 860px) {
  .legal-shell, .post-shell { grid-template-columns: 1fr; gap: 28px; }
  .toc { position: static; max-height: none; }
  .toc-nav { max-height: 260px; overflow-y: auto; }
}

/* ---------- scroll-to-top button (all pages) ---------- */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 46px; height: 46px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: var(--green); color: #fff; border: none;
  box-shadow: 0 4px 14px rgba(0,0,0,.18);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, background .2s ease, visibility .2s;
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--green-d); transform: translateY(-2px); }
.to-top svg { width: 20px; height: 20px; }

/* ---------- modal ---------- */
.modal-backdrop {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: none; align-items: flex-start; justify-content: center;
  padding: 40px 20px; z-index: 100; overflow-y: auto;
}
.modal-backdrop.open { display: flex; }
.modal {
  background: #fff; border-radius: 14px; width: 100%; max-width: 560px;
  padding: 28px; box-shadow: 0 20px 60px rgba(0,0,0,.3);
}
.modal-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.modal-head h3 { font-size: 1.3rem; }
.modal-close { background: none; border: 0; font-size: 1.5rem; cursor: pointer; color: var(--muted); line-height: 1; }
/* booking modal: wide, holds the Setmore booking iframe */
.modal-booking { max-width: 940px; padding: 0; overflow: hidden; }
.modal-booking .modal-head { padding: 14px 20px; margin-bottom: 0; border-bottom: 1px solid var(--border); }
.booking-frame { display: block; width: 100%; height: 78vh; border: 0; }

/* ---------- footer ---------- */
.footer { background: #fff; border-top: 1px solid var(--border); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; }
.footer h4 { font-size: 1.3rem; margin-bottom: 16px; }
.footer .logo { margin-bottom: 12px; }
.footer p, .footer li { font-size: 1.17rem; color: var(--muted); }
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; }
.footer li a:hover { color: var(--green); }
.socials { display: flex; align-items: center; gap: 14px; margin-top: 16px; }
.socials a { color: var(--muted); font-size: 1.3rem; display: inline-flex; }
.socials a:hover { color: var(--green); }
.socials a svg { width: 20px; height: 20px; display: block; }
/* footer "Contact Us" icons green, matching the contact-page office icons */
.footer li .icon { color: var(--green); }
.assoc { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.assoc img { height: 60px; width: auto; object-fit: contain; }
.footer-bottom {
  border-top: 1px solid var(--border); margin-top: 40px; padding: 22px 0;
  text-align: center; font-size: 1.07rem; color: var(--muted);
}
.footer-bottom .disclaimer { margin-top: 6px; font-size: 1.01rem; }
/* discreet STREaMLiNE build credit — matches muted footer text, green link per site convention */
.footer-bottom .built-by { margin-top: 8px; font-size: 1.01rem; }
.footer-bottom .built-by a { color: var(--green-d); font-weight: 600; }
.footer-bottom .built-by a:hover { color: var(--green-dk); text-decoration: underline; }
/* Laptop/monitor: copyright + disclaimer collapse onto one line (dot separator).
   Below 1024px (tablet/mobile) they stay stacked as authored. built-by keeps its own line.
   Two copyright selectors cover both footer-bottom markups on this site: some pages wrap
   the lines in an inner .container (index, form), others don't (contact, blog, etc). */
@media (min-width: 1024px) {
  .footer-bottom > div:first-child:not(.container),
  .footer-bottom > .container > div:first-child,
  .footer-bottom .disclaimer { display: inline; }
  .footer-bottom .disclaimer { margin-top: 0; }
  .footer-bottom .disclaimer::before { content: " · "; }
}

/* ---------- cookie banner ---------- */
.cookie {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 14px 24px; display: flex; align-items: center; justify-content: center; gap: 20px;
  font-size: .88rem; color: var(--body);
}
.cookie.hidden { display: none; }

/* ---------- scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- blog overview ---------- */
.blog-controls { display: flex; gap: 16px; margin: 0 0 36px; flex-wrap: wrap; }
.blog-search { position: relative; flex: 1; min-width: 240px; }
.blog-search input {
  width: 100%; font-family: inherit; font-size: .95rem; padding: 12px 14px 12px 40px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--ink);
}
.blog-search input:focus { outline: 2px solid var(--green); border-color: var(--green); }
.blog-search .ico { position: absolute; left: 13px; top: 50%; transform: translateY(-50%); color: var(--muted); pointer-events: none; }
.blog-search .ico svg { width: 16px; height: 16px; display: block; }
.blog-filter select {
  font-family: inherit; min-width: 170px; font-size: .95rem; padding: 12px 14px;
  border: 1px solid var(--border); border-radius: 10px; background: #fff; color: var(--ink); cursor: pointer;
}
.blog-filter select:focus { outline: 2px solid var(--green); border-color: var(--green); }

.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: stretch; }
.blog-card {
  display: flex; flex-direction: column; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card-img {
  height: 180px; display: grid; place-items: center; color: var(--green-dk);
  background: linear-gradient(135deg, #eaf4ec, #F0F5FA);
}
.blog-card-img svg { width: 54px; height: 54px; opacity: .85; }
.blog-card-body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card h3 { font-size: 1.2rem; line-height: 1.3; margin-bottom: 8px; }
.blog-card h3 a:hover { color: var(--green-d); }
.blog-card .sub { font-size: .92rem; color: var(--body); flex: 1; }
.blog-card .tag { margin-top: 16px; }
.blog-empty { display: none; text-align: center; color: var(--muted); padding: 48px 0; }

/* tag chip (overview + posts) */
.tag {
  display: inline-flex; align-items: center; align-self: flex-start;
  font-size: .78rem; font-weight: 600; color: var(--green-dk);
  background: rgba(60,178,77,.12); border-radius: 999px; padding: 4px 12px;
}

/* ---------- blog post ---------- */
.post { padding: 36px 0 72px; }
.post-shell { display: grid; grid-template-columns: 248px minmax(0, 1fr); gap: 56px; align-items: start; }
.post-main { max-width: 820px; }
.post-shell.no-toc { grid-template-columns: 1fr; }
.post-shell.no-toc .post-main { max-width: 800px; margin: 0 auto; }
.post-back { display: inline-block; margin-bottom: 22px; font-size: .9rem; font-weight: 600; color: var(--green-d); }
.post-back:hover { color: var(--green-dk); }
.post-hero {
  height: 240px; border-radius: 16px; display: grid; place-items: center;
  color: var(--green-dk); margin-bottom: 28px;
  background: linear-gradient(135deg, #eaf4ec, #F0F5FA); border: 1px solid var(--border);
}
.post-hero svg { width: 84px; height: 84px; opacity: .85; }
.post-head h1 { font-size: clamp(1.9rem, 4vw, 2.6rem); margin-bottom: 8px; }
.post-head .post-sub {
  font-family: var(--display); font-weight: 700; color: var(--green-dk);
  font-size: clamp(1.1rem, 2vw, 1.35rem); margin-bottom: 14px;
}
.post-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: .9rem; color: var(--muted); margin-bottom: 26px; }
.post-meta strong { color: var(--ink); font-weight: 600; }
.post-body { font-size: 1rem; }
.post-body > p:first-child { font-size: 1.08rem; color: var(--body); }
.post-body p { margin-bottom: 16px; }
.post-body h2 { font-size: 1.45rem; margin: 38px 0 14px; scroll-margin-top: 96px; }
.post-body h3 { font-size: 1.15rem; margin: 26px 0 10px; }
.post-body ul, .post-body ol { margin: 0 0 18px 0; padding-left: 0; list-style: none; }
.post-body ol { counter-reset: step; }
.post-body li { position: relative; padding-left: 28px; margin-bottom: 10px; }
.post-body ul li::before { content: ""; position: absolute; left: 7px; top: .65em; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
.post-body ol li { counter-increment: step; }
.post-body ol li::before {
  content: counter(step); position: absolute; left: 0; top: .05em; width: 20px; height: 20px;
  border-radius: 50%; background: var(--green); color: #fff; font-size: .72rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.post-body .callout { background: var(--bg-alt); border-left: 3px solid var(--green); border-radius: 8px; padding: 14px 18px; margin: 0 0 18px; font-size: .95rem; }
.post-body a { color: var(--blue); font-weight: 500; }
.post-body a:hover { color: var(--blue-d); text-decoration: underline; }
/* CTA buttons inside post body: keep button text colours, not the link-blue above */
.post-body a.btn { font-weight: 600; text-decoration: none; }
.post-body a.btn-dark, .post-body a.btn-dark:hover { color: #fff; text-decoration: none; }
.post-body a.btn-outline, .post-body a.btn-outline:hover { color: #000; text-decoration: none; }
.post-cta { margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.post-cta h3 { font-size: 1.25rem; margin-bottom: 14px; }

@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ---------- responsive ---------- */
@media (max-width: 1024px) {
  .service-card { flex: 0 1 calc(50% - 10px); }
  .steps { grid-template-columns: repeat(3,1fr); }
}
@media (max-width: 900px) {
  .hero-grid, .contact-grid { grid-template-columns: 1fr; }
  .contact-grid > div:last-child { margin-top: 0; } /* no lift when columns stack */
  .hero-art { display: none; }
  .stats-grid, .cards, .reviews-grid, .footer-grid { grid-template-columns: 1fr; }
  .nav-links {
    position: absolute; top: 72px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 24px; border-bottom: 1px solid var(--border);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: block; }
  .nav .btn-outline, .nav .nav-onboard { display: none; }
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  section { padding: 56px 0; }
  body.home section { padding: 28px 0; }
  .service-card { flex: 0 1 100%; }
  .steps { grid-template-columns: 1fr; }
}

/* Honeypot — hidden from humans, tempting to bots. Submissions with it filled are dropped server-side. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
