/* ============================================================
   Lustra display font — heading weight only
   ============================================================ */
@font-face{
  font-family:'Lustra';
  src:url('lustra-text-black.ttf') format('truetype');
  font-weight:900;font-style:normal;font-display:swap;
}

/* ============================================================
   A.P Roofing Services — V2
   Inspired by: muscle-lab-gym (dark hero, condensed display, btn-roll)
   Adapted: warm-tone dark (not pure black), left-aligned nav, alt cream sections
   ============================================================ */

*,*::before,*::after{box-sizing:border-box}
*{margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',system-ui,-apple-system,BlinkMacSystemFont,'Segoe UI',Roboto,sans-serif;
  font-weight:400;font-size:16px;line-height:1.65;
  color:var(--ink);background:var(--bg);-webkit-font-smoothing:antialiased;
  min-height:100%;display:flex;flex-direction:column;margin:0;
}
/* When mobile nav is open the body bg is exposed at iOS safe-area edges — make it match the dark nav so no thin strips appear */
body:has(.mobile-nav.open){background:var(--ink)}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit;cursor:pointer;border:none;background:none}
ul{list-style:none}
summary{list-style:none !important;cursor:pointer}
summary::-webkit-details-marker{display:none !important}
:focus-visible{outline:2px solid var(--orange);outline-offset:3px}
.skip-link{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);clip-path:inset(50%);white-space:nowrap;border:0}
.skip-link:focus{position:fixed;top:.75rem;left:.75rem;width:auto;height:auto;padding:.6rem 1rem;margin:0;clip:auto;clip-path:none;background:var(--ink);color:#fff;z-index:1000}

:root{
  /* Warm dark — not pure black */
  --ink:#14110d;
  --ink-2:#1d1915;
  --ink-3:#28221c;
  --line:rgba(255,255,255,.08);
  --line-2:rgba(255,255,255,.14);
  --orange:#f17023;
  --orange-dark:#cf5b18;
  --orange-glow:rgba(241,112,35,.18);
  --cream:#f5ebd9;
  --cream-2:#ebdfc8;
  --bg:#14110d;
  --slate:#5b524a;
  --slate-light:#8b8278;
  --content-max:1340px;
  --gutter:1.25rem;
}

/* Display font reserved for hero h1 + section h2 + big numbers only.
   Section h3 / card titles / form bits use Inter for readability. */
h1{font-family:'Lustra','Montserrat','Anton',sans-serif;font-weight:900;letter-spacing:-.02em;line-height:.95;text-transform:uppercase}
h2{font-family:'Lustra','Montserrat','Anton',sans-serif;font-weight:900;letter-spacing:-.02em;line-height:1;text-transform:uppercase}
h3,h4{font-family:'Inter','Montserrat',sans-serif;font-weight:700;letter-spacing:-.01em;line-height:1.15}

p{color:var(--slate);font-family:'Inter',sans-serif}
.eyebrow{
  font-family:'Inter',sans-serif;font-size:.7rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.28em;color:var(--orange);
  display:inline-flex;align-items:center;gap:.5rem;
}
.eyebrow .pip{width:6px;height:6px;background:var(--orange);display:inline-block}

.container{width:100%;max-width:var(--content-max);margin:0 auto;padding:0 var(--gutter)}

/* ============================================================
   BTN-ROLL — clipped/rolling button (muscle-lab inspired)
   ============================================================ */
.btn-roll{
  position:relative;display:inline-flex;align-items:center;gap:.6rem;
  height:54px;padding:0 28px;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.18em;
  background:var(--orange);color:#fff;
  border:none;cursor:pointer;text-decoration:none;
  clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px));
  transition:background .35s ease, color .35s ease, clip-path .35s ease;
  overflow:hidden;
}
.btn-roll.sm{height:42px;padding:0 18px;font-size:.7rem;font-weight:700;letter-spacing:.15em;gap:.5rem;text-transform:uppercase;clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px))}
.btn-roll:hover{background:var(--orange-dark)}
.btn-roll-wrap{position:relative;display:inline-block;height:1.2em;overflow:hidden;line-height:1}
.btn-roll-inner{display:flex;flex-direction:column;transition:transform .45s cubic-bezier(.7,0,.3,1)}
.btn-roll-inner > span{display:flex;align-items:center;height:1.2em;line-height:1}
.btn-roll:hover .btn-roll-inner{transform:translateY(-1.2em)}
.btn-roll .arrow{transition:transform .35s ease}
.btn-roll:hover .arrow{transform:translateX(5px)}

/* Outline variant — border comes from the .cb wrapper, not box-shadow */
.btn-roll.outline{background:var(--ink);color:#fff}
.btn-roll.outline:hover{background:var(--ink);color:var(--orange)}

/* -----------------------------------------------------------------------
   .cb — clip-border wrapper
   Wraps any clip-path'd outline button. Paints the border as a clipped
   background (1px padding × border colour) so it traces all 6 hex edges
   including the two diagonal cuts — no box-shadow corner gaps.
   ----------------------------------------------------------------------- */
.cb{display:inline-flex;padding:1px;background:var(--line-2);transition:background .3s ease}
.cb.cb-lg{clip-path:polygon(0 0,calc(100% - 12px) 0,100% 12px,100% 100%,12px 100%,0 calc(100% - 12px))}
.cb.cb-sm{clip-path:polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px))}
.cb:hover{background:var(--orange)}
/* inner button: inset clip-path 1px smaller so 1px border gap shows wrapper bg */
.cb.cb-lg .btn-roll.outline{
  clip-path:polygon(0 0,calc(100% - 11px) 0,100% 11px,100% 100%,11px 100%,0 calc(100% - 11px));
}
.cb.cb-sm .btn-roll.outline{
  clip-path:polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
}

