/* ============================================================
   NORTH LONDON DAMP & WATERPROOFING — GLOBAL STYLESHEET
   Design system replicated from the South London Damp template.
   One stylesheet serves every page on the site.
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Colour — deep slate blue (trust) + brick amber (action) */
  --navy-900: #0f2233;
  --navy-800: #16304a;
  --navy-700: #1e4160;
  --navy-100: #e8eef4;
  --navy-050: #f4f7fa;
  --amber-600: #c46a1b;
  --amber-500: #e07f24;
  --amber-100: #fdf0e2;
  --teal-600: #0e6e6e;
  --teal-100: #e3f2f2;
  --ink: #1c2733;
  --ink-soft: #46586b;
  --line: #d8e0e8;
  --white: #ffffff;
  --success: #1a7f4b;
  --danger: #b3261e;

  /* Type */
  --font-display: "Archivo", "Segoe UI", Arial, sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  --fs-xs: 0.8125rem;
  --fs-sm: 0.9375rem;
  --fs-base: 1.0625rem;
  --fs-md: 1.1875rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 2.875rem;

  /* Layout */
  --wrap: 1180px;
  --wrap-narrow: 820px;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(15, 34, 51, 0.10);
  --shadow-md: 0 6px 24px rgba(15, 34, 51, 0.12);
  --header-h: 74px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal-600); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--navy-800); }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  color: var(--navy-900);
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(1.9rem, 4.5vw, var(--fs-3xl)); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3.4vw, var(--fs-2xl)); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.4vw, var(--fs-xl)); font-weight: 700; }
h4 { font-size: var(--fs-md); font-weight: 700; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1.1em; }
li { margin-bottom: 0.35em; }
strong { color: var(--navy-900); }
table { border-collapse: collapse; width: 100%; margin: 0 0 1.4em; font-size: var(--fs-sm); }
th, td { text-align: left; padding: 0.65em 0.8em; border: 1px solid var(--line); vertical-align: top; }
th { background: var(--navy-050); font-family: var(--font-display); font-weight: 700; color: var(--navy-900); }
:focus-visible { outline: 3px solid var(--amber-500); outline-offset: 2px; border-radius: 3px; }
.skip-link {
  position: absolute; left: -9999px; top: 0; background: var(--navy-900); color: #fff;
  padding: 0.7em 1.2em; z-index: 300; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 20px; }
