@import url("https://fonts.googleapis.com/css2?family=Anton&family=Lato:ital,wght@0,400;0,700;0,900;1,400&display=swap");

/* ============ Tokens ============ */
:root {
  --lime: #cfea3d;
  --lime-deep: #b9d426;
  --black: #0e0e0e;
  --ink: #0e0e0e;
  --charcoal: #2e2e2e;
  --grey: #6b6b64;
  --line: #d9d6cf;
  --warm-grey: #d9d6cf;
  --paper: #f5f3ec;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(14, 14, 14, 0.18);
  --max: 1240px;
  --radius: 10px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  font-synthesis: none;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--charcoal);
  font-family: "Lato", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, li { font-size: 1rem; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-family: "Anton", "Arial Narrow", sans-serif;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.2px;
  line-height: 1.02;
  margin: 0;
  color: var(--black);
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.15rem; }

.eyebrow {
  display: inline-block;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 14px;
}

.lead { font-size: 1.18rem; line-height: 1.55; }
.mark { background: var(--lime); padding: 0 6px; box-decoration-break: clone; }

/* ============ Layout helpers ============ */
.inner { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.bg-lime { background: var(--lime); }
.bg-black { background: var(--black); color: var(--white); }
.bg-black h1, .bg-black h2, .bg-black h3, .bg-black h4 { color: var(--white); }
.bg-paper { background: var(--paper); }
.bg-white { background: var(--white); }
.bg-grey { background: var(--warm-grey); }

.center { text-align: center; }
.narrow { max-width: 760px; margin-left: auto; margin-right: auto; }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
/* minmax(0, 1fr) instead of 1fr lets grid items shrink below their content's
   natural width — without it, a long nowrap button inside a card can force
   the whole column (and page) wider than the viewport. */

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Lato", sans-serif;
  font-weight: 900;
  font-size: 0.98rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary { background: var(--lime); color: var(--black); border-color: var(--lime); }
.btn-primary:hover { background: var(--lime-deep); border-color: var(--lime-deep); }

.btn-dark { background: var(--black); color: var(--white); border-color: var(--black); }
.btn-dark:hover { background: #262626; }

.btn-outline { background: transparent; border-color: currentColor; }
.bg-black .btn-outline { color: var(--white); }
.btn-outline:hover { background: rgba(0,0,0,0.06); }
.bg-black .btn-outline:hover { background: rgba(255,255,255,0.1); }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--black);
}

.nav-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.brand { display: inline-flex; height: 88px; width: 88px; flex: 0 0 auto; }
.brand img { height: 88px; width: 88px; object-fit: contain; border-radius: 8px; }

.nav-menu { display: flex; align-items: center; gap: 4px; }

.nav-menu > .nav-item { position: relative; }

.nav-menu > .nav-item > a,
.nav-menu > .nav-item > button {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 0;
  color: var(--white);
  font-family: "Lato", sans-serif;
  font-weight: 700;
  font-size: 0.96rem;
  padding: 12px 14px;
  cursor: pointer;
  border-radius: 6px;
}

.nav-menu > .nav-item > a:hover,
.nav-menu > .nav-item > button:hover,
.nav-menu > .nav-item.open > button { background: rgba(255,255,255,0.1); }

.nav-menu .caret { font-size: 0.6rem; transform: translateY(1px); }

.dropdown-panel {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 10px;
  display: none;
  flex-direction: column;
  gap: 2px;
}

.nav-item.open .dropdown-panel { display: flex; }

.dropdown-panel a {
  color: var(--charcoal);
  font-weight: 700;
  font-size: 0.94rem;
  padding: 10px 12px;
  border-radius: 6px;
}

.dropdown-panel a:hover { background: var(--paper); color: var(--black); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

.nav-toggle {
  display: none;
  background: var(--lime);
  border: 0;
  border-radius: 8px;
  width: 46px;
  height: 44px;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; background: var(--black); height: 2px; width: 20px; margin: 0 auto; position: relative;
}
.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

/* ============ Hero ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 100px;
}

.hero .inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero h1 { margin-bottom: 22px; }
.hero .lead { margin-bottom: 6px; max-width: 540px; }

.hero-visual { position: relative; aspect-ratio: 1/1; }

/* Starburst halftone motif */
.starburst {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.starburst svg { position: absolute; inset: 0; width: 100%; height: 100%; }

.starburst-photo {
  position: relative;
  width: 62%;
  aspect-ratio: 1/1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.35);
  z-index: 2;
}

.starburst-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1) contrast(1.5) brightness(1.05);
}

