/* ==========================================================================
   NACO Services homepage
   Recreated from the Claude Design prototype (NACO Homepage.dc.html).
   Brand: NACO Green #3B6C46 + NACO Pink #DF2455, Montserrat.
   ========================================================================== */

/* The browser's own [hidden] rule is only as specific as a class, so any
   component that sets `display` on a class silently defeats it — which is
   easy to miss, because the element is still hidden from the accessibility
   tree and only shows up visually. Settle it once, globally. */
[hidden] { display: none !important; }

:root {
  /* Brand colours */
  --green: #3B6C46;
  --green-deep: #2D5435;
  --green-forest: #1B3322;
  --ink: #16261C;
  --pink: #DF2455;
  --pink-deep: #BB1B45;
  --body: #3D453F;
  --muted: #586259;
  --muted-soft: #69736A;
  --page: #F6FAF4;
  --tint-green: #E7F0E8;
  --tint-green-2: #EDF4EA;
  --border: #EAF2EE;

  /* Radii */
  --r-btn: 12px;
  --r-card: 20px;
  --r-card-lg: 24px;
  --r-panel: 40px;
  --r-pill: 999px;

  /* Layout widths */
  --w-wide: 1600px;
  --w-std: 1300px;

  --font: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--body);
  background: var(--page);
  min-height: 100vh;
  overflow-x: clip;
}

img { max-width: 100%; }

a { color: inherit; }

h1, h2, h3, h4 { font-family: var(--font); }

/* ---- Layout helpers ------------------------------------------------------ */
.wrap { max-width: var(--w-std); margin: 0 auto; padding-left: 20px; padding-right: 20px; }
.wrap--wide { max-width: var(--w-wide); }

.section { padding: 120px 20px; }
.section__inner { max-width: var(--w-std); margin: 0 auto; }
.section__inner--wide { max-width: var(--w-wide); }

.eyebrow-italic {
  font-style: italic;
  color: var(--pink-deep);
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 20px;
}

.pill-tag {
  display: inline-block;
  background: var(--tint-green);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: var(--r-pill);
}

/* ---- CMS-authored rich text ---------------------------------------------- */
/* Quill 2 writes every list as an <ol> and records which kind it is on the
   <li> itself, so a bulleted list written in the admin editor would render as
   a numbered one here, where the saved HTML is shown without Quill's own
   stylesheet. The .ql-ui span is Quill's own editing affordance and has no
   business on a published page. Scoped to the article body: inside the admin
   editor Quill draws its own markers and needs both left alone. */
.article li[data-list="bullet"] { list-style-type: disc; }
.article li[data-list="ordered"] { list-style-type: decimal; }
.article .ql-ui { display: none; }

/* ---- Reveal-on-scroll (headings) ---------------------------------------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .92s cubic-bezier(.33,1,.68,1), transform .92s cubic-bezier(.33,1,.68,1);
  will-change: opacity, transform;
}
[data-reveal].is-revealed { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: var(--r-btn);
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}
.btn--pink   { background: var(--pink); color: #fff; box-shadow: 0 12px 26px rgba(223,36,85,.32); }
.btn--pink:hover { background: var(--pink-deep); color: #fff; }
.btn--green  { background: var(--green); color: #fff; box-shadow: 0 10px 24px rgba(59,108,70,.4); }
.btn--green:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.btn--dark   { background: var(--green-deep); color: #fff; }
.btn--dark:hover { background: var(--ink); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 18px rgba(0,0,0,.25); }
.btn--white  { background: #fff; color: var(--green-deep); box-shadow: 0 6px 16px rgba(20,38,28,.06); }
.btn--white:hover { box-shadow: 0 10px 24px rgba(20,38,28,.13); transform: translateY(-2px); }
.btn--ghost  { background: rgba(255,255,255,.15); border: 1.5px solid rgba(255,255,255,.3); color: #fff; }
.btn--ghost:hover { background: rgba(255,255,255,.25); }
.btn--whatsapp { background: #25D366; color: #fff; box-shadow: 0 10px 22px rgba(37,211,102,.28); }
.btn--whatsapp:hover { background: #1EBE5A; color: #fff; transform: translateY(-2px); }

.btn--lg { font-size: 17px; padding: 16px 30px; }
.btn--md { font-size: 16px; padding: 15px 28px; }
.btn--sm { font-size: 14.5px; padding: 11px 18px; }
.btn--uppercase { font-size: 15px; letter-spacing: .07em; text-transform: uppercase; padding: 16px 32px; }
.btn--block { display: block; text-align: center; width: 100%; }

.btn--pulse { animation: nacoPulse 2s ease-in-out infinite; }
@keyframes nacoPulse {
  0%,100% { transform: scale(1);    box-shadow: 0 8px 18px rgba(223,36,85,.35); }
  50%     { transform: scale(1.06); box-shadow: 0 14px 30px rgba(223,36,85,.55); }
}

/* Phone / text link */
.link-call { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; color: var(--green-deep); font-weight: 700; transition: opacity .2s ease; }
.link-call:hover { opacity: .75; }

/* ---- Header -------------------------------------------------------------- */
.header-fixed {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 16px 20px;
}
.header {
  max-width: var(--w-wide);
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 10px 30px rgba(20,38,28,.07);
  padding: 12px 16px 12px 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.header__logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex: none; }
.header__logo img { height: 38px; width: auto; display: block; }