.section { padding: 64px 0; }
.section-alt { background: var(--navy-050); }
.section-dark { background: var(--navy-900); color: #dbe6ef; }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-dark a { color: #ffd9ae; }
.kicker {
  display: inline-block; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-xs); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--teal-600); margin-bottom: 0.7em;
}
.section-dark .kicker { color: var(--amber-500); }
.lead { font-size: var(--fs-md); color: var(--ink-soft); }
.grid { display: grid; gap: 24px; }
.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: 900px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5em;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85em 1.6em; border-radius: var(--radius); border: 2px solid transparent;
  cursor: pointer; text-decoration: none; transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.btn-primary { background: var(--amber-500); color: #fff; }
.btn-primary:hover { background: var(--amber-600); color: #fff; }
.btn-secondary { background: var(--navy-800); color: #fff; }
.btn-secondary:hover { background: var(--navy-700); color: #fff; }
.btn-outline { background: transparent; color: var(--navy-800); border-color: var(--navy-800); }
.btn-outline:hover { background: var(--navy-800); color: #fff; }
.btn-light { background: #fff; color: var(--navy-900); }
.btn-light:hover { background: var(--navy-100); color: var(--navy-900); }
.btn-lg { font-size: var(--fs-md); padding: 1em 1.9em; }
.btn svg { flex: 0 0 auto; }

/* ---------- 5. HEADER ---------- */
.topbar {
  background: var(--navy-900); color: #cfe0ee; font-size: var(--fs-xs);
  padding: 6px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar a { color: #ffd9ae; text-decoration: none; font-weight: 600; }
.site-header {
  position: sticky; top: 0; z-index: 200; background: #fff;
  border-bottom: 1px solid var(--line); box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; min-height: var(--header-h);
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-mark {
  width: 42px; height: 42px; border-radius: 9px; background: var(--navy-900);
  display: grid; place-items: center; color: var(--amber-500); flex: 0 0 auto;
}
.logo-text { font-family: var(--font-display); line-height: 1.12; }
.logo-text .logo-name { display: block; font-weight: 800; font-size: 1.05rem; color: var(--navy-900); }
.logo-text .logo-sub { display: block; font-weight: 600; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal-600); }

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav > ul { display: flex; list-style: none; margin: 0; padding: 0; gap: 2px; }
.main-nav a, .main-nav button.nav-toggle-btn {
  font-family: var(--font-display); font-weight: 600; font-size: 0.95rem;
  color: var(--navy-900); text-decoration: none; padding: 10px 12px;
  background: none; border: 0; cursor: pointer; border-radius: 8px;
  display: inline-flex; align-items: center; gap: 5px;
}
.main-nav a:hover, .main-nav button.nav-toggle-btn:hover { background: var(--navy-050); color: var(--navy-900); }
.nav-item { position: relative; }
.caret { transition: transform 0.15s; }
.nav-item.open .caret { transform: rotate(180deg); }

/* Mega menu / dropdowns */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 280px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 14px; display: none; z-index: 210;
}
.nav-item.open .dropdown { display: block; }
.dropdown ul { list-style: none; margin: 0; padding: 0; }
.dropdown li { margin: 0; }
.dropdown a { display: block; padding: 8px 10px; font-weight: 500; font-size: 0.92rem; width: 100%; }
.dropdown .dd-head {
  display: block; padding: 8px 10px 6px; font-family: var(--font-display);
  font-weight: 800; font-size: 0.85rem; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--teal-600); text-decoration: none;
}
.dropdown .dd-head:hover { color: var(--navy-800); }
.mega { width: min(920px, calc(100vw - 40px)); left: 50%; transform: translateX(-50%); }
.mega-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
@media (max-width: 1240px) { .mega { left: auto; right: -100px; transform: none; } }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-phone {
  display: inline-flex; align-items: center; gap: 8px; text-decoration: none;
  font-family: var(--font-display); font-weight: 800; color: var(--navy-900); font-size: 1.02rem;
}
.header-phone:hover { color: var(--amber-600); }

/* Burger */
.burger {
  display: none; width: 46px; height: 46px; border: 1px solid var(--line);
  border-radius: 9px; background: #fff; cursor: pointer; padding: 0;
  flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { display: block; width: 22px; height: 2.5px; background: var(--navy-900); border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
@media (max-width: 1080px) {
  .burger { display: flex; }
  .main-nav {
    position: fixed; inset: var(--header-h) 0 0 0; background: #fff;
    display: none; overflow-y: auto; padding: 14px 20px 120px; z-index: 190;
  }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; gap: 0; }
  .main-nav a, .main-nav button.nav-toggle-btn {
    width: 100%; justify-content: space-between; padding: 14px 8px;
    font-size: 1.05rem; border-bottom: 1px solid var(--navy-050);
  }
  .dropdown, .mega {
    position: static; transform: none; width: 100%; min-width: 0;
    border: 0; box-shadow: none; padding: 0 0 6px 12px; border-radius: 0;
  }
  .mega-cols { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
}
@media (max-width: 560px) { .header-phone .phone-label { display: none; } }

/* ---------- 6. HERO ---------- */
.hero {
  background:
    linear-gradient(112deg, rgba(15, 34, 51, 0.96) 0%, rgba(22, 48, 74, 0.90) 55%, rgba(14, 110, 110, 0.82) 100%),
    var(--navy-800);
  color: #e5edf4; padding: 64px 0 72px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: start; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero .lead { color: #c8d8e6; max-width: 56ch; }
.hero-points { list-style: none; padding: 0; margin: 1.2em 0 1.6em; display: grid; gap: 10px; }
.hero-points li { display: flex; gap: 10px; align-items: flex-start; font-size: var(--fs-sm); }
.hero-points svg { flex: 0 0 auto; margin-top: 3px; color: var(--amber-500); }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero form card */
.form-card {
  background: #fff; color: var(--ink); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 26px 26px 22px;
}
.form-card h2 { font-size: var(--fs-lg); margin-bottom: 0.35em; }
.form-card .form-note { font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 1em; }
.field { margin-bottom: 14px; }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); margin-bottom: 5px; color: var(--navy-900); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.7em 0.85em; border: 1.5px solid var(--line);
  border-radius: 8px; font: inherit; font-size: var(--fs-sm); background: #fff; color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--teal-600); outline: none; box-shadow: 0 0 0 3px var(--teal-100); }
.field textarea { min-height: 110px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.consent { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex: 0 0 auto; accent-color: var(--teal-600); }
.consent label { font-size: var(--fs-xs); color: var(--ink-soft); line-height: 1.5; font-weight: 400; font-family: var(--font-body); margin: 0; }
.form-error { display: none; color: var(--danger); font-size: var(--fs-xs); font-weight: 600; margin: 4px 0 10px; }
.form-error.show { display: block; }
.form-privacy { font-size: var(--fs-xs); color: var(--ink-soft); margin-top: 10px; }

/* ---------- 7. TRUST STRIP ---------- */
.trust-strip { background: #fff; border-bottom: 1px solid var(--line); padding: 18px 0; }
.trust-items { display: flex; flex-wrap: wrap; gap: 12px 34px; justify-content: center; list-style: none; margin: 0; padding: 0; }
.trust-items li { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--navy-800); }
.trust-items svg { color: var(--teal-600); flex: 0 0 auto; }

/* ---------- 8. ANSWER BLOCK (AI Overview) ---------- */
.answer-block {
  background: var(--teal-100); border-left: 5px solid var(--teal-600);
  border-radius: 0 var(--radius) var(--radius) 0; padding: 22px 26px; margin: 0 0 1.6em;
}
.answer-block p:last-child { margin-bottom: 0; }
.answer-block strong { color: var(--navy-900); }

/* ---------- 9. CARDS ---------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: box-shadow 0.15s, transform 0.15s;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.card h3 { font-size: var(--fs-md); margin-bottom: 0.5em; }
.card h3 a { color: var(--navy-900); text-decoration: none; }
.card h3 a:hover { color: var(--teal-600); }
.card p { font-size: var(--fs-sm); color: var(--ink-soft); flex: 1; }
.card .card-link { font-family: var(--font-display); font-weight: 700; font-size: var(--fs-sm); text-decoration: none; }
.card-icon {
  width: 48px; height: 48px; border-radius: 10px; background: var(--navy-050);
  color: var(--teal-600); display: grid; place-items: center; margin-bottom: 14px;
}
.pillar-card { border-top: 4px solid var(--amber-500); }
.sub-links { list-style: none; padding: 0; margin: 0.4em 0 1em; font-size: var(--fs-sm); }
.sub-links li { margin-bottom: 0.3em; }
.sub-links a { text-decoration: none; font-weight: 600; }

/* ---------- 10. STEPS / HOW IT WORKS ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-left: 0; }
.step-num {
  width: 46px; height: 46px; border-radius: 50%; background: var(--amber-500);
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  display: grid; place-items: center; margin-bottom: 14px;
}
.step h3 { font-size: var(--fs-md); }
.step p { font-size: var(--fs-sm); color: var(--ink-soft); }

/* ---------- 11. AREA PILLS ---------- */
.pill-grid { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.2em 0; }
.pill {
  display: inline-block; padding: 0.55em 1.1em; border-radius: 999px;
  background: #fff; border: 1.5px solid var(--line); text-decoration: none;
  font-family: var(--font-display); font-weight: 600; font-size: var(--fs-sm); color: var(--navy-800);
}
.pill:hover { border-color: var(--teal-600); color: var(--teal-600); }
.section-dark .pill { background: transparent; border-color: rgba(255,255,255,0.35); color: #e5edf4; }
.section-dark .pill:hover { border-color: var(--amber-500); color: var(--amber-500); }

/* ---------- 12. FAQ ---------- */
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: 0; text-align: left; cursor: pointer;
  padding: 18px 4px; font-family: var(--font-display); font-weight: 700;
  font-size: var(--fs-md); color: var(--navy-900);
}
.faq-q .faq-icon { flex: 0 0 auto; transition: transform 0.2s; color: var(--teal-600); }
.faq-item.open .faq-q .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding: 0 4px 20px; color: var(--ink-soft); max-width: 76ch; }
.faq-item.open .faq-a { display: block; }

/* ---------- 13. CTA BAND ---------- */
.cta-band {
  background: linear-gradient(100deg, var(--navy-900), var(--navy-700));
  color: #e5edf4; border-radius: var(--radius-lg); padding: 44px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px; flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 0.25em; }
.cta-band p { margin: 0; color: #c8d8e6; }
.cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- 14. BREADCRUMBS ---------- */
.breadcrumbs { padding: 14px 0; font-size: var(--fs-xs); background: var(--navy-050); border-bottom: 1px solid var(--line); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; }
.breadcrumbs li { display: flex; align-items: center; gap: 6px; margin: 0; }
.breadcrumbs li + li::before { content: "›"; color: var(--ink-soft); }
.breadcrumbs a { text-decoration: none; font-weight: 600; }
.breadcrumbs [aria-current="page"] { color: var(--ink-soft); }

/* ---------- 15. PAGE HERO (inner pages) ---------- */
.page-hero { background: linear-gradient(112deg, var(--navy-900), var(--navy-700)); color: #dbe6ef; padding: 52px 0; }
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero .lead { color: #c8d8e6; max-width: 64ch; }

/* ---------- 16. PROSE ---------- */
.prose h2 { margin-top: 1.6em; }
.prose h3 { margin-top: 1.3em; }
.prose ul li, .prose ol li { color: var(--ink); }
.prose .updated { font-size: var(--fs-xs); color: var(--ink-soft); }

/* ---------- 17. FOOTER ---------- */
.site-footer { background: var(--navy-900); color: #b9c9d6; font-size: var(--fs-sm); }
.footer-main { padding: 56px 0 30px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 34px; }
@media (max-width: 1000px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }
.site-footer h3 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.9em; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.5em; }
.site-footer a { color: #b9c9d6; text-decoration: none; }
.site-footer a:hover { color: #ffd9ae; }
.footer-brand .logo-text .logo-name { color: #fff; }
.footer-brand p { font-size: var(--fs-xs); color: #93a8b8; max-width: 40ch; margin-top: 1em; }
.footer-phone { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 800; color: #ffd9ae !important; font-size: 1.05rem; margin-top: 0.5em; }
.footer-legal { border-top: 1px solid rgba(255,255,255,0.12); padding: 20px 0; font-size: var(--fs-xs); color: #7f96a8; }
.footer-legal .wrap { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-legal ul { display: flex; gap: 18px; flex-wrap: wrap; list-style: none; margin: 0; padding: 0; }
.footer-legal li { margin: 0; }
.footer-disclosure { padding: 0 0 26px; font-size: var(--fs-xs); color: #7f96a8; max-width: 90ch; }

/* ---------- 18. STICKY MOBILE CTA ---------- */
.sticky-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 180;
  display: none; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line);
  box-shadow: 0 -4px 16px rgba(15,34,51,0.16);
}
.sticky-cta a {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 10px; font-family: var(--font-display); font-weight: 800;
  font-size: 0.98rem; text-decoration: none;
}
.sticky-cta .sticky-call { background: var(--amber-500); color: #fff; }
.sticky-cta .sticky-survey { background: var(--navy-900); color: #fff; }
@media (max-width: 820px) {
  .sticky-cta { display: grid; }
  body { padding-bottom: 56px; }
}

/* ---------- 19. COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed; z-index: 250; left: 16px; right: 16px; bottom: 16px;
  max-width: 560px; margin: 0 auto; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md); padding: 20px 22px;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: var(--fs-xs); color: var(--ink-soft); margin-bottom: 12px; }
.cookie-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookie-actions .btn { font-size: var(--fs-xs); padding: 0.65em 1.2em; }
@media (max-width: 820px) { .cookie-banner { bottom: 72px; } }

/* ---------- 20. UTILITY / MISC ---------- */
.notice {
  background: var(--amber-100); border: 1px solid #efd4b4; border-radius: var(--radius);
  padding: 16px 20px; font-size: var(--fs-sm); margin: 0 0 1.4em;
}
.center { text-align: center; }
.mt-0 { margin-top: 0; } .mb-0 { margin-bottom: 0; }
.section-head { max-width: 720px; margin-bottom: 34px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.err-hero { padding: 90px 0; text-align: center; }
.err-hero .err-code { font-family: var(--font-display); font-weight: 800; font-size: clamp(4rem, 12vw, 7rem); color: var(--navy-100); line-height: 1; }

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

/* ---------- 21. PRINT ---------- */
@media print {
  .site-header, .topbar, .sticky-cta, .cookie-banner, .site-footer, .cta-band, .hero-ctas { display: none !important; }
  body { padding-bottom: 0; }
}