.starburst-photo::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, #000 1px, transparent 1.4px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
  opacity: 0.55;
}

/* ============ Proof strip / stats ============ */
.stat-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}
.stat-item strong { display: block; font-family: "Anton"; font-size: 2.4rem; color: var(--black); }
.bg-black .stat-item strong { color: var(--lime); }
.stat-item span { font-weight: 700; font-size: 0.92rem; }

/* ============ Cards ============ */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
}
.bg-paper .card, .bg-lime .card { background: var(--white); border-color: transparent; }
.bg-black .card { background: #1a1a1a; border-color: #2c2c2c; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--grey); }
.bg-black .card p { color: #b8b8b0; }
.card .btn { white-space: normal; text-align: center; }
/* Pin a card's action to the bottom so buttons line up across a row of
   unequal-length cards. margin-top:auto keeps a gap above via the row's slack. */
.card > .btn, .card > .btn-row { margin-top: auto; }
.card > .btn { align-self: flex-start; }
.card:has(.card-icon) > .btn { align-self: center; }

.card-icon {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  object-fit: contain;
}
/* Only cards that actually have an icon get the centred treatment — plain
   text/testimonial cards elsewhere on the site stay left-aligned. */
.card:has(.card-icon) { text-align: center; }
.card:has(.card-icon) .btn { display: inline-flex; }
/* Recovered icons are black-line-on-transparent by default; auto-invert them
   to white when they land on a dark card so they stay visible. True
   "-white" variant icons (already white-line-on-transparent) are excluded
   since inverting those would turn them black-on-transparent again. */
.bg-black .card-icon:not([src*="-white"]) { filter: invert(1) brightness(2.2); }
/* Safety net: a "-white" icon should never end up on a light card, but if
   one does, invert it back to a visible dark line rather than vanishing. */
.bg-white .card-icon[src*="-white"],
.bg-paper .card-icon[src*="-white"],
.bg-lime .card-icon[src*="-white"] { filter: invert(1) brightness(0.3); }

.card-check-list { list-style: none; margin: 16px 0 0; padding: 0; display: grid; gap: 10px; }
.card-check-list li { padding-left: 26px; position: relative; font-weight: 700; }
.card-check-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  background: var(--lime); color: var(--black);
  width: 18px; height: 18px; border-radius: 50%;
  font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
  font-weight: 900;
}

/* ============ Pricing ============ */
.price-table { display: grid; gap: 20px; }
.price-card {
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 28px;
  background: var(--white);
}
.price-card.featured { border-color: var(--black); background: var(--paper); }
.price-card .price {
  font-family: "Anton";
  font-size: 2.1rem;
  color: var(--black);
  margin: 10px 0 4px;
}
.price-card .price span { font-family: "Lato"; font-size: 0.95rem; font-weight: 700; color: var(--grey); }
.price-card .band { font-size: 0.86rem; font-weight: 700; color: var(--grey); text-transform: uppercase; letter-spacing: 0.04em; }

.price-list {
  list-style: none; margin: 18px 0 0; padding: 0;
}
.price-list li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 12px 0; border-bottom: 1px dashed var(--line);
  font-weight: 700;
}
.price-list li:last-child { border-bottom: 0; }
.price-list .amount { color: var(--black); white-space: nowrap; }

/* ============ FAQ ============ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.faq-item summary {
  cursor: pointer;
  font-family: "Anton";
  font-size: 1.15rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: "Lato"; font-size: 1.6rem; font-weight: 400; flex: 0 0 auto; }
.faq-item[open] summary::after { content: "\2212"; }
.faq-item p { margin-top: 14px; color: var(--grey); }

/* ============ Testimonials ============ */
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--line);
}
.testimonial p { font-size: 1.05rem; color: var(--charcoal); }
.testimonial .who { margin-top: 18px; font-weight: 900; font-size: 0.92rem; }
.testimonial .who span { display: block; font-weight: 400; color: var(--grey); font-size: 0.85rem; }

/* ============ CTA banner ============ */
.cta-banner {
  padding: 70px 0;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 18px; }
