/* ============================================================
   NUTSHELL — Modals · Infographics · Quote band
   ============================================================ */

/* ============================================================
   SERVICE CARDS — "view details" affordance
   ============================================================ */
.svc { cursor: pointer; }
.svc__more {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 16px;
  font-size: .82rem; font-weight: 600; color: var(--copper-deep);
  transition: gap .3s var(--ease);
}
.svc__more svg { width: 15px; height: 15px; }
.svc:hover .svc__more { gap: 10px; }
.svc:focus-visible { outline: 2px solid var(--copper); outline-offset: 3px; }

/* ============================================================
   MODAL (glassmorphism)
   ============================================================ */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 1200; display: flex; align-items: center; justify-content: center;
  padding: 24px; background: rgba(23,37,40,.42);
  -webkit-backdrop-filter: blur(9px) saturate(1.1); backdrop-filter: blur(9px) saturate(1.1);
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease);
}
.modal-backdrop.open { opacity: 1; pointer-events: auto; }
html[data-theme="dark"] .modal-backdrop { background: rgba(4,11,12,.55); }

.modal {
  position: relative; width: min(620px, 100%); max-height: min(86vh, 760px); overflow: hidden;
  display: flex; flex-direction: column;
  border-radius: var(--r-xl);
  background: rgba(251,249,244,.78);
  -webkit-backdrop-filter: blur(28px) saturate(1.7); backdrop-filter: blur(28px) saturate(1.7);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 40px 90px rgba(23,37,40,.32);
  transform: translateY(22px) scale(.96); opacity: 0; transition: transform .5s var(--ease), opacity .4s var(--ease);
}
.modal-backdrop.open .modal { transform: none; opacity: 1; }
html[data-theme="dark"] .modal {
  background: rgba(20,33,36,.74);
  border-color: rgba(180,197,177,.20);
  box-shadow: 0 1px 0 rgba(180,197,177,.14) inset, 0 40px 90px rgba(0,0,0,.55);
}

.modal__head {
  display: flex; align-items: flex-start; gap: 16px; padding: 30px 30px 22px;
  border-bottom: 1px solid rgba(23,37,40,.08);
}
html[data-theme="dark"] .modal__head { border-color: rgba(180,197,177,.14); }
.modal__ico { width: 56px; height: 56px; border-radius: 16px; background: var(--moss-pale); display: grid; place-items: center; flex-shrink: 0; }
.modal__ico svg { width: 28px; height: 28px; color: var(--moss-deeper); }
html[data-theme="dark"] .modal__ico { background: rgba(180,197,177,.12); }
html[data-theme="dark"] .modal__ico svg { color: var(--moss); }
.modal__eyebrow { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--copper-deep); }
.modal__title { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; line-height: 1.1; color: var(--charcoal); margin-top: 4px; }
html[data-theme="dark"] .modal__title { color: var(--d-text); }
.modal__close {
  position: absolute; top: 18px; right: 18px; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(23,37,40,.06); display: grid; place-items: center; color: var(--charcoal); transition: background .3s, transform .3s;
}
.modal__close:hover { background: rgba(23,37,40,.12); transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }
html[data-theme="dark"] .modal__close { background: rgba(255,255,255,.08); color: var(--d-text); }
html[data-theme="dark"] .modal__close:hover { background: rgba(255,255,255,.16); }

.modal__body { padding: 24px 30px 8px; overflow-y: auto; }
.modal__lead { font-size: 1.04rem; line-height: 1.7; color: var(--ink-55); margin-bottom: 22px; text-wrap: pretty; }
html[data-theme="dark"] .modal__lead { color: var(--ink-55); }
.modal__sub { font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); margin: 22px 0 12px; display: flex; align-items: center; gap: 9px; }
html[data-theme="dark"] .modal__sub { color: var(--d-text); }
.modal__sub::before { content:''; width: 18px; height: 2px; background: var(--copper); border-radius: 2px; }
.modal__list { display: grid; gap: 10px; }
.modal__li { display: flex; gap: 11px; align-items: flex-start; font-size: .96rem; line-height: 1.55; color: var(--ink-70); }
.modal__li svg { width: 19px; height: 19px; color: var(--moss-deeper); flex-shrink: 0; margin-top: 2px; }
html[data-theme="dark"] .modal__li svg { color: var(--moss); }
.modal__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.modal__tag { font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: var(--r-pill); background: var(--moss-pale); color: var(--moss-deeper); }
html[data-theme="dark"] .modal__tag { background: rgba(180,197,177,.12); color: var(--moss); }

.modal__foot {
  padding: 20px 30px 26px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  border-top: 1px solid rgba(23,37,40,.08); margin-top: 8px;
}
html[data-theme="dark"] .modal__foot { border-color: rgba(180,197,177,.14); }
.modal__foot .btn { flex: 1; min-width: 180px; }
@media (max-width: 520px){
  .modal__head { padding: 24px 22px 18px; }
  .modal__body { padding: 20px 22px 4px; }
  .modal__foot { padding: 18px 22px 22px; }
  .modal__title { font-size: 1.6rem; }
}

/* ============================================================
   INFOGRAPHICS — shared
   ============================================================ */