.btn-roll.dark{background:var(--ink);color:#fff}
.btn-roll.dark:hover{background:var(--ink-3)}

.btn-roll.cream{background:var(--cream);color:var(--ink)}
.btn-roll.cream:hover{background:var(--cream-2)}

/* ============================================================
   HEADER — transparent over hero, solid white on scroll
   ============================================================ */
.site-header{
  position:fixed;top:0;left:0;right:0;z-index:100;
  background:transparent;border-bottom:1px solid transparent;
  transition:background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.solid{
  background:rgba(255,255,255,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--cream-2);
  box-shadow:0 4px 20px -10px rgba(20,17,13,.08);
}
/* Dark header when mega menu OR mobile nav is open (text stays white) */
.site-header:not(.solid):has(.nav-item:hover .mega-menu),
.site-header:not(.solid):has(.nav-item:focus-within .mega-menu),
.site-header:not(.solid).mobile-open{
  background:rgba(20,17,13,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--ink-3);
}
.site-header > .container{
  display:flex;align-items:center;gap:2rem;
  padding:1rem var(--gutter);
  transition:padding .25s ease;
}
.site-header.solid > .container{padding:.5rem var(--gutter)}

/* Desktop: 3-column grid — nav left · logo centre · actions right */
@media (min-width:1024px){
  .site-header > .container{
    display:grid;
    grid-template-columns:1fr auto 1fr;
    grid-template-areas:"nav logo actions";
    gap:2rem;
    align-items:center;
  }
  .site-header .logo{grid-area:logo;align-self:center}
  .site-header .desktop-nav{grid-area:nav;display:flex;align-items:center;gap:1.6rem;flex:unset}
  .site-header .nav-actions{grid-area:actions;display:flex;align-items:center;gap:.85rem;justify-content:flex-end;margin-left:0}
  .site-header .nav-toggle{display:none}
}

.site-header .logo{display:inline-flex;align-items:center;gap:.65rem;flex-shrink:0;position:relative}
.site-header .logo .logo-icon{
  height:58px;width:auto;display:block;flex-shrink:0;transition:height .25s ease;
}
.site-header.solid .logo .logo-icon{height:46px}
.site-header .logo-text{
  display:flex;flex-direction:column;line-height:.95;
  font-family:'Montserrat',sans-serif;font-weight:800;font-size:1.15rem;
  letter-spacing:.005em;text-transform:uppercase;color:#fff;
  transition:color .3s ease, font-size .25s ease;
}
.site-header.solid .logo-text{color:var(--ink);font-size:1.02rem}
.site-header .logo-text .lt-1{color:var(--orange)}
.site-header .logo-text .lt-2{color:inherit}

.desktop-nav{display:none;align-items:center;gap:1.6rem;flex:1}
@media (min-width:1024px){.desktop-nav{display:flex}}

/* Rollup hover effect — text scrolls up, identical text rolls in from below */
.desktop-nav > a, .desktop-nav .nav-item > .nav-link{
  position:relative;display:inline-flex;align-items:center;gap:.35rem;cursor:pointer;
  font-family:'Inter',sans-serif;font-weight:600;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.18em;
  color:rgba(255,255,255,.78);transition:color .2s;
}
.desktop-nav > a > span:not(.chev), .desktop-nav .nav-item > .nav-link > span:not(.chev){
  position:relative;display:inline-block;height:1.2em;overflow:hidden;line-height:1;
}
.desktop-nav > a > span:not(.chev) > span, .desktop-nav .nav-item > .nav-link > span:not(.chev) > span{
  display:flex;flex-direction:column;transition:transform .35s cubic-bezier(.7,0,.3,1);
}
.desktop-nav > a > span:not(.chev) > span > i, .desktop-nav .nav-item > .nav-link > span:not(.chev) > span > i{
  display:flex;align-items:center;height:1.2em;line-height:1;font-style:normal;
}
.desktop-nav > a:hover > span:not(.chev) > span,
.desktop-nav .nav-item:hover > .nav-link > span:not(.chev) > span{transform:translateY(-1.2em)}

.desktop-nav > a:hover, .desktop-nav .nav-item:hover .nav-link{color:#fff}
.site-header.solid .desktop-nav > a, .site-header.solid .desktop-nav .nav-item > .nav-link{color:rgba(20,17,13,.7)}
.site-header.solid .desktop-nav > a:hover, .site-header.solid .desktop-nav .nav-item:hover .nav-link{color:var(--orange)}

.nav-item{position:static}
.nav-item .nav-link .chev{width:11px;height:11px;transition:transform .2s ease}
.nav-item:hover .nav-link .chev{transform:rotate(180deg)}

/* Full-container-width mega menu — position:absolute relative to the fixed header,
   so it always sits flush at the header's bottom regardless of scroll state.
   No JS top-calculation needed; top:100% tracks the header height automatically. */
.mega-menu{
  position:absolute;left:0;right:0;top:100%;z-index:60;
  opacity:0;visibility:hidden;pointer-events:none;transform:translateY(-6px);
  transition:opacity .22s ease, transform .22s ease, visibility .22s;
}
/* Invisible bridge — extends hover area back up into the header gap */
.mega-menu::before{
  content:"";position:absolute;left:0;right:0;top:-40px;height:40px;
  pointer-events:none;
}
.nav-item:hover .mega-menu::before, .nav-item:focus-within .mega-menu::before{pointer-events:auto}
/* Extend the trigger's hover catch downward so the gap is bridged */
.nav-item > .nav-link{padding-bottom:1.4rem;margin-bottom:-1.4rem;position:relative}
.nav-item:hover .mega-menu, .nav-item:focus-within .mega-menu{
  opacity:1;visibility:visible;pointer-events:auto;transform:translateY(0);
  transition-delay:0s, 0s, 0s;
}
/* Small close-delay so brief mouse-out doesn't snap it shut */
.mega-menu{transition-delay:.18s, .18s, .18s}
.mega-menu-inner{
  background:rgba(20,17,13,.96);backdrop-filter:blur(12px);
  border-bottom:1px solid var(--ink-3);
  box-shadow:0 24px 60px -10px rgba(0,0,0,.4);
}
.mega-menu-inner > .container{padding:1.5rem var(--gutter) 1.6rem}
.mega-menu .mm-head{
  display:flex;justify-content:space-between;align-items:flex-end;flex-wrap:wrap;gap:1rem;
  padding-bottom:1.1rem;margin-bottom:1.1rem;border-bottom:1px solid var(--cream-2);
}
.mega-menu .mm-head h3{
  font-family:'Montserrat',sans-serif;font-weight:800;text-transform:uppercase;letter-spacing:-.01em;
  font-size:1.55rem;color:var(--ink);line-height:1;
}
.mega-menu .mm-head .mm-sub{font-family:'Inter',sans-serif;font-size:.82rem;color:var(--slate);max-width:46ch;line-height:1.5}
.mega-menu .mm-head .mm-cta{
  font-family:'Inter',sans-serif;font-weight:700;font-size:.72rem;text-transform:uppercase;letter-spacing:.18em;
  color:var(--orange);display:inline-flex;align-items:center;gap:.45rem;
}
.mega-menu .mm-head .mm-cta svg{transition:transform .25s}
.mega-menu .mm-head .mm-cta:hover svg{transform:translateX(4px)}
.mega-menu .mm-grid{
  display:grid;grid-template-columns:repeat(2, 1fr);gap:.45rem;
}
@media (min-width:1024px){.mega-menu .mm-grid{grid-template-columns:repeat(4, 1fr);gap:.5rem}}

.mega-menu .mm-item{
  position:relative;display:block;overflow:hidden;background:var(--ink);
  text-transform:none;letter-spacing:0;color:#fff;text-decoration:none;
  aspect-ratio:48/25;
  transition:transform .35s ease, box-shadow .35s ease;
}
.mega-menu .mm-item::before{display:none}
.mega-menu .mm-item:hover{transform:translateY(-3px);box-shadow:0 14px 28px -14px rgba(20,17,13,.4)}
.mega-menu .mm-thumb{
  position:absolute;inset:0;overflow:hidden;
}
.mega-menu .mm-thumb img{width:100%;height:100%;object-fit:cover;transition:transform .6s ease}
.mega-menu .mm-item:hover .mm-thumb img{transform:scale(1.06)}
.mega-menu .mm-thumb::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,17,13,.15) 0%, rgba(20,17,13,.45) 50%, rgba(20,17,13,.85) 100%);
  transition:background .35s ease;
}
.mega-menu .mm-item:hover .mm-thumb::after{
  background:linear-gradient(180deg, rgba(236,93,40,.1) 0%, rgba(20,17,13,.55) 50%, rgba(20,17,13,.92) 100%);
}
.mega-menu .mm-body{
  position:relative;z-index:2;padding:.6rem .75rem;display:flex;flex-direction:column;gap:.05rem;
  height:100%;justify-content:flex-end;
}
.mega-menu .mm-title{
  font-family:'Montserrat',sans-serif;font-weight:800;font-size:.74rem;
  color:#fff;letter-spacing:.01em;line-height:1.15;text-transform:uppercase;
}
.mega-menu .mm-desc{
  font-family:'Inter',sans-serif;font-size:.62rem;font-weight:500;
  color:rgba(255,255,255,.78);line-height:1.35;letter-spacing:.01em;text-transform:none;
}