.cta-banner .btn-row { justify-content: center; }

/* ============ Accreditations strip ============ */
.accred-strip { padding: 46px 0; border-top: 1px solid var(--line); }
.accred-strip .eyebrow { display: block; text-align: center; color: var(--grey); }
.accred-list {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
  margin-top: 20px;
}
.accred-chip {
  border: 1px solid var(--line); border-radius: 999px;
  padding: 10px 20px; font-weight: 900; font-size: 0.86rem;
  color: var(--charcoal);
}

/* ============ Footer ============ */
.site-footer { background: var(--black); color: #cfcfc9; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 56px; width: 56px; border-radius: 6px; margin-bottom: 16px; }
.footer-brand p { color: #a9a9a1; font-size: 0.92rem; }
.site-footer h4 { color: var(--white); font-size: 0.85rem; font-family: "Lato"; font-weight: 900; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer-col a, .footer-col address { font-size: 0.92rem; color: #cfcfc9; font-style: normal; line-height: 1.5; }
.footer-col a:hover { color: var(--lime); }
.footer-bottom {
  max-width: var(--max); margin: 50px auto 0; padding: 24px 24px 0;
  border-top: 1px solid #2a2a2a;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px;
  font-size: 0.84rem; color: #8c8c85;
}
.footer-bottom a { color: #8c8c85; }
.footer-bottom a:hover { color: var(--lime); }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* ============ Legal pages ============ */
.legal-body h2 { margin-top: 44px; margin-bottom: 14px; font-size: 1.5rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--charcoal); }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-meta { color: var(--grey); font-weight: 700; margin-bottom: 30px; }

/* ============ Blog ============ */
.blog-card { display: block; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.4); transition: transform .3s; }
.blog-card:hover .thumb img { transform: scale(1.04); }
.blog-card .body { padding: 22px; }
.blog-card .meta { font-size: 0.8rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.06em; color: var(--grey); margin-bottom: 10px; }
.blog-card h3 { margin-bottom: 10px; }
.blog-card p { color: var(--grey); font-size: 0.95rem; }

.article-body { max-width: 720px; margin: 0 auto; }
.article-body p { color: var(--charcoal); font-size: 1.05rem; margin-bottom: 20px; }
.article-body h2 { margin: 40px 0 16px; font-size: 1.6rem; }
.article-body ul { padding-left: 22px; }
.article-body li { margin-bottom: 10px; }

.author-card {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--paper); border-radius: var(--radius); padding: 26px;
  margin-top: 50px; max-width: 720px; margin-left: auto; margin-right: auto;
}
.author-card .initial {
  flex: 0 0 auto; width: 56px; height: 56px; border-radius: 50%;
  background: var(--black); color: var(--lime); font-family: "Anton";
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.author-card p { color: var(--charcoal); font-size: 0.95rem; }
.author-card .name { font-weight: 900; margin-bottom: 6px; color: var(--black); }

/* ============ Breadcrumb / page hero (secondary pages) ============ */
.page-hero { padding: 64px 0 60px; }
.page-hero .eyebrow { color: var(--charcoal); }
.bg-black .page-hero .eyebrow, .bg-lime .page-hero .eyebrow { color: inherit; }

/* ============ Persona portrait (replaces the old starburst-photo motif) ============ */
.persona-portrait {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.bg-lime .persona-portrait, .bg-white .persona-portrait, .bg-paper .persona-portrait { background: var(--black); }
.bg-black .persona-portrait { background: var(--lime); }
.persona-portrait img { width: 88%; height: 88%; object-fit: contain; object-position: bottom; }

.persona-hero {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.persona-hero img { width: 100%; height: auto; display: block; }

/* ============ Real accreditation / partner logo strip ============ */
.accred-list.accred-logos {
  align-items: stretch;
  gap: 10px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding-bottom: 4px;
}
.accred-logo-box {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 98px;
  height: 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 8px;
}
@media (min-width: 1150px) {
  .accred-list.accred-logos { overflow-x: visible; justify-content: center; }
}
.bg-black .accred-logo-box { background: #1a1a1a; border-color: #2c2c2c; }
.accred-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.bg-black .accred-logo { filter: brightness(0) invert(1); opacity: 0.9; }

/* ============ Real photography frame ============ */
.photo-frame {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3 / 2;
}
.photo-frame img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* ============ Location pages ============ */
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
.map-embed iframe { display: block; width: 100%; height: 360px; border: 0; }
.office-contact { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 12px; }
.office-contact li { display: flex; gap: 12px; align-items: baseline; }
.office-contact li strong { flex: 0 0 110px; color: var(--black); }
.office-contact li a { color: inherit; font-weight: 700; }
.area-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 30px; }
.area-chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--white);
}
.bg-black .area-chips span { background: #1a1a1a; border-color: #2c2c2c; color: #d8d8d0; }

/* ============ Numbered list ============ */
.step-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 26px; }
.step-list li { display: flex; gap: 20px; align-items: flex-start; }
.step-num {
  flex: 0 0 auto; width: 44px; height: 44px; border-radius: 50%;
  background: var(--lime); color: var(--black); font-family: "Anton"; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
}
.step-copy strong { display: block; font-size: 1.05rem; margin-bottom: 4px; color: var(--black); }
.step-copy p { color: var(--grey); }

/* ============ Responsive ============ */
@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; }
  .hero .inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 380px; margin: 0 auto; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-menu { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open .nav-menu {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 92px; left: 0; right: 0;
    background: var(--black);
    padding: 10px 20px 26px;
    gap: 0;
  }
  .site-header.nav-open .nav-item { width: 100%; }
  .site-header.nav-open .dropdown-panel { position: static; box-shadow: none; background: #1a1a1a; }
  .site-header.nav-open .dropdown-panel a { color: #e8e8e0; }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-strip { gap: 24px; }
  body { font-size: 16px; }
}

/* ============ Lead magnet guides ============ */
/* .guide-hero: no new class needed — reuse .page-hero directly on guide pages. */
.guide-gate { max-width: 560px; margin: 40px auto 0; text-align: left; }
.guide-gate h3 { margin-bottom: 10px; }
.guide-gate > p { color: var(--grey); margin-bottom: 20px; }
.guide-gate-error { color: #b3261e; font-weight: 700; margin-top: 14px; }

.hidden-guide { display: none; }

/* ============ WhatsApp floating chat button ============ */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(14, 14, 14, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 14px 36px rgba(14, 14, 14, 0.36);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

.whatsapp-tooltip {
  position: fixed;
  bottom: 38px;
  right: 92px;
  z-index: 60;
  background: var(--black);
  color: var(--white);
  font-weight: 700;
  font-size: 0.86rem;
  padding: 10px 16px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.15s ease, transform 0.15s ease;
}
.whatsapp-float:hover + .whatsapp-tooltip,
.whatsapp-float:focus-visible + .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 640px) {
  .whatsapp-float { bottom: 86px; right: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 27px; height: 27px; }
  .whatsapp-tooltip { display: none; }
}

/* ============ Breadcrumb bar ============ */
.breadcrumb-bar { background: var(--paper); border-bottom: 1px solid var(--line); }
.breadcrumb-bar .inner { padding-top: 14px; padding-bottom: 14px; font-size: 0.86rem; font-weight: 700; color: var(--grey); display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
.breadcrumb-bar a { color: var(--charcoal); }
.breadcrumb-bar a:hover { color: var(--black); text-decoration: underline; }
.breadcrumb-bar span[aria-current="page"] { color: var(--black); }

/* ============ Sticky mobile CTA bar ============ */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: flex;
    gap: 10px;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 55;
    background: var(--white);
    border-top: 1px solid var(--line);
    padding: 10px 14px;
    box-shadow: 0 -8px 24px rgba(14, 14, 14, 0.12);
  }
  .mobile-cta-bar .btn { flex: 1; justify-content: center; padding: 13px 10px; font-size: 0.86rem; }
  body { padding-bottom: 72px; }
}

/* ============ Local news widget (location pages) ============ */
.local-news-list { display: grid; gap: 2px; margin-top: 30px; }
.local-news-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.local-news-item + .local-news-item { margin-top: 10px; }
.local-news-source { font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.05em; color: var(--grey); }
.local-news-title { font-weight: 700; color: var(--black); }
.local-news-item:hover { border-color: var(--black); }
.local-news-item:hover .local-news-title { text-decoration: underline; }
.local-news-loading { color: var(--grey); font-weight: 700; text-align: center; padding: 20px 0; }
