/* ==========================================================================
   Search Engine Performance
   Elementor-safe stylesheet: flex containers only, no CSS grid.
   Every block below maps to a native Elementor widget - see comments.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root{
  --carbon:#0E0F10;
  --graphite:#191C1F;
  --graphite-2:#22262A;
  --line-dark:rgba(255,255,255,.10);
  --line-light:#E2E4E6;

  --red:#D9001B;
  --red-bright:#E31220;
  --red-deep:#990000;

  --white:#FFFFFF;
  --off-white:#F4F5F6;
  --ink:#17191B;
  --grey:#6F7071;
  --grey-mid:#8C8E90;
  --grey-light:#A8AAAC;

  --head:"Barlow Condensed","Oswald","Arial Narrow",Impact,sans-serif;
  --body:"Inter","Segoe UI",Roboto,Helvetica,Arial,sans-serif;

  --wrap:1240px;
  --pad:24px;
  --radius:2px;
  --shadow:0 18px 50px rgba(0,0,0,.14);
}

/* ---------- Reset ---------- */
*,*::before,*::after{box-sizing:border-box;}
html{-webkit-text-size-adjust:100%;scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--body);
  font-size:17px;
  line-height:1.72;
  color:var(--ink);
  background:var(--white);
  overflow-x:hidden;
}
img{max-width:100%;height:auto;display:block;}
a{color:var(--red);text-decoration:none;}
a:hover{color:var(--red-deep);}
ul{margin:0;padding:0;list-style:none;}

/* ---------- Typography  -> Elementor: Heading widget ---------- */
h1,h2,h3,h4,h5{
  font-family:var(--head);
  font-weight:700;
  text-transform:uppercase;
  line-height:1.03;
  letter-spacing:.005em;
  margin:0 0 .5em;
  color:var(--ink);
}
h1{font-size:clamp(2.9rem,6.2vw,5.1rem);}
h2{font-size:clamp(2.1rem,4.2vw,3.4rem);}
h3{font-size:clamp(1.4rem,2.2vw,1.85rem);}
h4{font-size:1.22rem;}
p{margin:0 0 1.15em;}
p:last-child{margin-bottom:0;}
strong{font-weight:600;color:var(--ink);}