.info-tab-row { display: flex; justify-content: center; gap: 10px; margin-bottom: 44px; flex-wrap: wrap; }
.info-tab {
  display: inline-flex; align-items: center; gap: 9px; padding: 11px 20px; border-radius: var(--r-pill);
  background: var(--white); border: 1px solid rgba(23,37,40,.1); font-size: .9rem; font-weight: 600; color: var(--ink-55);
  transition: all .3s var(--ease);
}
.info-tab__n { width: 22px; height: 22px; border-radius: 50%; background: var(--moss-pale); color: var(--moss-deeper); display: grid; place-items: center; font-size: .76rem; font-weight: 700; }
.info-tab.active { background: var(--charcoal); color: #fff; border-color: var(--charcoal); }
.info-tab.active .info-tab__n { background: var(--copper); color: #fff; }
html[data-theme="dark"] .info-tab { background: var(--d-surf); border-color: var(--d-border); }
html[data-theme="dark"] .info-tab.active { background: var(--moss-deeper); border-color: var(--moss-deeper); color: #fff; }

.info-panel { display: none; }
.info-panel.active { display: block; animation: infoFade .6s var(--ease); }
@keyframes infoFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
.info-panel__cap { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.info-panel__cap h3 { font-family: var(--serif); font-size: clamp(1.5rem,2.6vw,2.1rem); font-weight: 600; color: var(--charcoal); }
html[data-theme="dark"] .info-panel__cap h3 { color: var(--d-text); }
.info-panel__cap p { margin-top: 8px; font-size: 1rem; color: var(--ink-55); }

/* ---- Infographic 1: end-to-end flow ---- */
.flow { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; position: relative; }
.flow__line { position: absolute; top: 34px; left: 8%; right: 8%; height: 2px; background: repeating-linear-gradient(90deg, var(--moss-light) 0 8px, transparent 8px 16px); z-index: 0; }
.flow__step { position: relative; z-index: 1; text-align: center; }
.flow__node {
  width: 68px; height: 68px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center;
  background: var(--white); border: 2px solid var(--moss-light); box-shadow: var(--sh-sm); position: relative;
  transition: transform .5s var(--ease), border-color .4s, background .4s;
}
.flow__step:hover .flow__node { transform: translateY(-5px); border-color: var(--copper); }
.flow__node svg { width: 28px; height: 28px; color: var(--moss-deeper); }
.flow__num { position: absolute; top: -6px; right: -6px; width: 24px; height: 24px; border-radius: 50%; background: var(--copper); color: #fff; font-size: .74rem; font-weight: 700; display: grid; place-items: center; box-shadow: var(--sh-sm); }
.flow__t { font-weight: 600; font-size: .98rem; color: var(--charcoal); margin-bottom: 5px; line-height: 1.25; }
.flow__d { font-size: .82rem; color: var(--ink-55); line-height: 1.5; }
html[data-theme="dark"] .flow__node { background: var(--d-surf); border-color: var(--d-border); }
html[data-theme="dark"] .flow__node svg { color: var(--moss); }
html[data-theme="dark"] .flow__t { color: var(--d-text); }
html[data-theme="dark"] .flow__line { background: repeating-linear-gradient(90deg, rgba(180,197,177,.25) 0 8px, transparent 8px 16px); }
@media (max-width: 880px){
  .flow { grid-template-columns: 1fr; gap: 0; }
  .flow__line { left: 33px; right: auto; top: 8%; bottom: 8%; width: 2px; height: auto; background: repeating-linear-gradient(180deg, var(--moss-light) 0 8px, transparent 8px 16px); }
  .flow__step { display: grid; grid-template-columns: 68px 1fr; gap: 18px; text-align: left; align-items: start; padding: 14px 0; }
  .flow__node { margin: 0; }
  html[data-theme="dark"] .flow__line { background: repeating-linear-gradient(180deg, rgba(180,197,177,.25) 0 8px, transparent 8px 16px); }
}

/* ---- Infographic 2: on-site app timeline ---- */
.tl { max-width: 760px; margin: 0 auto; position: relative; }
.tl::before { content:''; position: absolute; left: 27px; top: 14px; bottom: 14px; width: 2px; background: linear-gradient(180deg, var(--moss), var(--copper)); border-radius: 2px; }
.tl__item { display: grid; grid-template-columns: 56px 1fr; gap: 20px; padding: 11px 0; position: relative; }
.tl__dot { width: 56px; height: 56px; border-radius: 50%; background: var(--white); border: 2px solid var(--moss-light); display: grid; place-items: center; z-index: 1; box-shadow: var(--sh-sm); }
.tl__dot svg { width: 24px; height: 24px; color: var(--moss-deeper); }
.tl__card { background: var(--white); border: 1px solid rgba(23,37,40,.07); border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--sh-xs); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.tl__item:hover .tl__card { transform: translateX(5px); box-shadow: var(--sh-sm); }
.tl__step { font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--copper-deep); }
.tl__t { font-family: var(--serif); font-size: 1.25rem; font-weight: 600; color: var(--charcoal); margin: 2px 0 5px; }
.tl__d { font-size: .92rem; line-height: 1.6; color: var(--ink-55); }
.tl__badge { display: inline-flex; align-items: center; gap: 6px; margin-top: 9px; font-size: .74rem; font-weight: 600; color: var(--moss-deeper); background: var(--moss-pale); padding: 4px 10px; border-radius: var(--r-pill); }
.tl__badge svg { width: 12px; height: 12px; }
html[data-theme="dark"] .tl__dot { background: var(--d-surf); border-color: var(--d-border); }
html[data-theme="dark"] .tl__dot svg { color: var(--moss); }
html[data-theme="dark"] .tl__card { background: var(--d-surf); border-color: var(--d-border); }
html[data-theme="dark"] .tl__t { color: var(--d-text); }
html[data-theme="dark"] .tl__badge { background: rgba(180,197,177,.12); color: var(--moss); }
@media (max-width: 560px){
  .tl::before { left: 23px; }
  .tl__item { grid-template-columns: 48px 1fr; gap: 14px; }
  .tl__dot { width: 48px; height: 48px; }
}

/* ---- Infographic 3: data viz ---- */
.viz { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: stretch; }
.viz__card { background: var(--white); border: 1px solid rgba(23,37,40,.07); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); }
html[data-theme="dark"] .viz__card { background: var(--d-surf); border-color: var(--d-border); }
.viz__h { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); margin-bottom: 4px; }
html[data-theme="dark"] .viz__h { color: var(--d-text); }
.viz__sub { font-size: .88rem; color: var(--ink-55); margin-bottom: 22px; }

/* donut */
/* donut */
.donut__ring {
  width: 200px; height: 200px; border-radius: 50%;
  -webkit-mask: radial-gradient(farthest-side, transparent 63%, #000 64%);
          mask: radial-gradient(farthest-side, transparent 63%, #000 64%);
          mask: radial-gradient(farthest-side, transparent 57%, #000 58%);
}
.donut-wrap { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.donut { position: relative; width: 200px; height: 200px; flex-shrink: 0; }
.donut svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.donut__center { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; }
.donut__center .n { font-family: var(--serif); font-size: 1.75rem; font-weight: 700; color: var(--charcoal); line-height: 1; }
.donut__center .l { font-size: .64rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted); margin-top: 4px; max-width: 90px; line-height: 1.3; }
html[data-theme="dark"] .donut__center .n { color: var(--d-text); }
.donut-legend { display: grid; gap: 11px; flex: 1; min-width: 150px; }
.donut-legend__item { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--ink-70); }
.donut-legend__sw { width: 13px; height: 13px; border-radius: 4px; flex-shrink: 0; }
.donut-legend__item b { margin-left: auto; color: var(--charcoal); font-variant-numeric: tabular-nums; }
html[data-theme="dark"] .donut-legend__item b { color: var(--d-text); }

/* bars */
.viz-bars { display: flex; align-items: flex-end; gap: 12px; height: 150px; margin-top: 8px; }
.viz-bar { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; height: 100%; justify-content: flex-end; }
.viz-bar__fill { width: 100%; max-width: 38px; background: linear-gradient(180deg, var(--moss), var(--moss-deeper)); border-radius: 7px 7px 0 0; transform-origin: bottom; transform: scaleY(0); transition: transform 1s var(--ease); }
.reveal.in .viz-bar__fill, .info-panel.active .viz-bar__fill { transform: scaleY(1); }
.viz-bar:nth-child(1) .viz-bar__fill { transition-delay: .05s; }
.viz-bar:nth-child(2) .viz-bar__fill { transition-delay: .12s; }
.viz-bar:nth-child(3) .viz-bar__fill { transition-delay: .19s; }
.viz-bar:nth-child(4) .viz-bar__fill { transition-delay: .26s; }
.viz-bar:nth-child(5) .viz-bar__fill { transition-delay: .33s; }
.viz-bar:nth-child(6) .viz-bar__fill { transition-delay: .40s; }
.viz-bar:nth-child(7) .viz-bar__fill { transition-delay: .47s; }
.viz-bar__fill--hi { background: linear-gradient(180deg, var(--copper-soft), var(--copper)); }
.viz-bar__lbl { font-size: .72rem; color: var(--ink-muted); font-weight: 600; }
.viz-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 26px; }
.viz-tile { text-align: center; padding: 16px 8px; border-radius: var(--r-md); background: var(--moss-wash); }
html[data-theme="dark"] .viz-tile { background: var(--d-bg2); }
.viz-tile .n { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: var(--moss-deeper); line-height: 1; }
html[data-theme="dark"] .viz-tile .n { color: var(--moss); }
.viz-tile .l { font-size: .74rem; color: var(--ink-55); margin-top: 5px; line-height: 1.35; }
@media (max-width: 820px){ .viz { grid-template-columns: 1fr; } }

/* ============================================================
   QUOTE + LOGO BAND
   ============================================================ */
.creed { position: relative; overflow: hidden; text-align: center;
  background: radial-gradient(ellipse at 50% 0%, var(--moss-pale), var(--cream) 60%); }
html[data-theme="dark"] .creed { background: radial-gradient(ellipse at 50% 0%, #14252880, var(--d-bg) 62%); }
.creed__glow { position: absolute; width: 700px; height: 700px; border-radius: 50%; left: 50%; top: -45%; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(201,123,99,.14), transparent 62%); pointer-events: none; }
.creed__inner { position: relative; z-index: 2; max-width: 880px; margin: 0 auto; }
.creed__logo { width: min(380px, 78vw); margin: 0 auto 14px; }
.creed__logo img { width: 100%; height: auto; }
html[data-theme="dark"] .creed__logo img { filter: brightness(0) invert(1); }
.creed__leaf { display: inline-flex; margin-bottom: 28px; color: var(--copper); }
.creed__leaf svg { width: 30px; height: 30px; }
.creed__quote { font-family: var(--serif); font-style: italic; font-weight: 500;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem); line-height: 1.4; letter-spacing: -.01em; color: var(--charcoal); text-wrap: balance; }
html[data-theme="dark"] .creed__quote { color: var(--d-text); }
.creed__quote .hl { color: var(--copper-deep); }
.creed__by { margin-top: 30px; display: inline-flex; flex-direction: column; align-items: center; gap: 4px; }
.creed__by .nm { font-weight: 700; font-size: .98rem; letter-spacing: .02em; color: var(--charcoal); }
html[data-theme="dark"] .creed__by .nm { color: var(--d-text); }
.creed__by .rl { font-size: .8rem; color: var(--ink-muted); letter-spacing: .14em; text-transform: uppercase; }
.creed__rule { width: 44px; height: 2px; background: var(--copper); border-radius: 2px; margin: 0 auto 10px; }

/* ============================================================
   CLEAN COVERAGE MAP (SVG-based, no iframe)
   ============================================================ */
.nmap { max-width: 860px; margin: 0 auto; }
.nmap__frame {
  border-radius: var(--r-xl); overflow: hidden;
  background: var(--white); border: 1px solid var(--moss-light);
  box-shadow: 0 4px 24px rgba(23,37,40,.08);
}
.nmap__svg { display: block; width: 100%; height: auto; }
.nmap__land { transition: fill .5s; }
.nmap__region { transition: fill .5s, stroke .5s; }
.nmap__county {
  font-family: var(--sans); font-size: 13px; font-weight: 600;
  fill: var(--ink-muted); text-anchor: middle; letter-spacing: .06em;
  opacity: .5;
}
.nmap__connect {
  stroke: var(--moss-light); stroke-width: 1; stroke-dasharray: 4 4;
  opacity: 0; animation: nmapLineIn 1s ease forwards;
}
@keyframes nmapLineIn { to { opacity: .35; } }

/* Animated pins */
.nmap__pin { opacity: 0; animation: nmapPinDrop .6s cubic-bezier(.34,1.56,.64,1) forwards; }
@keyframes nmapPinDrop {
  from { opacity: 0; transform: translateY(-12px); }
  to { opacity: 1; transform: translateY(0); }
}
.nmap__label {
  font-family: var(--sans); font-size: 10.5px; font-weight: 600;
  fill: var(--charcoal); text-anchor: middle; opacity: .8;
}
.nmap__label--hq {
  font-size: 13px; font-weight: 700; fill: var(--moss-deeper);
  opacity: 1;
}
.nmap__hq-pulse { animation: nmapPulse 2.8s ease-out infinite; }
@keyframes nmapPulse {
  0% { r: 28; opacity: .4; }
  70% { r: 44; opacity: 0; }
  100% { r: 44; opacity: 0; }
}

/* Legend */
.nmap__legend {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap; margin-top: 20px;
}
.nmap__legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 500; color: var(--ink-55);
}
.nmap__dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.nmap__dot--hq { background: var(--moss-deeper); }
.nmap__dot--care { background: var(--copper); }
.nmap__dot--region { background: var(--moss-pale); border: 1.5px solid var(--moss-deep); }

/* Dark mode */
html[data-theme="dark"] .nmap__frame { background: var(--d-surf); border-color: var(--d-border); box-shadow: 0 4px 24px rgba(0,0,0,.2); }
html[data-theme="dark"] .nmap__svg { --nmap-water: #0c1618; --nmap-land: #152325; --nmap-region: rgba(180,197,177,.1); --nmap-region-stroke: rgba(180,197,177,.18); --nmap-london: rgba(180,197,177,.16); }
html[data-theme="dark"] .nmap__county { fill: rgba(234,240,234,.35); }
html[data-theme="dark"] .nmap__label { fill: var(--d-text); }
html[data-theme="dark"] .nmap__label--hq { fill: var(--moss); }
html[data-theme="dark"] .nmap__connect { stroke: rgba(180,197,177,.12); }
html[data-theme="dark"] .nmap__legend-item { color: rgba(234,240,234,.55); }
html[data-theme="dark"] .nmap__dot--region { background: rgba(180,197,177,.15); border-color: var(--moss); }

@media (max-width: 560px) {
  .nmap__county { font-size: 10px; }
  .nmap__label { font-size: 9px; }
  .nmap__label--hq { font-size: 11px; }
  .nmap__legend { gap: 14px; }
  .nmap__legend-item { font-size: .78rem; }
}

/* ============================================================
   LEAFLET COVERAGE MAP (no-label tiles + custom pins)
   ============================================================ */
.lmap-wrap { max-width: 960px; margin: 0 auto; }
.lmap {
  width: 100%; height: 520px; display: block;
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--moss-light);
  box-shadow: 0 4px 24px rgba(23,37,40,.08);
  background: #e8ede6;
}
html[data-theme="dark"] .lmap { border-color: var(--d-border); box-shadow: 0 4px 24px rgba(0,0,0,.2); background: #1a2628; }
@media (max-width: 760px) { .lmap { height: 400px; } }
@media (max-width: 460px) { .lmap { height: 320px; border-radius: var(--r-lg); } }

/* Custom marker container */
.lmap-marker { background: none !important; border: none !important; position: relative; }
.lmap-marker svg { display: block; filter: drop-shadow(0 3px 4px rgba(23,37,40,.3)); transition: transform .3s ease; }
.lmap-marker:hover svg { transform: translateY(-4px) scale(1.1); }
.lmap-marker--hq svg { filter: drop-shadow(0 4px 6px rgba(92,125,105,.4)); }

/* Animated pulse ring */
.lmap-ping {
  position: absolute; left: 50%; bottom: 0;
  width: 20px; height: 20px; margin-left: -10px; margin-bottom: -4px;
  border-radius: 50%; border: 2px solid #D97665;
  opacity: 0; z-index: -1;
  animation: lmapPing 2.6s ease-out infinite;
}
.lmap-marker--hq .lmap-ping { width: 28px; height: 28px; margin-left: -14px; border-color: #5C7D69; }
@keyframes lmapPing {
  0% { transform: scale(.6); opacity: .7; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Pin drop shadow */
.lmap-shadow {
  position: absolute; left: 50%; bottom: -2px;
  width: 18px; height: 6px; margin-left: -9px;
  background: rgba(23,37,40,.25); border-radius: 50%;
  filter: blur(2px);
}

/* Tooltip (location labels) */
.lmap-tooltip {
  background: var(--white) !important; color: var(--charcoal) !important;
  border: 1px solid var(--moss-light) !important; border-radius: 8px !important;
  padding: 5px 12px !important; font-family: var(--sans) !important;
  font-size: 12px !important; font-weight: 600 !important;
  box-shadow: 0 2px 8px rgba(0,0,0,.1) !important;
  white-space: nowrap !important;
}
.lmap-tooltip::before { border-top-color: var(--moss-light) !important; }
.lmap-tooltip--hq {
  background: var(--moss-deeper) !important; color: #fff !important;
  border-color: var(--moss-deeper) !important;
  font-size: 13px !important; padding: 6px 14px !important;
}
.lmap-tooltip--hq::before { border-top-color: var(--moss-deeper) !important; }

html[data-theme="dark"] .lmap-tooltip { background: var(--d-surf) !important; color: var(--d-text) !important; border-color: var(--d-border) !important; }
html[data-theme="dark"] .lmap-tooltip::before { border-top-color: var(--d-border) !important; }
html[data-theme="dark"] .lmap-tooltip--hq { background: var(--moss-deeper) !important; color: #fff !important; border-color: var(--moss-deeper) !important; }
html[data-theme="dark"] .lmap-tooltip--hq::before { border-top-color: var(--moss-deeper) !important; }

/* Footer + Legend */
.lmap-footer { margin-top: 22px; text-align: center; }
.lmap-note {
  margin-top: 12px; font-size: .9rem; color: var(--ink-muted); line-height: 1.6;
}
.lmap-note a { color: var(--copper-deep); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.lmap-note a:hover { color: var(--copper); }
html[data-theme="dark"] .lmap-note { color: rgba(234,240,234,.45); }
html[data-theme="dark"] .lmap-note a { color: var(--copper-soft); }
.lmap-legend {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
}
.lmap-legend__item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .86rem; font-weight: 500; color: var(--ink-55);
}
html[data-theme="dark"] .lmap-legend__item { color: rgba(234,240,234,.55); }
.lmap-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.lmap-dot--hq { background: var(--moss-deeper); }
.lmap-dot--care { background: var(--copper); }

/* ============================================================
   LEGACY COVERAGE MAP (kept for reference, unused)
   ============================================================ */
.map-stage { width: 100%; max-width: 960px; margin: 0 auto; }
.map-scaler { position: relative; width: 100%; }
.map-frame {
  position: absolute; top: 0; left: 0; width: 960px; height: 620px; transform-origin: top left;
  border-radius: 0; overflow: hidden; background: #e7ede7;
  box-shadow: var(--sh-lg), inset 0 0 0 1px rgba(23,37,40,.06);
}
html[data-theme="dark"] .map-frame { background: #0f1b1d; box-shadow: var(--sh-lg), inset 0 0 0 1px var(--d-border); }

/* 3D tilted plane */
.map-3d { position: absolute; inset: 0; perspective: 1500px; perspective-origin: 50% 36%; }
.map-plane, .map-frame__overlay {
  position: absolute; inset: 0;
}
.map-plane iframe { width: 100%; height: 100%; border: 0; display: block; pointer-events: none; filter: saturate(0.15) brightness(1.12) contrast(0.7) opacity(0.6); }
html[data-theme="dark"] .map-plane iframe { filter: invert(0.92) hue-rotate(186deg) brightness(0.7) contrast(0.6) saturate(0.15) opacity(0.5); }
.map-3d__shade { position: absolute; inset: 0; pointer-events: none; z-index: 3; background: radial-gradient(125% 90% at 50% 45%, transparent 62%, rgba(23,37,40,.12)); }
html[data-theme="dark"] .map-3d__shade { background: radial-gradient(125% 90% at 50% 45%, transparent 58%, rgba(0,0,0,.30)); }

.map-frame__overlay { pointer-events: none; z-index: 4; }

/* professional 3D pins */
.beacon { position: absolute; transform: translate(-50%, -100%); transform-style: preserve-3d; pointer-events: auto; }
.beacon__shadow { position: absolute; left: 50%; bottom: -3px; width: 22px; height: 8px; border-radius: 50%; background: rgba(23,37,40,.30); filter: blur(2.5px); transform: translateX(-50%); }
.beacon__ping { position: absolute; left: 50%; bottom: -2px; width: 18px; height: 18px; margin-left: -9px; border-radius: 50%; border: 2px solid var(--copper); opacity: .6; animation: pingFlat 2.6s ease-out infinite; }
@keyframes pingFlat { 0% { transform: scale(.35); opacity: .7; } 100% { transform: scale(2.8); opacity: 0; } }
.beacon__pin { display: block; position: relative; width: 26px; height: 33px; transition: transform .25s var(--ease); }
.beacon__pin svg { display: block; width: 100%; height: 100%; color: var(--copper); filter: drop-shadow(0 4px 5px rgba(23,37,40,.3)); }
.beacon:hover { z-index: 30; }
.beacon:hover .beacon__pin { transform: translateY(-5px) scale(1.08); }
.beacon__label { position: absolute; left: 50%; top: -6px; transform: translate(-50%,-100%); transform-origin: 50% 100%;
  background: var(--white); color: var(--charcoal); font-size: 12px; font-weight: 600; letter-spacing: .01em; padding: 5px 11px; border-radius: var(--r-pill);
  white-space: nowrap; box-shadow: var(--sh-md); border: 1px solid rgba(23,37,40,.07); opacity: 0; transition: opacity .25s var(--ease); pointer-events: none; }
html[data-theme="dark"] .beacon__label { background: var(--d-surf); color: var(--d-text); border-color: var(--d-border); }
.beacon .beacon__label, .beacon--hq .beacon__label { opacity: 1; }

.beacon--hq .beacon__pin { width: 36px; height: 46px; }
.beacon--hq .beacon__pin svg { color: var(--moss-deeper); }
.beacon--hq { z-index: 25; }
.beacon--hq .beacon__ping { border-color: var(--moss-deeper); width: 22px; height: 22px; margin-left: -11px; }
.beacon--hq .beacon__shadow { width: 26px; }

.beacon--nat .beacon__pin { width: 19px; height: 24px; }
.beacon--nat .beacon__pin svg { color: var(--copper-soft); filter: drop-shadow(0 2px 3px rgba(23,37,40,.25)); }
.beacon--nat .beacon__ping { display: none; }
.beacon--nat .beacon__shadow { width: 12px; height: 5px; }


.map-cta { display: flex; align-items: center; justify-content: space-between; gap: 18px 24px; flex-wrap: wrap; margin-top: 24px; }
.map-legend2 { display: flex; gap: 18px; flex-wrap: wrap; }
.map-legend2 i { display: inline-flex; align-items: center; gap: 8px; font-style: normal; font-size: .86rem; font-weight: 500; color: var(--ink-55); }
.map-legend2 .d { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.map-legend2 .d.hq { background: var(--moss-deeper); }
.map-legend2 .d.core { background: var(--copper); }
.map-legend2 .d.nat { background: var(--copper-soft); }
.map-gmaps { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .9rem; color: var(--charcoal); padding: 11px 20px; border-radius: var(--r-pill); background: var(--white); border: 1px solid var(--moss-light); transition: all .3s var(--ease); }
.map-gmaps:hover { background: var(--moss-deeper); color: #fff; border-color: var(--moss-deeper); transform: translateY(-2px); box-shadow: var(--sh-sm); }
.map-gmaps svg { width: 17px; height: 17px; }
html[data-theme="dark"] .map-gmaps { background: var(--d-surf); border-color: var(--d-border); color: var(--d-text); }


/* ============================================================
   CONTACT METHODS (Call · Email · WhatsApp)
   ============================================================ */
/* Neumorphic contact action cards */
.cta__methods { margin-top: 36px; display: grid; gap: 18px; max-width: 460px; }
.cta__method {
  display: flex; align-items: center; gap: 18px; padding: 22px 24px;
  border-radius: var(--r-xl); border: none;
  background: linear-gradient(145deg, #1a3230, #0f1f21);
  box-shadow: 6px 6px 18px rgba(0,0,0,.4), -4px -4px 14px rgba(180,197,177,.05);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.cta__method:hover {
  transform: translateY(-3px);
  box-shadow: 8px 8px 24px rgba(0,0,0,.45), -6px -6px 18px rgba(180,197,177,.07);
}
.cta__method:hover .cta__method-ico { transform: scale(1.06); }
.cta__method-ico {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(145deg, #1a3230, #0f1f21);
  box-shadow: inset 3px 3px 6px rgba(0,0,0,.25), inset -2px -2px 6px rgba(180,197,177,.06);
  transition: transform .3s var(--ease);
}
.cta__method-ico svg { width: 24px; height: 24px; }
.cta__method--primary .cta__method-ico svg { color: var(--copper); }
.cta__method-ico--mail svg { color: var(--moss); }
.cta__method-ico--wa svg { color: #25D366; }
.cta__method .l { font-size: .78rem; color: rgba(234,240,234,.5); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }
.cta__method .n { font-family: var(--serif); font-size: 1.55rem; font-weight: 600; color: #fff; line-height: 1.05; margin-top: 3px; letter-spacing: .02em; }
.cta__method .v { font-size: 1.04rem; font-weight: 600; color: #fff; margin-top: 3px; }
.cta__method-arrow {
  margin-left: auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: rgba(180,197,177,.08);
  transition: background .3s, transform .3s;
}
.cta__method-arrow svg { width: 16px; height: 16px; color: rgba(234,240,234,.35); transition: color .3s; }
.cta__method:hover .cta__method-arrow { background: rgba(180,197,177,.16); }
.cta__method:hover .cta__method-arrow svg { color: #fff; }
.cta__reassure { margin-top: 24px; font-size: .88rem; color: rgba(234,240,234,.45); line-height: 1.6; max-width: 420px; }
@media (max-width: 460px){ .cta__methods { max-width: none; } .cta__method .n { font-size: 1.35rem; } .cta__method { padding: 18px 20px; } }

/* ============================================================
   SECTION WITH BACKGROUND PHOTO (reusable)
   ============================================================ */
.section--photo { position: relative; overflow: hidden; background: var(--charcoal); }
.sec-bg { position: absolute; inset: 0; z-index: 0; }
.sec-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.sec-scrim { position: absolute; inset: 0; z-index: 1; background:
  linear-gradient(180deg, rgba(13,22,24,.88) 0%, rgba(13,22,24,.74) 48%, rgba(13,22,24,.90) 100%); }
.section--photo > .container { position: relative; z-index: 2; }
.section--photo .s-title { color: #fff; }
.section--photo .s-title em { color: var(--copper-soft); }
.section--photo .s-sub { color: rgba(255,255,255,.82); }
.section--photo .eyebrow { color: var(--moss-light); }
.section--photo .eyebrow::before, .section--photo .eyebrow--center::after { background: rgba(180,197,177,.5); }
.section--photo .cond { box-shadow: var(--sh-md); }
.section--photo .cond:hover { box-shadow: var(--sh-lg); }



/* ============================================================
   COVERAGE MAP v2 — real-geography inline SVG, elder-friendly
   ============================================================ */
.covmap {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; align-items: stretch;
  margin-top: 8px;
}
.covmap__map {
  background: linear-gradient(180deg, #E7EFF6 0%, #DDE8F0 100%);
  border: 1px solid rgba(23,37,40,.08); border-radius: var(--r-xl);
  padding: 10px; overflow: hidden;
  box-shadow: inset 0 0 40px rgba(120,150,170,.10), 0 18px 44px rgba(22,36,40,.08);
}
.covmap__svg { width: 100%; height: 100%; display: block; }

/* land shapes */
.cov-context { fill: #CDD9DF; stroke: #B6C5CD; stroke-width: 1; }
.cov-region { cursor: pointer; transition: filter .3s ease, opacity .3s ease; stroke-linejoin: round; }
/* Region borders deliberately strong (CEO 2026-08-10): each region outlined
   in a darker shade of its own colour so the three areas separate clearly. */
.cov-region--london { fill: var(--copper); stroke: #8A3A2C; stroke-width: 2.6; }
.cov-region--homecounties { fill: #C9D7CD; stroke: #5E7A5A; stroke-width: 2.4; }
.cov-region--eastanglia { fill: #9DB7A6; stroke: #3E5C4B; stroke-width: 2.4; }
.cov-region.is-hot, .cov-region:hover { filter: brightness(1.08) saturate(1.15); }
.covmap.has-hot .cov-region:not(.is-hot):not(:hover) { opacity: .45; }

/* county labels */
.cov-county text {
  font-family: var(--sans); font-size: 11.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; text-anchor: middle;
  fill: var(--charcoal); opacity: .5;
  paint-order: stroke; stroke: rgba(255,255,255,.7); stroke-width: 3px;
}

/* towns */
.cov-town circle { fill: var(--charcoal); stroke: #fff; stroke-width: 1.6; }
.cov-town text {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  fill: var(--charcoal); paint-order: stroke; stroke: rgba(255,255,255,.85); stroke-width: 3px;
}
.cov-town--minor text { font-size: 12px; font-weight: 500; }
.cov-town--hq .core { fill: var(--copper-deep); stroke: #fff; stroke-width: 2; }
.cov-town--hq .pulse { fill: none; stroke: var(--copper); stroke-width: 2; opacity: .8; animation: cov-pulse 2.6s ease-out infinite; }
.cov-town--hq text { font-size: 15px; font-weight: 700; text-anchor: middle; fill: var(--copper-deep); }
@keyframes cov-pulse {
  0% { transform: scale(.45); opacity: .9; }
  70% { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(1.25); opacity: 0; }
}

/* side cards */
.covmap__side { display: flex; flex-direction: column; gap: 14px; }
.covmap__card {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1.5px solid rgba(23,37,40,.08);
  border-radius: var(--r-lg); padding: 18px 20px; cursor: pointer;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.covmap__card:hover, .covmap__card.is-hot, .covmap__card:focus-visible {
  transform: translateY(-2px); box-shadow: 0 10px 26px rgba(22,36,40,.10);
}
.covmap__card--london:hover, .covmap__card--london.is-hot { border-color: var(--copper); }
.covmap__card--homecounties:hover, .covmap__card--homecounties.is-hot { border-color: #8FA897; }
.covmap__card--eastanglia:hover, .covmap__card--eastanglia.is-hot { border-color: var(--moss-deep); }
.covmap__card h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; color: var(--charcoal); }
.covmap__card p { margin-top: 4px; font-size: .95rem; line-height: 1.55; color: var(--ink-55); }
.covmap__dot { flex: 0 0 auto; width: 18px; height: 18px; border-radius: 50%; margin-top: 5px; box-shadow: inset 0 0 0 2px rgba(255,255,255,.6); }
.covmap__dot--london { background: var(--copper); }
.covmap__dot--homecounties { background: #C9D7CD; box-shadow: inset 0 0 0 2px #8FA897; }
.covmap__dot--eastanglia { background: #9DB7A6; }
.covmap__hq {
  display: inline-block; vertical-align: middle; margin-left: 6px; padding: 2px 8px;
  background: var(--copper-wash); color: var(--copper-deep); border-radius: var(--r-pill);
  font-family: var(--sans); font-size: .6rem; font-weight: 700; letter-spacing: .08em;
}
.covmap__note { font-size: .92rem; line-height: 1.6; color: var(--ink-muted); padding: 4px 6px 0; }
.covmap__note a { color: var(--copper-deep); text-decoration: underline; text-underline-offset: 3px; }

@media (max-width: 900px) {
  .covmap { grid-template-columns: 1fr; }
  .covmap__map { min-height: 320px; }
  .cov-town--minor text { display: none; }
}

/* ============================================================
   HOW IT WORKS v4 — spotlight journey (CEO 2026-08-10): the v2
   stage-and-steps layout, simplified — one gentle 6s loop, click
   any step, pause on hover/focus, a photo per step, square corners.
   ============================================================ */
.jspot { display: grid; grid-template-columns: 1.15fr 1fr; gap: 30px; align-items: stretch; margin-top: 10px; }
.jspot__stage { position: relative; min-height: 440px; }
.jcard {
  display: flex; flex-direction: column;
  background: var(--white); border: 1px solid rgba(23,37,40,.08); border-radius: 0;
  overflow: hidden; box-shadow: 0 20px 50px rgba(22,36,40,.10);
}
.jspot .jcard {
  position: absolute; inset: 0; opacity: 0; transform: translateX(14px); pointer-events: none;
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.jspot .jcard.active { opacity: 1; transform: none; pointer-events: auto; }
.jscene { position: relative; flex: 1 1 55%; min-height: 190px; display: grid; place-items: center; border-radius: 0; }
.jscene--sage { background: linear-gradient(135deg, var(--moss-pale), #cfdcd3); }
.jscene--copper { background: linear-gradient(135deg, var(--copper-wash), #f0d9cf); }
.jscene__medal {
  width: 110px; height: 110px; border-radius: 50%; display: grid; place-items: center;
  background: var(--white); color: var(--moss-deeper);
  box-shadow: 0 14px 34px rgba(22,36,40,.14), inset 0 0 0 1.5px rgba(113,146,127,.25);
}
.jscene--copper .jscene__medal { color: var(--copper-deep); box-shadow: 0 14px 34px rgba(175,81,65,.16), inset 0 0 0 1.5px rgba(175,81,65,.22); }
.jscene__medal svg { width: 48px; height: 48px; }
.jscene__photo { position: absolute; inset: 0; background-size: cover; }
.jscene--photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(22,36,40,0) 55%, rgba(22,36,40,.28));
}
.jcard__body { flex: 0 0 auto; padding: 22px 28px 26px; position: relative; background: var(--white); }
.jcard__num {
  position: absolute; top: -26px; left: 24px; padding: 6px 14px; border-radius: var(--r-pill);
  background: var(--charcoal); color: #fff; font-family: var(--serif); font-size: 1.05rem; font-weight: 600;
  box-shadow: 0 8px 18px rgba(22,36,40,.25);
}
.jcard__t { font-family: var(--serif); font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 600; color: var(--charcoal); margin-top: 6px; }
.jcard__d { margin-top: 8px; font-size: 1rem; line-height: 1.65; color: var(--ink-55); }

.journey__steps { display: flex; flex-direction: column; gap: 10px; }
.jstep-btn {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto; column-gap: 14px; align-items: center;
  text-align: left; padding: 13px 16px; cursor: pointer;
  background: none; border: 1.5px solid rgba(23,37,40,.08); border-radius: var(--r-md);
  font: inherit; transition: border-color .3s, background .3s, transform .3s;
}
.jstep-btn:hover { border-color: var(--moss-deep); }
.jstep-btn.active { background: var(--white); border-color: var(--moss-deep); box-shadow: 0 8px 22px rgba(22,36,40,.08); }
.jstep-btn.done .jstep-btn__n { background: var(--moss-deeper); color: #fff; }
.jstep-btn__n {
  grid-row: 1 / 3; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  background: var(--moss-pale); color: var(--moss-deeper); font-weight: 700; font-size: .85rem;
  transition: background .3s, color .3s;
}
.jstep-btn.active .jstep-btn__n { background: var(--charcoal); color: #fff; }
.jstep-btn__t { font-weight: 600; font-size: 1.02rem; color: var(--charcoal); }
.jstep-btn__bar { display: block; height: 4px; border-radius: 3px; background: rgba(23,37,40,.08); margin-top: 7px; overflow: hidden; }
.jstep-btn__bar i { display: block; height: 100%; width: 0; border-radius: 3px; background: linear-gradient(90deg, var(--moss-deep), var(--copper)); }
.jstep-btn.active .jstep-btn__bar i { width: 100%; transition: width var(--jstep-dur, 4500ms) linear; }
.jstep-btn.done .jstep-btn__bar i { width: 100%; transition: none; }

/* day timeline: sequential lighting */
.tl__item { opacity: .45; transition: opacity .6s var(--ease); }
.tl__item.lit { opacity: 1; }
.tl__item.lit .tl__dot { background: var(--moss-deeper); color: #fff; box-shadow: 0 0 0 5px rgba(113,146,127,.18); }
html.calm .tl__item, html[data-motion="reduced"] .tl__item { opacity: 1; }

/* data panel: play-in */
.viz .viz-bar__fill { transform: scaleY(0); transform-origin: bottom; transition: transform .9s var(--ease); }
.viz.play .viz-bar__fill { transform: scaleY(1); }
.viz .viz-bar:nth-child(2) .viz-bar__fill { transition-delay: .08s; }
.viz .viz-bar:nth-child(3) .viz-bar__fill { transition-delay: .16s; }
.viz .viz-bar:nth-child(4) .viz-bar__fill { transition-delay: .24s; }
.viz .viz-bar:nth-child(5) .viz-bar__fill { transition-delay: .32s; }
.viz .viz-bar:nth-child(6) .viz-bar__fill { transition-delay: .4s; }
.viz .viz-bar:nth-child(7) .viz-bar__fill { transition-delay: .48s; }
.viz .donut { transform: scale(.82); opacity: 0; transition: transform .8s var(--ease), opacity .8s ease; }
.viz.play .donut { transform: none; opacity: 1; }
html.calm .viz .viz-bar__fill, html.calm .viz .donut { transform: none; opacity: 1; }

/* phase tabs: progress underline while auto-playing */
.info-tab { position: relative; overflow: hidden; }
.info-tab__prog {
  position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--moss-deep), var(--copper));
  border-radius: 2px;
}
.info-tab.active .info-tab__prog { width: 100%; transition: width var(--phase-dur, 27s) linear; }
html.calm .info-tab__prog { display: none; }

@media (max-width: 900px) {
  .jspot { grid-template-columns: 1fr; }
  .jspot__stage { min-height: 400px; }
  .jstep-btn__t { font-size: .95rem; }
}

/* ============================================================
   TESTIMONIAL MARQUEE — seamless loop, blurred edges
   ============================================================ */
.marquee { position: relative; overflow: hidden; padding: 10px 0 16px; }
.marquee__track { display: flex; width: max-content; animation: marquee-roll 48s linear infinite; }
.marquee__group { display: flex; gap: 24px; padding-right: 24px; }
.marquee__group .promise { flex: 0 0 400px; max-width: 86vw; }
.marquee:hover .marquee__track, .marquee:focus-within .marquee__track { animation-play-state: paused; }
@keyframes marquee-roll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee__fade {
  position: absolute; top: 0; bottom: 0; width: 110px; z-index: 2; pointer-events: none;
  backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
}
.marquee__fade--l { left: 0; background: linear-gradient(90deg, var(--cream), transparent); mask-image: linear-gradient(90deg, #000 30%, transparent); -webkit-mask-image: linear-gradient(90deg, #000 30%, transparent); }
.marquee__fade--r { right: 0; background: linear-gradient(270deg, var(--cream), transparent); mask-image: linear-gradient(270deg, #000 30%, transparent); -webkit-mask-image: linear-gradient(270deg, #000 30%, transparent); }
html.calm .marquee__track { animation: none; }
html.calm .marquee { overflow-x: auto; }
html.calm .marquee__fade { display: none; }
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
  .marquee { overflow-x: auto; }
  .marquee__fade { display: none; }
}
@media (max-width: 640px) {
  .marquee__group .promise { flex-basis: 320px; }
  .marquee__fade { width: 48px; }
}
