/* ============================================================
   Mr Move It — Removals & House Clearance
   Reference structure (floating header, hero photo + badge pills,
   sectioned layout) re-themed to the client's brief:
   BLUE background · YELLOW + WHITE contrast.
   Display: Archivo Black · Body: Inter.
   ============================================================ */

:root{
  /* Blue background scale */
  --bg:#0c2a63;          /* page background (deep blue) */
  --bg-soft:#08204c;     /* darker alternating sections */
  --bg-deep:#061a3f;     /* footer / deepest */
  --panel:rgba(255,255,255,.075);   /* card surface on blue — lifted for separation */
  --panel-2:rgba(255,255,255,.12);
  --line:rgba(255,255,255,.18);

  /* Contrast colours */
  --yellow:#FFD200;      /* primary CTA + accents */
  --yellow-soft:#FFDE59;
  --yellow-700:#e9be00;
  --gold:#C9880B;        /* accent on WHITE surfaces only (logo/quote card) */
  --blue-soft:#C7D6F2;   /* pale badge */

  --white:#ffffff;
  --text:#cfdaf2;        /* body text on blue */
  --text-dim:#9fb0d6;
  --navy:#0c2a63;        /* dark text on yellow/white surfaces */
  --logo-blue:#123a86;

  --display:'Archivo Black','Inter',system-ui,sans-serif;
  --body:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif;
  --wrap:1120px;
  --shadow-card:0 8px 32px rgba(0,0,0,.28);
  --shadow-lg:0 20px 44px rgba(0,0,0,.4);
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;font-family:var(--body);background:var(--bg);color:var(--text);
  line-height:1.65;-webkit-font-smoothing:antialiased;font-size:17px}
img{max-width:100%;height:auto;display:block}
a{color:var(--yellow);text-decoration:none}
a:hover{text-decoration:underline}
h1,h2,h3,h4{font-family:var(--display);line-height:1.12;color:var(--white);margin:0 0 .5em;font-weight:400;letter-spacing:-.5px}
h1{font-size:clamp(30px,5.4vw,56px)}
h2{font-size:clamp(26px,3.6vw,38px);letter-spacing:-.3px}
h3{font-size:20px}
p{margin:0 0 1rem}
.wrap,.container{max-width:var(--wrap);margin:0 auto;padding:0 28px}
.section{padding:64px 0}
.section--soft{background:var(--bg-soft)}
.section--navy{background:var(--bg-soft)}
.lead{font-size:18px;color:var(--text);line-height:1.6}
.center{text-align:center}
.accent{color:var(--yellow)}

/* Eyebrow with little bar-rule */
/* Eyebrow: muted (not yellow — yellow is reserved for CTAs + key numbers). No decorative icon. */
.eyebrow{display:block;color:#9fb0d6;font-size:.8125rem;font-weight:600;
  letter-spacing:.08em;text-transform:uppercase;margin-bottom:14px}

/* ----- Buttons ----- */
.btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--body);font-weight:700;font-size:15px;
  padding:14px 26px;border-radius:8px;border:2px solid transparent;cursor:pointer;line-height:1.1;
  transition:background .2s,transform .12s,box-shadow .2s,filter .12s;text-decoration:none}