.lead{font-size:1.24rem;line-height:1.65;color:#3A3E42;}

/* Eyebrow label -> Elementor: Text Editor with custom class */
.eyebrow{
  font-family:var(--body);
  font-size:.74rem;
  font-weight:700;
  letter-spacing:.2em;
  text-transform:uppercase;
  color:var(--red);
  margin:0 0 18px;
  display:flex;
  align-items:center;
  gap:12px;
}
.eyebrow::before{
  content:"";
  width:34px;height:2px;
  background:var(--red);
  flex:0 0 34px;
}
.eyebrow.is-centered{justify-content:center;}

/* ---------- Layout  -> Elementor: Container (flex) ---------- */
.container{
  width:100%;
  max-width:var(--wrap);
  margin:0 auto;
  padding:0 var(--pad);
}
.container.is-narrow{max-width:880px;}

.section{padding:104px 0;}
.section.is-tight{padding:72px 0;}

/* Flex rows -> Elementor: Container, direction row, wrap on */
.row{display:flex;flex-wrap:wrap;gap:32px;}
.row.is-middle{align-items:center;}
.row.is-gap-lg{gap:56px;}
.row.is-gap-sm{gap:20px;}

.col-2 > *{flex:1 1 calc(50% - 16px);min-width:280px;}
.col-3 > *{flex:1 1 calc(33.333% - 22px);min-width:270px;}
.col-4 > *{flex:1 1 calc(25% - 24px);min-width:220px;}
.col-6040 > .col-a{flex:1 1 56%;min-width:300px;}
.col-6040 > .col-b{flex:1 1 38%;min-width:280px;}

/* The column widths above assume the default 32px gap. A different gap must be
   subtracted from the basis too, otherwise the total exceeds 100% and the row
   wraps when it should not. */
.row.is-gap-lg.col-2 > *{flex-basis:calc(50% - 28px);}
.row.is-gap-lg.col-3 > *{flex-basis:calc(33.333% - 38px);}
.row.is-gap-lg.col-4 > *{flex-basis:calc(25% - 42px);}
.row.is-gap-sm.col-2 > *{flex-basis:calc(50% - 10px);}
.row.is-gap-sm.col-3 > *{flex-basis:calc(33.333% - 14px);}
.row.is-gap-sm.col-4 > *{flex-basis:calc(25% - 15px);}

.center{text-align:center;}
.section-head{max-width:760px;margin:0 0 56px;}
.section-head.is-centered{margin:0 auto 56px;text-align:center;}

/* ---------- Colour zones ---------- */
.zone-dark{background:var(--carbon);color:var(--grey-light);}
.zone-dark h1,.zone-dark h2,.zone-dark h3,.zone-dark h4{color:var(--white);}
.zone-dark strong{color:var(--white);}
.zone-dark .lead{color:#C6C8CA;}

.zone-graphite{background:var(--graphite);color:var(--grey-light);}
.zone-graphite h1,.zone-graphite h2,.zone-graphite h3,.zone-graphite h4{color:var(--white);}
.zone-graphite strong{color:var(--white);}
.zone-graphite .lead{color:#C6C8CA;}

.zone-light{background:var(--off-white);color:#3A3E42;}
.zone-white{background:var(--white);color:#3A3E42;}

/* Background-image sections -> Elementor: Container background image + overlay */
.has-bg{position:relative;background-size:cover;background-position:center;}
.has-bg > .container{position:relative;z-index:2;}
.bg-carbon{background-image:url("../img/bg-carbon.jpg");}
.bg-red{background-image:url("../img/bg-red.jpg");}
.bg-light{background-image:url("../img/bg-light.jpg");}
.overlay-dark::before{content:"";position:absolute;inset:0;background:rgba(10,11,12,.78);z-index:1;}
.overlay-red::before{content:"";position:absolute;inset:0;background:rgba(120,0,10,.42);z-index:1;}

/* ---------- Buttons  -> Elementor: Button widget ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-family:var(--body);
  font-size:.82rem;
  font-weight:700;
  letter-spacing:.13em;
  text-transform:uppercase;
  padding:17px 32px;
  border-radius:var(--radius);
  border:2px solid transparent;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,border-color .18s ease,transform .18s ease;
  text-align:center;
}
.btn:hover{transform:translateY(-2px);}
.btn svg{width:15px;height:15px;flex:0 0 15px;}

.btn-primary{background:var(--red);color:var(--white);border-color:var(--red);}
.btn-primary:hover{background:var(--red-deep);border-color:var(--red-deep);color:var(--white);}

.btn-ghost-light{background:transparent;color:var(--white);border-color:rgba(255,255,255,.42);}
.btn-ghost-light:hover{background:var(--white);color:var(--carbon);border-color:var(--white);}

.btn-ghost-dark{background:transparent;color:var(--ink);border-color:rgba(23,25,27,.28);}
.btn-ghost-dark:hover{background:var(--ink);color:var(--white);border-color:var(--ink);}

.btn-white{background:var(--white);color:var(--carbon);border-color:var(--white);}
.btn-white:hover{background:transparent;color:var(--white);border-color:var(--white);}

.btn-row{display:flex;flex-wrap:wrap;gap:14px;}
.btn-row.is-centered{justify-content:center;}

/* Text link with arrow -> Elementor: Button (text style) */
.link-arrow{
  display:inline-flex;align-items:center;gap:9px;
  font-weight:600;font-size:.9rem;letter-spacing:.06em;text-transform:uppercase;
  color:var(--red);
}
.link-arrow svg{width:14px;height:14px;transition:transform .18s ease;}
.link-arrow:hover svg{transform:translateX(4px);}

/* ==========================================================================
   HEADER  -> Elementor: Header template (Container + Image + Nav Menu + Button)
   ========================================================================== */
.site-header{
  position:sticky;top:0;z-index:100;
  background:var(--white);
  border-bottom:1px solid var(--line-light);
  box-shadow:0 1px 14px rgba(0,0,0,.05);
}
.header-inner{
  display:flex;align-items:center;justify-content:space-between;gap:28px;
  min-height:88px;
}
.brand{display:flex;align-items:center;flex:0 0 auto;}
.brand img{width:214px;height:auto;}

.nav{display:flex;align-items:center;gap:30px;margin-left:auto;}
.nav a{
  font-size:.82rem;font-weight:600;letter-spacing:.11em;text-transform:uppercase;
  color:var(--ink);padding:12px 0;position:relative;white-space:nowrap;
}
.nav a::after{
  content:"";position:absolute;left:0;bottom:4px;height:2px;width:0;
  background:var(--red);transition:width .2s ease;
}
.nav a:hover{color:var(--red);}
.nav a:hover::after{width:100%;}

/* Dropdown -> Elementor: Nav Menu sub-menu */
.has-drop{position:relative;}
.drop{
  position:absolute;top:100%;left:-20px;
  min-width:308px;
  background:var(--white);
  border:1px solid var(--line-light);
  box-shadow:var(--shadow);
  padding:10px 0;
  opacity:0;visibility:hidden;transform:translateY(8px);
  transition:opacity .18s ease,transform .18s ease,visibility .18s;
}
.has-drop:hover .drop,.has-drop:focus-within .drop{opacity:1;visibility:visible;transform:translateY(0);}
.drop a{
  display:block;padding:11px 24px;font-size:.79rem;letter-spacing:.06em;
  text-transform:none;font-weight:500;
}
.drop a::after{display:none;}
.drop a:hover{background:var(--off-white);color:var(--red);}

.header-cta{display:flex;align-items:center;gap:18px;flex:0 0 auto;}
.header-phone{
  display:inline-flex;align-items:center;gap:8px;
  font-family:var(--head);font-size:1.3rem;font-weight:600;letter-spacing:.02em;
  color:var(--ink);white-space:nowrap;
}
.header-phone svg{width:16px;height:16px;color:var(--red);}
.header-phone:hover{color:var(--red);}
.header-cta .btn{padding:15px 24px;font-size:.75rem;}

/* Active state, driven by body[data-page] */
body[data-page="home"]     .nav-home,
body[data-page="about"]    .nav-about,
body[data-page="services"] .nav-services,
body[data-page="areas"]    .nav-areas,
body[data-page="contact"]  .nav-contact{color:var(--red);}
body[data-page="home"]     .nav-home::after,
body[data-page="about"]    .nav-about::after,
body[data-page="services"] .nav-services::after,
body[data-page="areas"]    .nav-areas::after,
body[data-page="contact"]  .nav-contact::after{width:100%;}

/* Burger */
.burger{
  display:none;
  width:46px;height:46px;
  align-items:center;justify-content:center;
  background:transparent;border:1px solid var(--line-light);border-radius:var(--radius);
  cursor:pointer;color:var(--ink);
}
.burger svg{width:22px;height:22px;}

/* Mobile drawer */
.mobile-nav{
  display:none;
  position:fixed;top:0;right:0;bottom:0;
  width:min(400px,86vw);
  background:var(--carbon);
  z-index:200;
  padding:26px 28px 44px;
  overflow-y:auto;
  transform:translateX(100%);
  transition:transform .28s ease;
}
.mobile-nav.is-open{transform:translateX(0);}
.mobile-nav-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:26px;}
.mobile-nav-head img{width:180px;}
.mobile-close{
  width:44px;height:44px;display:flex;align-items:center;justify-content:center;
  background:transparent;border:1px solid rgba(255,255,255,.2);border-radius:var(--radius);
  color:var(--white);cursor:pointer;
}
.mobile-close svg{width:20px;height:20px;}
.mobile-nav a{
  display:block;padding:15px 0;
  font-family:var(--head);font-size:1.42rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.03em;color:var(--white);
  border-bottom:1px solid rgba(255,255,255,.09);
}
.mobile-nav a:hover{color:var(--red-bright);}
.mobile-sub{padding-left:16px;display:none;}
.mobile-sub.is-open{display:block;}
.mobile-sub a{
  font-family:var(--body);font-size:.92rem;font-weight:500;
  text-transform:none;letter-spacing:0;color:var(--grey-light);padding:11px 0;
}
.mobile-toggle{
  display:flex;align-items:center;justify-content:space-between;width:100%;
  background:transparent;border:0;border-bottom:1px solid rgba(255,255,255,.09);
  padding:15px 0;cursor:pointer;
  font-family:var(--head);font-size:1.42rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.03em;color:var(--white);
}
.mobile-toggle svg{width:16px;height:16px;transition:transform .2s ease;}
.mobile-toggle[aria-expanded="true"] svg{transform:rotate(180deg);}
.mobile-nav .btn{width:100%;margin-top:26px;}
.mobile-phone{
  display:flex;align-items:center;gap:10px;margin-top:22px;
  font-family:var(--head);font-size:1.5rem;color:var(--white);
}
.mobile-phone svg{width:18px;height:18px;color:var(--red-bright);}
.scrim{
  display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:199;
  opacity:0;transition:opacity .28s ease;
}
.scrim.is-open{opacity:1;}
body.nav-open{overflow:hidden;}

/* ==========================================================================
   HERO  -> Elementor: Container with video/image background
   ========================================================================== */
.hero{
  position:relative;
  display:flex;align-items:center;
  min-height:min(88vh,820px);
  padding:120px 0 110px;
  background:var(--carbon);
  overflow:hidden;
}
.hero-video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;z-index:0;
}
.hero::after{
  content:"";position:absolute;inset:0;z-index:1;
  background:linear-gradient(100deg,rgba(8,9,10,.93) 0%,rgba(8,9,10,.82) 48%,rgba(8,9,10,.60) 100%);
}
.hero > .container{position:relative;z-index:2;}
.hero-copy{max-width:840px;}
.hero h1{color:var(--white);margin-bottom:26px;}
.hero h1 .accent{color:var(--red-bright);}
.hero-sub{
  font-size:1.22rem;line-height:1.66;color:#C9CBCD;
  max-width:660px;margin-bottom:38px;
}
.hero .btn-row{margin-bottom:0;}

/* Page hero (interior pages) */
.page-hero{
  position:relative;
  padding:104px 0 92px;
  background:var(--carbon);
  background-size:cover;background-position:center;
}
.page-hero::before{content:"";position:absolute;inset:0;background:rgba(10,11,12,.80);}
.page-hero > .container{position:relative;z-index:2;}
.page-hero h1{color:var(--white);max-width:16ch;margin-bottom:20px;}
.page-hero .lead{color:#C6C8CA;max-width:640px;}

/* Breadcrumb -> Elementor: Breadcrumbs widget */
.crumbs{
  display:flex;flex-wrap:wrap;align-items:center;gap:9px;
  font-size:.78rem;letter-spacing:.09em;text-transform:uppercase;
  color:var(--grey-mid);margin-bottom:22px;
}
.crumbs a{color:var(--grey-light);}
.crumbs a:hover{color:var(--red-bright);}
.crumbs span{color:var(--grey-mid);}

/* ==========================================================================
   STAT / CREDIBILITY STRIP  -> Elementor: Icon Box row
   ========================================================================== */
.stat-strip{background:var(--graphite);border-top:3px solid var(--red);}
.stat{padding:36px 8px;text-align:center;}
.stat-num{
  font-family:var(--head);font-size:3.1rem;font-weight:700;line-height:1;
  color:var(--white);margin-bottom:8px;display:block;
}
.stat-num .unit{color:var(--red-bright);}
.stat-label{
  font-size:.76rem;font-weight:600;letter-spacing:.15em;text-transform:uppercase;
  color:var(--grey-light);
}

/* ==========================================================================
   CARDS  -> Elementor: Icon Box widget
   ========================================================================== */
.card{
  display:flex;flex-direction:column;
  padding:38px 32px;
  background:var(--white);
  border:1px solid var(--line-light);
  border-top:3px solid transparent;
  border-radius:var(--radius);
  transition:border-color .2s ease,transform .2s ease,box-shadow .2s ease;
}
.card:hover{border-top-color:var(--red);transform:translateY(-4px);box-shadow:var(--shadow);}
.card h3{margin-bottom:12px;}
.card p{color:#4A4E52;font-size:.97rem;margin-bottom:20px;}
.card .link-arrow{margin-top:auto;}

.card.on-dark{background:var(--graphite);border-color:var(--line-dark);}
.card.on-dark h3{color:var(--white);}
.card.on-dark p{color:var(--grey-light);}
.card.on-dark:hover{border-top-color:var(--red);box-shadow:0 18px 50px rgba(0,0,0,.5);}

.card-icon{
  display:flex;align-items:center;justify-content:center;
  width:56px;height:56px;margin-bottom:22px;
  border:1px solid var(--line-light);
  border-radius:var(--radius);
  color:var(--red);
  flex:0 0 auto;
}
.card-icon svg{width:26px;height:26px;}
.on-dark .card-icon{border-color:var(--line-dark);color:var(--red-bright);}

/* Feature (no box) -> Elementor: Icon Box, no background */
.feature{display:flex;gap:20px;}
.feature .feature-icon{
  flex:0 0 50px;width:50px;height:50px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line-light);border-radius:var(--radius);
  color:var(--red);
}
.feature .feature-icon svg{width:24px;height:24px;}
.zone-dark .feature .feature-icon,.zone-graphite .feature .feature-icon{border-color:var(--line-dark);color:var(--red-bright);}
.feature h3{font-size:1.28rem;margin-bottom:9px;}
.feature h4{margin-bottom:8px;}
.feature p{font-size:.97rem;margin:0;}

/* Numbered step -> Elementor: Icon Box with number */
.step{display:flex;flex-direction:column;gap:14px;padding-top:26px;border-top:2px solid var(--line-light);}
.zone-dark .step,.zone-graphite .step{border-top-color:var(--line-dark);}
.step-num{
  font-family:var(--head);font-size:2.7rem;font-weight:700;line-height:1;
  color:var(--red);
}
.step h3{font-size:1.3rem;margin:0 0 8px;}
.step p{font-size:.97rem;margin:0;}

/* ==========================================================================
   MEDIA ROWS  -> Elementor: Container (row) + Image + Heading + Text
   ========================================================================== */
.media-row{display:flex;flex-wrap:wrap;align-items:center;gap:60px;}
.media-row .media-img{flex:1 1 46%;min-width:300px;}
.media-row .media-txt{flex:1 1 46%;min-width:300px;}
.media-row.is-flipped .media-img{order:2;}
.media-img img{
  width:100%;border-radius:var(--radius);
  border:1px solid var(--line-light);
}
.zone-dark .media-img img,.zone-graphite .media-img img{border-color:var(--line-dark);}

/* Framed image with red offset accent */
.img-frame{position:relative;}
.img-frame::before{
  content:"";position:absolute;
  left:-16px;bottom:-16px;width:120px;height:120px;
  border-left:4px solid var(--red);border-bottom:4px solid var(--red);
  z-index:0;
}
.img-frame img{position:relative;z-index:1;}

/* ==========================================================================
   CHECK LIST  -> Elementor: Icon List widget
   ========================================================================== */
.check-list{display:flex;flex-direction:column;gap:14px;}
.check-list li{display:flex;gap:13px;align-items:flex-start;font-size:1rem;}
.check-list svg{
  width:19px;height:19px;flex:0 0 19px;margin-top:5px;color:var(--red);
}
.zone-dark .check-list svg,.zone-graphite .check-list svg{color:var(--red-bright);}

/* Two-column icon list */
.check-list.is-2col{flex-direction:row;flex-wrap:wrap;gap:14px 34px;}
.check-list.is-2col li{flex:1 1 calc(50% - 17px);min-width:250px;}

/* ==========================================================================
   ACCORDION / FAQ  -> Elementor: Accordion widget
   ========================================================================== */
.accordion{border-top:1px solid var(--line-light);}
.zone-dark .accordion,.zone-graphite .accordion{border-top-color:var(--line-dark);}
.acc-item{border-bottom:1px solid var(--line-light);}
.zone-dark .acc-item,.zone-graphite .acc-item{border-bottom-color:var(--line-dark);}
.acc-btn{
  display:flex;align-items:center;justify-content:space-between;gap:22px;
  width:100%;padding:24px 0;
  background:transparent;border:0;cursor:pointer;text-align:left;
  font-family:var(--head);font-size:1.28rem;font-weight:600;text-transform:uppercase;
  letter-spacing:.02em;color:var(--ink);
}
.zone-dark .acc-btn,.zone-graphite .acc-btn{color:var(--white);}
.acc-btn:hover{color:var(--red);}
.zone-dark .acc-btn:hover,.zone-graphite .acc-btn:hover{color:var(--red-bright);}
.acc-btn svg{width:17px;height:17px;flex:0 0 17px;color:var(--red);transition:transform .22s ease;}
.acc-btn[aria-expanded="true"] svg{transform:rotate(45deg);}
.acc-panel{display:none;padding:0 0 26px;max-width:80ch;}
.acc-panel.is-open{display:block;}
.acc-panel p{font-size:1rem;margin-bottom:.9em;}

/* ==========================================================================
   CTA BAND  -> Elementor: Container + background image + Heading + Button
   ========================================================================== */
.cta-band{
  position:relative;
  padding:96px 0;
  background-image:url("../img/bg-red.jpg");
  background-size:cover;background-position:center;
  text-align:center;
}
.cta-band::before{content:"";position:absolute;inset:0;background:rgba(90,0,8,.30);}
.cta-band > .container{position:relative;z-index:2;}
.cta-band h2{color:var(--white);max-width:20ch;margin:0 auto 18px;}
.cta-band p{
  color:rgba(255,255,255,.90);font-size:1.14rem;
  max-width:600px;margin:0 auto 34px;
}

/* ==========================================================================
   PANELS (Areas Served)  -> Elementor: Image Box widget
   ========================================================================== */
.panel{
  position:relative;
  display:flex;flex-direction:column;justify-content:flex-end;
  min-height:440px;padding:44px 40px;
  background-size:cover;background-position:center;
  border-radius:var(--radius);overflow:hidden;
}
.panel::before{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top,rgba(8,9,10,.94) 8%,rgba(8,9,10,.55) 60%,rgba(8,9,10,.35) 100%);
}
.panel > *{position:relative;z-index:2;}
.panel h3{color:var(--white);font-size:1.9rem;margin-bottom:12px;}
.panel p{color:#C6C8CA;font-size:1rem;}

/* Chips -> Elementor: Icon List (inline) */
.chips{display:flex;flex-wrap:wrap;gap:10px;}
.chip{
  display:inline-flex;align-items:center;
  padding:9px 18px;
  font-size:.79rem;font-weight:600;letter-spacing:.09em;text-transform:uppercase;
  border:1px solid var(--line-light);border-radius:var(--radius);
  color:#3A3E42;background:var(--white);
}
.zone-dark .chip,.zone-graphite .chip,.panel .chip{
  border-color:rgba(255,255,255,.28);color:var(--white);
  background:rgba(255,255,255,.06);
}

/* ==========================================================================
   FORM  -> Elementor: Form widget
   ========================================================================== */
.form-wrap{
  background:var(--white);
  border:1px solid var(--line-light);
  border-top:3px solid var(--red);
  border-radius:var(--radius);
  padding:44px 40px;
  box-shadow:var(--shadow);
}
.field{display:flex;flex-direction:column;gap:8px;margin-bottom:20px;}
.field label{
  font-size:.76rem;font-weight:700;letter-spacing:.13em;text-transform:uppercase;color:var(--grey);
}
.field input,.field select,.field textarea{
  font-family:var(--body);font-size:1rem;color:var(--ink);
  padding:14px 16px;
  border:1px solid var(--line-light);border-radius:var(--radius);
  background:var(--white);
  transition:border-color .18s ease,box-shadow .18s ease;
  width:100%;
}
.field textarea{min-height:148px;resize:vertical;}
.field input:focus,.field select:focus,.field textarea:focus{
  outline:none;border-color:var(--red);box-shadow:0 0 0 3px rgba(217,0,27,.11);
}
.field-row{display:flex;flex-wrap:wrap;gap:0 20px;}
.field-row > .field{flex:1 1 calc(50% - 10px);min-width:220px;}
.form-note{font-size:.85rem;color:var(--grey);margin-top:16px;}
.form-wrap .btn{width:100%;}
.form-wrap .btn[disabled]{opacity:.6;cursor:progress;transform:none;}

/* Honeypot - off-screen rather than display:none, which some bots detect */
.field.is-hp{
  position:absolute;left:-9999px;top:auto;width:1px;height:1px;overflow:hidden;
}

/* Confirmation replaces the form on success */
.form-confirmation{
  background:var(--white);
  border:1px solid var(--line-light);
  border-top:3px solid var(--red);
  border-radius:var(--radius);
  padding:44px 40px;
  box-shadow:var(--shadow);
  outline:none;
}
.form-confirmation p{
  font-size:1.1rem;line-height:1.65;color:var(--ink);margin:0;
}
.form-confirmation p::before{
  content:"";
  display:block;width:44px;height:44px;margin-bottom:20px;
  border-radius:50%;
  background:var(--red);
  -webkit-mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/24px no-repeat,linear-gradient(#000,#000);
  -webkit-mask-composite:xor;
  mask:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><path d='M20 6 9 17l-5-5'/></svg>") center/24px no-repeat,linear-gradient(#000,#000);
  mask-composite:exclude;
}

/* Contact detail list -> Elementor: Icon List */
.contact-list{display:flex;flex-direction:column;gap:26px;}
.contact-item{display:flex;gap:18px;align-items:flex-start;}
/* Without this the long email address sets a min-content floor and pushes the
   page wider than the viewport on small screens. */
.contact-item > div{flex:1 1 auto;min-width:0;}
.contact-item .ci-value{overflow-wrap:anywhere;}
.contact-item .ci-icon{
  flex:0 0 48px;width:48px;height:48px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line-dark);border-radius:var(--radius);color:var(--red-bright);
}
.contact-item .ci-icon svg{width:22px;height:22px;}
.contact-item .ci-label{
  font-size:.74rem;font-weight:700;letter-spacing:.15em;text-transform:uppercase;
  color:var(--grey-mid);margin-bottom:5px;
}
.contact-item .ci-value{
  font-family:var(--head);font-size:1.55rem;font-weight:600;color:var(--white);line-height:1.2;
}
.contact-item a.ci-value:hover{color:var(--red-bright);}
.contact-item .ci-value.is-small{font-family:var(--body);font-size:1.02rem;font-weight:500;}

/* ==========================================================================
   FOOTER  -> Elementor: Footer template (Container + Image + Icon List)
   ========================================================================== */
.site-footer{background:var(--carbon);color:var(--grey-light);padding:82px 0 0;}
.footer-top{display:flex;flex-wrap:wrap;gap:44px;padding-bottom:56px;}
.footer-brand{flex:1 1 300px;min-width:260px;}
.footer-brand img{width:238px;margin-bottom:24px;}
.footer-brand p{font-size:.96rem;color:var(--grey-light);max-width:38ch;}
.footer-col{flex:1 1 168px;min-width:160px;}
.footer-col h4{
  font-family:var(--body);font-size:.76rem;font-weight:700;letter-spacing:.16em;
  text-transform:uppercase;color:var(--white);margin-bottom:20px;
}
.footer-col li{margin-bottom:11px;}
.footer-col a{font-size:.94rem;color:var(--grey-light);}
.footer-col a:hover{color:var(--red-bright);}

.socials{display:flex;gap:11px;margin-top:24px;}
.socials a{
  width:42px;height:42px;display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line-dark);border-radius:var(--radius);color:var(--grey-light);
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}
.socials a:hover{background:var(--red);border-color:var(--red);color:var(--white);}
.socials svg{width:17px;height:17px;}

.footer-bottom{
  display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;gap:16px;
  padding:26px 0;border-top:1px solid var(--line-dark);
  font-size:.87rem;color:var(--grey-mid);
}
.footer-bottom a{color:var(--grey-mid);}
.footer-bottom a:hover{color:var(--red-bright);}
.footer-legal{display:flex;flex-wrap:wrap;gap:22px;}

/* ---------- Prose (privacy policy) ---------- */
.prose h2{margin-top:52px;font-size:1.85rem;}
.prose h2:first-child{margin-top:0;}
.prose h3{margin-top:34px;font-size:1.25rem;}
.prose ul{list-style:disc;padding-left:22px;margin:0 0 1.15em;}
.prose li{margin-bottom:9px;}

/* ---------- Utility ---------- */
.mt-0{margin-top:0;}
.mb-0{margin-bottom:0;}
.mt-32{margin-top:32px;}
.mt-40{margin-top:40px;}
.skip-link{
  position:absolute;left:-9999px;top:0;
  background:var(--red);color:var(--white);padding:12px 20px;z-index:300;
}
.skip-link:focus{left:0;}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width:1080px){
  .nav{gap:20px;}
  .nav a{font-size:.76rem;}
  .header-phone{font-size:1.15rem;}
  .brand img{width:186px;}
}

@media (max-width:980px){
  .nav,.header-cta{display:none;}
  .burger{display:flex;}
  .mobile-nav{display:block;}
  .scrim.is-open{display:block;}
  .header-inner{min-height:74px;}
  .section{padding:76px 0;}
  .media-row{gap:40px;}
  .media-row.is-flipped .media-img{order:0;}
  .hero{min-height:auto;padding:92px 0 84px;}
  /* Must match the specificity of the gap-aware overrides above, or they win */
  .row.col-4 > *,
  .row.is-gap-sm.col-4 > *,
  .row.is-gap-lg.col-4 > *{flex-basis:calc(50% - 16px);}
}

@media (max-width:680px){
  body{font-size:16px;}
  .section{padding:60px 0;}
  .section.is-tight{padding:48px 0;}
  .hero{padding:72px 0 66px;}
  .hero-sub{font-size:1.08rem;}
  .lead{font-size:1.1rem;}
  .row{gap:24px;}
  .row.col-2 > *,.row.col-3 > *,.row.col-4 > *,
  .row.is-gap-sm.col-2 > *,.row.is-gap-sm.col-3 > *,.row.is-gap-sm.col-4 > *,
  .row.is-gap-lg.col-2 > *,.row.is-gap-lg.col-3 > *,.row.is-gap-lg.col-4 > *{
    flex-basis:100%;min-width:0;
  }
  .check-list.is-2col li{flex:1 1 100%;}
  .btn{width:100%;}
  .btn-row{flex-direction:column;}
  .card{padding:30px 24px;}
  .form-wrap{padding:32px 22px;}
  .panel{min-height:360px;padding:32px 26px;}
  .page-hero{padding:66px 0 58px;}
  .cta-band{padding:66px 0;}
  .footer-top{gap:34px;}
  .img-frame::before{display:none;}
  .section-head{margin-bottom:38px;}
  /* Video is heavy on mobile data - fall back to the poster still */
  .hero-video{display:none;}
  .hero{background-image:url("../img/bg-carbon.jpg");background-size:cover;background-position:center;}
}