.nav { display: flex; align-items: center; gap: 4px; margin: 0 auto; flex-wrap: wrap; }
.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 15px;
  padding: 9px 13px;
  border-radius: 11px;
  transition: background .2s ease;
}
.nav a:hover { background: #F0F5EE; }

/* Advice + Insurance + Join NACO dropdowns (desktop nav) — plain link list
   by default; layout.js upgrades .nav__advice-panel into a wider mega menu
   (see below) once a session is confirmed. Insurance and Join NACO never
   get that upgrade, just the plain dropdown. */
.nav__advice, .nav__insurance, .nav__join { position: relative; }
.nav__advice-btn, .nav__insurance-btn, .nav__join-btn {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--font); color: var(--ink);
  font-weight: 600; font-size: 15px;
  padding: 9px 13px; border-radius: 11px;
  background: none; border: none; cursor: pointer;
  transition: background .2s ease;
}
.nav__advice-btn:hover, .nav__advice-btn.is-current,
.nav__insurance-btn:hover, .nav__insurance-btn.is-current,
.nav__join-btn:hover, .nav__join-btn.is-current { background: #F0F5EE; }
.nav__advice-panel, .nav__insurance-panel, .nav__join-panel {
  position: absolute; top: 100%; left: 0;
  padding-top: 8px; min-width: 220px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease; z-index: 60;
}
.nav__advice:hover .nav__advice-panel,
.nav__advice:focus-within .nav__advice-panel,
.nav__insurance:hover .nav__insurance-panel,
.nav__insurance:focus-within .nav__insurance-panel,
.nav__join:hover .nav__join-panel,
.nav__join:focus-within .nav__join-panel { opacity: 1; visibility: visible; pointer-events: auto; }
.nav__advice-inner, .nav__insurance-inner, .nav__join-inner {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: 0 16px 36px rgba(20,38,28,.14);
  padding: 8px; display: flex; flex-direction: column; gap: 2px;
}
.nav__advice-inner a, .nav__insurance-inner a, .nav__join-inner a {
  text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 14px;
  padding: 10px 12px; border-radius: 10px;
  transition: background .2s ease;
}
.nav__advice-inner a:first-child, .nav__insurance-inner a:first-child, .nav__join-inner a:first-child { font-weight: 700; }
.nav__advice-inner a.muted, .nav__insurance-inner a.muted, .nav__join-inner a.muted { color: #8B948C; font-size: 13px; }
.nav__advice-inner a:hover, .nav__insurance-inner a:hover, .nav__join-inner a:hover { background: #F0F5EE; }

/* Signed-in mega menu — replaces .nav__advice-panel's content with a wider,
   multi-column layout grouping Advice, membership and (admins only) admin
   links. See layout.js's upgradeToMegaMenu(). */
.nav__advice-panel--mega { min-width: 640px; }
.nav__megamenu {
  background: #fff; border: 1px solid var(--border);
  border-radius: 18px; box-shadow: 0 20px 44px rgba(20,38,28,.16);
  padding: 22px; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 4px 28px;
}
.nav__megamenu-col h4 {
  font-family: var(--font); font-size: 11px; font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; color: #8B948C;
  margin: 0 0 6px; padding: 0 12px;
}
.nav__megamenu-col a {
  display: block; text-decoration: none; color: var(--ink);
  font-weight: 600; font-size: 14px; padding: 9px 12px; border-radius: 10px;
  transition: background .2s ease;
}
.nav__megamenu-col a:hover { background: #F0F5EE; }
.nav__megamenu-foot { grid-column: 1 / -1; border-top: 1px solid #EAF1EE; margin-top: 8px; padding-top: 10px; }
.nav__megamenu-foot a { color: #8B948C; font-size: 13px; font-weight: 500; text-decoration: none; padding: 6px 12px; display: inline-block; border-radius: 8px; }
.nav__megamenu-foot a:hover { background: #F0F5EE; }

/* Advice / Insurance / Join NACO blocks in the mobile menu */
.mobile-menu__advice, .mobile-menu__insurance, .mobile-menu__join { margin-top: 2px; padding-top: 8px; border-top: 1px solid #EAF1EE; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__advice a, .mobile-menu__insurance a, .mobile-menu__join a { display: block; }
.mobile-menu__label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #8B948C; padding: 6px 14px; margin-top: 6px; }
.mobile-menu__label:first-child { margin-top: 0; }

.header__cta { display: flex; align-items: center; gap: 12px; flex: none; }
.header__cta .link-call { font-size: 14.5px; }
.header__cta .btn { padding: 11px 18px; font-size: 14.5px; }
.header__cta .btn--green { box-shadow: none; }
.header__cta .btn--green:hover { background: var(--green-deep); transform: translateY(-2px); }
.header__cta .btn--pink { box-shadow: 0 8px 18px rgba(223,36,85,.32); }

.burger {
  display: none;
  margin-left: auto;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1.5px solid #DDE8E2;
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex: none;
  transition: background .2s ease, border-color .2s ease;
}
.burger:hover { background: var(--page); border-color: #C7DCC9; }

/* Mobile menu */
.mobile-menu {
  max-width: var(--w-wide);
  margin: 10px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: 0 14px 36px rgba(20,38,28,.12);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 14px;
  border-radius: 13px;
  transition: background .2s ease;
}
.mobile-menu a:hover { background: #F0F5EE; }
.mobile-menu__cta { display: flex; gap: 10px; margin-top: 8px; }
.mobile-menu__cta a { flex: 1; text-align: center; background: var(--pink); color: #fff; padding: 14px; border-radius: 13px; }
.mobile-menu__cta a:hover { background: var(--pink-deep); }

/* ---- Hero (split) -------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 50px);
  min-height: calc(100dvh - 50px);
  background-color: var(--green-forest);
  background-image: linear-gradient(105deg, rgba(11,26,16,.82) 0%, rgba(11,26,16,.55) 48%, rgba(11,26,16,.32) 100%), url('../images/hero-aerial-park.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__inner {
  position: relative;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: 156px 20px 64px;
  width: 100%;
}
.hero__content { max-width: 680px; }
.hero h1 {
  font-weight: 800;
  font-size: clamp(36px, 5.2vw, 56px);
  line-height: 1.04;
  letter-spacing: -.02em;
  color: #fff;
  margin: 22px 0 0;
  text-wrap: balance;
}
.hero p.lead {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,.9);
  margin: 22px 0 0;
  max-width: 560px;
}

.badge-glass {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(4px);
  color: #fff;
  font-weight: 700;
  font-size: 13.5px;
  padding: 8px 15px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255,255,255,.22);
}

.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

.hero__call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  margin-top: 22px;
  transition: opacity .2s ease;
}
.hero__call:hover { opacity: .8; }
.hero__call .icon-badge {
  width: 36px; height: 36px;
  border-radius: 11px;
  background: rgba(255,255,255,.16);
  display: flex; align-items: center; justify-content: center;
}

.trust-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 16px;
  border-radius: var(--r-pill);
}
.trust-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.trust-pill .dot--g { background: #7DC98A; }
.trust-pill .dot--p { background: #F36C92; }

/* ---- Ticker -------------------------------------------------------------- */
.ticker { width: 100%; overflow: hidden; }
.ticker--pink { background: var(--pink); }
.ticker--dark { background: var(--green-forest); }
.ticker__track {
  display: flex;
  width: max-content;
  animation: nacoTickerScroll 32s linear infinite;
  will-change: transform;
}
.ticker__group { display: flex; align-items: center; gap: 44px; flex: none; padding: 15px 22px; }
.ticker--dark .ticker__group { padding: 14px 22px; }
.ticker__item {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700;
  font-size: 14.5px;
  color: #fff;
  white-space: nowrap;
  letter-spacing: .03em;
}
.ticker__sep { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,.5); flex: none; }
.ticker--dark .ticker__sep { background: rgba(255,255,255,.4); }
@keyframes nacoTickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .ticker__track { animation: none; } }

/* ---- Split layout (What We Do / Membership) ----------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 440px), 1fr));
  gap: 80px;
  align-items: start;
}
.split--center { align-items: center; }
.split__text { padding-top: 12px; }
.split h2 {
  font-weight: 800;
  font-size: clamp(30px, 4.4vw, 46px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0;
  line-height: 1.1;
  text-wrap: balance;
}
.split__text p.body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  margin: 24px 0 0;
  max-width: 460px;
}

.media-frame { border-radius: var(--r-card-lg); overflow: hidden; box-shadow: 0 20px 50px rgba(20,38,28,.13); }
.media-frame img { display: block; width: 100%; height: 340px; object-fit: cover; }

/* Pink CTA card pair */
.cta-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 14px; }
.cta-card {
  background: var(--pink);
  border-radius: var(--r-card);
  padding: 30px 26px 28px;
  display: flex;
  flex-direction: column;
}
.cta-card strong { font-size: 17px; color: #fff; font-weight: 800; line-height: 1.2; }
.cta-card p { font-size: 13.5px; color: rgba(255,255,255,.88); line-height: 1.55; margin: 12px 0 24px; flex: 1; }
.cta-card .btn { align-self: flex-start; } /* flex column would otherwise stretch it full-width */

/* Benefit checklist */
.checklist { display: flex; flex-direction: column; gap: 18px; margin-top: 30px; }
.checklist__row { display: flex; gap: 14px; align-items: flex-start; }
.checklist__icon {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--tint-green);
  display: flex; align-items: center; justify-content: center;
  flex: none; margin-top: 2px;
}
.checklist__text { font-size: 16px; color: #44514A; line-height: 1.5; }
.checklist__text strong { color: var(--ink); }

/* ---- Insurance section --------------------------------------------------- */
.section--white { background: #fff; }
.insurance__text p { font-size: 17px; line-height: 1.7; color: var(--muted); margin: 0 0 18px; }
.insurance__text p.strong { color: var(--ink); font-weight: 700; margin: 0 0 32px; }
.insurance__text h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 44px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 0 0 24px;
}
p.fineprint { font-size: 12px; color: #9BA49C; margin: 26px 0 0; line-height: 1.5; }

.media-quote-wrap { position: relative; }
.media-quote-wrap > img {
  display: block; width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--r-card);
  box-shadow: 0 28px 58px rgba(20,38,28,.14);
}
.quote-card {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--green-deep);
  border-radius: var(--r-card);
  padding: 28px 32px;
  max-width: 280px;
  box-shadow: 0 20px 48px rgba(0,0,0,.25);
}
.quote-card p { font-size: 15.5px; line-height: 1.6; color: #fff; font-style: italic; font-weight: 600; margin: 12px 0 18px; }
.quote-card span { font-size: 13px; color: rgba(255,255,255,.7); font-weight: 600; }

/* ---- Hero break bands ---------------------------------------------------- */
.hero-break {
  position: relative;
  width: 100%;
  min-height: 480px;
  display: flex;
  align-items: center;
  background-color: var(--green-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-break--award  { background-image: linear-gradient(105deg, rgba(11,26,16,.80) 0%, rgba(11,26,16,.50) 55%, rgba(11,26,16,.25) 100%), url('../images/caravan-park-lodges.webp'); }
.hero-break--since  { min-height: 420px; background-color: var(--green-deep); background-image: linear-gradient(105deg, rgba(11,26,16,.85) 0%, rgba(11,26,16,.55) 50%, rgba(11,26,16,.25) 100%), url('../images/caravan-owners-walking.webp'); }
.hero-break--trust  { min-height: auto; background-image: linear-gradient(105deg, rgba(11,26,16,.85) 0%, rgba(11,26,16,.55) 50%, rgba(11,26,16,.3) 100%), url('../images/caravan-owners-terrace.webp'); }
.hero-break__inner { max-width: var(--w-wide); margin: 0 auto; padding: 100px 20px; width: 100%; }
.hero-break--since .hero-break__inner { padding: 80px 20px; }
.hero-break__content { max-width: 640px; }
.hero-break--trust .hero-break__content { max-width: 660px; }
.hero-break h2 {
  font-weight: 800;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin: 20px 0 0;
  text-wrap: balance;
}
.hero-break--since h2 { font-size: clamp(28px, 4.5vw, 48px); }
.hero-break p.lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.88); margin: 18px 0 0; max-width: 520px; }
.hero-break--since p.lead { line-height: 1.7; color: rgba(255,255,255,.85); max-width: 580px; margin-top: 20px; }
.hero-break--trust p.lead { max-width: 540px; }

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.stats-row > div { padding: 0 40px; border-right: 1px solid rgba(255,255,255,.1); }
.stats-row > div:first-child { padding: 0 40px 0 0; }
.stats-row > div:last-child { padding: 0 0 0 40px; border-right: none; }
.stat__num { font-weight: 800; font-size: 56px; color: #fff; line-height: 1; }
.stat__label { font-size: 13px; color: rgba(255,255,255,.5); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; margin-top: 8px; }
.stat__desc { font-size: 14.5px; color: rgba(255,255,255,.65); line-height: 1.6; margin: 10px 0 0; }

/* ---- Why NACO grid ------------------------------------------------------- */
.why-head { text-align: left; max-width: 720px; margin: 0; }
.why-head h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 38px; }
.why-card {
  background: #fff;
  border: 1px solid #E7EFE9;
  border-radius: var(--r-card-lg);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(20,38,28,.05);
}
.why-card__icon { width: 52px; height: 52px; border-radius: 16px; display: flex; align-items: center; justify-content: center; }
.why-card__icon--g { background: var(--tint-green); }
.why-card__icon--p { background: var(--tint-green-2); }
.why-card h3 { font-weight: 800; font-size: 19px; color: var(--ink); margin: 18px 0 6px; }
.why-card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

/* ---- Reviews ------------------------------------------------------------- */
.reviews { background: var(--ink); width: 100%; padding: 88px 20px; scroll-margin-top: 100px; }
.reviews__inner { max-width: var(--w-std); margin: 0 auto; text-align: left; }
.reviews .pill-dark {
  display: inline-block;
  background: rgba(255,255,255,.12);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 7px 15px;
  border-radius: var(--r-pill);
}
.reviews h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  color: #fff;
  margin: 18px 0 0;
  text-wrap: balance;
}
.reviews__google { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.reviews__google-g { flex: none; }
.reviews__google-stars { display: inline-flex; gap: 2px; }
.reviews__google-rating { font-weight: 700; font-size: 15px; color: #fff; }
.reviews__google-link { display: inline-flex; align-items: center; min-height: 24px; gap: 6px; text-decoration: none; color: #fff; font-weight: 700; font-size: 14px; border-bottom: 1.5px solid rgba(255,255,255,.35); padding-bottom: 1px; transition: border-color .2s ease, opacity .2s ease; }
.reviews__google-link:hover { border-color: #fff; }
.reviews__viewport { overflow: hidden; margin-top: 48px; }
.reviews__track { display: flex; gap: 20px; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-card { flex: 0 0 calc(33.333% - 14px); flex-shrink: 0; }
.review-card__inner {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 28px;
  padding: 40px 48px;
  text-align: left;
}
.review-card__stars { display: flex; gap: 4px; }
.review-card__quote { font-size: 20px; line-height: 1.65; color: rgba(255,255,255,.9); margin: 22px 0 0; font-style: italic; }
.review-card__person { display: flex; align-items: center; gap: 14px; margin-top: 28px; }
.review-card__avatar {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 18px; flex: none;
}
.review-card__name { display: block; font-weight: 700; color: #fff; font-size: 16px; }
.review-card__source { font-size: 13.5px; color: rgba(255,255,255,.5); }

.reviews__controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.review-arrow {
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease;
}
.review-arrow:hover { background: rgba(255,255,255,.2); }
.review-dots { display: flex; gap: 8px; align-items: center; }
.review-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.3); border: none; cursor: pointer; padding: 0; transition: width .3s ease, background .3s ease, border-radius .3s ease; }
.review-dot.is-active { width: 24px; height: 8px; border-radius: 4px; background: var(--pink); }
/* This used to be a faint build note to ourselves. It now carries copy real
   visitors are meant to read, so it needs to actually be readable against the
   dark panel — .3 alpha white was nowhere near enough contrast. */
.reviews__note { font-size: 15.5px; line-height: 1.6; color: rgba(255,255,255,.82); margin: 40px auto 0; max-width: 560px; }
.reviews__note a { color: #fff; font-weight: 700; text-underline-offset: 3px; }

/* ---- Claims -------------------------------------------------------------- */
.claims { max-width: var(--w-std); margin: 100px auto; padding: 0 20px; }
.claims__panel { background: linear-gradient(150deg, #E7F0E8, #EDF4EA); border-radius: var(--r-panel); padding: clamp(34px, 5vw, 58px); }
.claims__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 36px; align-items: center; }
.claims h2 {
  font-weight: 800;
  font-size: clamp(26px, 3.6vw, 38px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 18px 0 0;
  text-wrap: balance;
}
.claims p.body { font-size: 17px; line-height: 1.6; color: #44514A; margin: 16px 0 0; max-width: 520px; }
.claims__steps { display: grid; gap: 14px; }
.claim-step {
  background: #fff;
  border-radius: var(--r-card);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 24px rgba(20,38,28,.06);
}
.claim-step__num {
  width: 42px; height: 42px; border-radius: 13px;
  font-weight: 800; font-size: 18px;
  display: flex; align-items: center; justify-content: center; flex: none;
}
.claim-step__num--g { background: var(--tint-green); color: var(--green-deep); }
.claim-step__num--p { background: var(--tint-green-2); color: var(--pink-deep); }
.claim-step strong { color: var(--ink); display: block; }
.claim-step span.small { font-size: 14.5px; color: var(--muted-soft); }
.claim-step__text { line-height: 1.4; }

/* ---- Latest articles ----------------------------------------------------- */
.articles-band { background: var(--tint-green-2); width: 100%; padding: 72px 20px; margin-top: 88px; }
.articles__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 32px; flex-wrap: wrap; gap: 16px; }
.articles__head h3 { font-weight: 800; font-size: clamp(22px, 3vw, 30px); color: var(--ink); margin: 0; }
.articles__viewall {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--green-deep); font-weight: 700; font-size: 15px;
  padding: 11px 20px; border: 2px solid #C7DCC9; border-radius: var(--r-pill);
  transition: border-color .2s ease;
}
.articles__viewall:hover { border-color: var(--green); }
.articles__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.article-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(20,38,28,.06);
  transition: transform .2s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card__img {
  display: block; width: 100%; height: 150px;
  background: linear-gradient(135deg, #DCEAD9, #EAF3E6);
  display: flex; align-items: center; justify-content: center;
  color: #8AA790; font-size: 12px; font-weight: 700;
}
.article-card__img img { width: 100%; height: 150px; object-fit: cover; display: block; }
.article-card__body { padding: 20px; }
.article-card__tag { display: inline-block; font-weight: 700; font-size: 11px; padding: 4px 10px; border-radius: var(--r-pill); margin-bottom: 10px; }
.article-card__tag--g { background: var(--tint-green); color: var(--green-deep); }
.article-card__tag--p { background: var(--tint-green-2); color: var(--pink-deep); }
.article-card h4 { font-weight: 700; font-size: 16px; color: var(--ink); margin: 0 0 8px; line-height: 1.3; }
/* Headline links read as headlines, not as links in running text. */
.article-card h4 a { color: inherit; text-decoration: none; }
.article-card h4 a:hover { text-decoration: underline; }
.article-card__more { display: inline-block; min-height: 24px; line-height: 24px; font-weight: 700; font-size: 13.5px; text-decoration: none; }
.article-card__more--g { color: var(--green-deep); }
.article-card__more--p { color: var(--pink-deep); }

/* ---- FAQ ----------------------------------------------------------------- */
.faq { max-width: 880px; margin: 0 auto; padding: 52px 20px 88px; }
.faq__head { text-align: left; }
.faq__head h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 18px 0 30px;
}
.faq__list { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid #EAF1EE; border-radius: var(--r-card); overflow: hidden; box-shadow: 0 8px 22px rgba(20,38,28,.05); }
.faq-item__btn {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: none; border: none; cursor: pointer;
  padding: 22px 26px; text-align: left;
  font-family: var(--font); font-weight: 700; font-size: 17.5px; color: var(--ink);
}
.faq-item__icon { width: 30px; height: 30px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex: none; }
.faq-item__icon--closed { background: var(--tint-green); }
.faq-item__icon--open { background: var(--green-deep); }
.faq-item[aria-expanded="true"]  .faq-item__icon--closed { display: none; }
.faq-item[aria-expanded="false"] .faq-item__icon--open   { display: none; }
.faq-item__answer { padding: 0 26px 24px; color: var(--muted); font-size: 16px; line-height: 1.6; }
.faq-item[aria-expanded="false"] .faq-item__answer { display: none; }

/* ---- Footer -------------------------------------------------------------- */
.footer { background: var(--green-deep); color: #CAD6CD; margin-top: 30px; border-radius: 40px 40px 0 0; overflow: hidden; padding: 0 0 30px; }
.footer__inner { max-width: var(--w-std); margin: 0 auto; padding: 72px 20px 0; }
.footer__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 36px; }
@media (min-width: 1200px) { .footer__cols { grid-template-columns: 1.2fr .8fr .8fr .8fr 1.3fr; gap: 28px 56px; } }
.footer__brand { min-width: 240px; }
.footer__brand img { height: 40px; width: auto; display: block; }
.footer__brand p { font-size: 14.5px; line-height: 1.6; color: #A6B3A9; margin: 18px 0 0; max-width: 300px; }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a { width: 40px; height: 40px; border-radius: 12px; background: rgba(255,255,255,.08); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: background .2s ease; }
.footer__social a:hover { background: rgba(255,255,255,.18); }
/* h3, not h4: the footer columns sit directly under the page's h2s, and
   jumping a level breaks the outline a screen reader reads out. */
.footer h3 { font-weight: 700; font-size: 15px; color: #fff; margin: 0 0 20px; }
/* The links are only ~16px tall on their own, under the 24px minimum for a
   touch target. Padding grows the hit area without changing the spacing, so
   the gap shrinks by the padding it adds. */
.footer__links { display: flex; flex-direction: column; gap: 6px; }
.footer__links a { text-decoration: none; color: #A6B3A9; font-size: 14.5px; transition: color .2s ease; padding: 4px 0; }
.footer__links a:hover { color: #fff; }
.footer__contact { display: flex; flex-direction: column; gap: 12px; }
.footer__contact a.phone { display: inline-block; padding: 4px 0; text-decoration: none; color: #fff; font-weight: 700; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.footer__contact a.email { display: inline-block; padding: 4px 0; text-decoration: none; color: #A6B3A9; font-size: 14.5px; }
.footer__contact address { font-size: 14.5px; color: #A6B3A9; line-height: 1.5; font-style: normal; }
.footer__newsletter { margin-top: 22px; max-width: 320px; }
.footer__newsletter span.label { display: block; font-size: 13.5px; color: #A6B3A9; margin-bottom: 8px; }
.footer__newsletter form { display: flex; flex-wrap: wrap; gap: 8px; background: rgba(255,255,255,.08); border-radius: 14px; padding: 6px; }
.footer__newsletter input { flex: 1 1 140px; min-width: 140px; background: none; border: none; outline: none; color: #fff; font-size: 14px; padding: 9px 12px; font-family: var(--font); }
.footer__newsletter input::placeholder { color: rgba(255,255,255,.5); }
.footer__newsletter button { background: var(--pink); color: #fff; border: none; border-radius: 10px; font-weight: 700; font-size: 14px; padding: 9px 16px; cursor: pointer; font-family: var(--font); transition: background .2s ease; }
.footer__newsletter button:hover { background: var(--pink-deep); }
.footer__regulatory { background: rgba(255,255,255,.05); border-radius: var(--r-card); padding: 24px 26px; margin-top: 52px; }
.footer__regulatory p { font-size: 12.5px; line-height: 1.6; color: #94A096; margin: 0; }
.footer__regulatory p + p { font-size: 12px; color: #76847A; margin: 10px 0 0; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; margin-top: 32px; padding-top: 28px; border-top: 1px solid rgba(255,255,255,.1); }
.footer__bottom > span { font-size: 13px; color: #828E84; }
.footer__legal { display: flex; flex-wrap: wrap; gap: 20px; }
.footer__legal a { display: inline-block; padding: 5px 0; text-decoration: none; color: #A6B3A9; font-size: 13px; transition: color .2s ease; }
.footer__legal a:hover { color: #fff; }

/* ---- Floating widgets ---------------------------------------------------- */
.mobile-bar {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(20,38,28,.16);
  padding: 6px;
  display: flex;
  gap: 6px;
}
.mobile-bar a {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  text-decoration: none;
  border-radius: 11px;
  padding: 9px 4px;
  font-weight: 700;
  font-size: 12.5px;
}
.mobile-bar a.quote  { background: var(--green); color: #fff; }
.mobile-bar a.call   { background: var(--tint-green-2); color: var(--ink); }
.mobile-bar a.portal { background: var(--tint-green); color: var(--green-deep); }

.whatsapp {
  position: fixed;
  right: 24px; bottom: 24px;
  z-index: 70;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
}
.whatsapp__text {
  background: #fff;
  border-radius: 16px;
  padding: 13px 30px 13px 18px;
  margin-right: -16px;
  box-shadow: 0 10px 28px rgba(20,38,28,.18);
  font-size: 14px;
  white-space: nowrap;
}
.whatsapp__text .muted { color: var(--muted); }
.whatsapp__text strong { color: var(--ink); font-weight: 700; }
.whatsapp__icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px rgba(37,211,102,.4);
  flex: none;
}

.scrolltop {
  position: fixed;
  right: 28px; bottom: 96px;
  z-index: 70;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-deep);
  border: none;
  box-shadow: 0 10px 28px rgba(20,38,28,.25);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
}
.scrolltop.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scrolltop:hover { background: var(--green); }

/* ==========================================================================
   Internal pages (shared components)
   ========================================================================== */

/* Active nav item */
.nav a.is-current { background: #F0F5EE; color: var(--ink); }

/* Page hero (full-height, same treatment as the homepage hero) */
.page-hero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 50px);
  min-height: calc(100dvh - 50px);
  background-color: var(--green-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.page-hero--insurance { background-image: linear-gradient(105deg, rgba(11,26,16,.82) 0%, rgba(11,26,16,.55) 48%, rgba(11,26,16,.32) 100%), url('../images/hero-aerial-park.webp'); }
.page-hero--join      { background-image: linear-gradient(105deg, rgba(11,26,16,.82) 0%, rgba(11,26,16,.55) 48%, rgba(11,26,16,.32) 100%), url('../images/caravan-owners-walking.webp'); }
.page-hero__inner { position: relative; max-width: var(--w-wide); margin: 0 auto; padding: 168px 20px 72px; width: 100%; }
.page-hero__content { max-width: 720px; }
.page-hero h1 {
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: #fff;
  margin: 20px 0 0;
  text-wrap: balance;
}
.page-hero p.lead { font-size: 18px; line-height: 1.6; color: rgba(255,255,255,.9); margin: 20px 0 0; max-width: 600px; }

/* Breadcrumb */
.breadcrumb { font-size: 13.5px; color: rgba(255,255,255,.7); }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* Generic centred section head */
.section-head { text-align: left; max-width: 720px; margin: 0 0 40px; }
.section-head h2 {
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  color: var(--ink);
  margin: 16px 0 0;
  text-wrap: balance;
}
.section-head p { font-size: 17px; line-height: 1.7; color: var(--muted); margin: 14px 0 0; }

/* Soft trust-badge row (for light backgrounds) */
.badge-soft-row { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
/* On small devices, become a horizontal scroll strip (one inline row) */
@media (max-width: 640px) {
  .badge-soft-row {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .badge-soft-row::-webkit-scrollbar { display: none; }
  .badge-soft { flex: 0 0 auto; scroll-snap-align: start; }
}
.badge-soft {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tint-green);
  color: var(--green-deep);
  font-weight: 700; font-size: 14px;
  padding: 10px 16px; border-radius: var(--r-pill);
}
.badge-soft svg { flex: none; }

/* Numbered "how it works" steps as a row */
.steps-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 8px; }
.step-card {
  background: #fff;
  border: 1px solid #E7EFE9;
  border-radius: var(--r-card-lg);
  padding: 30px;
  box-shadow: 0 12px 28px rgba(20,38,28,.05);
}
.step-card__num {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--tint-green); color: var(--green-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
}
.step-card h3 { font-weight: 800; font-size: 18px; color: var(--ink); margin: 16px 0 6px; }
.step-card p { font-size: 15px; line-height: 1.55; color: var(--muted); margin: 0; }

/* Quote / contact form */
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--r-card-lg);
  box-shadow: 0 18px 44px rgba(20,38,28,.10);
  padding: clamp(26px, 4vw, 44px);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 14px; font-weight: 700; color: var(--ink); }
.field input, .field select, .field textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  background: var(--page);
  border: 1.5px solid #DDE8E2;
  border-radius: 12px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59,108,70,.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.field--consent { flex-direction: row; align-items: flex-start; gap: 11px; }
.field--consent input { width: 20px; height: 20px; margin-top: 2px; flex: none; accent-color: var(--green); }
.field--consent label { font-weight: 500; font-size: 14px; color: var(--muted); line-height: 1.5; }
.form-note { font-size: 13px; color: #8B948C; margin: 16px 0 0; line-height: 1.5; }
.form-success {
  background: var(--tint-green);
  border: 1px solid #C7DCC9;
  border-radius: var(--r-card);
  padding: 22px 24px;
  color: var(--green-deep);
  font-weight: 600;
  font-size: 16px;
}

/* Two-column intro (text + aside card) */
.lede-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: start; }
.aside-card {
  background: linear-gradient(150deg, #E7F0E8, #EDF4EA);
  border-radius: var(--r-card-lg);
  padding: 32px;
}
.aside-card h3 { font-weight: 800; font-size: 20px; color: var(--ink); margin: 0 0 14px; }
.aside-card ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.aside-card li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; color: #44514A; line-height: 1.5; }
.aside-card li svg { flex: none; margin-top: 2px; }

@media (max-width: 860px) {
  .form-grid { grid-template-columns: 1fr; }
  .lede-split { grid-template-columns: 1fr; gap: 32px; }
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 880px) {
  .nav, .header__cta { display: none !important; }
  .burger { display: inline-flex; }

  /* Floating buttons: smaller, balanced, and clear of the sticky CTA bar */
  .whatsapp { right: 14px; bottom: 74px; }
  .whatsapp__text { display: none; }
  .whatsapp__icon { width: 48px; height: 48px; box-shadow: 0 6px 18px rgba(37,211,102,.35); }
  .whatsapp__icon svg { width: 24px; height: 24px; }
  .scrolltop { bottom: 74px; left: 14px; right: auto; width: 44px; height: 44px; box-shadow: 0 6px 18px rgba(20,38,28,.22); }

  /* Reserve room so the fixed CTA bar never covers the footer's last rows */
  .footer { padding-bottom: 88px; }

  /* When the footer is in view, fade the floating buttons out so the footer
     (contact details + legal links) is clean and fully tappable. */
  body.footer-in-view .whatsapp,
  body.footer-in-view .scrolltop {
    opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 881px) {
  .mobile-bar, .mobile-menu { display: none !important; }
}
@media (max-width: 700px) {
  .review-card { flex: 0 0 100% !important; }
  .review-card__inner { padding: 26px 24px; border-radius: 20px; }
  .review-card__quote { font-size: 16.5px; margin-top: 16px; }
  .stats-row > div { padding: 0 !important; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 28px !important; margin-bottom: 28px; }
  .stats-row > div:last-child { border-bottom: none; margin-bottom: 0 !important; padding-bottom: 0 !important; }
}
@media (max-width: 560px) {
  .cta-pair { grid-template-columns: 1fr !important; }
  .cta-row > a { flex: 1 1 100% !important; justify-content: center; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  /* Homepage hero buttons: full-width, stacked on phones */
  .hb__cta { flex-direction: column; align-items: stretch; }
  .hb__cta .hb__btn { width: 100%; justify-content: center; }
}
@media (max-width: 760px) {
  .section { padding: 72px 20px; }
  .hero__inner { padding-top: 132px; }
}

/* ==========================================================================
   Shared image placeholder (used on advice / blog / blog-post pages until
   real photography is dropped in). Mirrors the design's image-slot look.
   ========================================================================== */
.img-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  background: linear-gradient(135deg, #E7F0E8, #EDF4EA);
  color: #6E7C71;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
  border: 1px dashed #C7DCC9;
}

/* ==========================================================================
   Sub-page full-height hero (advice / claims / blog / buyers-guide).
   Mirrors the homepage hero treatment with a page-specific photo.
   ========================================================================== */
.subhero {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 50px);
  min-height: calc(100dvh - 50px);
  background-color: var(--green-forest);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.subhero__inner { position: relative; max-width: var(--w-wide); margin: 0 auto; padding: 156px 20px 64px; width: 100%; }
.subhero__content { max-width: 760px; }
.subhero h1 { font-weight: 800; font-size: clamp(36px, 5.2vw, 58px); line-height: 1.04; letter-spacing: -.02em; color: #fff; margin: 20px 0 0; text-wrap: balance; }
.subhero .subhero__lead { font-size: 19px; font-weight: 700; color: #F36C92; margin: 18px 0 0; }
.subhero .subhero__intro { font-size: 18.5px; line-height: 1.65; color: rgba(255,255,255,.9); margin: 18px 0 0; max-width: 640px; }
.subhero--parklodges { background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.30) 100%), url('../images/caravan-park-lodges.webp'); }
.subhero--walking    { background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.30) 100%), url('../images/caravan-owners-walking.webp'); }
.subhero--aerial     { background-image: linear-gradient(105deg, rgba(11,26,16,.86) 0%, rgba(11,26,16,.60) 48%, rgba(11,26,16,.32) 100%), url('../images/hero-aerial-park.webp'); }
.subhero--award      { background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.30) 100%), url('../images/award.webp'); }
.subhero--team       { background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.30) 100%), url('../images/NACO-Meet-the-team-1.webp'); }

/* Compact hero variant — for pages whose background photo is a group/
   event shot rather than a landscape, where a near-fullscreen hero
   crops badly and leaves the page feeling mostly empty (About NACO,
   Meet the Team). */
.subhero--compact { min-height: clamp(440px, 56vh, 620px); }
.subhero--compact .subhero__inner { padding: 130px 20px 56px; }

/* Breadcrumb on dark hero */
.crumb-hero { display: flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 600; flex-wrap: wrap; }
.crumb-hero a { display: inline-block; padding: 5px 0; color: rgba(255,255,255,.7); text-decoration: none; }
.crumb-hero a:hover { color: #fff; }
.crumb-hero .sep { color: rgba(255,255,255,.4); }
.crumb-hero .here { color: #fff; }

/* Hero trust pills */
.hero-pills { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-pill { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22); color: #fff; font-weight: 600; font-size: 14px; padding: 10px 16px; border-radius: 999px; }
.hero-pill .dot { width: 8px; height: 8px; border-radius: 50%; }
.hero-pill .dot--g { background: #7DC98A; }
.hero-pill .dot--p { background: #F36C92; }

/* Reusable soft eyebrow used on sub-pages */
.eyebrow-italic--tight { margin-bottom: 14px; }

/* ==========================================================================
   Homepage hero — light split card with award/trust card + feature strip.
   ========================================================================== */
/* Hero stage: hero fills the viewport with the ticker along the bottom edge */
.hero-stage { min-height: 100vh; min-height: 100dvh; display: flex; flex-direction: column; }
.hb { width: 100%; background: transparent; padding: 96px 0 20px; flex: 1; display: flex; flex-direction: column; justify-content: center; }
.hb__card { max-width: var(--w-wide); width: 100%; margin: 0 auto; padding: 0 20px; }
.hb__main { display: grid; grid-template-columns: 1fr 1fr; column-gap: clamp(32px, 5vw, 72px); align-items: center; }
.hb__text { padding: 0; display: flex; flex-direction: column; justify-content: center; }
/* Hero Google rating badge (mirrors .reviews__google, adapted for the light hero) */
.hb__google {
  display: inline-flex; align-items: center; flex-wrap: wrap; row-gap: 4px; column-gap: 8px;
  align-self: flex-start; max-width: 100%;
  background: #F0F5EE; border: 1px solid #E1EBE2;
  padding: 10px 16px; border-radius: 16px;
}
.hb__google-g { flex: none; }
.hb__google-stars { display: inline-flex; gap: 2px; }
.hb__google-rating { font-weight: 700; font-size: 14px; color: var(--ink); }
.hb__google-link { display: inline-flex; align-items: center; min-height: 24px; gap: 5px; text-decoration: none; font-weight: 700; font-size: 13.5px; color: var(--pink-deep); border-bottom: 1.5px solid transparent; padding-bottom: 1px; transition: border-color .2s ease; }
.hb__google-link:hover { border-color: var(--pink-deep); }
.hb__title { font-family: var(--font); font-weight: 800; font-size: clamp(36px, 4.8vw, 56px); line-height: 1.05; letter-spacing: -.02em; color: var(--green-forest); margin: 20px 0 0; text-wrap: balance; }
.hb__title .accent { color: var(--pink); }
.hb__lead { font-size: 18px; line-height: 1.6; color: var(--muted); margin: 22px 0 0; max-width: 480px; }
.hb__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hb__btn { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; font-family: var(--font); font-weight: 700; font-size: 16px; padding: 16px 26px; border-radius: 14px; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.hb__btn--primary { background: var(--green-forest); color: #fff; box-shadow: 0 12px 26px rgba(20,38,28,.22); }
.hb__btn--primary:hover { background: var(--green-deep); transform: translateY(-2px); }
.hb__btn--soft { background: #fff; color: var(--ink); border: 1.5px solid #DDE8E2; }
.hb__btn--soft:hover { border-color: #C7DCC9; transform: translateY(-2px); }

.hb__media { position: relative; min-height: 400px; }
.hb__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-card-lg); }

/* Feature carousel dots (shown only when the strip is a carousel) */
.hb__dots { display: none; }
.hb__dot { width: 8px; height: 8px; border-radius: 50%; border: 8px solid transparent; background: #D8E4DA; background-clip: content-box; box-sizing: content-box; padding: 0; cursor: pointer; transition: width .2s ease, background .2s ease; }
.hb__dot.is-active { width: 22px; border-radius: 4px; background: var(--pink); }

.award { position: absolute; right: 28px; bottom: 28px; width: 262px; background: #fff; border-radius: 24px; padding: 28px 24px; box-shadow: 0 24px 54px rgba(20,38,28,.22); text-align: center; z-index: 2; }
.award__trophy { width: 62px; height: 62px; margin: 0 auto 14px; border-radius: 50%; background: var(--tint-green); display: flex; align-items: center; justify-content: center; }
.award__kicker { display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-deep); }
.award__title { font-family: var(--font); font-weight: 800; font-size: 25px; line-height: 1.12; letter-spacing: -.01em; color: var(--green-forest); margin: 8px 0 0; }
.award__rule { height: 1px; background: #E7EFE9; margin: 16px 20px; }
.award__event { font-size: 14.5px; font-weight: 600; color: #44514A; }
.award__stars { display: flex; justify-content: center; gap: 3px; margin: 12px 0 12px; }
.award__note { font-size: 13.5px; line-height: 1.5; color: var(--muted-soft); margin: 0; }
.award__brand { margin-top: 16px; font-size: 12.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: #8B948C; }

.hb__features { background: #fff; border: 1px solid #EAF1EE; border-radius: var(--r-card-lg); box-shadow: 0 12px 28px rgba(20,38,28,.05); display: grid; grid-template-columns: repeat(5, 1fr); margin-top: 16px; }

/* Pink primary hero button */
.hb__btn--pink { background: var(--pink); color: #fff; box-shadow: 0 12px 26px rgba(223,36,85,.32); }
.hb__btn--pink:hover { background: var(--pink-deep); color: #fff; transform: translateY(-2px); }

/* Award band: full-width white card under the hero */
.hb__award { background: #fff; border: 1px solid #EAF1EE; border-radius: var(--r-card-lg); box-shadow: 0 12px 28px rgba(20,38,28,.05); padding: 18px 26px; margin-top: 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.hb__award-main { display: flex; align-items: center; gap: 16px; }
.hb__award-ic { width: 48px; height: 48px; border-radius: 14px; background: #FCF3D9; display: flex; align-items: center; justify-content: center; flex: none; }
.hb__award-txt { display: flex; flex-direction: column; gap: 1px; }
.hb__award-kicker { font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); }
.hb__award-title { font-family: var(--font); font-weight: 800; font-size: 18px; color: var(--ink); line-height: 1.15; }
.hb__award-sub { font-size: 13px; color: var(--muted-soft); }
.hb__award-pill { background: var(--tint-green); color: var(--green-deep); font-weight: 700; font-size: 13.5px; padding: 9px 16px; border-radius: var(--r-pill); white-space: nowrap; text-decoration: none; cursor: pointer; transition: background .2s ease; }
.hb__award-pill:hover { background: #DCEAD9; }
@media (max-width: 700px) {
  .hb__award { flex-direction: column; align-items: flex-start; gap: 14px; }
}
.feat { display: flex; align-items: flex-start; gap: 13px; padding: 30px clamp(18px,2vw,30px); border-right: 1px solid #EAF1EE; }
.feat:last-child { border-right: none; }
.feat__ic { width: 42px; height: 42px; flex: none; border-radius: 12px; background: #EEF4EC; display: flex; align-items: center; justify-content: center; }
.feat div strong { display: block; font-size: 15.5px; color: var(--ink); font-weight: 800; }
.feat div span { display: block; font-size: 13.5px; line-height: 1.45; color: var(--muted-soft); margin-top: 3px; }

@media (max-width: 1040px) {
  .hb__main { grid-template-columns: 1fr; row-gap: 28px; }
  .hb__media { min-height: 0; }
  .hb__media img { position: static; height: auto; display: block; }
  .award { position: static; transform: none; width: min(330px, 88%); margin: 18px auto 4px; }
  /* Feature strip becomes a swipe carousel on smaller screens */
  .hb__features {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .hb__features::-webkit-scrollbar { display: none; }
  .feat {
    flex: 0 0 auto;
    width: min(78%, 290px);
    scroll-snap-align: start;
    border-right: 1px solid #EAF1EE;
    border-bottom: none;
  }
  .feat:last-child { border-right: none; }
  .hb__dots { display: flex; justify-content: center; gap: 8px; padding: 16px 20px 6px; }
}

/* Phone-sized copies of the full-bleed hero backgrounds. At 390px wide the
   desktop files are roughly 4x more pixels than the screen can show, and they
   sit behind a heavy dark gradient where the difference is invisible. Each
   rule repeats its own gradient because background-image sets both layers.
   .hero-break--trust matters most: it uses the same picture as the hero <img>
   above it, so without this a phone downloaded that photo twice — once at
   768px for the img, and again at 1536px for the background. */
@media (max-width: 860px) {
  .hero-break--award {
    background-image: linear-gradient(105deg, rgba(11,26,16,.80) 0%, rgba(11,26,16,.50) 55%, rgba(11,26,16,.25) 100%), url('../images/caravan-park-lodges-768.webp');
  }
  .hero-break--since {
    background-image: linear-gradient(105deg, rgba(11,26,16,.85) 0%, rgba(11,26,16,.55) 50%, rgba(11,26,16,.25) 100%), url('../images/caravan-owners-walking-768.webp');
  }
  .hero-break--trust {
    background-image: linear-gradient(105deg, rgba(11,26,16,.85) 0%, rgba(11,26,16,.55) 50%, rgba(11,26,16,.3) 100%), url('../images/caravan-owners-terrace-768.webp');
  }
  .subhero--walking {
    background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.34) 100%), url('../images/caravan-owners-walking-768.webp');
  }
  .subhero--parklodges,
  .page-hero--join {
    background-image: linear-gradient(105deg, rgba(11,26,16,.84) 0%, rgba(11,26,16,.58) 48%, rgba(11,26,16,.34) 100%), url('../images/caravan-park-lodges-768.webp');
  }
}

/* The full-bleed bands sit well below the fold, but a CSS background is
   fetched as soon as its element is in the render tree — so on a slow
   connection they competed with the LCP image for bandwidth. content-visibility
   lets the browser skip rendering them until they're near the viewport, which
   defers the fetch too. contain-intrinsic-size supplies a stand-in height so
   the scrollbar doesn't jump, keeping CLS at zero. */
.hero-break--award,
.hero-break--since,
.hero-break--trust {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}
