/* =============================================================================
   Leicestershire Emergency Tree Surgeon — stylesheet
   Design tokens carried over from the original mockup. Written as a real
   stylesheet rather than inline styles: ~14KB once for 25 pages instead of
   ~30KB repeated on every one, and it caches.
   ========================================================================== */

:root {
  --forest: #0C3B2E;
  --forest-deep: #081F17;
  --forest-mid: #08251B;
  --green: #1E6F4F;
  --amber: #F0A400;
  --amber-hi: #FFB81F;
  --red: #B42318;
  --red-br: #D92D20;
  --cream: #F6F4EE;
  --line: #E7E4D9;
  --ink: #13251D;
  --muted: #4A5A50;
  --white: #fff;

  --font: 'Barlow', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-cond: 'Barlow Condensed', 'Barlow', system-ui, sans-serif;

  --wrap: 1120px;
  --r-sm: 10px;
  --r: 14px;
  --r-lg: 20px;
  --shadow: 0 1px 2px rgba(19,37,29,.05), 0 12px 32px -20px rgba(19,37,29,.25);
  --shadow-lg: 0 20px 44px -18px rgba(19,37,29,.32);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration: none; }
a:hover { color: var(--forest); text-decoration: underline; }

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

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--amber); color: var(--ink); padding: 12px 18px;
  font-weight: 700; border-radius: 0 0 var(--r-sm) 0;
}
.skip:focus { left: 0; }