/* Drone banner strip inside the mega menu / mobile accordion — spans full grid width */
.mm-drone-strip{
  grid-column:1 / -1;
  display:flex;align-items:center;justify-content:center;gap:.75rem;
  background:var(--orange);
  padding:.75rem 1.25rem;
  font-family:'Inter',sans-serif;font-size:.65rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;
  color:rgba(255,255,255,.85);
}
.mm-drone-strip svg{color:#fff;flex-shrink:0}
.mm-drone-strip strong{color:#fff;font-weight:800}

.nav-actions{display:none;align-items:center;gap:.85rem;margin-left:auto;flex-shrink:0}
@media (min-width:1024px){.nav-actions{display:flex}}
.nav-actions .nav-phone{
  font-family:'Inter',sans-serif;font-weight:700;letter-spacing:.05em;
  color:#fff;font-size:.78rem;display:inline-flex;align-items:center;gap:.5rem;
  height:42px;padding:0 18px;
  background:var(--ink);
  clip-path:polygon(0 0,calc(100% - 7px) 0,100% 7px,100% 100%,7px 100%,0 calc(100% - 7px));
  transition:color .2s;
}
.nav-actions .nav-phone svg{color:var(--orange);width:14px;height:14px}
.nav-actions .nav-phone:hover{color:var(--orange)}
.nav-actions .nav-phone:hover .btn-roll-inner{transform:translateY(-1.2em)}
/* Solid header: white background — wrapper border switches to cream */
.site-header.solid .nav-actions .cb.cb-sm{background:var(--cream-2)}
.site-header.solid .nav-actions .nav-phone{background:rgba(255,255,255,.97);color:var(--ink)}
.site-header.solid .nav-actions .cb.cb-sm:hover{background:var(--orange)}
.site-header.solid .nav-actions .nav-phone:hover{color:var(--orange)}

.nav-toggle{
  display:inline-flex;align-items:center;justify-content:center;
  width:44px;height:44px;color:#fff;flex-shrink:0;margin-left:auto;transition:color .25s ease;
}
.site-header.solid .nav-toggle{color:var(--ink)}
.nav-toggle .bars{position:relative;width:24px;height:18px;display:block}
.nav-toggle .bars span{position:absolute;left:0;right:0;height:2px;background:currentColor;transition:transform .3s, top .3s, opacity .2s}
.nav-toggle .bars span:nth-child(1){top:2px}
.nav-toggle .bars span:nth-child(2){top:8px}
.nav-toggle .bars span:nth-child(3){top:14px}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(1){top:8px;transform:rotate(45deg)}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(2){opacity:0}
.nav-toggle[aria-expanded="true"] .bars span:nth-child(3){top:8px;transform:rotate(-45deg)}
@media (min-width:1024px){.nav-toggle{display:none}}

.mobile-nav{
  position:fixed;top:var(--header-h, 78px);left:0;right:0;bottom:0;z-index:99;
  background:var(--ink);overflow-y:auto;
  opacity:0;visibility:hidden;pointer-events:none;
  transition:opacity .3s ease, visibility 0s linear .3s;
}
.mobile-nav.open{
  opacity:1;visibility:visible;pointer-events:auto;
  transition:opacity .3s ease, visibility 0s linear 0s;
}
.mobile-nav a:not(.btn-roll), .mobile-nav .mn-acc-trigger{
  display:block;width:100%;padding:.85rem var(--gutter);box-sizing:border-box;
  font-family:'Lustra','Anton',sans-serif;font-weight:900;text-transform:uppercase;letter-spacing:-.01em;font-size:1.6rem;
  color:#fff;border:none;border-bottom:1px solid var(--line);
  background:none;text-align:left;transition:color .2s, background .2s;
  margin:0;
}
.mobile-nav a:not(.btn-roll):hover, .mobile-nav .mn-acc-trigger:hover{color:var(--orange);background:var(--ink-2)}
.mobile-nav .mn-cta{padding:1rem var(--gutter);border-bottom:none;display:flex;flex-direction:column;gap:.6rem}
/* Re-declare .btn-roll properties at higher specificity to defeat any cascade from .mobile-nav rules */
.mobile-nav .mn-cta a.btn-roll{
  display:inline-flex;align-items:center;justify-content:center;gap:.6rem;
  width:100%;height:54px;padding:0 28px;box-sizing:border-box;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.78rem;
  text-transform:uppercase;letter-spacing:.18em;text-align:center;text-decoration:none;
  background:var(--orange);color:#fff;
  border:1px solid transparent;border-radius:0;
  overflow:hidden;margin:0;
}
.mobile-nav .mn-cta a.btn-roll.outline{background:var(--ink);color:#fff}
/* Mobile accordion for Services */
.mobile-nav .mn-acc{display:block}
.mobile-nav .mn-acc-trigger{
  display:flex;align-items:center;justify-content:space-between;cursor:pointer;
}
.mobile-nav .mn-acc-trigger:hover{color:var(--orange);background:var(--ink-2)}
.mobile-nav .mn-acc-trigger .acc-chev{color:var(--orange);transition:transform .3s}
.mobile-nav .mn-acc[aria-expanded="true"] .mn-acc-trigger .acc-chev{transform:rotate(180deg)}
.mobile-nav .mn-acc-panel{
  display:none;padding:.5rem var(--gutter) 1rem;background:var(--ink-2);
}
.mobile-nav .mn-acc[aria-expanded="true"] .mn-acc-panel{display:grid;grid-template-columns:1fr 1fr;gap:.5rem}
.mobile-nav .mn-acc-panel .mm-item{
  position:relative;display:block;overflow:hidden;background:var(--ink);
  text-transform:none;letter-spacing:0;color:#fff;text-decoration:none;
  aspect-ratio:5/4;border:none;padding:0;
  font-size:inherit;font-family:inherit;font-weight:inherit;
}
/* Hide the small descriptor text on mobile to free up space */
.mobile-nav .mn-acc-panel .mm-desc{display:none}
.mobile-nav .mn-acc-panel .mm-item:hover{background:var(--ink)}
.mobile-nav .mn-acc-panel .mm-thumb{position:absolute;inset:0;overflow:hidden}
.mobile-nav .mn-acc-panel .mm-thumb img{width:100%;height:100%;object-fit:cover}
.mobile-nav .mn-acc-panel .mm-thumb::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(20,17,13,.15) 0%, rgba(20,17,13,.5) 50%, rgba(20,17,13,.88) 100%);
}
.mobile-nav .mn-acc-panel .mm-body{
  position:relative;z-index:2;padding:.85rem 1rem;display:flex;flex-direction:column;gap:.15rem;
  height:100%;justify-content:flex-end;
}
.mobile-nav .mn-acc-panel .mm-title{
  font-family:'Lustra','Anton',sans-serif;font-weight:900;font-size:.95rem;
  color:#fff;letter-spacing:-.01em;line-height:1.15;text-transform:uppercase;
}
.mobile-nav .mn-acc-panel .mm-desc{
  font-family:'Inter',sans-serif;font-size:.72rem;font-weight:500;
  color:rgba(255,255,255,.8);line-height:1.4;text-transform:none;letter-spacing:0;
}

/* ============================================================
   HERO — full-bleed dark + photo, LEFT aligned (nav floats over)
   ============================================================ */
.hero{
  position:relative;min-height:92vh;display:flex;flex-direction:column;
  background:var(--ink);overflow:hidden;color:#fff;margin-top:0;
}
.hero-bg{position:absolute;inset:0;z-index:0}
.hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(to bottom, rgba(20,17,13,.76) 0%, rgba(20,17,13,.68) 40%, rgba(20,17,13,.90) 100%),
    linear-gradient(180deg, transparent 55%, var(--ink) 100%);
}
.hero-noise{
  position:absolute;inset:0;z-index:1;opacity:.05;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.hero .container{
  position:relative;z-index:2;flex:1;
  display:flex;flex-direction:column;justify-content:center;align-items:center;
  padding-top:5rem;padding-bottom:5rem;
  text-align:center;
}
@media (min-width:1024px){
  .hero .container{padding-top:9rem;padding-bottom:4rem}
}
/* Checkatrade rating badge — sits ABOVE the headline (content-width only) */
.hero-badge-wrap{display:flex;justify-content:center;margin-bottom:1.5rem}
.hero-badge{
  display:inline-flex;align-items:center;gap:.55rem;flex-wrap:nowrap;
  background:rgba(255,255,255,.06);border:1px solid var(--line-2);padding:.45rem .75rem;
  font-family:'Inter',sans-serif;font-size:.78rem;font-weight:700;color:#fff;
  backdrop-filter:blur(8px);width:auto;
}
.hero-badge .ca-rating{font-family:'Montserrat','Anton',sans-serif;font-weight:800;font-size:.95rem;color:#fff;letter-spacing:.02em;line-height:1}
.hero-badge .ca-stars{color:var(--orange);letter-spacing:1px;font-size:.78rem;line-height:1;white-space:nowrap}
.hero-badge .ca-divider{width:1px;height:16px;background:var(--line-2)}
.hero-badge .ca-logo{height:13px;width:auto;display:block;opacity:.95}
.hero-badge .ca-meta{font-family:'Inter',sans-serif;font-weight:600;font-size:.7rem;color:rgba(255,255,255,.65);text-transform:uppercase;letter-spacing:.12em}

.hero h1{
  font-size:clamp(1.72rem, 7.1vw, 2.05rem);color:#fff;
  margin-bottom:1.25rem;max-width:none;
}
@media (min-width:640px){
  .hero h1{font-size:clamp(2.55rem, 4.5vw, 3.8rem)}
}
.hero h1 .accent{color:var(--orange);display:inline-block}
.hero h1 br{display:none}
/* Desktop-only line breaks — hidden on mobile so titles wrap naturally */
br.desktop{display:none}
@media (min-width:760px){
  .hero h1 br.desktop, br.desktop{display:block}
}
.hero p.lead{
  font-size:1.05rem;color:rgba(255,255,255,.78);max-width:560px;margin:0 auto 2rem;line-height:1.65;
}
.hero .cta-row{display:flex;flex-wrap:wrap;gap:.85rem;align-items:center;justify-content:center}
@media (max-width:599px){
  .hero .cta-row{flex-direction:column;align-items:stretch}
  .hero .cta-row .btn-roll{width:100%;justify-content:center}
}

.hero-chips{
  margin-top:2rem;display:flex;flex-wrap:wrap;gap:.6rem;
}
.hero-chips .chip{
  display:inline-flex;align-items:center;gap:.45rem;
  border:1px solid var(--line-2);padding:.5rem .85rem;
  font-family:'Inter',sans-serif;font-size:.68rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.15em;color:rgba(255,255,255,.7);
}
.hero-chips .chip svg{width:12px;height:12px;color:var(--orange);flex-shrink:0}

.hero-scroll{
  position:absolute;bottom:1.75rem;left:50%;transform:translateX(-50%);z-index:3;
  display:flex;flex-direction:column;align-items:center;gap:.5rem;
}
.hero-scroll .line{width:1px;height:32px;background:linear-gradient(to bottom, transparent, rgba(255,255,255,.3))}
.hero-scroll .label{
  font-family:'Inter',sans-serif;font-size:.6rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.32em;color:rgba(255,255,255,.4);
}

/* ============================================================
   SECTIONS — all light below hero
   ============================================================ */
section{padding:clamp(1.75rem, 4vw, 3rem) 0}

/* Compact trust strip directly under hero */
.trust-bar{
  background:var(--ink-2);border-bottom:1px solid var(--line);
  padding:.85rem 0;
}
.trust-bar .row{
  display:flex;flex-wrap:wrap;gap:.6rem 1.75rem;justify-content:flex-start;align-items:center;
}
@media (min-width:1000px){.trust-bar .row{justify-content:space-between}}
.trust-bar .item{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.72rem;
  color:rgba(255,255,255,.75);text-transform:uppercase;letter-spacing:.12em;
}
.trust-bar .item svg{width:14px;height:14px;color:var(--orange);flex-shrink:0}
/* Full dark theme — all sections dark */
.sec--light{background:var(--ink);color:#fff}
.sec--cream{background:var(--ink-2);color:#fff}
.sec--cream p,.sec--light p{color:rgba(255,255,255,.62)}

.sec-head{margin-bottom:1.85rem}
.sec-head .eyebrow{margin-bottom:1.1rem}
.sec-head h2{
  font-size:clamp(2rem, 4.6vw, 3.4rem);max-width:22ch;line-height:1;color:#fff;
}
.sec-head .sub{
  margin-top:1.25rem;max-width:54ch;font-size:1rem;line-height:1.6;
}

.sec-head-row{margin-bottom:1.85rem}
.sec-head-row h2{color:#fff;font-size:clamp(2rem, 4.6vw, 3.4rem);max-width:none;line-height:1}

/* ============================================================
   SERVICES — light cream cards on white bg, image at top
   ============================================================ */
.svc-grid{display:grid;grid-template-columns:1fr;gap:1.25rem}
@media (min-width:680px){.svc-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.svc-grid{grid-template-columns:repeat(3,1fr)}}
/* SERVICE CARDS — Muscle Lab style (proper):
   Image section on top, dark body below. Title + diagonal ↗ arrow on one row,
   description always visible below. Border highlights to orange on hover. */
.svc-card{
  position:relative;background:var(--ink-2);border:1px solid var(--line);
  display:flex;flex-direction:column;
  transition:transform .35s ease, box-shadow .35s ease, border-color .25s ease;
  color:#fff;text-decoration:none;overflow:hidden;
}
.svc-card:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px -18px rgba(0,0,0,.55);
  border-color:var(--orange);
}
/* Image at top */
.svc-card .thumb{
  position:relative;aspect-ratio:16/10;overflow:hidden;background:var(--ink-2);
  flex-shrink:0;
}
.svc-card .thumb img{width:100%;height:100%;object-fit:cover;transition:transform .7s ease}
.svc-card:hover .thumb img{transform:scale(1.05)}
/* Gradient at base of image fades INTO the card body background below */
.svc-card .thumb::after{
  content:"";position:absolute;bottom:0;left:0;right:0;height:45%;
  background:linear-gradient(to top, var(--ink-2), transparent);
  pointer-events:none;
}
/* Number badge — hidden */
.svc-card .num{display:none}
/* Body section: CSS grid puts h3 and arrow on the same row, description below */
.svc-card .body-content{
  padding:1.1rem 1.5rem 1.5rem;
  display:grid;
  grid-template-columns:1fr auto;
  grid-template-rows:auto auto;
  column-gap:.75rem;row-gap:.55rem;
  flex:1;
}
.svc-card h3{
  grid-column:1;grid-row:1;align-self:center;
  font-size:1.08rem;font-weight:700;color:#fff;line-height:1.2;
  transition:color .25s ease;
}
.svc-card:hover h3{color:var(--orange)}
.svc-card p{
  grid-column:1 / -1;grid-row:2;
  font-size:.85rem;color:rgba(255,255,255,.58);line-height:1.55;
}
/* Arrow: top-right of title row, diagonal ↗, no text label */
.svc-card .arrow{
  grid-column:2;grid-row:1;align-self:center;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  font-size:0; /* hides "Read more" text label, SVG width/height unaffected */
  color:rgba(255,255,255,.2);
  transition:color .25s ease, transform .25s ease;
}
.svc-card:hover .arrow{
  color:var(--orange);
  transform:translate(2px,-2px); /* subtle ↗ float on hover */
}
/* Rotate the right-arrow SVG 45° anti-clockwise → diagonal up-right ↗ */
.svc-card .arrow svg{width:16px;height:16px;transform:rotate(-45deg)}

/* Drone banner — full-width strip spanning the service grid */
.drone-banner{
  grid-column:1 / -1;
  display:flex;align-items:center;justify-content:center;gap:1rem;
  background:var(--ink-2);
  border:1px solid var(--line);
  border-left:3px solid var(--orange);
  padding:1.1rem 1.75rem;
  font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.14em;
  color:rgba(255,255,255,.65);
}
.drone-banner svg{color:var(--orange);flex-shrink:0}
.drone-banner strong{color:#fff;font-weight:700}

/* ============================================================
   OUR WORK — asymmetric mosaic gallery
   ============================================================ */
.work-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  grid-auto-rows:220px;
  grid-auto-flow:dense;
  gap:.5rem;
}
@media (max-width:900px){.work-grid{grid-template-columns:repeat(3,1fr);grid-auto-rows:190px}}
@media (max-width:600px){.work-grid{grid-template-columns:repeat(2,1fr);grid-auto-rows:160px}}
.work-tile{
  position:relative;overflow:hidden;background:var(--ink);cursor:pointer;
  transition:transform .35s ease;
}
.work-tile.wide{grid-column:span 2}
@media (max-width:900px){.work-tile.wide{grid-column:span 2}}
@media (max-width:600px){.work-tile.wide{grid-column:span 2}}
.work-tile img{
  width:100%;height:100%;object-fit:cover;transition:transform .7s ease, filter .35s ease;
}
.work-tile::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(180deg, transparent 50%, rgba(20,17,13,.7) 100%);
  opacity:.7;transition:opacity .3s ease;pointer-events:none;
}
.work-tile:hover img{transform:scale(1.06);filter:brightness(.85)}
.work-tile:hover::after{opacity:1}
.work-tile .tag{
  position:absolute;top:.65rem;left:.65rem;z-index:2;
  background:var(--orange);color:#fff;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.62rem;letter-spacing:.15em;text-transform:uppercase;
  padding:.3rem .55rem;
  opacity:0;transform:translateY(-4px);transition:opacity .3s ease, transform .3s ease;
}
.work-tile:hover .tag{opacity:1;transform:translateY(0)}
.work-tile .label{
  position:absolute;bottom:.85rem;left:.85rem;right:.85rem;z-index:2;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.78rem;color:#fff;line-height:1.2;
  opacity:0;transform:translateY(8px);transition:opacity .35s ease, transform .35s ease;
}
.work-tile:hover .label{opacity:1;transform:translateY(0)}
.work-tile .label .pc{display:block;font-weight:600;font-size:.65rem;letter-spacing:.1em;color:rgba(255,255,255,.7);text-transform:uppercase;margin-top:.2rem}

/* Work gallery — category tab filter */
.work-tabs{
  display:flex;flex-wrap:wrap;gap:.35rem;align-items:center;
  margin-bottom:1.5rem;
  border-bottom:1px solid var(--line);
  padding-bottom:.6rem;
}
.wtab{
  display:inline-flex;align-items:center;gap:.4rem;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.68rem;
  text-transform:uppercase;letter-spacing:.15em;
  color:rgba(255,255,255,.38);
  padding:.45rem .85rem;
  background:transparent;border:1px solid transparent;
  cursor:pointer;position:relative;
  transition:color .2s, background .2s, border-color .2s;
}
.wtab:hover{color:rgba(255,255,255,.75);background:rgba(255,255,255,.04);border-color:var(--line)}
.wtab.active{color:#fff;background:rgba(255,255,255,.05);border-color:var(--line)}
.wtab.active::after{
  content:'';position:absolute;bottom:-1px;left:0;right:0;
  height:2px;background:var(--orange);
}
.wtab .cnt{font-size:.6rem;font-weight:600;letter-spacing:.04em;opacity:.45}
.wtab.active .cnt{opacity:1;color:var(--orange)}

.work-foot{display:flex;justify-content:center;margin-top:1.75rem}

/* Lightbox */
.lightbox{
  position:fixed;inset:0;z-index:300;background:rgba(10,8,5,.92);
  display:none;align-items:center;justify-content:center;padding:2rem 1rem;
}
.lightbox.open{display:flex}
.lightbox img{max-width:95vw;max-height:88vh;object-fit:contain;border:2px solid rgba(255,255,255,.08)}
.lightbox .lb-close{
  position:absolute;top:1.25rem;right:1.5rem;width:42px;height:42px;
  display:flex;align-items:center;justify-content:center;color:#fff;
  background:rgba(255,255,255,.1);border:1px solid rgba(255,255,255,.2);
  transition:background .2s, border-color .2s;
}
.lightbox .lb-close:hover{background:var(--orange);border-color:var(--orange)}
.lightbox .lb-arrow{
  position:absolute;top:50%;transform:translateY(-50%);width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;color:#fff;
  background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.18);
  transition:background .2s;
}
.lightbox .lb-arrow:hover{background:var(--orange)}
.lightbox .lb-prev{left:1.5rem}
.lightbox .lb-next{right:1.5rem}
.lightbox .lb-counter{
  position:absolute;bottom:1.25rem;left:50%;transform:translateX(-50%);
  color:rgba(255,255,255,.65);font-family:'Inter',sans-serif;font-size:.82rem;letter-spacing:.1em;
}
@media (max-width:600px){.lightbox .lb-arrow{width:40px;height:40px} .lightbox .lb-prev{left:.5rem} .lightbox .lb-next{right:.5rem}}

/* ============================================================
   ABOUT / STORY — Muscle Lab style
   ============================================================ */
.story-grid{
  display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:start;
}
@media (min-width:900px){.story-grid{grid-template-columns:1.05fr 1fr;gap:4rem;align-items:center}}

/* Left: image + overlay stats */
.story-img-col{width:100%}
.story-img-wrap{position:relative;overflow:hidden}
.story-img-wrap > img{
  width:100%;display:block;aspect-ratio:4/5;object-fit:cover;object-position:center top;
}
@media (min-width:900px){
  .story-img-wrap > img{aspect-ratio:unset;height:600px}
}

/* Stats strip overlaid at bottom of image */
.story-overlay-stats{
  position:absolute;bottom:0;left:0;right:0;
  display:grid;grid-template-columns:repeat(2,1fr);
  background:rgba(20,17,13,.92);
  border-top:2px solid var(--orange);
}
@media (min-width:560px){.story-overlay-stats{grid-template-columns:repeat(4,1fr)}}
.story-overlay-stats .ov-stat{
  padding:.85rem .9rem;border-right:1px solid rgba(255,255,255,.08);
}
.story-overlay-stats .ov-stat:last-child{border-right:0}
/* On 2-col mobile, show top border on bottom row */
@media (max-width:559px){
  .story-overlay-stats .ov-stat:nth-child(3),
  .story-overlay-stats .ov-stat:nth-child(4){border-top:1px solid rgba(255,255,255,.08)}
}
.ov-num{
  font-family:'Lustra','Montserrat','Anton',sans-serif;font-weight:900;
  font-size:clamp(1.4rem, 2.2vw, 1.85rem);color:var(--orange);line-height:1;letter-spacing:-.02em;
}
.ov-num span{font-size:.62em}
.ov-lbl{
  font-family:'Inter',sans-serif;font-size:.6rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.1em;color:rgba(255,255,255,.42);
  line-height:1.3;margin-top:.25rem;
}

/* Right: body content */
.story-body .eyebrow{margin-bottom:1rem}
.story-body h2{font-size:clamp(2rem, 4.6vw, 3.4rem);line-height:1;color:#fff;margin-bottom:1.25rem}
.story-body p{margin-bottom:1rem;font-size:.98rem;line-height:1.7;color:rgba(255,255,255,.6)}

/* Feature boxes */
.story-features{
  display:grid;grid-template-columns:1fr;gap:.75rem;margin:1.5rem 0;
}
@media (min-width:560px){.story-features{grid-template-columns:repeat(2,1fr)}}
.sf-card{
  display:flex;align-items:flex-start;gap:.85rem;
  padding:.95rem 1.1rem;
  background:var(--ink-3);border:1px solid var(--line);
}
.sf-icon{
  width:34px;height:34px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
  background:var(--orange-glow);color:var(--orange);
}
.sf-icon svg{width:18px;height:18px}
.sf-title{font-family:'Inter',sans-serif;font-weight:700;font-size:.88rem;color:#fff;margin-bottom:.2rem}
.sf-desc{font-family:'Inter',sans-serif;font-size:.79rem;color:rgba(255,255,255,.52);line-height:1.5}

/* Service bullet links */
.story-links{
  display:flex;flex-direction:column;gap:.1rem;
  margin-top:1.5rem;padding-top:1.5rem;border-top:1px solid var(--line);
}
.story-links a{
  display:flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;font-weight:600;font-size:.79rem;
  color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.1em;
  padding:.35rem 0;transition:color .2s;
}
.story-links a:hover{color:var(--orange)}
.story-links a svg{color:var(--orange);flex-shrink:0;transition:transform .2s}
.story-links a:hover svg{transform:translateX(3px)}

/* ============================================================
   REVIEWS — 3-up grid (no horizontal scroll)
   ============================================================ */
.reviews-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media (min-width:680px){.reviews-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.reviews-grid{grid-template-columns:repeat(3,1fr)}}
.reviews-foot{display:flex;flex-direction:column;justify-content:center;align-items:center;gap:1rem;margin-top:1.5rem}
.reviews-foot .ck-summary{
  display:inline-flex;align-items:center;gap:.85rem;
  background:var(--ink-3);border:1px solid var(--line);padding:.7rem 1rem;
}
.reviews-foot .ck-summary .num{font-family:'Montserrat','Anton',sans-serif;font-weight:800;font-size:1.4rem;color:var(--orange);line-height:1;letter-spacing:.02em}
.reviews-foot .ck-summary .stars{color:var(--orange);letter-spacing:1px;font-size:.85rem}
.reviews-foot .ck-summary .ca-logo{height:14px;width:auto;display:block;opacity:.85}
.reviews-foot .ck-summary .meta{font-family:'Inter',sans-serif;font-weight:600;font-size:.72rem;color:rgba(255,255,255,.5);text-transform:uppercase;letter-spacing:.1em}
.reviews-foot .ck-summary .ck-divider{width:1px;height:20px;background:var(--line-2)}
.reviews-foot .read-all{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.72rem;text-transform:uppercase;letter-spacing:.18em;
  color:rgba(255,255,255,.65);
}
.reviews-foot .read-all svg{transition:transform .3s ease}
.reviews-foot .read-all:hover svg{transform:translateX(4px)}

.review-tile{
  background:var(--ink-3);padding:1.6rem;border:1px solid var(--line);
  display:flex;flex-direction:column;gap:.85rem;
  transition:box-shadow .25s ease, border-color .25s ease;
}
.review-tile:hover{box-shadow:0 12px 28px -14px rgba(0,0,0,.5);border-color:var(--orange)}
.review-tile .top{display:flex;align-items:center;gap:.75rem}
.review-tile .av{
  width:42px;height:42px;
  /* Sharp square avatar — NO border-radius */
  background:var(--orange);color:#fff;flex-shrink:0;
  display:inline-flex;align-items:center;justify-content:center;
  font-family:'Lustra','Montserrat','Anton',sans-serif;font-weight:900;font-size:1rem;letter-spacing:.02em;
}
.review-tile .av.b,.review-tile .av.c{background:var(--orange)}
.review-tile .who{font-family:'Inter',sans-serif;font-weight:700;font-size:.92rem;line-height:1.1;color:#fff}
.review-tile .where{font-family:'Inter',sans-serif;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.45);margin-top:.3rem}
.review-tile .verified{margin-left:auto;font-family:'Inter',sans-serif;font-size:.62rem;font-weight:700;text-transform:uppercase;letter-spacing:.15em;color:var(--orange);display:inline-flex;align-items:center;gap:.3rem}
.review-tile .stars{color:var(--orange);letter-spacing:2px}
.review-tile h4{font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;line-height:1.3;color:#fff}
.review-tile p{font-size:.88rem;line-height:1.55;color:rgba(255,255,255,.55)}

/* ============================================================
   WHY US — light cells with thin dividers
   ============================================================ */
.why-grid{
  display:grid;grid-template-columns:1fr;gap:1px;
  background:var(--line);border:1px solid var(--line);
}
@media (min-width:680px){.why-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:1000px){.why-grid{grid-template-columns:repeat(4,1fr)}}
.why-cell{background:var(--ink-2);padding:1.85rem 1.4rem;color:#fff;transition:background .25s ease}
.why-cell:hover{background:var(--ink-3)}
.why-cell .ico{
  width:46px;height:46px;display:inline-flex;align-items:center;justify-content:center;
  background:var(--orange-glow);color:var(--orange);margin-bottom:1.1rem;
}
.why-cell .ico svg{width:22px;height:22px}
.why-cell h3{font-size:1.05rem;color:#fff;line-height:1.2;margin-bottom:.5rem}
.why-cell p{font-size:.88rem;color:rgba(255,255,255,.55);line-height:1.55}

/* ============================================================
   AREAS BAND
   ============================================================ */
.areas-band{padding:clamp(2.75rem, 6vw, 4.5rem) 0;background:var(--cream)}
.areas-band .head{text-align:center;margin-bottom:1.75rem}
.areas-band .head h2{font-size:clamp(2rem, 4.6vw, 3.4rem);max-width:none;line-height:1}

.areas-layout{
  display:grid;grid-template-columns:1fr;gap:1.5rem;
}
@media (min-width:900px){.areas-layout{grid-template-columns:1.6fr 1fr;gap:1.5rem}}

.map-card{position:relative;background:#fff;border:1px solid var(--cream-2);overflow:hidden;min-height:300px;isolation:isolate;z-index:0}
.map-card #leicester-map{width:100%;height:100%;min-height:300px;background:var(--cream)}
.map-card .leaflet-container{font-family:'Inter',sans-serif;background:#f5ebd9}
.map-card .leaflet-pane,
.map-card .leaflet-top,
.map-card .leaflet-bottom{z-index:1}
.map-card .leaflet-popup-pane{z-index:2}
.map-card .leaflet-popup-content-wrapper{border-radius:0;box-shadow:0 4px 16px -8px rgba(20,17,13,.25)}
.map-card .leaflet-popup-content{margin:.55rem .8rem;font-family:'Inter',sans-serif;font-size:.85rem}
.map-card .leaflet-popup-content strong{font-family:'Inter',sans-serif;font-weight:700;color:var(--ink)}
.map-card .leaflet-popup-content .pc{font-size:.72rem;color:var(--slate);text-transform:uppercase;letter-spacing:.1em;display:block;margin-top:.15rem}
.map-pin{
  background:var(--orange);width:18px;height:18px;border-radius:50%;border:3px solid #fff;
  box-shadow:0 0 0 1px var(--orange-dark), 0 4px 10px -2px rgba(20,17,13,.4);
}
.map-pin.lg{width:24px;height:24px}

.areas-list{
  background:#fff;border:1px solid var(--cream-2);padding:1.25rem;overflow:hidden;
  display:flex;flex-direction:column;
}
.areas-list h3{font-family:'Inter',sans-serif;font-weight:700;font-size:.95rem;color:var(--ink);margin-bottom:.75rem}
.areas-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(140px,1fr));gap:.4rem;flex:1;align-content:start}
.areas-grid .a-item{
  display:flex;flex-direction:column;gap:.15rem;padding:.6rem .8rem;background:var(--cream);border-bottom:2px solid var(--orange);
  color:var(--ink);
}
.areas-grid .a-item .pc{font-family:'Inter',sans-serif;font-size:.62rem;font-weight:600;color:var(--slate);text-transform:uppercase;letter-spacing:.12em}
.areas-grid .a-item .name{font-family:'Inter',sans-serif;font-weight:700;font-size:.85rem;line-height:1.2;color:var(--ink)}

/* ============================================================
   CONTACT — standout dark CTA with photo bg + white form card
   ============================================================ */
.contact-section{position:relative;background:var(--ink);color:#fff;overflow:hidden;padding:clamp(3rem, 7vw, 5.5rem) 0}
.contact-section .contact-bg{position:absolute;inset:0;z-index:0}
.contact-section .contact-bg img{width:100%;height:100%;object-fit:cover;opacity:.35}
.contact-section .contact-bg::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(95deg, rgba(20,17,13,.94) 0%, rgba(20,17,13,.84) 50%, rgba(20,17,13,.7) 100%);
}
.contact-section .container{position:relative;z-index:2}
/* Contact intro — full-width centred block above the grid */
.contact-intro{
  text-align:center;max-width:660px;
  margin:0 auto clamp(2.5rem, 5vw, 3.5rem);
}
.contact-intro .eyebrow{color:var(--orange);justify-content:center}
.contact-intro .eyebrow .pip{background:var(--orange)}
.contact-intro h2{font-size:clamp(2.2rem, 5vw, 3.8rem);color:#fff;line-height:1}
.contact-intro .lead{margin:1.25rem auto 0;font-size:1rem;color:rgba(255,255,255,.78);max-width:48ch;line-height:1.6}

/* Contact grid — form LEFT, details RIGHT */
.contact-grid{display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:start}
@media (min-width:1000px){
  .contact-grid{grid-template-columns:1.15fr .85fr;gap:0 3rem}
}

.contact-meta{display:flex;flex-direction:column;gap:.55rem;margin-top:0;padding-top:0;border-top:none}
.contact-meta .row{display:flex;align-items:center;gap:1rem;color:rgba(255,255,255,.92);padding:.4rem 0;transition:color .2s}
.contact-meta a.row:hover{color:var(--orange)}
.contact-meta .row .ico{
  width:42px;height:42px;display:inline-flex;align-items:center;justify-content:center;
  background:var(--orange-glow);color:var(--orange);flex-shrink:0;
}
.contact-meta .row .ico svg{width:16px;height:16px}
.contact-meta .row .v{font-family:'Inter',sans-serif;font-weight:700;font-size:1rem;line-height:1.2;color:#fff}
.contact-meta .row .l{font-family:'Inter',sans-serif;font-size:.7rem;font-weight:600;text-transform:uppercase;letter-spacing:.15em;color:rgba(255,255,255,.55);margin-top:.3rem}

/* Map filler beneath contact-meta (replaces the standalone areas section) */
.contact-map-strip{
  margin-top:1.5rem;border:1px solid var(--line-2);background:rgba(255,255,255,.03);overflow:hidden;
}
.contact-map-strip .head{
  display:flex;justify-content:space-between;align-items:center;gap:1rem;
  padding:.75rem 1rem;border-bottom:1px solid var(--line-2);
}
.contact-map-strip .head .label{font-family:'Inter',sans-serif;font-weight:700;font-size:.75rem;color:#fff;text-transform:uppercase;letter-spacing:.18em}
.contact-map-strip .head .meta{font-family:'Inter',sans-serif;font-size:.68rem;color:rgba(255,255,255,.55);text-transform:uppercase;letter-spacing:.12em}
.contact-map-strip #contact-map{width:100%;height:280px;background:#1d1915;isolation:isolate;z-index:0}
.contact-map-strip #contact-map .leaflet-pane,
.contact-map-strip #contact-map .leaflet-top,
.contact-map-strip #contact-map .leaflet-bottom{z-index:1}
.contact-map-strip #contact-map .leaflet-popup-pane{z-index:2}
.contact-map-strip #contact-map .leaflet-container{background:#1d1915;font-family:'Inter',sans-serif}
.contact-map-strip #contact-map .leaflet-popup-content-wrapper{background:var(--ink);color:#fff;border-radius:0;box-shadow:0 6px 20px -8px rgba(0,0,0,.6)}
.contact-map-strip #contact-map .leaflet-popup-content{margin:.55rem .8rem;font-size:.82rem;color:#fff}
.contact-map-strip #contact-map .leaflet-popup-content strong{color:#fff}
.contact-map-strip #contact-map .leaflet-popup-content .pc{color:rgba(255,255,255,.6);text-transform:uppercase;letter-spacing:.1em;font-size:.7rem;display:block;margin-top:.15rem}
.contact-map-strip #contact-map .leaflet-popup-tip{background:var(--ink)}
.contact-map-strip #contact-map .leaflet-popup-close-button{color:rgba(255,255,255,.6) !important}

.form-card{
  background:#fff;padding:2rem;
  border:1px solid var(--cream-2);border-top:3px solid var(--orange);
  box-shadow:0 24px 60px -20px rgba(0,0,0,.55);
}
.form-card form{display:grid;gap:1rem}
.form-card label{display:block;font-family:'Inter',sans-serif;font-size:.72rem;font-weight:700;color:var(--ink);margin-bottom:.45rem;text-transform:uppercase;letter-spacing:.12em}
.form-card label .req{color:var(--orange)}
.form-card .form-row{display:grid;grid-template-columns:1fr;gap:1rem}
@media (min-width:600px){.form-card .form-row{grid-template-columns:1fr 1fr}}
.form-card input,.form-card textarea,.form-card select{
  width:100%;padding:.85rem 1rem;background:#fff;
  border:1px solid var(--cream-2);border-radius:0;
  font-family:'Inter',sans-serif;font-size:1rem;color:var(--ink);
  transition:border-color .2s, box-shadow .2s;
}
.form-card input::placeholder,.form-card textarea::placeholder{color:var(--slate-light)}
.form-card input:focus,.form-card textarea:focus,.form-card select:focus{
  outline:none;border-color:var(--orange);box-shadow:0 0 0 3px var(--orange-glow);
}
.form-card textarea{min-height:120px;resize:vertical}
.form-card select{
  appearance:none;-webkit-appearance:none;cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23ec5d28' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 1rem center;padding-right:2.5rem;
}
/* Custom select — matches input styling, replaces native <select> */
.custom-select{position:relative}
.custom-select .cs-trigger{
  width:100%;padding:.85rem 1rem;background:#fff;
  border:1px solid var(--cream-2);border-radius:0;cursor:pointer;
  font-family:'Inter',sans-serif;font-size:1rem;color:var(--ink);text-align:left;
  display:flex;align-items:center;justify-content:space-between;gap:.75rem;
  transition:border-color .2s, box-shadow .2s;
}
.custom-select .cs-trigger:focus-visible{outline:none;border-color:var(--orange);box-shadow:0 0 0 3px var(--orange-glow)}
.custom-select.open .cs-trigger{border-color:var(--orange);box-shadow:0 0 0 3px var(--orange-glow)}
.custom-select .cs-value.cs-placeholder{color:var(--slate-light)}
.custom-select .cs-chev{color:var(--orange);flex-shrink:0;transition:transform .2s}
.custom-select.open .cs-chev{transform:rotate(180deg)}
.custom-select .cs-list{
  position:absolute;top:calc(100% + 4px);left:0;right:0;z-index:30;
  margin:0;padding:.35rem;list-style:none;
  background:#fff;border:1px solid var(--cream-2);
  box-shadow:0 14px 28px rgba(20,20,20,.10), 0 4px 10px rgba(20,20,20,.06);
  max-height:280px;overflow-y:auto;
}
.custom-select .cs-list li{
  padding:.7rem .85rem;font-family:'Inter',sans-serif;font-size:.95rem;color:var(--ink);
  cursor:pointer;border-radius:0;transition:background .15s, color .15s;
}
.custom-select .cs-list li:hover,
.custom-select .cs-list li.cs-active{background:var(--cream);color:var(--orange);font-weight:600}
.custom-select .cs-list li[aria-selected="true"]{background:var(--orange);color:#fff;font-weight:600}
.custom-select .cs-list li[aria-selected="true"]:hover{background:var(--orange);color:#fff}

.form-card .submit{display:flex;flex-direction:column;gap:.65rem;margin-top:.5rem}
.form-card .submit .btn-roll{width:100%;justify-content:center}
.form-card .submit .note{font-size:.72rem;color:var(--slate);text-align:center}

/* File-upload dropzone (MLB-style) */
.form-card .file-input{display:none}
.form-card .dropzone{
  display:flex;flex-direction:column;align-items:center;justify-content:center;gap:.5rem;
  padding:1.6rem 1rem;background:var(--cream);border:1.5px dashed var(--cream-2);
  cursor:pointer;transition:border-color .2s, background .2s;text-align:center;
}
.form-card .dropzone:hover, .form-card .dropzone.dragover{
  border-color:var(--orange);background:var(--orange-glow);
}
.form-card .dropzone .dz-ico{
  width:38px;height:38px;display:inline-flex;align-items:center;justify-content:center;
  background:#fff;color:var(--orange);
}
.form-card .dropzone .dz-ico svg{width:20px;height:20px}
.form-card .dropzone .dz-title{
  font-family:'Inter',sans-serif;font-weight:700;font-size:.88rem;color:var(--ink);text-transform:none;letter-spacing:0;
}
.form-card .dropzone .dz-hint{font-family:'Inter',sans-serif;font-size:.72rem;color:var(--slate)}
.form-card .file-list{display:flex;flex-wrap:wrap;gap:.4rem;margin-top:.5rem}
.form-card .file-list:empty{display:none}
.form-card .file-chip{
  display:inline-flex;align-items:center;gap:.4rem;padding:.35rem .65rem;
  background:var(--cream);border:1px solid var(--cream-2);
  font-family:'Inter',sans-serif;font-size:.75rem;font-weight:600;color:var(--ink);
}
.form-card .file-chip .x{cursor:pointer;color:var(--slate);font-weight:700;line-height:1;padding:0 .15rem}
.form-card .file-chip .x:hover{color:var(--orange)}

/* Form field icons — SVG background-image, no HTML changes needed */
.form-card input[name="firstName"],
.form-card input[name="lastName"] {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21v-2a4 4 0 0 0-4-4H8a4 4 0 0 0-4 4v2'/%3E%3Ccircle cx='12' cy='7' r='4'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:left .9rem center;padding-left:2.6rem;
}
.form-card input[name="email"] {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='2' y='4' width='20' height='16' rx='2'/%3E%3Cpath d='M22 7l-10 7L2 7'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:left .9rem center;padding-left:2.6rem;
}
.form-card input[name="phone"] {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 5a2 2 0 012-2h3.28a1 1 0 01.948.684l1.498 4.493a1 1 0 01-.502 1.21l-2.257 1.13a11.042 11.042 0 005.516 5.516l1.13-2.257a1 1 0 011.21-.502l4.493 1.498a1 1 0 01.684.949V19a2 2 0 01-2 2h-1C9.716 21 3 14.284 3 6V5z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:left .9rem center;padding-left:2.6rem;
}
.form-card input[name="postcode"] {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 10c0 7-9 13-9 13s-9-6-9-13a9 9 0 0 1 18 0z'/%3E%3Ccircle cx='12' cy='10' r='3'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:left .9rem center;padding-left:2.6rem;
}
.form-card input[name="property"] {
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23aaa' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z'/%3E%3Cpolyline points='9,22 9,12 15,12 15,22'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:left .9rem center;padding-left:2.6rem;
}

/* Chrome autofill — prevent blue background */
.form-card input:-webkit-autofill,
.form-card input:-webkit-autofill:hover,
.form-card input:-webkit-autofill:focus {
  -webkit-box-shadow:0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color:#14110d !important;
  transition:background-color 5000s ease-in-out 0s;
}

/* ============================================================
   FOOTER — centred Muscle Lab style
   ============================================================ */
.site-footer{background:#0c0a08;color:rgba(255,255,255,.6);padding:4rem 0 1.5rem;border-top:3px solid var(--orange)}

/* Centred hero block */
.site-footer .ft-hero{
  display:flex;flex-direction:column;align-items:center;gap:1.25rem;
  padding-bottom:2.5rem;border-bottom:1px solid var(--line);text-align:center;
}
.site-footer .ft-logo{display:inline-block}
.site-footer .ft-logo .ft-logo-img{height:54px;width:auto;display:block}
.site-footer .ft-strap{
  font-family:'Inter',sans-serif;font-weight:500;font-size:1rem;
  color:rgba(255,255,255,.55);max-width:44ch;text-align:center;line-height:1.55;margin:0;
}
.site-footer .ft-strap .accent{color:var(--orange)}

/* 4-col link grid */
.site-footer .ft-cols{
  display:grid;grid-template-columns:1fr;gap:1.75rem;padding:2.5rem 0;
}
@media (min-width:560px){.site-footer .ft-cols{grid-template-columns:repeat(2,1fr);gap:2rem}}
@media (min-width:800px){.site-footer .ft-cols{grid-template-columns:repeat(4,1fr);gap:2.5rem}}
.site-footer p{font-size:.85rem;line-height:1.65;color:rgba(255,255,255,.55)}
.site-footer h4{
  font-family:'Inter',sans-serif;font-weight:700;font-size:.7rem;color:#fff;
  letter-spacing:.18em;text-transform:uppercase;margin-bottom:1rem;
}
/* Fix: site-footer a{display:block} overrides btn-roll — restore inline-flex */
.site-footer .ft-hero .btn-roll{display:inline-flex;color:#fff;padding:0 28px;font-size:.7rem}
.site-footer .ft-hero .btn-roll:hover{color:#fff}
.site-footer a{color:rgba(255,255,255,.55);font-size:.85rem;display:block;padding:.25rem 0;transition:color .2s}
.site-footer a:hover{color:var(--orange)}
.site-footer .ft-contact a{display:flex;align-items:center;gap:.55rem}
.site-footer .ft-contact a svg{color:var(--orange);width:13px;height:13px;flex-shrink:0}
.site-footer .ft-bottom{padding-top:1.5rem;display:flex;flex-wrap:wrap;justify-content:space-between;gap:.75rem;font-size:.72rem;color:rgba(255,255,255,.4);border-top:1px solid var(--line)}
.site-footer .ft-bottom a{display:inline;color:rgba(255,255,255,.55);font-size:inherit}
.site-footer .ft-bottom .built a{color:var(--orange);font-weight:700}

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.sticky-call{
  display:none;position:fixed;inset:auto 0 0 0;z-index:95;
  background:var(--ink);border-top:2px solid var(--orange);
  padding:.65rem .75rem;gap:.6rem;
  transform:translateY(110%);transition:transform .35s ease;
}
.sticky-call.visible{transform:translateY(0)}
@media (max-width:720px){
  .sticky-call{display:flex}
  .sticky-call a{
    flex:1;display:flex;align-items:center;justify-content:center;gap:.4rem;
    font-family:'Montserrat','Anton',sans-serif;font-weight:800;font-weight:400;font-size:1rem;letter-spacing:.05em;text-transform:uppercase;
    padding:.85rem .5rem;background:var(--orange);color:#fff;
  }
  .sticky-call a.outline{background:transparent;color:#fff;box-shadow:inset 0 0 0 1px var(--line-2)}
  .sticky-call svg{width:14px;height:14px}
  body.has-sticky-show{padding-bottom:64px}
}

/* ============================================================
   MODAL — homepage-only popup
   ============================================================ */
.modal-overlay{
  position:fixed;inset:0;z-index:200;background:rgba(10,8,5,.78);
  display:flex;align-items:center;justify-content:center;padding:1rem;
  backdrop-filter:blur(6px);
}
.modal-overlay[hidden]{display:none}
.modal-dialog{
  background:#fff;max-width:460px;width:100%;
  padding:2.75rem 2rem 2rem;position:relative;text-align:center;
}
.modal-close{
  position:absolute;top:.85rem;right:.85rem;width:32px;height:32px;
  display:flex;align-items:center;justify-content:center;color:var(--slate-light);transition:color .2s;
}
.modal-close:hover{color:var(--ink)}
.modal-icon{
  width:60px;height:60px;background:var(--orange-glow);color:var(--orange);
  display:inline-flex;align-items:center;justify-content:center;margin:0 auto 1.25rem;
}
.modal-dialog h3{font-family:'Montserrat','Anton',sans-serif;font-weight:800;font-size:1.7rem;letter-spacing:.02em;color:var(--ink);margin-bottom:.7rem;line-height:1.05}
.modal-dialog .modal-body{font-size:.95rem;color:var(--slate);margin-bottom:1.5rem;max-width:340px;margin-left:auto;margin-right:auto;line-height:1.55}
.modal-dialog .btn-roll{width:100%;justify-content:center}
.modal-dialog .modal-stack{display:flex;flex-direction:column;gap:.7rem}

/* ============================================================
   Reveal
   ============================================================ */
/* Entrance animations removed — they make the site feel slow on load */
.reveal{opacity:1;transform:none}
.reveal.in{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{animation:none!important;transition:none!important}
  .reveal{opacity:1;transform:none}
  .marquee-track{animation:none!important}
  .sticky-call{transform:none}
}

/* ============================================================
   SUBPAGE — shared styles for service & location landing pages
   ============================================================ */

/* Breadcrumb nav */
.breadcrumb{
  display:flex;align-items:center;flex-wrap:wrap;gap:.35rem;
  font-family:'Inter',sans-serif;font-size:.68rem;font-weight:600;
  text-transform:uppercase;letter-spacing:.12em;color:rgba(255,255,255,.5);
  margin-bottom:1.4rem;
}
.breadcrumb a{color:rgba(255,255,255,.5);text-decoration:none;transition:color .2s}
.breadcrumb a:hover{color:rgba(255,255,255,.85)}
.breadcrumb .sep{color:rgba(255,255,255,.25);font-size:.6rem;padding:0 .1rem}
.breadcrumb [aria-current="page"]{color:var(--orange)}

/* Page hero — compact subpage version of the full homepage hero */
.page-hero{
  position:relative;min-height:58vh;display:flex;flex-direction:column;
  background:var(--ink);overflow:hidden;color:#fff;
}
.page-hero .hero-bg{position:absolute;inset:0;z-index:0}
.page-hero .hero-bg img{width:100%;height:100%;object-fit:cover;object-position:center}
.page-hero .hero-bg::after{
  content:"";position:absolute;inset:0;
  background:
    linear-gradient(95deg, rgba(20,17,13,.96) 0%, rgba(20,17,13,.83) 46%, rgba(20,17,13,.62) 100%),
    linear-gradient(180deg, transparent 55%, var(--ink) 100%);
}
.page-hero .hero-noise{
  position:absolute;inset:0;z-index:1;opacity:.05;pointer-events:none;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
}
.page-hero > .container{
  position:relative;z-index:2;flex:1;
  display:flex;flex-direction:column;justify-content:flex-end;
  padding-top:6rem;padding-bottom:3.5rem;
}
.page-hero h1{font-size:clamp(2.1rem, 4.8vw, 4rem);color:#fff;margin-bottom:1rem;max-width:none}
.page-hero .lead{font-size:1rem;color:rgba(255,255,255,.78);max-width:520px;margin-bottom:1.85rem;line-height:1.65}
.page-hero .cta-row{display:flex;flex-wrap:wrap;gap:.75rem;align-items:center}
@media (max-width:599px){
  .page-hero .cta-row{flex-direction:column;align-items:stretch}
  .page-hero .cta-row .btn-roll{width:100%;justify-content:center}
}

/* Service intro — left col (header + steps) / right col (image, full height) */

/* Outer grid: stacked mobile, two-col desktop */
.svc-intro-grid{
  display:grid;grid-template-columns:1fr;gap:2.5rem;align-items:start;
}
@media (min-width:900px){
  .svc-intro-grid{
    grid-template-columns:1fr 42%;gap:3.5rem;align-items:stretch;
  }
}

/* Left column — flex column so header + steps stack with a gap */
.svc-intro-left{display:flex;flex-direction:column;gap:1.75rem}

/* Header block inside left column */
.svc-intro-header{} /* layout handled by parent flex gap */
.svc-intro-header h2{font-size:clamp(1.8rem,4vw,3rem);line-height:1;color:var(--ink);margin-bottom:.9rem}
.svc-intro-header p{font-size:.97rem;line-height:1.7;color:var(--slate);max-width:62ch}

/* Numbered process steps */
.process-steps{border:1px solid var(--cream-2);background:#fff}
.process-step{
  display:flex;align-items:flex-start;gap:1rem;padding:.95rem 1.25rem;
  border-bottom:1px solid var(--cream-2);
}
.process-step:last-child{border-bottom:none}
.ps-num{
  font-family:'Montserrat','Anton',sans-serif;font-weight:900;font-size:1.35rem;
  color:var(--orange);line-height:1;letter-spacing:-.03em;flex-shrink:0;
  min-width:1.8rem;padding-top:.1rem;
}
.ps-body h4{font-size:.9rem;font-weight:700;color:var(--ink);line-height:1.2;margin-bottom:.22rem}
.ps-body p{font-size:.82rem;color:var(--slate);line-height:1.5;margin:0}

/* Right-column image — stretches to full height of left column on desktop */
.svc-intro-img{position:relative;overflow:hidden;background:var(--ink-2)}
.svc-intro-img img{width:100%;object-fit:cover;display:block;aspect-ratio:4/3}
@media (min-width:900px){
  .svc-intro-img{align-self:stretch} /* fill full left-column height */
  .svc-intro-img img{position:absolute;inset:0;height:100%;aspect-ratio:unset}
}

/* Mini photo strip — 4 photos, 2-col mobile / 4-col desktop */
.svc-photos{display:grid;grid-template-columns:repeat(2,1fr);gap:.45rem}
@media (min-width:680px){.svc-photos{grid-template-columns:repeat(4,1fr)}}
.svc-photo{overflow:hidden;background:var(--ink);aspect-ratio:1}
.svc-photo img{width:100%;height:100%;object-fit:cover;display:block;transition:transform .6s ease}
.svc-photo:hover img{transform:scale(1.04)}

/* Service-specific why-us grid — 3-col variant (reuses why-cell styles) */
.svc-why-grid{
  display:grid;gap:1px;
  background:var(--cream-2);border:1px solid var(--cream-2);
  grid-template-columns:1fr;
}
@media (min-width:580px){.svc-why-grid{grid-template-columns:repeat(2,1fr)}}
@media (min-width:940px){.svc-why-grid{grid-template-columns:repeat(3,1fr)}}

/* FAQ accordion — <details>/<summary> */
.faq-list{display:flex;flex-direction:column;border:1px solid var(--cream-2);background:#fff}
.faq-item{border-bottom:1px solid var(--cream-2)}
.faq-item:last-child{border-bottom:none}
.faq-item > summary{
  display:flex;align-items:center;justify-content:space-between;gap:1.25rem;
  padding:1.1rem 1.25rem;cursor:pointer;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.96rem;color:var(--ink);
  transition:background .2s, color .2s;user-select:none;-webkit-user-select:none;
}
.faq-item > summary:hover{background:var(--cream);color:var(--orange)}
.faq-item[open] > summary{background:var(--cream);color:var(--orange);border-bottom:1px solid var(--cream-2)}
.faq-icon{
  display:inline-flex;align-items:center;justify-content:center;
  width:22px;height:22px;flex-shrink:0;color:var(--orange);
  transition:transform .3s ease;
}
.faq-item[open] .faq-icon{transform:rotate(45deg)}
.faq-body{
  padding:.9rem 1.25rem 1.25rem;
  font-family:'Inter',sans-serif;font-size:.93rem;line-height:1.65;color:var(--slate);
}
.faq-body p{margin-bottom:.6rem}
.faq-body p:last-child{margin-bottom:0}

/* ---- Container-based page-hero layout (service pages) ---- */
/* Full-width dark section, content inside the standard container */
.page-hero{
  flex-direction:column;
  min-height:auto;
  background:var(--ink); /* keep dark bg */
}
/* Override old .page-hero > .container (was standalone full-hero padding) */
.page-hero > .container{
  display:block;flex:none;
  padding-top:0;padding-bottom:0;
}

/* Inner flex row: content left, slider right */
.page-hero-inner{
  display:flex;flex-direction:column;gap:2rem;
  padding-top:calc(var(--header-h,78px) + 2.5rem);
  padding-bottom:3rem;
}
.page-hero-content{flex:1;min-width:0}

/* Square slider container */
.page-hero-slider-wrap{
  position:relative;overflow:hidden;
  width:100%;aspect-ratio:4/3; /* 4:3 on mobile */
  flex-shrink:0;
}

@media (min-width:900px){
  /* Lock hero section to exactly one viewport height */
  .page-hero{ height:100svh; min-height:640px; }
  /* Container fills that height so the inner row can stretch */
  .page-hero > .container{ height:100%; display:flex; flex-direction:column; }

  .page-hero-inner{
    flex:1; /* stretch to fill container height */
    flex-direction:row;align-items:center;
    gap:2.5rem;
    /* padding-top = nav height (clears the fixed header)
       padding-bottom = 0 → align-items:center then centres within the full
       below-nav space, so content sits exactly mid-screen below the nav */
    padding-top:var(--header-h,78px);
    padding-bottom:0;
  }
  .page-hero-slider-wrap{
    /* Slider is a square: whichever is smaller — 42% of container width OR
       the available height between the two symmetric pads */
    flex:0 0 auto;
    width:min(42%, calc(100svh - 2*var(--header-h,78px)));
    aspect-ratio:1/1;
  }
}

/* ---- Hero image slider ---- */
.hero-slider{position:absolute;inset:0}
.hs-track{
  display:flex;height:100%;
  transition:transform .65s cubic-bezier(.7,0,.3,1);
  will-change:transform;
  cursor:grab;user-select:none;-webkit-user-select:none;
}
.hs-track:active{cursor:grabbing}
.hs-slide{flex:0 0 100%;height:100%;overflow:hidden}
.hs-slide img{width:100%;height:100%;object-fit:cover;object-position:center;display:block;pointer-events:none;-webkit-user-drag:none}

/* Gradient + caption */
.hs-overlay{
  position:absolute;inset:0;pointer-events:none;z-index:1;
  background:linear-gradient(180deg, transparent 55%, rgba(20,17,13,.72) 100%);
}
.hs-caption{
  position:absolute;bottom:1rem;left:1rem;right:1rem;z-index:2;
  font-family:'Inter',sans-serif;font-size:.68rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.15em;color:rgba(255,255,255,.85);
  pointer-events:none;
}
@media (min-width:900px){.hs-caption{bottom:1.4rem;left:1.4rem}}

/* Arrow buttons */
.hs-btn{
  position:absolute;top:50%;transform:translateY(-50%);z-index:3;
  width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.12);color:#fff;
  border:1px solid rgba(255,255,255,.22);
  transition:background .2s, border-color .2s;cursor:pointer;
}
.hs-btn:hover{background:var(--orange);border-color:var(--orange)}
.hs-prev{left:.85rem}
.hs-next{right:.85rem}

/* Dot indicators */
.hs-dots{
  position:absolute;bottom:3rem;left:50%;transform:translateX(-50%);z-index:3;
  display:flex;gap:.5rem;align-items:center;
}
@media (min-width:900px){.hs-dots{bottom:3.5rem}}
.hs-dot{
  width:7px;height:7px;border-radius:50%;
  background:rgba(255,255,255,.38);border:none;padding:0;cursor:pointer;
  transition:background .25s, transform .25s;
}
.hs-dot.active{background:#fff;transform:scale(1.35)}
.hs-dot:hover{background:rgba(255,255,255,.7)}

/* ============================================================
   SMITHYS OVERRIDES — logo, Google badge, areas strip, modal
   ============================================================ */

/* Logo — dual SVG: white+orange for dark header, colour for solid white header.
   Opacity cross-fade on scroll — no display toggle so transition is butter-smooth. */
.site-header .logo{
  display:inline-flex;align-items:center;gap:.6rem;line-height:0;
  position:relative;width:136px;flex-shrink:0;
  transition:width .38s cubic-bezier(.4,0,.2,1);
}
.site-header .logo .logo-img{
  width:100%;height:auto;display:block;
  transition:opacity .38s ease;
}
/* White logo sits in normal flow — visible by default */
.site-header .logo .logo-white{opacity:1}
/* Colour logo absolutely stacked on top — hidden by default */
.site-header .logo .logo-colour{
  position:absolute;top:0;left:0;width:100%;
  opacity:0;pointer-events:none;
}
/* On scroll (solid = white header): shrink wrapper, swap opacity */
.site-header.solid .logo{width:117px}
.site-header.solid .logo .logo-white{opacity:0}
.site-header.solid .logo .logo-colour{opacity:1;pointer-events:auto}
@media (max-width:720px){
  .site-header .logo{width:110px}
  .site-header.solid .logo{width:97px}
}

/* Footer logo */
.site-footer .ft-logo{display:flex;align-items:center}
.site-footer .ft-logo .ft-logo-img{width:200px;height:auto;display:block}

/* Google badge in hero (replaces Checkatrade SVG) */
.ca-google{display:inline-flex;align-items:center;gap:.4rem;font-family:'Inter',sans-serif;font-weight:600;font-size:.78rem;letter-spacing:.02em;color:#fff}
.reviews-foot .ca-google{font-size:.85rem}

/* Areas strip — kept for reference (replaced by service-area-map in HTML) */
.areas-strip{margin-top:1rem;padding:1.4rem;background:rgba(255,255,255,.04);border:1px solid var(--line);border-radius:0}
.areas-strip .head{display:flex;align-items:baseline;justify-content:space-between;flex-wrap:wrap;gap:.5rem;margin-bottom:.9rem}
.areas-strip .head .label{font-family:'Inter',sans-serif;font-size:.7rem;font-weight:700;text-transform:uppercase;letter-spacing:.22em;color:#fff}
.areas-strip .head .meta{font-family:'Inter',sans-serif;font-size:.78rem;color:rgba(255,255,255,.6)}
.areas-strip .areas-list{display:flex;flex-wrap:wrap;gap:.45rem}
.areas-strip .areas-list span{font-family:'Inter',sans-serif;font-size:.78rem;font-weight:500;color:rgba(255,255,255,.85);background:rgba(255,255,255,.06);border:1px solid var(--line);padding:.4rem .75rem;border-radius:999px}

/* Service-area map strip — sits below contact details */
.service-area-map{margin-top:1rem;border:1px solid var(--line);overflow:hidden}
.service-area-map .map-head{
  display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;
  padding:.65rem 1rem;border-bottom:1px solid var(--line);background:rgba(255,255,255,.04);
}
.service-area-map .map-head .label{
  font-family:'Inter',sans-serif;font-weight:700;font-size:.68rem;
  text-transform:uppercase;letter-spacing:.22em;color:#fff;
}
.service-area-map .map-head .meta{
  font-family:'Inter',sans-serif;font-size:.68rem;color:rgba(255,255,255,.5);
}
.service-area-map iframe{
  display:block;width:100%;height:240px;border:0;
  /* Subtle dark filter so the map blends with the dark contact section */
  filter:grayscale(20%) brightness(.78) contrast(1.08) saturate(.9);
}

/* ============================================================
   REBUILD PREVIEW MODAL
   ============================================================ */
.modal-overlay{
  position:fixed;inset:0;z-index:9999;
  background:rgba(20,17,13,.72);backdrop-filter:blur(6px);-webkit-backdrop-filter:blur(6px);
  display:flex;align-items:center;justify-content:center;
  padding:1.25rem;
  animation:smithysModalFade .22s ease both;
}
.modal-overlay[hidden]{display:none}
@keyframes smithysModalFade{from{opacity:0}to{opacity:1}}
.modal-dialog{
  position:relative;background:var(--ink);color:#fff;
  width:100%;max-width:460px;
  padding:2.4rem 2rem 2rem;
  /* NO border-radius — sharp corners throughout */
  border-top:3px solid var(--orange);
  box-shadow:0 24px 60px -12px rgba(0,0,0,.6);
  animation:smithysDialogIn .28s cubic-bezier(.2,.7,.2,1) both;
}
@keyframes smithysDialogIn{from{transform:translateY(12px) scale(.98)}to{transform:translateY(0) scale(1)}}
.modal-eyebrow{
  font-family:'Inter',sans-serif;font-size:.65rem;font-weight:700;
  text-transform:uppercase;letter-spacing:.28em;color:var(--orange);
  margin-bottom:.75rem;
}
.modal-dialog h3{
  font-family:'Lustra','Montserrat','Anton',sans-serif;font-weight:900;
  font-size:1.55rem;letter-spacing:-.01em;line-height:1.1;color:#fff;
  margin:0 0 .75rem;text-transform:uppercase;
}
.modal-dialog p{
  font-family:'Inter',sans-serif;font-size:.93rem;line-height:1.55;
  color:rgba(255,255,255,.65);margin:0 0 1.5rem;
}
.modal-body{font-family:'Inter',sans-serif;font-size:.93rem;line-height:1.55;color:rgba(255,255,255,.65);margin:0 0 1.5rem}
.modal-stack{display:flex;flex-direction:column;gap:.65rem}
.modal-close{
  position:absolute;top:.65rem;right:.65rem;
  width:32px;height:32px;display:flex;align-items:center;justify-content:center;
  /* Sharp square — NO border-radius */
  color:rgba(255,255,255,.5);background:transparent;
  border:1px solid var(--line-2);
  transition:color .2s,border-color .2s,background .2s;
}
.modal-close:hover{color:#fff;border-color:var(--orange);background:var(--orange)}
.btn-modal-primary{
  display:flex;align-items:center;justify-content:center;
  width:100%;padding:.95rem 1.2rem;
  background:var(--orange);color:#fff;
  font-family:'Inter',sans-serif;font-weight:700;font-size:.78rem;letter-spacing:.18em;text-transform:uppercase;
  text-decoration:none;
  /* Sharp clipped corner — matches btn-roll */
  clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px));
  transition:background .25s;
  word-break:break-all;text-align:center;
}
.btn-modal-primary:hover{background:var(--orange-dark)}
.btn-modal-text{
  display:block;text-align:center;
  font-family:'Inter',sans-serif;font-weight:600;font-size:.85rem;
  color:rgba(255,255,255,.55);text-decoration:none;
  padding:.6rem 0;
  border-bottom:1px solid var(--line);
  transition:color .25s,border-color .25s;
}
.btn-modal-text:hover{color:var(--orange);border-bottom-color:var(--orange)}

/* iOS Safari font-size guard for inputs (prevents zoom) */
input, textarea, select{font-size:1rem}
.modal-dialog *{box-sizing:border-box}

/* Hide stuff that template references but we don't use */
#contact-map, #leicester-map{display:none}