.btn:hover{text-decoration:none;transform:translateY(-2px)}
.btn:active{transform:scale(.98);filter:brightness(.95)}
.btn--primary{background:var(--yellow);color:var(--navy);box-shadow:0 4px 20px rgba(255,210,0,.4)}
.btn--primary:hover{background:var(--yellow-soft);box-shadow:0 8px 28px rgba(255,210,0,.5)}
.btn--dark{background:#fff;color:var(--navy);border-color:#fff;box-shadow:0 4px 14px rgba(0,0,0,.28)}
.btn--dark:hover{background:#eef2fb;border-color:#eef2fb}
.btn--ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.5)}
.btn--ghost:hover{background:rgba(255,255,255,.1);border-color:#fff}
.btn--lg{padding:16px 32px;font-size:16px}
.btn--block{width:100%;justify-content:center}

/* ============ HEADER (floating rounded white card) ============ */
.site-header{position:sticky;top:16px;z-index:200;margin:16px 3vw 0}
.header-inner{background:#fff;border-radius:20px;box-shadow:0 10px 34px rgba(0,0,0,.32);
  padding:12px 28px;display:flex;align-items:center;justify-content:space-between;gap:18px;
  max-width:var(--wrap);margin:0 auto}
.brand{font-family:var(--display);font-size:20px;color:var(--logo-blue);white-space:nowrap;display:flex;align-items:center;gap:9px}
.brand:hover{text-decoration:none}
.brand .accent{color:var(--gold)}
.brand small{display:none}
.brand-mark{width:36px;height:36px;border-radius:9px;background:var(--navy);color:var(--yellow);
  display:grid;place-items:center;font-size:15px;font-family:var(--display)}
.main-nav{display:flex;align-items:center;gap:30px}
.main-nav a{color:#3A3F47;font-size:14.5px;font-weight:500;font-family:var(--body)}
.main-nav a:hover{color:var(--logo-blue);text-decoration:none}
.header-cta{display:flex;align-items:center;gap:12px}
.header-phone{font-family:var(--body);font-weight:700;color:var(--navy);font-size:14px;display:inline-flex;align-items:center;gap:7px;white-space:nowrap}
.header-phone:hover{text-decoration:none;color:var(--logo-blue)}
.main-nav .btn--primary{display:none}
.nav-cta{background:var(--yellow);color:var(--navy);padding:10px 22px;border-radius:22px;font-weight:700;
  font-size:14px;display:inline-flex;align-items:center;gap:7px;white-space:nowrap;font-family:var(--body)}
.nav-cta:hover{background:var(--yellow-soft);text-decoration:none}
.nav-toggle{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px;border-radius:8px}
.nav-toggle span{display:block;width:22px;height:2px;background:var(--navy);border-radius:2px;transition:.2s}
.nav-close{display:none}
/* Desktop only: 3-column grid so the nav is centred on the HEADER itself, not on
   whatever space is left over. With flex space-between it drifted off-centre
   because the brand and the CTA group are different widths — and adding the Live
   Feed button made that worse. The grid is scoped above the mobile breakpoint
   because the off-canvas nav is position:fixed, which takes it out of flow and
   would collapse the middle column. */
@media(min-width:921px){
  /* Centre the nav in the space BETWEEN the brand and the CTA cluster, not on the
     header. A 1fr auto 1fr grid put it dead-centre of the header, but the brand is
     narrow and the Live Feed + Free Quote cluster is wide, so the nav ended up
     ~263px from the logo and ~49px from the buttons — even internal spacing, badly
     unbalanced surroundings. Auto margins split the leftover space equally on both
     sides instead. */
  .header-inner{display:flex}
  .main-nav{margin-left:auto;margin-right:auto}
}
.nav-backdrop{position:fixed;inset:0;background:rgba(6,20,54,.55);z-index:160;opacity:0;visibility:hidden;transition:opacity .25s,visibility .25s}
.nav-backdrop.show{opacity:1;visibility:visible}
body.nav-open{overflow:hidden}
/* when the menu is open, hide the hamburger so only the × shows (no overlap) */
body.nav-open .nav-toggle{opacity:0;pointer-events:none}

@media(max-width:920px){
  .main-nav{position:fixed;inset:0 0 0 auto;width:min(320px,86vw);background:#fff;flex-direction:column;
    align-items:flex-start;gap:2px;padding:72px 26px 26px;transform:translateX(105%);transition:transform .25s ease;
    box-shadow:var(--shadow-lg);z-index:130;border-radius:20px 0 0 20px;overflow-y:auto}
  .main-nav.open{transform:translateX(0)}
  .main-nav a{width:100%;padding:13px 4px;border-bottom:1px solid #eef0f4;font-size:16px;color:#232535}
  .main-nav .btn--primary{display:flex;width:100%;justify-content:center;margin-top:20px;border:none;
    color:var(--navy);font-size:16px;padding:16px;border-radius:12px;box-shadow:0 8px 20px rgba(255,210,0,.35)}
  .main-nav .btn--primary:hover{background:var(--yellow-hover,#ffde33)}
  .nav-close{display:block;position:absolute;top:12px;right:16px;background:none;border:0;font-size:34px;line-height:1;
    color:var(--navy);cursor:pointer;padding:2px 12px;border-radius:8px}
  .nav-toggle{display:flex;position:relative;z-index:140}
  .header-phone,.nav-cta{display:none}
}

/* ============ HERO ============ */
.hero{background:var(--bg);position:relative;overflow:hidden;padding-top:30px}
.hero-decor{position:absolute;inset:0;overflow:hidden;pointer-events:none;z-index:0}
.hero-blob{position:absolute;width:660px;height:660px;border-radius:46% 54% 52% 48%/50% 46% 54% 50%;
  background:radial-gradient(circle at 50% 50%,rgba(255,210,0,.16),rgba(255,210,0,0) 62%),rgba(255,255,255,.05);
  top:20px;right:-190px;filter:blur(2px)}
.hero-star{position:absolute;color:var(--yellow);top:64px;right:150px;font-size:26px;opacity:.9}
.hero-dot{position:absolute;width:12px;height:12px;border-radius:50%;background:var(--yellow);left:52%;top:44%;opacity:.85}
.hero .wrap{position:relative;z-index:1}
.hero-split{display:grid;grid-template-columns:1.15fr .85fr;
  grid-template-areas:"head photo" "body photo" "ctas photo";column-gap:56px;row-gap:18px;align-items:center;padding:36px 0 78px}
.hero-head{grid-area:head;align-self:end}
.hero-body{grid-area:body}
.hero-ctas-area{grid-area:ctas;align-self:start;margin-top:8px}
.hero-right{grid-area:photo;align-self:center;position:relative;z-index:1}
.hero-availability{display:inline-flex;align-items:center;gap:10px;background:rgba(0,0,0,.28);
  border:1px solid rgba(255,255,255,.16);border-radius:30px;padding:8px 18px;font-size:13px;font-weight:600;
  color:#fff;margin-bottom:24px;box-shadow:0 6px 20px rgba(0,0,0,.3)}
.avail-dot{width:8px;height:8px;background:#28d17c;border-radius:50%;flex:none;animation:pulse-green 2s ease-in-out infinite}
@keyframes pulse-green{0%,100%{box-shadow:0 0 0 0 rgba(40,209,124,.5)}50%{box-shadow:0 0 0 6px rgba(40,209,124,0)}}
.hero-h1{font-family:var(--display);font-size:clamp(30px,6vw,60px);line-height:1.06;color:#fff;
  margin-bottom:22px;letter-spacing:-1.4px}
.hero-h1 .accent{color:var(--yellow)}
/* small creative accent on the punchline words — yellow, faint glow, thin underline */
.hero-h1 .hl{color:var(--yellow);position:relative;white-space:nowrap;
  text-shadow:0 0 26px rgba(255,210,0,.30)}
.hero-h1 .hl::after{content:"";position:absolute;left:1%;right:1%;bottom:-.06em;height:.075em;
  border-radius:99px;background:var(--yellow);box-shadow:0 0 12px rgba(255,210,0,.55)}
.hero-lead{color:#d7e0f4;font-size:18px;line-height:1.65;margin-bottom:0;max-width:480px}
.hero-ctas{display:flex;gap:14px;align-items:center;flex-wrap:wrap}
.hero-reassure{flex-basis:100%;max-width:max-content;display:inline-flex;align-items:center;gap:10px;margin-top:12px;
  background:rgba(0,0,0,.28);border:1px solid rgba(255,255,255,.16);border-radius:30px;padding:8px 18px;font-size:13px;
  font-weight:600;color:#fff;box-shadow:0 6px 20px rgba(0,0,0,.3)}

/* Hero photo + floating badge pills */
/* Stage sized for the team line-up: a 2.2:1 landscape group shot, not the old 4:5
   portrait. Wider stage so five crew and three vehicles stay legible, and the tilt
   is dropped — a 1.5deg rotation on a wide shallow band reads as a mistake rather
   than a flourish, and it clipped the end vans against the corners. */
.hero-photo-stage{position:relative;max-width:560px;margin:0 auto}
.hero-photo-card{width:100%;border-radius:18px;box-shadow:0 22px 44px rgba(0,0,0,.4);
  overflow:hidden;aspect-ratio:1265/574;background:linear-gradient(160deg,#1a3f86,#0b2a63);border:1px solid rgba(255,255,255,.14);
  color:#b9c8e8;display:grid;place-items:center;text-align:center;padding:24px;font-weight:600;font-size:14px}
.hero-float-badge{position:absolute;z-index:2;display:flex;align-items:center;gap:11px;color:var(--navy);
  font-size:14px;font-weight:800;line-height:1.25;padding:11px 18px 11px 11px;border-radius:20px;
  box-shadow:0 12px 28px rgba(0,0,0,.28);backdrop-filter:blur(6px);max-width:210px}
.hfb-icon{width:36px;height:36px;border-radius:50%;background:var(--navy);color:#fff;display:grid;place-items:center;flex:none}
.hfb-insured{background:var(--yellow);box-shadow:0 12px 28px rgba(0,0,0,.28),0 0 26px rgba(255,210,0,.55);
  bottom:-14px;left:-22px;animation:floatA 6s ease-in-out infinite}
.hfb-reviews{background:#fff;box-shadow:0 12px 28px rgba(0,0,0,.28),0 0 26px rgba(255,255,255,.3);
  top:-16px;right:-20px;animation:floatB 8s ease-in-out infinite}
@keyframes floatA{0%,100%{transform:translateY(0)}50%{transform:translateY(-10px)}}
@keyframes floatB{0%,100%{transform:translateY(0)}50%{transform:translateY(9px)}}
/* Floating brand speech-bubble card */
.hero-float-bubble{position:absolute;z-index:3;top:16px;left:-30px;width:150px;height:auto;
  filter:drop-shadow(0 12px 22px rgba(0,0,0,.3));animation:floatBubble 5.5s ease-in-out infinite;transform-origin:bottom center}
.hero-float-bubble img{width:100%;height:auto;display:block}
@keyframes floatBubble{0%,100%{transform:translateY(0) rotate(-5deg)}50%{transform:translateY(-12px) rotate(-1deg)}}
@media(max-width:520px){.hero-float-bubble{width:112px;left:-12px;top:10px}}
@media(prefers-reduced-motion:reduce){
  .hfb-insured,.hfb-reviews,.hero-float-bubble,.avail-dot{animation:none!important}
}

@media(max-width:860px){
  /* H1 → image → text → CTAs, and the H1 is centred */
  .hero-split{grid-template-columns:1fr;grid-template-areas:"head" "photo" "body" "ctas";row-gap:22px;padding:20px 0 60px;text-align:left}
  .hero-head,.hero-body,.hero-ctas-area{align-self:auto}
  .hero-h1{text-align:center}
  /* The lead was left-aligned directly under a centred H1, which read as a
     misalignment rather than a choice. Centred to share the H1's axis. */
  .hero-body,.hero-lead{text-align:center}
  .hero-lead{margin-left:auto;margin-right:auto}
  .hero-ctas{justify-content:center}
  .hero-reassure{margin-left:auto;margin-right:auto}
  /* Full width on a phone. Capped at 300px the 2.2:1 band was only ~136px tall and
     the crew became unreadable; across the column they stay recognisable. */
  .hero-photo-stage{max-width:100%}
  .hero-float-bubble{width:110px;left:-10px;top:10px}
  /* The crew stand left-of-centre in the line-up, so on a phone the badges are put
     over the VANS instead: reviews on the top-left van roof, insured on the
     bottom-right van. Previously the insured badge sat straight across the first
     crew member, which defeats the point of a team photo. Scaled down a little too,
     since they are large relative to a full-width band. */
  .hfb-insured{left:auto;right:-6px;bottom:-14px}
  .hfb-reviews{right:auto;left:-6px;top:-14px}
  .hero-float-badge{font-size:12.5px;padding:9px 14px 9px 9px;max-width:180px;gap:9px}
  .hfb-icon{width:30px;height:30px}
  .hero-blob{right:-280px;top:0}
}

/* ============ Trust strip — just the Three Best Rated award, centred ============ */
.trust-strip--solo{background:rgba(0,0,0,.12);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.trust-strip--solo .container{display:flex;flex-direction:column;align-items:center;gap:12px;padding:30px 28px}
.tbr-card{background:none;border-radius:0;padding:0;box-shadow:none;display:grid;place-items:center}
.tbr--solo img{height:118px;width:auto;filter:drop-shadow(0 8px 20px rgba(0,0,0,.45))}
@media(max-width:520px){.tbr--solo img{height:80px}.tbr-card{padding:16px 22px}}
.tbr-caption{margin:0;color:#9fb0d6;font-size:14px;font-weight:600;text-align:center;letter-spacing:.01em}

/* ============ Cards / grids ============ */
.grid{display:grid;gap:22px}
/* Services: centred flex so an incomplete last row (e.g. the 7th card) sits
   centred and deliberate rather than left-orphaned. Card sizes stay consistent. */
.svc-grid{display:flex;flex-wrap:wrap;gap:22px;justify-content:center}
.svc-grid > .card{flex:1 1 300px;max-width:352px}
@media(max-width:640px){.svc-grid > .card{max-width:none}}
.grid-2{grid-template-columns:repeat(2,1fr)}
.grid-3{grid-template-columns:repeat(3,1fr)}
.grid-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:900px){.grid-3,.grid-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.grid-2,.grid-3,.grid-4{grid-template-columns:1fr}}

.card{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:26px;
  display:flex;flex-direction:column;height:100%;
  transition:transform .15s,box-shadow .15s,border-color .15s,background .15s}
.card:hover{transform:translateY(-3px);box-shadow:var(--shadow-card);border-color:rgba(255,210,0,.5);background:var(--panel-2)}
a.card:hover{text-decoration:none}
.card:active{transform:translateY(-1px)}
.card .ico{width:52px;height:52px;border-radius:13px;background:var(--yellow);color:var(--navy);
  display:grid;place-items:center;margin-bottom:16px}
.card h3{margin-bottom:8px;color:#fff}
.card p{color:var(--text);font-size:15.5px;margin-bottom:14px}
.card .more{font-family:var(--body);font-weight:700;color:var(--yellow);display:inline-flex;align-items:center;gap:6px;font-size:14.5px;margin-top:auto}
.card .more:hover{gap:10px}
/* "View all services" tile — distinct, yellow-accented, not a service */
.card--all{background:linear-gradient(160deg,rgba(255,210,0,.12),rgba(255,210,0,.04));border-color:var(--yellow)}
.card--all .ico{background:transparent;color:var(--yellow);border:2px solid var(--yellow)}
.card--all:hover{background:linear-gradient(160deg,rgba(255,210,0,.2),rgba(255,210,0,.06));border-color:var(--yellow)}
.svc-grid > .card--all{flex:1 1 300px;max-width:352px}

/* ============ Why us (numbered) ============ */
.split{display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:start}
@media(max-width:880px){.split{grid-template-columns:1fr;gap:30px}}
.media-frame--tall{aspect-ratio:4/5}
@media(max-width:880px){.media-frame--tall{aspect-ratio:16/10}}
/* Sticky image: pins and travels down alongside the tall list (fills dead space). Desktop only. */
@media(min-width:881px){.why-sticky{position:sticky;top:100px;align-self:start}}
/* Sticky sidebar: the form/aside follows the scroll of the long text column so
   there's never a big blank gap beside it. Desktop only. */
@media(min-width:881px){.split > aside{position:sticky;top:96px;align-self:start}}
.aside-trust{margin-top:20px}
.aside-trust h3{margin-bottom:12px}
.aside-trust .tick-list{margin-bottom:0}
/* Subtle scroll reveal — JS adds .reveal-pending only when motion is allowed, so
   without JS or under reduced-motion everything is visible by default. */
.reveal-pending{opacity:0;transform:translateY(16px)}
.reveal-in{opacity:1;transform:none;
  transition:opacity .55s cubic-bezier(.16,1,.3,1),transform .55s cubic-bezier(.16,1,.3,1)}
/* Staggered reveal for the numbered "why us" list */
.reasons li:nth-child(1).reveal-in{transition-delay:.04s}
.reasons li:nth-child(2).reveal-in{transition-delay:.12s}
.reasons li:nth-child(3).reveal-in{transition-delay:.20s}
.reasons li:nth-child(4).reveal-in{transition-delay:.28s}
.reasons li:nth-child(5).reveal-in{transition-delay:.36s}
.reasons{list-style:none;margin:0;padding:0;display:grid;gap:18px}
.reasons li{display:flex;gap:16px}
.reasons .n{flex:none;width:44px;height:44px;border-radius:12px;background:var(--yellow);color:var(--navy);
  font-family:var(--display);display:grid;place-items:center;font-size:17px}
.reasons h3{margin-bottom:4px;font-size:18px;color:#fff}
.reasons p{margin:0;color:var(--text);font-size:15.5px}

/* ============ Reviews ============ */
.rating-head{display:flex;align-items:center;gap:12px;justify-content:center;flex-wrap:wrap;margin-bottom:6px;font-family:var(--body);color:#fff}
.stars{color:var(--yellow);font-size:20px;letter-spacing:2px}
.review{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:24px}
.review .stars{font-size:16px;margin-bottom:10px}
.review blockquote{margin:0 0 14px;font-size:16px;color:#eaf0fb;font-family:var(--body)}
.review .who{font-weight:700;font-size:14px;color:#fff}
.review .src{color:var(--text-dim);font-size:13px}
.review-links{display:flex;gap:18px;justify-content:center;flex-wrap:wrap;margin-top:26px;font-weight:600;font-family:var(--body)}
.review-links a{color:var(--yellow)}

/* ---- Live Feed button (header) ----
   Record-button styling: red outline pill with a pulsing red dot. Red is used
   nowhere else on the site, which is the point — it reads as live activity rather
   than as another nav link, and it doesn't compete with the yellow CTA beside it. */
.live-btn{display:inline-flex;align-items:center;gap:9px;
  padding:9px 18px 9px 15px;border-radius:22px;
  background:#fff;border:2px solid #e02b2b;color:#c81f1f;
  font-family:var(--body);font-weight:700;font-size:14px;line-height:1;white-space:nowrap}
.live-btn:hover{background:#fff5f5;border-color:#c81f1f;text-decoration:none}
.live-dot{width:10px;height:10px;border-radius:50%;background:#e02b2b;flex:0 0 auto;
  animation:livePulse 2s ease-out infinite}
@keyframes livePulse{
  0%{box-shadow:0 0 0 0 rgba(224,43,43,.55)}
  70%{box-shadow:0 0 0 9px rgba(224,43,43,0)}
  100%{box-shadow:0 0 0 0 rgba(224,43,43,0)}
}
@media (prefers-reduced-motion:reduce){.live-dot{animation:none}}
/* Desktop shows it in the header CTA row; the in-nav copy is for the mobile
   off-canvas menu, where the header CTA row is hidden. */
.live-btn--nav{display:none}
/* 920px matches the header's own breakpoint, so the button swaps into the
   off-canvas menu at exactly the point the nav becomes off-canvas. */
@media (max-width:920px){
  .header-cta .live-btn{display:none}
  /* Needs .main-nav a.live-btn--nav, not just .live-btn--nav: the generic
     ".main-nav a" rule is higher specificity and was overriding the pill's padding
     and painting a grey 1px border-bottom over the red outline. Styled to match the
     yellow CTA it sits above, so the pair reads as a deliberate button group. */
  .main-nav a.live-btn--nav{display:flex;width:100%;justify-content:center;
    align-items:center;gap:10px;margin-top:20px;padding:15px;
    border:2px solid #e02b2b;border-radius:12px;
    font-size:16px;font-weight:700;color:#c81f1f;background:#fff}
  .main-nav .btn--primary{margin-top:12px}
}

/* ---- Owner caricature (About page, founder story) ----
   Floated so the story text wraps around it. No panel or border: the artwork has its
   own dark outline and a transparent background, so a card would fight it. */
.caricature-figure{float:right;width:240px;max-width:42%;margin:0 0 14px 22px}
.caricature-figure .pic img{width:100%;height:auto;display:block}
@media (max-width:700px){
  .caricature-figure{float:none;width:180px;margin:0 auto 18px}
}

/* ---- Quote funnel CTA (replaces the inline form on home + area pages) ---- */
.quote-card--cta .btn{margin-top:0}
.cta-or{margin:14px 0 10px;text-align:center;font-size:13px;letter-spacing:.04em;
  text-transform:uppercase;color:var(--text-dim);font-family:var(--body)}

/* ---- i-mve embedded enquiry form ---- */
.imve-embed{margin-top:0}
.imve-embed iframe{box-shadow:var(--shadow-card)}
.imve-embed .form-note{margin-top:14px}

/* ---- Reviews carousel ----
   Track is a native scroll-snap container, so it works by touch, trackpad and
   keyboard with JS off. Arrows and dots live in a control row BELOW the track —
   floating them over the edges covered the first and last cards. */
.rev-carousel{position:relative;margin-top:34px}
.rev-track{display:flex;gap:20px;overflow-x:auto;scroll-snap-type:x mandatory;
  scroll-behavior:smooth;padding:4px;margin:-4px;
  scrollbar-width:none;-ms-overflow-style:none;cursor:grab}
.rev-track::-webkit-scrollbar{display:none}
.rev-track.is-dragging{cursor:grabbing;scroll-behavior:auto;scroll-snap-type:none}
.rev-track.is-dragging *{pointer-events:none}
.rev-track>.review{flex:0 0 calc((100% - 40px) / 3);scroll-snap-align:start;min-width:0;
  display:flex;flex-direction:column;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.rev-track>.review blockquote{flex:1 0 auto}
.rev-track>.review:hover{transform:translateY(-4px);border-color:rgba(255,210,0,.45);
  box-shadow:0 12px 28px rgba(0,0,0,.28)}
.rev-track:focus-visible{outline:3px solid var(--yellow);outline-offset:4px;border-radius:16px}

/* Control row: prev | dots | next, centred under the track */
.rev-controls{display:none;align-items:center;justify-content:center;gap:18px;margin-top:24px}
.rev-carousel.rev-ready .rev-controls{display:flex}
.rev-nav{width:44px;height:44px;border-radius:50%;border:none;cursor:pointer;flex:none;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;user-select:none;
  background:var(--yellow);color:var(--navy);font-family:var(--body);
  font-size:26px;font-weight:700;line-height:1;display:grid;place-items:center;
  box-shadow:0 6px 18px rgba(0,0,0,.28);transition:background .18s ease,transform .18s ease}
.rev-nav:hover:not(:disabled){background:var(--yellow-soft);transform:scale(1.08)}
.rev-nav:active:not(:disabled){transform:scale(.96)}
.rev-nav:disabled{opacity:.28;cursor:default}
.rev-dots{display:flex;justify-content:center;gap:8px}
.rev-counter{display:none;font-family:var(--body);font-weight:700;font-size:14px;
  color:var(--text-dim);min-width:58px;text-align:center;font-variant-numeric:tabular-nums}
/* 9px dots are far below the ~44px minimum tap target, so pad the hit area
   outwards with a transparent border rather than changing the visual size. */
/* 9px dots are far below the ~44px minimum tap target. The dot keeps its 9px look
   but carries an 11px transparent border, so the tappable area is 31px while the
   painted area stays small (background-clip keeps the fill inside the padding box). */
.rev-dot{width:31px;height:31px;padding:0;box-sizing:border-box;cursor:pointer;
  border:11px solid transparent;background-clip:padding-box;border-radius:50%;
  touch-action:manipulation;-webkit-tap-highlight-color:transparent;
  background-color:rgba(255,255,255,.3);
  transition:width .18s ease,background-color .18s ease}
.rev-dot:hover{background-color:rgba(255,255,255,.6)}
.rev-dot[aria-current="true"]{background-color:var(--yellow);width:48px;border-radius:16px}
.rev-hint{text-align:center;margin-top:12px;font-size:12.5px;color:var(--text-dim);
  font-family:var(--body);letter-spacing:.02em}
@media (max-width:900px){
  .rev-track>.review{flex:0 0 calc((100% - 20px) / 2)}
}
@media (max-width:640px){
  /* Peek the next card so it is obvious the row swipes. At 100% width the next card
     showed by only 8px, which reads as a rendering artefact, not an affordance. */
  .rev-track>.review{flex:0 0 86%}
  /* 12 dots need ~400px and were squeezing the arrows out of the control row on a
     phone. Swap them for a compact counter and keep the arrows, which are the thing
     people actually tap. */
  .rev-dots{display:none}
  .rev-counter{display:block}
  .rev-controls{gap:18px}
}
@media (prefers-reduced-motion:reduce){
  .rev-track{scroll-behavior:auto}
  .rev-dot,.rev-nav,.rev-track>.review{transition:none}
  .rev-track>.review:hover{transform:none}
}

}

/* ============ Before / after ============ */
@media(max-width:760px){.ba-grid{grid-template-columns:1fr}}
.ba{border-radius:16px;overflow:hidden;box-shadow:var(--shadow-card);background:var(--panel);border:1px solid var(--line)}
  background:var(--yellow);color:var(--navy);width:38px;height:38px;border-radius:50%;display:grid;place-items:center;font-weight:900;box-shadow:var(--shadow-card)}
.ba cap{display:block;padding:12px 16px;background:rgba(255,255,255,.04);font-weight:600;font-size:14.5px;font-family:var(--body);color:#eaf0fb}

/* ============ Areas grid ============ */
.areas-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
@media(max-width:820px){.areas-grid{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.areas-grid{grid-template-columns:repeat(2,1fr)}}
.area-link{display:flex;align-items:center;gap:8px;background:var(--panel);border:1px solid var(--line);
  border-radius:11px;padding:10px 14px;min-height:54px;line-height:1.2;font-weight:600;color:#fff;font-size:14.5px;font-family:var(--body)}
.area-link:hover{text-decoration:none;border-color:var(--yellow);color:var(--yellow);background:var(--panel-2)}
.area-link svg{color:var(--yellow);flex:none}
/* Covered areas that don't have their own page — same chip, not a link. Muted so
   it's visually clear which ones you can click through to. */
.area-link--plain{color:var(--text-dim);cursor:default}
.area-link--plain:hover{border-color:var(--line);color:var(--text-dim);background:var(--panel)}
.area-link--plain svg{color:var(--text-dim);opacity:.7}

/* ============ Steps ============ */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
@media(max-width:760px){.steps{grid-template-columns:1fr}}
.step{background:var(--panel);border:1px solid var(--line);border-radius:16px;padding:26px}
.step .num{width:46px;height:46px;border-radius:50%;background:var(--yellow);color:var(--navy);
  font-family:var(--display);display:grid;place-items:center;margin-bottom:14px;font-size:18px}
.step h3{color:#fff}
.step p{color:var(--text)}

/* ============ FAQ ============ */
.faq{max-width:820px;margin:0 auto}
.faq details{background:var(--panel);border:1px solid var(--line);border-radius:12px;margin-bottom:12px;overflow:hidden}
.faq summary{cursor:pointer;padding:18px 22px;font-weight:700;font-size:16.5px;list-style:none;color:#fff;
  display:flex;justify-content:space-between;align-items:center;gap:16px;font-family:var(--body)}
.faq summary::-webkit-details-marker{display:none}
.faq summary::after{content:"+";font-size:24px;color:var(--yellow);font-weight:700;flex:none;line-height:1}
.faq details[open] summary::after{content:"–"}
.faq .ans{padding:0 22px 20px;color:var(--text)}
.faq .ans p{margin-bottom:.6rem}

/* ============ CTA band ============ */
.cta-band{background:var(--bg-deep);color:#fff;text-align:center;border-radius:24px;padding:54px 28px;
  box-shadow:var(--shadow-lg);position:relative;overflow:hidden;border:1px solid var(--line)}
.cta-band::after{content:"";position:absolute;width:420px;height:420px;border-radius:50%;background:radial-gradient(circle,rgba(255,210,0,.2),transparent 70%);right:-130px;top:-140px}
.cta-band h2{color:#fff;position:relative}
.cta-band p{color:#d1dcf3;max-width:54ch;margin:0 auto 22px;font-size:18px;position:relative}
.cta-band .btns{display:flex;gap:14px;justify-content:center;flex-wrap:wrap;position:relative}
.cta-phone{font-family:var(--display);font-size:26px;color:var(--yellow)}
.cta-phone:hover{text-decoration:none}

/* ============ Breadcrumb ============ */
.breadcrumb{padding:20px 0 0;font-size:13.5px;color:var(--text-dim);font-family:var(--body)}
.breadcrumb ol{list-style:none;display:flex;flex-wrap:wrap;gap:6px;margin:0;padding:0}
.breadcrumb a{color:var(--yellow)}
.breadcrumb li+li::before{content:"›";margin-right:6px;color:var(--text-dim)}

/* ============ Prose ============ */
.prose{color:var(--text);max-width:65ch}
.prose p{max-width:65ch}
.prose h2{margin-top:1.5em}
.prose h3{margin-top:1.2em;color:#fff}
.prose ul{padding-left:1.2em;margin:0 0 1.2rem}
.prose li{margin-bottom:.5rem}
.tick-list{list-style:none;padding:0;margin:0 0 1.2rem;display:grid;gap:10px}
/* Definition-style values list (About » What we stand for) — cleanly aligned */
.stand-list{list-style:none;padding:0;margin:0 0 1.4rem;display:grid;gap:16px}
.stand-list li{display:flex;gap:12px;align-items:flex-start}
.stand-list .tick{flex:none;width:26px;height:26px;border-radius:50%;background:var(--yellow);color:var(--navy);display:grid;place-items:center;margin-top:2px}
.stand-list strong{display:block;color:#fff;margin-bottom:2px;font-size:1.02rem}
.stand-list span{color:var(--text);font-size:.98rem;line-height:1.55}
.tick-list li{display:flex;gap:10px;align-items:flex-start;color:var(--text)}
.tick-list li::before{content:"✓";color:var(--navy);background:var(--yellow);width:22px;height:22px;border-radius:50%;
  display:inline-grid;place-items:center;font-size:12px;font-weight:900;flex:none;margin-top:3px}
.callout{background:var(--panel);border-left:4px solid var(--yellow);border-radius:0 12px 12px 0;padding:18px 22px;margin:22px 0}
.callout.warm{background:rgba(255,210,0,.08);border-color:var(--yellow)}
.callout p:last-child{margin-bottom:0}
.callout.objection{border-left-color:var(--yellow)}
.guarantee{display:flex;gap:14px;align-items:flex-start;background:var(--panel);border:1px solid var(--line);
  border-radius:14px;padding:18px 20px;margin:0 0 18px}
.guarantee .g-ico{flex:none;width:42px;height:42px;border-radius:50%;background:var(--yellow);color:var(--navy);display:grid;place-items:center}
.avail-note{display:flex;gap:8px;align-items:flex-start;font-size:.92rem;margin:0 0 4px;opacity:.95}
.avail-note svg{color:var(--yellow);flex:none;margin-top:3px}

/* Image placeholders */
.imgph{background:repeating-linear-gradient(45deg,rgba(255,255,255,.05),rgba(255,255,255,.05) 12px,rgba(255,255,255,.09) 12px,rgba(255,255,255,.09) 24px);
  border:1px dashed rgba(255,255,255,.28);border-radius:16px;display:grid;place-items:center;color:#b9c8e8;font-weight:600;
  font-size:14px;text-align:center;padding:20px;min-height:220px;font-family:var(--body)}

/* ============ Quote card / forms (WHITE for legibility) ============ */
/* The header is sticky, so an in-page jump to the form would land under it. */
#enquiry{scroll-margin-top:110px}
.quote-card{background:#fff;border-radius:20px;padding:26px;box-shadow:var(--shadow-lg);color:#16192b;border:1px solid rgba(0,0,0,.06)}
.quote-card h3{margin-bottom:6px;color:#0c2a63}
.quote-card p.sub{color:#6B7280;font-size:14.5px;margin-bottom:16px;font-family:var(--body)}
.form-row{display:grid;gap:14px}
.form-row.two{grid-template-columns:1fr 1fr}
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:14px}
.field label{font-weight:600;font-size:13.5px;color:#3A4A5E;font-family:var(--body)}
.field input,.field select,.field textarea{font-family:inherit;font-size:15.5px;padding:12px 14px;
  border:1.5px solid #e2e6ee;border-radius:10px;background:#fff;color:#16192b;width:100%}
.field input:focus,.field select:focus,.field textarea:focus{outline:none;border-color:var(--logo-blue);box-shadow:0 0 0 3px rgba(18,58,134,.16)}
.field textarea{min-height:96px;resize:vertical}
.form-note{font-size:12.5px;color:#6B7280;margin-top:8px;font-family:var(--body)}
.form-success{display:none;background:#e9f9ef;border:1.5px solid #9ad9b3;color:#116335;padding:16px 18px;border-radius:12px;font-weight:600;margin-bottom:8px;font-family:var(--body)}
.form-success.show{display:block}
.quote-card .btn--primary{color:var(--navy)}
@media(max-width:520px){.form-row.two{grid-template-columns:1fr}}

/* ============ Footer ============ */
.site-footer{background:var(--bg-deep);color:#a9b8dc;padding:56px 0 0;font-size:14.5px;font-family:var(--body)}
.footer-grid{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.2fr;gap:34px}
@media(max-width:900px){.footer-grid{grid-template-columns:1fr 1fr}}
@media(max-width:560px){.footer-grid{grid-template-columns:1fr}}
.site-footer h4{color:#fff;font-size:15px;margin-bottom:14px;font-family:var(--display);font-weight:400;letter-spacing:0}
.site-footer a{color:#a9b8dc}
.site-footer a:hover{color:var(--yellow);text-decoration:none}
.footer-links{list-style:none;padding:0;margin:0;display:grid;gap:9px}
.footer-brand .brand{color:#fff;margin-bottom:12px}
.footer-brand .brand .accent{color:var(--yellow)}
.footer-brand p{color:#8496bd;font-size:14px}
.footer-contact li{display:flex;gap:10px;margin-bottom:10px;align-items:flex-start}
.footer-contact svg{color:var(--yellow);flex:none;margin-top:3px}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:44px;padding:20px 0;display:flex;
  justify-content:space-between;gap:14px;flex-wrap:wrap;font-size:13px;color:#7688b0}
.footer-bottom a{color:#a9b8dc}

/* ============ Mobile call bar ============ */
.mobile-bar{position:fixed;left:0;right:0;bottom:0;z-index:120;display:none;grid-template-columns:1fr 1fr;
  background:var(--bg-deep);box-shadow:0 -4px 20px rgba(0,0,0,.4)}
.mobile-bar a{display:flex;align-items:center;justify-content:center;gap:8px;padding:14px 8px;font-weight:800;font-size:15px;font-family:var(--body)}
.mobile-bar a:hover{text-decoration:none}
.mobile-bar .mb-call{color:#fff;border-right:1px solid rgba(255,255,255,.15)}
.mobile-bar .mb-quote{background:var(--yellow);color:var(--navy)}
@media(max-width:760px){.mobile-bar{display:grid}body{padding-bottom:56px}}

/* ============ Floating WhatsApp ============ */
.wa-float{position:fixed;right:18px;bottom:74px;z-index:115;width:58px;height:58px;border-radius:50%;
  background:#25d366;display:grid;place-items:center;box-shadow:var(--shadow-lg);color:#fff}
.wa-float:hover{text-decoration:none;transform:scale(1.05)}
.wa-float svg{width:32px;height:32px;color:#fff}
@media(min-width:761px){.wa-float{bottom:22px}}

/* Visible keyboard focus on every interactive element (WCAG 2.4.7) */
a:focus-visible,button:focus-visible,summary:focus-visible,.btn:focus-visible,.chip:focus-visible,
.card:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible,.nav-cta:focus-visible{
  outline:3px solid var(--yellow);outline-offset:3px;border-radius:6px}
.header-inner a:focus-visible,.quote-card :focus-visible{outline-color:var(--logo-blue)}

/* utility */
.mt-0{margin-top:0}.mb-0{margin-bottom:0}.hide{display:none}
.pill-row{display:flex;flex-wrap:wrap;gap:10px;margin:18px 0}
.pill{background:var(--panel-2);border:1px solid var(--line);color:#fff;font-weight:600;font-size:13.5px;padding:7px 14px;border-radius:999px;display:inline-flex;align-items:center;gap:6px;font-family:var(--body)}
.pill svg{color:var(--yellow)}

/* Location hero — real photo background with a navy scrim so text stays legible */
.loc-hero{position:relative;overflow:hidden}
.loc-hero-media{position:absolute;inset:0;z-index:0}
.loc-hero-media,.loc-hero-media .pic,.loc-hero-media img{width:100%;height:100%}
/* --focus lets a single page shift its hero crop without affecting the other heroes */
.loc-hero-media img{object-fit:cover;object-position:var(--focus,center)}
.loc-hero-scrim{position:absolute;inset:0;z-index:1;
  background:linear-gradient(rgba(6,20,54,.82),rgba(11,42,107,.92))}
.loc-hero-inner{position:relative;z-index:2}

/* sub-page heroes (services/locations/etc.) */
.hero-cta{display:flex;gap:14px;align-items:center;flex-wrap:wrap;margin-top:20px}
.hero > .container{position:relative;z-index:1}
.hero .container h1{color:#fff}
.hero .container .lead{color:#d7e0f4}

/* ============ Real media (photos, logo, award badge) ============ */
.pic{display:block}
.pic img{display:block;max-width:100%}
/* header logo (navy wordmark on the white header card) */
.brand-logo{height:42px;width:auto;display:block}
@media(max-width:520px){.brand-logo{height:36px}}
/* cover-fit slots */
.media-cover,.media-cover img{width:100%;height:100%;object-fit:cover;display:block}
.hero-photo-card{padding:0!important}
.hero-photo-card .pic,.hero-photo-card .pic img{width:100%;height:100%;object-fit:cover}
/* framed content images (why-us, about, location, service) */
.media-frame{border-radius:16px;overflow:hidden;box-shadow:var(--shadow-lg);aspect-ratio:16/10;
  border:1px solid rgba(255,255,255,.12);background:rgba(255,255,255,.04)}
.media-frame .pic,.media-frame .pic img{width:100%;height:100%;object-fit:cover}
/* --focus lets one frame shift its crop without touching the others. A 16:10
   frame crops a portrait photo hard, and the default centre crop cut the crew
   off at the chest. */
.media-frame .pic img{object-position:var(--focus,center)}
/* Three Best Rated award badge (real client asset, links to listing) */
.tbr-badge{display:inline-flex;align-items:center;justify-content:center;line-height:0}
.tbr-badge:hover{text-decoration:none;transform:translateY(-2px)}
.tbr-badge img{display:block;width:auto;filter:drop-shadow(0 6px 16px rgba(0,0,0,.3))}
.tbr--strip img{height:50px}
.tbr--footer img{height:104px}
.tbr--about img{height:132px}
.trust-item--badge{display:inline-flex;align-items:center}
@media(max-width:760px){.tbr--strip img{height:58px}}

/* ============ Facebook feed — click-to-load facade ============ */
.fb-facade{display:flex;flex-direction:column;align-items:center}
/* reserved-height slot (prevents layout shift when the iframe loads) */
.fb-slot{width:100%;max-width:500px;min-height:560px;display:grid;place-items:center;
  background:var(--panel-2);border:1px solid var(--line);border-radius:18px;overflow:hidden}
.fb-facade.fb-ready .fb-slot{background:transparent;border-color:transparent;min-height:0}
.fb-skeleton{text-align:center;padding:34px 26px;animation:fbpulse 1.6s ease-in-out infinite}
@keyframes fbpulse{0%,100%{opacity:.55}50%{opacity:1}}
@media(prefers-reduced-motion:reduce){.fb-skeleton{animation:none}}
.fb-facade-ico{display:inline-grid;place-items:center;width:60px;height:60px;border-radius:50%;
  background:#1877f2;color:#fff;margin-bottom:16px}
.fb-facade-title{font-weight:700;color:#fff;margin-bottom:0;font-size:1.05rem}
.fb-facade-fallback{margin:16px 0 6px;text-align:center}
.fb-facade-fallback a{color:var(--yellow);font-weight:600;display:inline-flex;align-items:center;gap:6px}
.fb-facade-note{font-size:.8rem;color:var(--text-dim);margin:0;text-align:center}

/* "See all areas" tile closing the main-town grid — visually distinct from a town */
.area-link--all{background:rgba(255,210,0,.10);border-color:rgba(255,210,0,.38);color:var(--yellow);font-weight:600}
.area-link--all:hover{background:rgba(255,210,0,.18);border-color:var(--yellow);color:var(--yellow)}
.area-link--all svg{color:var(--yellow)}

/* ============ BLOG ============ */
.blog-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.blog-card{display:flex;flex-direction:column;background:var(--panel);border:1px solid var(--line);
  border-radius:16px;overflow:hidden;text-decoration:none;color:inherit;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease}
.blog-card:hover{text-decoration:none;transform:translateY(-4px);
  border-color:rgba(255,210,0,.45);box-shadow:0 12px 28px rgba(0,0,0,.28)}
.blog-card-media{aspect-ratio:16/10;overflow:hidden}
.blog-card-media img{width:100%;height:100%;object-fit:cover}
.blog-card-body{padding:20px 22px 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.blog-card h3{margin:0;font-size:19px;line-height:1.25}
.blog-card p{margin:0;color:var(--text);font-size:15px;line-height:1.6;flex:1}
.blog-cat{font-size:12px;letter-spacing:.07em;text-transform:uppercase;color:var(--yellow);font-weight:600}
.blog-meta{font-size:13px;color:var(--text-dim)}
.blog-meta--hero{margin:0}
/* Post body: narrower measure than the site default — long-form reads badly full width */
.blog-post{max-width:74ch;margin:0 auto}
.blog-post h2{margin:34px 0 12px;font-size:clamp(22px,2.6vw,29px)}
.blog-post h3{margin:26px 0 10px;font-size:19px}
.blog-post p{margin:0 0 16px;line-height:1.75}
.blog-post ul,.blog-post ol{margin:0 0 18px;padding-left:22px}
.blog-post li{margin-bottom:9px;line-height:1.65}
.blog-post ul.tick-list{list-style:disc;padding-left:22px}
.blog-post blockquote{margin:22px 0;padding:16px 22px;background:var(--panel);
  border-left:3px solid var(--yellow);border-radius:0 12px 12px 0}
.blog-post blockquote p{margin:0;font-size:17px}
.blog-hero-img{margin-bottom:28px}
.blog-back{max-width:74ch;margin:30px auto 0;font-weight:600}
@media(max-width:900px){.blog-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:620px){.blog-grid{grid-template-columns:1fr}}

/* ============ HERO v2 — Option A+: depth, tilt, floating trust (approved-first) ============ */
.hero--v2::after{content:"";position:absolute;inset:0;pointer-events:none;opacity:.07;mix-blend-mode:overlay;z-index:0;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/></svg>")}
.hero-glow{position:absolute;width:780px;height:780px;right:-160px;top:-220px;border-radius:50%;
  background:radial-gradient(circle,rgba(255,210,0,.24) 0%,rgba(255,210,0,0) 62%);filter:blur(28px)}
.hero-eyebrow{display:flex;align-items:center;gap:8px;flex-wrap:wrap;color:#c8d5f0;font-size:14px;font-weight:600;margin:0 0 14px;font-family:var(--body)}
.hero-eyebrow .stars{color:var(--yellow);letter-spacing:2px;font-size:15px;text-shadow:0 0 14px rgba(255,210,0,.5)}
.hero-eyebrow b{color:#fff;font-weight:800}
.hero-eyebrow .sep{color:#6f82b3}
.hero-trust{display:flex;flex-wrap:wrap;gap:10px;margin-top:18px}
.hero-trust span{display:inline-flex;align-items:center;gap:7px;background:rgba(255,255,255,.07);border:1px solid rgba(255,255,255,.16);
  border-radius:999px;padding:8px 14px;font-size:13.5px;font-weight:600;color:#eaf0fb;font-family:var(--body);backdrop-filter:blur(4px)}
.hero-trust svg{color:var(--yellow);flex:none}
.hero--v2 .hero-photo-card{transform:none;border-radius:22px;transition:transform .35s ease;
  box-shadow:0 30px 60px rgba(0,0,0,.45),0 0 60px rgba(255,210,0,.14),inset 0 0 0 1px rgba(255,255,255,.14)}
.hero--v2 .hero-photo-stage:hover .hero-photo-card{transform:scale(1.01)}
.hero--v2 .hfb-reviews{top:14px;right:-22px;bottom:auto;left:auto}
/* Award: NO white background (client item 3) — badge alone with a drop-shadow so it
   reads on navy. Pinned to the extreme bottom-right corner so it never covers the team. */
.hfb-award{top:auto;left:auto;bottom:-30px;right:-34px;background:none;border-radius:0;padding:0;
  box-shadow:none;animation:floatB 7s ease-in-out infinite}
.hfb-award .tbr-badge{line-height:0}
.hfb-award .tbr-badge img{height:96px;width:auto;filter:drop-shadow(0 10px 22px rgba(0,0,0,.5)) drop-shadow(0 0 18px rgba(255,210,0,.35))}
.hero--v2 .hero-float-bubble{width:122px;top:10px;left:-24px}
@media(max-width:860px){
  .hero-eyebrow,.hero-trust{justify-content:center}
  .hfb-award{bottom:-18px;right:-6px}
  .hfb-award .tbr-badge img{height:64px}   /* mobile: award tucked at the corner, clear of the crew */
  .hero--v2 .hfb-reviews{right:-8px;left:auto;top:10px}   /* pin top-right over van roof, clear of the crew */
}
@media(prefers-reduced-motion:reduce){.hfb-award{animation:none}.hero--v2 .hero-photo-card{transform:none!important}}

/* Google wordmark inline in the hero rating line (sized to the text) */
.google-logo{height:1.1em;width:auto;display:inline-block;vertical-align:-.2em;margin:0 1px}
.hero-eyebrow .google-logo{height:1.15em;vertical-align:-.22em;margin-left:2px}

/* Hero proof line — plain text, no chips (replaces the icon pills) */

/* About: extra team photos */
.photo-pair{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:14px}
.photo-pair .media-frame{aspect-ratio:4/3;margin:0}
@media(max-width:520px){.photo-pair{grid-template-columns:1fr}}

/* Hero corner cards: bubble hangs off the top-left corner, reviews card off the
   bottom-right. Both overhang the photo edge so the crew is never covered. */
.hero--v2 .hero-float-bubble{width:118px;top:-40px;left:-40px}
.hero--v2 .hfb-reviews{top:auto;left:auto;right:-26px;bottom:-22px;padding:10px 18px 10px 10px;gap:10px;
  border-radius:16px;box-shadow:0 14px 30px rgba(0,0,0,.35),0 0 0 1px rgba(12,42,99,.06)}
.hero--v2 .hfb-reviews .hfb-icon{background:var(--navy);color:var(--yellow)}
.hero--v2 .hfb-reviews .hfb-icon svg{fill:currentColor}
.hfb-text{display:flex;flex-direction:column;line-height:1.15}
.hfb-text b{font-size:15px;font-weight:900;color:var(--navy);font-family:var(--body)}
.hfb-text small{font-size:11.5px;font-weight:600;color:#5f6f93;letter-spacing:.01em}
@media(max-width:860px){
  .hero--v2 .hero-float-bubble{width:92px;top:-28px;left:-2px}
  .hero--v2 .hfb-reviews{right:-2px;bottom:-16px;padding:8px 14px 8px 8px}
  .hfb-text b{font-size:13.5px}.hfb-text small{font-size:10.5px}
}

/* Review cards: white with a yellow outline and dark text so they lift off the navy */
.review{background:#fff;border:2px solid var(--yellow);color:#111827;position:relative;overflow:hidden;
  box-shadow:0 14px 34px rgba(0,0,0,.28)}
.review::before{content:"\201C";position:absolute;top:-22px;right:14px;font-family:var(--display);font-size:120px;
  line-height:1;color:var(--yellow);opacity:.28;pointer-events:none}
.review .stars{color:var(--yellow);text-shadow:0 1px 0 rgba(0,0,0,.08)}
.review blockquote{color:#1f2937;position:relative}
.review .who{color:#0c2a63}
.review .src{color:#6b7280}
.rev-track>.review:hover{border-color:#e6bd00;box-shadow:0 20px 40px rgba(0,0,0,.34),0 0 0 4px rgba(255,210,0,.18)}

/* Intro block: centred on mobile so the service line never orphans a word */
@media(max-width:880px){
  .intro-copy{text-align:center}
  .intro-copy .pill-row{justify-content:center}
  .intro-copy .lead{margin-left:auto;margin-right:auto}
}

/* Blog: tables and inline images (rebuilt Wix posts) */
.blog-post .table-wrap{overflow-x:auto;margin:22px 0 26px;border-radius:14px;border:1px solid var(--line);background:rgba(255,255,255,.03)}
.blog-post .table-wrap:focus-visible{outline:3px solid var(--yellow);outline-offset:3px}
.blog-post table{width:100%;min-width:560px;border-collapse:collapse;font-size:14.5px;line-height:1.5}
.blog-post th{background:rgba(255,210,0,.12);color:#fff;text-align:left;font-weight:700;padding:12px 14px;border-bottom:2px solid rgba(255,210,0,.45)}
.blog-post td{padding:11px 14px;border-top:1px solid var(--line);vertical-align:top;color:#dbe4f5}
.blog-post tbody tr:nth-child(even) td{background:rgba(255,255,255,.025)}
.blog-post td a,.blog-post th a{color:var(--yellow);word-break:break-word}
.blog-post .blog-inline-img{margin:26px 0;aspect-ratio:4/3}

/* Loading splash: styles are inlined in <head> by build.py so it paints on the first frame. */

/* ===== Homepage hero previews (MMI_HERO build flag). Classes unused in the default build. ===== */
.hero--photo,.hero--team{position:relative;overflow:hidden;background:var(--bg)}
.hx-media{position:absolute;inset:0;z-index:0}
.hx-media .pic,.hx-media img{width:100%;height:100%;display:block}
.hx-media img{object-fit:cover}
.hx-scrim{position:absolute;inset:0;z-index:1;pointer-events:none}
.hero--photo .wrap,.hero--team .wrap{position:relative;z-index:2}
.hx-award{display:grid;justify-items:center;gap:10px;text-align:center}
.hx-award .tbr-badge img{height:176px;filter:drop-shadow(0 18px 34px rgba(0,0,0,.55)) drop-shadow(0 0 22px rgba(255,210,0,.18))}
.hx-award-cap{margin:0;color:#fff;font-weight:700;font-size:15px;font-family:var(--body);letter-spacing:.01em;text-shadow:0 1px 10px rgba(0,0,0,.85),0 0 2px rgba(0,0,0,.6)}
.hx-award-cap small{display:block;color:#c8d5f0;font-weight:500;font-size:13px;margin-top:2px}

/* --- Preview A: full-bleed photo --- */
.hero--photo{min-height:clamp(620px,80vh,800px);display:flex;align-items:center;padding:140px 0 60px;margin-top:-100px}   /* photo runs up behind the floating header card */
.hero--photo .hx-media img{object-position:62% 55%}
.hero--photo .hx-scrim{background:
  linear-gradient(90deg,rgba(6,20,54,.95) 0%,rgba(8,28,72,.88) 40%,rgba(11,42,107,.55) 70%,rgba(11,42,107,.30) 100%),
  linear-gradient(0deg,rgba(6,20,54,.70) 0%,rgba(6,20,54,0) 38%)}
.hero--photo .wrap{width:100%}
.hp-grid{display:grid;grid-template-columns:minmax(0,1.35fr) minmax(0,.65fr);gap:40px;align-items:center}
.hp-grid .hero-h1{margin-bottom:26px;text-shadow:0 2px 24px rgba(0,0,0,.35)}
.hp-grid .hero-eyebrow{text-shadow:0 1px 10px rgba(0,0,0,.4)}
.hp-side{display:grid;justify-items:center;gap:22px}
.hp-side .hfb-reviews{position:static;animation:none;padding:10px 18px 10px 10px;gap:10px;border-radius:16px;box-shadow:0 14px 30px rgba(0,0,0,.35)}
.hp-side .hfb-reviews .hfb-icon{background:var(--navy);color:var(--yellow)}
.hp-side .hfb-reviews .hfb-icon svg{fill:currentColor}
.intro-team{aspect-ratio:1200/545}
@media(max-width:860px){
  .hero--photo{min-height:0;padding:120px 0 48px}
  .hp-side{gap:16px}
  .hx-award-cap small{display:none}
  .hero--photo .hx-scrim{background:linear-gradient(rgba(6,20,54,.78),rgba(11,42,107,.93))}
  .hp-grid{grid-template-columns:1fr;gap:28px;text-align:center}
  .hp-grid .hero-ctas{justify-content:center}
  .hx-award .tbr-badge img{height:128px}
}

/* --- Preview B: large team photo --- */
.hero--team{padding:40px 0 64px}
.hero--team .hx-media img{object-position:50% 50%;filter:saturate(.9)}
.hero--team .hx-scrim{background:linear-gradient(rgba(6,20,54,.90),rgba(11,42,107,.96))}
.ht-head{text-align:center;max-width:980px;margin:0 auto}
.ht-head .hero-eyebrow{justify-content:center}
.ht-head .hero-h1{margin:0 auto 30px}
.hero--team .hero-photo-stage{max-width:1000px;margin:0 auto}
.ht-foot{max-width:1000px;margin:44px auto 0;display:flex;align-items:center;justify-content:space-between;gap:30px}
.ht-foot .hero-trust{margin-top:16px}
.ht-foot .hx-award{flex:none}
.ht-foot .hx-award .tbr-badge img{height:140px}
@media(max-width:860px){
  .hero--team{padding:28px 0 52px}
  .ht-foot{flex-direction:column;text-align:center;margin-top:40px}
  .ht-foot .hero-ctas{justify-content:center}
  .ht-foot .hx-award .tbr-badge img{height:118px}
}