/* ------------------------------------------------------------- structure */
.wrap { max-width: var(--wrap); margin: 0 auto; padding-inline: 20px; }
.wrap--narrow { max-width: 780px; }
.section { padding: 72px 0 76px; }
.section--cream { background: var(--cream); }
.section--white { background: var(--white); }
.section--forest { background: var(--forest); color: #fff; }
.section--red { background: var(--red); color: #fff; position: relative; }
.center { text-align: center; }
.center-actions { justify-content: center; }
.mt-md { margin-top: 24px; } .mt-lg { margin-top: 38px; } .mb-md { margin-bottom: 24px; }

.grid { display: grid; }
.grid--2 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.gap-sm { gap: 14px; } .gap-md { gap: 18px; } .gap-lg { gap: 20px; } .gap-xl { gap: 48px; }
.stack { display: flex; flex-direction: column; gap: 20px; }

.layout-aside { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 48px; align-items: start; }
@media (max-width: 900px) { .layout-aside { grid-template-columns: 1fr; gap: 36px; } }

/* ---------------------------------------------------------------- typography */
h1, h2, h3 { font-family: var(--font-cond); font-weight: 700; text-transform: uppercase; letter-spacing: .015em; line-height: 1.04; }
h1 { font-size: clamp(38px, 6.2vw, 62px); line-height: .99; margin: 14px 0 18px; }
.h2, .section h2 { font-size: clamp(28px, 4.2vw, 42px); margin: 0 0 16px; }
.h2--light { color: #fff; }
.lede { font-size: 18px; line-height: 1.6; color: var(--muted); max-width: 62ch; margin: 0 0 24px; }
.lede--light { color: rgba(255,255,255,.85); }
.muted { color: var(--muted); }
.muted-light { color: rgba(255,255,255,.7); font-size: 14px; }
.amber { color: var(--amber); }
.tag { display: inline-block; font-family: var(--font); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; background: var(--amber); color: var(--ink); padding: 3px 8px; border-radius: 999px; vertical-align: middle; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; margin: 0;
  font-family: var(--font-cond); font-weight: 600; font-size: 14px;
  letter-spacing: .22em; text-transform: uppercase; color: var(--green);
}
.eyebrow--amber { color: var(--amber); }
.eyebrow__rule { width: 26px; height: 2px; background: currentColor; }

.prose { max-width: 68ch; }
.prose h2 { font-size: clamp(24px, 3.2vw, 32px); margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose p { margin: 0 0 16px; }
.prose > p:first-of-type { font-size: 18px; }

/* -------------------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 22px; border-radius: 12px; border: 1.5px solid transparent;
  font-family: var(--font); font-weight: 700; font-size: 16px; line-height: 1.2;
  cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease, transform .15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--lg { padding: 16px 26px; font-size: 17px; }
.btn--xl { padding: 18px 28px; font-size: clamp(17px, 2.4vw, 21px); }
.btn--block { width: 100%; }
.btn--amber { background: var(--amber); color: var(--ink); }
.btn--amber:hover { background: var(--amber-hi); color: var(--ink); }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--forest); color: #fff; }
.btn--white { background: #fff; color: var(--red); }
.btn--white:hover { background: #FFF3E0; color: var(--red); }
.btn--ghost { border-color: rgba(255,255,255,.38); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--amber); color: var(--amber); }
.btn--outline { border-color: var(--line); color: var(--forest); background: #fff; }
.btn--outline:hover { border-color: var(--green); color: var(--green); }

@keyframes pulseAmber {
  0%   { box-shadow: 0 10px 26px rgba(0,0,0,.35), 0 0 0 0 rgba(240,164,0,.55); }
  70%  { box-shadow: 0 10px 26px rgba(0,0,0,.35), 0 0 0 18px rgba(240,164,0,0); }
  100% { box-shadow: 0 10px 26px rgba(0,0,0,.35), 0 0 0 0 rgba(240,164,0,0); }
}
.btn--pulse { animation: pulseAmber 2.4s infinite; }

/* --------------------------------------------------------------------- header */
.stormbar {
  display: flex; align-items: center; justify-content: center; gap: 9px;
  background: var(--red-br); color: #fff; text-align: center;
  padding: 9px 16px; font-size: 14px; font-weight: 600; letter-spacing: .02em;
}
.stormbar:hover { color: #fff; text-decoration: none; background: #C42517; }
.stormbar svg { stroke: #FFD34D; flex-shrink: 0; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--forest);
  border-bottom: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 14px rgba(8,31,23,.4);
}
.header__inner { display: flex; align-items: center; gap: 22px; padding-block: 12px; }

.brand { display: flex; align-items: center; gap: 11px; color: #fff; flex-shrink: 0; }
.brand:hover { color: #fff; text-decoration: none; }
.brand__mark {
  width: 40px; height: 40px; border-radius: var(--r-sm); background: var(--amber);
  display: grid; place-items: center; flex-shrink: 0; color: #132015;
}
.brand--sm .brand__mark { width: 38px; height: 38px; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__top { font-family: var(--font-cond); font-weight: 600; font-size: 12px; letter-spacing: .2em; color: var(--amber); }
.brand__bottom { font-family: var(--font-cond); font-weight: 700; font-size: 19px; letter-spacing: .05em; color: #fff; }
.brand--sm .brand__top { font-size: 11px; }
.brand--sm .brand__bottom { font-size: 17px; }

.site-nav { display: flex; align-items: center; gap: 22px; margin-left: auto; }
.site-nav a {
  color: rgba(255,255,255,.85); font-family: var(--font-cond); font-weight: 600;
  font-size: 15px; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap;
}
.site-nav a:hover { color: var(--amber); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--amber); box-shadow: inset 0 -2px 0 var(--amber); }

.nav-toggle { display: none; background: transparent; border: 1.5px solid rgba(255,255,255,.3); color: #fff; border-radius: var(--r-sm); padding: 8px; margin-left: auto; cursor: pointer; }

@media (max-width: 1000px) {
  .nav-toggle { display: inline-flex; }
  .header__call { display: none; }
  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--forest); border-top: 1px solid rgba(255,255,255,.1);
    box-shadow: 0 18px 30px rgba(0,0,0,.35);
    max-height: 0; overflow: hidden; transition: max-height .22s ease;
  }
  .site-nav a { padding: 15px 20px; border-bottom: 1px solid rgba(255,255,255,.07); letter-spacing: .08em; }
  .site-nav.is-open { max-height: 480px; }
}

/* ---------------------------------------------------------------- breadcrumbs */
.crumbs { background: var(--forest-mid); color: rgba(255,255,255,.65); font-size: 13px; }
.crumbs ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 9px 0; }
.crumbs li + li::before { content: "/"; margin-right: 8px; opacity: .5; }
.crumbs a { color: rgba(255,255,255,.8); }
.crumbs a:hover { color: var(--amber); }

/* ----------------------------------------------------------------------- hero */
.hero { background: var(--forest); color: #fff; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(900px 520px at 88% 15%, rgba(30,111,79,.55), transparent 65%);
}
.hero__inner {
  position: relative; padding: 60px 20px 72px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 44px; align-items: center;
}
.hero h1 { margin-top: 16px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-bottom: 16px; }
.hero__note { font-size: 14px; color: rgba(255,255,255,.65); margin: 0 0 22px; }
.hero__media { border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,.15); box-shadow: 0 26px 60px rgba(0,0,0,.38); }

.pagehead { background: var(--forest); color: #fff; padding: 52px 0 56px; position: relative; overflow: hidden; }
.pagehead::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(800px 460px at 90% 0%, rgba(30,111,79,.5), transparent 62%);
}
.pagehead > .wrap { position: relative; }
.pagehead h1 { font-size: clamp(32px, 5.4vw, 52px); }
.pagehead--red { background: var(--red); }
.pagehead--red::before { background: radial-gradient(800px 460px at 90% 0%, rgba(217,45,32,.6), transparent 62%); }

/* -------------------------------------------------------------------- photos */
/* height:auto by default so the width/height attributes drive the intrinsic
   ratio and nothing is stretched; the fixed-ratio containers opt in below. */
.photo { width: 100%; height: auto; object-fit: cover; background: #10362a; }
.photo--round { border-radius: var(--r-lg); aspect-ratio: 1 / 1; }
.hero__media { display: flex; }
.hero__media .photo { aspect-ratio: 4 / 3; height: 100%; }
/* Missing photos are resolved to an inline SVG placeholder by the build
   (see src/components.js) — nothing needed here. */

/* --------------------------------------------------------------- trust band */
.trustband { background: var(--forest-mid); border-top: 1px solid rgba(255,255,255,.06); }
.trustband__inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 38px; padding-block: 18px; }
.trustband__item { display: flex; align-items: center; gap: 10px; }
.trustband__item svg { stroke: var(--amber); flex-shrink: 0; }
.trustband__item span {
  font-family: var(--font-cond); font-weight: 600; font-size: 15px;
  letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.92);
}

.hazard { height: 10px; background: repeating-linear-gradient(-45deg, var(--amber) 0 14px, #132015 14px 28px); }
.section--red .hazard { position: absolute; top: 0; left: 0; right: 0; }
.section--red { padding-top: 62px; }

/* -------------------------------------------------------------------- cards */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 26px; box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
  display: flex; flex-direction: column;
}
.card--link { color: inherit; }
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); text-decoration: none; color: inherit; border-color: #d8d3c2; }
.card--white { box-shadow: 0 16px 40px rgba(0,0,0,.25); border-color: transparent; }
.card--sm { padding: 20px; }
.card h3 { font-size: 21px; margin: 16px 0 8px; color: var(--ink); }
.card--sm h3 { font-size: 18px; margin: 12px 0 6px; }
.card p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0 0 8px; }
.card__sub { font-size: 14px !important; }
.card__icon { width: 48px; height: 48px; border-radius: 12px; background: #EAF3EE; color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.card--sm .card__icon { width: 40px; height: 40px; }
.card__icon--red { background: #FDEAE8; color: var(--red); }
.card__more { margin-top: auto; padding-top: 12px; display: inline-flex; align-items: center; gap: 7px; font-weight: 700; font-size: 14px; color: var(--green); }
.card--link:hover .card__more { color: var(--forest); }

/* -------------------------------------------------------------------- steps */
.steps { display: flex; flex-wrap: wrap; gap: 18px 40px; margin: 32px 0 0; padding: 0; list-style: none; counter-reset: s; }
.steps li { display: flex; align-items: flex-start; gap: 12px; flex: 1; min-width: 220px; counter-increment: s; }
.steps li::before {
  content: counter(s);
  width: 34px; height: 34px; border-radius: 50%; border: 1.5px solid rgba(255,255,255,.45);
  display: grid; place-items: center; font-family: var(--font-cond); font-weight: 700; font-size: 17px; flex-shrink: 0;
}
.steps b { display: block; font-size: 15px; }
.steps span { font-size: 13px; color: rgba(255,255,255,.75); }

.numsteps { list-style: none; counter-reset: n; padding: 0; margin: 0 0 20px; display: grid; gap: 14px; }
.numsteps li { counter-increment: n; display: grid; grid-template-columns: 34px 1fr; gap: 14px; align-items: start; }
.numsteps li::before {
  content: counter(n);
  width: 34px; height: 34px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; font-family: var(--font-cond); font-weight: 700; font-size: 17px;
}
.numsteps b { display: block; }
.numsteps span { color: var(--muted); font-size: 15px; }

.inline-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 16px 28px; margin-top: 34px; }
.inline-cta p { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,.78); max-width: 44ch; margin: 0; }
.inline-cta--dark p { color: var(--muted); }
.link-light { color: var(--amber); font-weight: 700; display: inline-flex; align-items: center; gap: 6px; }
.link-light:hover { color: var(--amber-hi); }

/* ----------------------------------------------------------------- features */
.featurelist { display: flex; flex-direction: column; gap: 22px; margin: 24px 0; }
.feature { display: flex; gap: 14px; }
.feature__icon { width: 44px; height: 44px; border-radius: 12px; background: #EAF3EE; color: var(--green); display: grid; place-items: center; flex-shrink: 0; }
.feature h3 { font-size: 20px; margin: 0 0 5px; }
.feature p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; }

.glance { background: var(--forest); border-radius: var(--r-lg); padding: 32px; color: #fff; }
.glance__h { font-family: var(--font-cond); font-weight: 600; font-size: 14px; letter-spacing: .22em; text-transform: uppercase; color: var(--amber); margin: 0 0 20px; }
.glance__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 20px; }
.glance__grid b { display: block; font-family: var(--font-cond); font-weight: 700; font-size: 42px; line-height: 1; color: var(--amber); }
.glance__grid span { display: block; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.75); margin-top: 6px; }

/* --------------------------------------------------------------------- ticks */
.ticks { list-style: none; padding: 0; margin: 0 0 20px; display: grid; gap: 11px; }
.ticks li { display: grid; grid-template-columns: 20px 1fr; gap: 11px; align-items: start; font-size: 16px; line-height: 1.55; }
.ticks svg { color: var(--green); margin-top: 4px; }
.ticks--sm li { font-size: 14px; grid-template-columns: 18px 1fr; gap: 9px; }

/* --------------------------------------------------------------------- pills */
.pills { display: flex; flex-wrap: wrap; gap: 10px; align-content: start; }
.pill {
  display: inline-flex; align-items: center; gap: 7px; padding: 10px 16px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.92); font-size: 14px; font-weight: 500;
}
.pill:hover { border-color: var(--amber); color: var(--amber); text-decoration: none; }
.pill--hq, .pill--on { background: var(--amber); color: #132015; border-color: var(--amber); font-weight: 700; }
.pill--hq:hover { background: var(--amber-hi); color: #132015; }
.section--white .pill, .section--cream .pill, .aside .pill { border-color: var(--line); color: var(--forest); background: #fff; }
.section--white .pill:hover, .section--cream .pill:hover, .aside .pill:hover { border-color: var(--green); color: var(--green); }
.pills--sm .pill { padding: 7px 12px; font-size: 13px; }

.hqcard { display: flex; gap: 14px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r); padding: 20px; }
.hqcard svg { stroke: var(--amber); flex-shrink: 0; margin-top: 2px; }
.hqcard b { display: block; font-size: 16px; color: #fff; }
.hqcard span { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.7); }

/* --------------------------------------------------------------------- aside */
.aside { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 96px; }
@media (max-width: 900px) { .aside { position: static; } }
.aside__card { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.aside__card--dark { background: var(--forest); border-color: transparent; color: #fff; display: flex; flex-direction: column; gap: 12px; }
.aside__h { font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: .12em; text-transform: uppercase; margin: 0 0 12px; }
.aside__card--dark .aside__h { color: var(--amber); margin-bottom: 0; }
.aside__note { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.75); margin: 0; }
.aside__card:not(.aside__card--dark) .aside__note { color: var(--muted); }
.aside__links { display: flex; flex-direction: column; gap: 9px; font-size: 15px; }
.aside__links a { display: inline-flex; align-items: center; gap: 7px; }

.factlist { margin: 0; font-size: 14px; }
.factlist dt { font-weight: 700; color: var(--ink); margin-top: 10px; }
.factlist dt:first-child { margin-top: 0; }
.factlist dd { margin: 2px 0 0; color: var(--muted); }

/* ---------------------------------------------------------------------- faqs */
.faqs { display: grid; gap: 10px; }
.faq { background: #fff; border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px; cursor: pointer; list-style: none;
  font-family: var(--font-cond); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: .01em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { flex-shrink: 0; color: var(--green); transition: transform .18s ease; }
.faq[open] summary svg { transform: rotate(180deg); }
.faq[open] summary { border-bottom: 1px solid var(--line); }
.faq__body { padding: 16px 20px 20px; }
.faq__body p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.65; }

/* ------------------------------------------------------------------- reviews */
.reviews { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; margin: 28px 0; }
.review { background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; margin: 0; }
.review__stars { display: flex; gap: 2px; margin-bottom: 12px; }
.review blockquote { margin: 0 0 12px; }
.review blockquote p { font-size: 16px; line-height: 1.6; margin: 0; }
.review figcaption { font-size: 13px; font-weight: 600; color: var(--muted); }

.gbadge { display: inline-flex; align-items: center; gap: 13px; background: #fff; border-radius: var(--r); padding: 11px 18px; box-shadow: 0 14px 32px rgba(0,0,0,.3); color: var(--ink); }
.gbadge__g { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: grid; place-items: center; font-weight: 700; font-size: 21px; color: #4285F4; }
.gbadge__row { display: flex; align-items: center; gap: 6px; font-size: 16px; }
.gbadge__sub { display: block; font-size: 12px; color: #5B6B62; }

/* ----------------------------------------------------------------- cta bands */
.cta { background: var(--green); color: #fff; }
.cta--red { background: var(--red); }
.cta__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; padding-block: 48px; }
.cta h2 { font-size: clamp(26px, 3.4vw, 36px); margin: 0 0 8px; color: #fff; }
.cta p { margin: 0; color: rgba(255,255,255,.85); max-width: 52ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* --------------------------------------------------------------------- forms */
.form { display: grid; gap: 16px; max-width: 620px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.form label { display: grid; gap: 6px; font-weight: 600; font-size: 15px; }
.form__lab b { color: var(--red); }
.form input, .form select, .form textarea {
  font-family: var(--font); font-size: 16px; padding: 12px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: #fff; color: var(--ink); font-weight: 400; width: 100%;
}
.form input:focus, .form select:focus, .form textarea:focus { border-color: var(--green); outline: 3px solid rgba(30,111,79,.18); outline-offset: 0; }
.form textarea { resize: vertical; }
.form__note { font-size: 14px; color: var(--muted); margin: 0; }
.hp { position: absolute; left: -9999px; }

.contactcard { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 26px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; }
.bignum { display: inline-flex; align-items: center; gap: 12px; font-family: var(--font-cond); font-weight: 700; font-size: clamp(26px, 4vw, 34px); color: var(--forest); letter-spacing: .02em; }
.bignum:hover { color: var(--green); text-decoration: none; }
.biglink { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; font-size: 16px; word-break: break-all; }

/* -------------------------------------------------------------------- footer */
.site-footer { background: var(--forest-deep); color: rgba(255,255,255,.8); padding: 56px 0 28px; }
.footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 40px; }
.site-footer a { color: rgba(255,255,255,.78); }
.site-footer a:hover { color: var(--amber); }
.footer__addr { font-style: normal; font-size: 14px; line-height: 1.7; margin: 16px 0 14px; }
.footer__addr .muted { color: rgba(255,255,255,.5); font-size: 13px; }
.footer__phone { display: inline-flex; align-items: center; gap: 9px; color: var(--amber) !important; font-weight: 700; font-size: 19px; }
.footer__phone:hover { color: var(--amber-hi) !important; }
.footer__hours { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,.65); margin: 12px 0 0; }
.footer__hours svg { stroke: var(--amber); }
.footer__h { font-family: var(--font-cond); font-weight: 700; font-size: 16px; letter-spacing: .14em; text-transform: uppercase; color: #fff; margin: 0 0 14px; }
.footer__links { display: flex; flex-direction: column; gap: 9px; font-size: 14px; }
.footer__base { border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding-top: 20px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px 24px; font-size: 13px; color: rgba(255,255,255,.55); }
.footer__claims { font-size: 12px; color: rgba(255,255,255,.4); margin: 10px 0 0; }

/* --------------------------------------------------------- mobile call bar */
@keyframes pulseRed {
  0%   { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 0 rgba(255,255,255,.5); }
  70%  { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 14px rgba(255,255,255,0); }
  100% { box-shadow: 0 8px 24px rgba(0,0,0,.4), 0 0 0 0 rgba(255,255,255,0); }
}
.callbar { display: none; }
@media (max-width: 840px) {
  body { padding-bottom: 92px; }
  .callbar {
    position: fixed; left: 14px; right: 14px; bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 60; display: flex; align-items: center; justify-content: center; gap: 13px;
    background: var(--red-br); color: #fff; border: 1px solid rgba(255,255,255,.3);
    border-radius: var(--r); padding: 13px 18px; animation: pulseRed 2s infinite;
  }
  .callbar:hover { color: #fff; text-decoration: none; }
  .callbar svg { flex-shrink: 0; }
  .callbar__text { display: flex; flex-direction: column; line-height: 1.18; }
  .callbar__text strong { font-family: var(--font-cond); font-weight: 700; font-size: 19px; letter-spacing: .06em; text-transform: uppercase; }
  .callbar__text span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
}

@media (max-width: 640px) {
  .section { padding: 52px 0 56px; }
  .hero__inner { padding: 44px 20px 56px; }
  .glance__grid { gap: 20px 16px; }
  .glance__grid b { font-size: 34px; }
  .btn { width: 100%; }
  .hero__actions .btn, .cta__actions .btn { flex: 1 1 100%; }
}

@media print {
  .stormbar, .callbar, .nav-toggle, .site-nav, .cta { display: none !important; }
  body { background: #fff; color: #000; padding: 0; }
  .site-header, .pagehead, .hero, .section--forest, .section--red { background: #fff !important; color: #000 !important; }
}
