/* ==========================================================================
   Paragon Plumbing & Heating
   Design system extracted verbatim from onewayairfl.com/fort-myers/
   (Astra + Elementor). Values below are the source site's real tokens.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Play:wght@400;700&family=Inter:wght@400;500;700;900&family=Raleway:wght@400;500;700;900&family=Montserrat:wght@400;600;700;800;900&family=Open+Sans:wght@400;500;600&display=swap');

:root {
  /* ---- Brand: orange family ---- */
  --orange-deep:   #F05023;   /* button hover, headings, markers */
  --orange-light:  #F68A1E;   /* button default */
  --orange-bar:    #F26822;   /* top bar, footer bar, list icons */
  --orange-alt:    #E8560A;   /* trust-section accent */
  --red-eyebrow:   #F02323;   /* section eyebrow headings */
  --grad-orange:   linear-gradient(to right, #F05023 0%, #F68A1E 51%, #F36D20 100%);

  /* ---- Brand: blue family ---- */
  --blue-1:        #2D86C8;
  --blue-2:        #29B0E5;
  --blue-accent:   #29A8DF;   /* phone box */
  --blue-trust:    #0095D9;
  --grad-blue:     linear-gradient(90deg, #2D86C8 0%, #29B0E5 100%);

  /* ---- Neutrals ---- */
  --navy:          #182961;   /* locations + CTA band */
  --navy-deep:     #000422;
  --ink:           #1E1E1E;
  --ink-2:         #2F2F2F;
  --ink-3:         #333333;
  --ink-trust:     #1a2e4a;
  --muted:         #8e91aa;
  --body-fg:       #3a3a4a;

  --grey-bg:       #F3F3F3;   /* sticky header + inset panel */
  --tint-warm:     #FFF3E5;   /* footer top */
  --tint-peach:    #FEF1E6;   /* trust section */
  --tint-pink:     #fef2f0;
  --field-bg:      #DBE8F2;
  --field-fg:      #304280;
  --hairline:      #c4c4c4;

  /* ---- Type ---- */
  --ff-head:  'Play', sans-serif;
  --ff-body:  'Inter', sans-serif;
  --ff-alt:   'Raleway', sans-serif;
  --ff-trust: 'Montserrat', sans-serif;
  --ff-trust-body: 'Open Sans', sans-serif;

  /* ---- Layout ---- */
  --container: 1200px;
  --radius: 4px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   BASE — Astra type scale, verbatim
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 100%; -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  margin: 0;
  font-family: var(--ff-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-3);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
img { height: auto; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  text-transform: uppercase;
  margin: 0 0 20px;
  color: var(--ink);
}
h1 { font-size: 64px; line-height: 1.4em; }
h2 { font-size: 48px; line-height: 1.3em; }
h3 { font-size: 32px; line-height: 1.3em; }
h4 { font-size: 24px; line-height: 1.2em; }
h5 { font-size: 16px; line-height: 1.2em; }
h6 { font-size: 14px; line-height: 1.25em; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange-deep); text-decoration: none; transition: color .3s; }
a:hover { color: var(--orange-light); }

ul, ol { margin: 0 0 1.15em; padding-left: 1.2em; }
::marker { color: var(--orange-deep); }

::selection { background: var(--orange-deep); color: #fff; -webkit-text-fill-color: #fff; }

button { font: inherit; }
:focus-visible { outline: 3px solid var(--orange-deep); outline-offset: 3px; }

.skip-link { position: absolute; left: -9999px; top: 0; z-index: 9999; background: var(--navy); color: #fff; padding: 12px 20px; }
.skip-link:focus { left: 0; }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ---- Containers ---- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: 20px; }

.sec { padding: 100px 40px; position: relative; }
.sec > .container { padding-inline: 0; }

/* ---- Utility ---- */
.eyebrow {
  font-family: var(--ff-head);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--red-eyebrow);
  font-size: 24px;
  line-height: 1.2em;
  margin: 0 0 10px;
}
.eyebrow--orange { color: var(--orange-deep); }
.flame { width: 50px; height: 50px; max-width: 50px; margin-bottom: 8px; }
.text-white { color: #fff; }
.orange-gradient-text {
  background: linear-gradient(to right, #F05023 0%, #F68A1E 50%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   BUTTONS — Elementor defaults from source
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fff;
  background-color: var(--orange-light);
  border: none;
  border-radius: var(--radius);
  padding: 14px 32px;
  cursor: pointer;
  transition: background-color .3s, color .3s, transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn:hover, .btn:focus { background-color: var(--orange-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(240,80,35,.28); }
.btn svg { fill: currentColor; }

/* Ghost/text button — hero secondary */
.btn-text {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--ff-head); font-size: 16px; font-weight: 700;
  text-transform: uppercase;
  color: var(--orange-deep);
  background: transparent; border: none; padding: 14px 0;
  transition: color .3s;
}
.btn-text:hover { color: var(--orange-light); }
.btn-text svg { transition: transform .3s var(--ease); }
.btn-text:hover svg { transform: translateX(6px); }

.btn-row { display: flex; flex-wrap: wrap; align-items: center; gap: 35px; }

/* Gradient CTA used in the header */
.btn-grad {
  font-family: var(--ff-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 28px;
  text-transform: uppercase;
  color: #fff;
  border-radius: 10px;
  padding: 20px 25px;
  border: none;
  display: inline-flex; align-items: center; gap: 8px;
  background-image: var(--grad-orange);
  background-size: 200% auto;
  transition: background-position .45s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.btn-grad:hover { background-position: right center; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(240,80,35,.32); }
.btn-grad img, .btn-grad svg { width: 20px; margin-left: 5px; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.topbar { background: var(--orange-bar); color: #fff; }
.topbar__in {
  display: flex; align-items: center; justify-content: space-around;
  gap: 20px; flex-wrap: wrap;
  font-family: var(--ff-body); font-size: 16px; font-weight: 500;
  padding: 10px 0;
}
.topbar__item { display: inline-flex; align-items: center; gap: 7px; color: #fff; }
.topbar__item svg { width: 14px; height: 14px; fill: #fff; flex: none; }
.topbar a.topbar__item:hover { color: #fff; opacity: .85; }

/* Region dropdown in top bar */
.region { position: relative; }
.region > button {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 700; text-transform: uppercase;
  color: #fff; background: none; border: none; cursor: pointer; padding: 15px;
}
.region > button svg { width: 12px; height: 12px; fill: #fff; transition: transform .3s; }
.region:hover > button svg { transform: rotate(180deg); }
.region__menu {
  position: absolute; top: 100%; left: 0; z-index: 300;
  width: 220px; background: #fff; list-style: none; margin: 0; padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.region:hover .region__menu, .region:focus-within .region__menu { opacity: 1; visibility: visible; transform: none; }
.region__menu li:not(:last-child) { border-bottom: 1px solid var(--hairline); }
.region__menu a {
  display: block; padding: 15px;
  font-family: var(--ff-head); font-size: 14px; font-weight: 600; text-transform: uppercase;
  color: var(--orange-bar);
}
.region__menu a:hover { background: var(--tint-warm); }

/* Main header bar */
.mainbar { background: #fff; position: sticky; top: 0; z-index: 200; transition: box-shadow .3s; }
.mainbar.is-stuck { box-shadow: 0 1px 2px rgba(0,0,0,.2); animation: slide-down .8s; }
@keyframes slide-down {
  0%   { opacity: 0; transform: translateY(-100%); }
  100% { opacity: 1; transform: translateY(0); }
}
.mainbar__in { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 14px 0; }

.brand { flex: none; display: block; order: 2; }
.brand img { height: 190px; width: auto; transition: height .3s; }
.mainbar.is-stuck .brand img { height: 146px; }

/* Logo sits centred between the CTA and the phone box; DOM order keeps it first. */
.mainbar__in .btn-grad { order: 1; }
.mainbar__in .phonebox { order: 3; }
.mainbar__in .burger { order: 4; }

/* Phone icon-box (Raleway, blue) */
.phonebox { display: flex; align-items: flex-start; gap: 14px; flex: none; }
.phonebox__icon {
  width: 52px; height: 52px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--orange-bar); color: #fff;
}
.phonebox__icon svg { width: 26px; height: 26px; fill: #fff; }
.phonebox__title {
  font-family: var(--ff-alt); font-size: 18px; font-weight: 700;
  text-transform: uppercase; line-height: 20px; color: var(--blue-accent);
  margin: 0 0 6px;
}
.phonebox__num {
  font-family: var(--ff-alt); font-size: 30px; font-weight: 900;
  line-height: 1.1; color: var(--blue-accent); display: block;
}
.phonebox__num:hover { color: var(--orange-bar); }

/* Primary nav */
.navbar { background: #fff; border-top: 1px solid #eee; }
.nav { display: flex; align-items: center; justify-content: center; }
.nav__list { display: flex; align-items: center; list-style: none; margin: 0; padding: 0; }
.nav__list > li { position: relative; }
.nav__list > li > a, .nav__list > li > button {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 15px;
  font-family: var(--ff-head); font-size: 18px; font-weight: 700; text-transform: uppercase;
  color: var(--ink); background: none; border: none; cursor: pointer; white-space: nowrap;
  transition: color .3s;
}
.nav__list > li > a:hover, .nav__list > li > button:hover,
.nav__list > li.is-current > a { color: var(--orange-deep); }
.nav__list svg.caret { width: 11px; height: 11px; fill: currentColor; transition: transform .3s; }
.nav__list > li:hover svg.caret { transform: rotate(180deg); }

.submenu {
  position: absolute; top: 100%; left: 0; z-index: 250;
  width: 220px; background: #fff; list-style: none; margin: 0; padding: 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.15);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .25s var(--ease), transform .25s var(--ease), visibility .25s;
}
.submenu--wide { width: 440px; columns: 2; column-gap: 0; }
li:hover > .submenu, li:focus-within > .submenu { opacity: 1; visibility: visible; transform: none; }
.submenu li:not(:last-child) { border-bottom: 1px solid var(--hairline); }
.submenu--wide li { break-inside: avoid; }
.submenu a {
  display: block; padding: 15px;
  font-family: var(--ff-head); font-size: 16px; font-weight: 600; text-transform: uppercase;
  color: var(--orange-bar);
}
.submenu a:hover { background: var(--tint-warm); }

/* Burger + drawer */
.burger { display: none; width: 48px; height: 48px; background: var(--orange-bar); border: none; border-radius: var(--radius); cursor: pointer; position: relative; flex: none; }
.burger span { position: absolute; left: 14px; width: 20px; height: 2px; background: #fff; transition: transform .3s var(--ease), opacity .2s; }
.burger span:nth-child(1) { top: 17px; }
.burger span:nth-child(2) { top: 23px; }
.burger span:nth-child(3) { top: 29px; }
.burger.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0 0 0 auto; width: min(400px, 88vw);
  background: #fff; z-index: 400; overflow-y: auto;
  transform: translateX(100%); transition: transform .38s var(--ease);
  padding: 20px 20px 48px;
}
.drawer.is-open { transform: none; }
.drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.drawer__head img { height: 52px; }
.drawer__close { width: 44px; height: 44px; border: none; background: var(--grey-bg); border-radius: var(--radius); font-size: 22px; color: var(--ink); cursor: pointer; }
.drawer ul { list-style: none; margin: 0; padding: 0; }
.drawer > ul > li { border-bottom: 1px solid #eee; }
.drawer > ul > li > a, .drawer__toggle {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 4px; font-family: var(--ff-head); font-size: 16px; font-weight: 700;
  text-transform: uppercase; color: var(--ink);
  background: none; border: none; text-align: left; cursor: pointer;
}
.drawer__toggle svg { width: 12px; height: 12px; fill: currentColor; transition: transform .3s; }
.drawer__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.drawer__sub { display: none; padding: 0 0 12px 12px; }
.drawer__sub.is-open { display: block; }
.drawer__sub a { display: block; padding: 9px 0; font-family: var(--ff-head); font-size: 14px; font-weight: 600; text-transform: uppercase; color: var(--orange-bar); }
.drawer__foot { margin-top: 24px; display: grid; gap: 12px; }

.scrim { position: fixed; inset: 0; background: rgba(0,4,34,.55); z-index: 350; opacity: 0; visibility: hidden; transition: opacity .3s, visibility .3s; }
.scrim.is-open { opacity: 1; visibility: visible; }

/* ==========================================================================
   HERO  — #1e04045: black bg, #00000099 overlay, padding 200px 0 250px
   ========================================================================== */
.hero { position: relative; background-color: #000; padding: 200px 0 250px; overflow: hidden; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 20s var(--ease) forwards; }
/* Injected by main.js on wide screens only — the img underneath is the fallback. */
.hero__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .6s var(--ease); }
.hero__media video.is-ready { opacity: 1; }
@keyframes heroZoom { from { transform: scale(1.12); } to { transform: scale(1); } }
.hero__overlay {
  position: absolute; inset: 0; z-index: 1;
  background-color: #00000099;
  background-repeat: no-repeat;
  background-position: bottom right;
}
.hero__in { position: relative; z-index: 2; }
.hero__col { margin-right: 32%; }
.hero h1 { color: #fff; margin-bottom: 10px; }
.hero__tag {
  font-family: var(--ff-head); font-weight: 700; text-transform: uppercase;
  color: var(--orange-deep); font-size: 32px; line-height: 1.3em; margin: 5px 0;
}
.hero__sub { color: #fff; margin: 0 0 20px; max-width: 620px; }

/* ==========================================================================
   PAGE BANNER (inner pages)
   ========================================================================== */
.banner { position: relative; background-color: #000; padding: 140px 0 120px; overflow: hidden; text-align: center; }
.banner__media { position: absolute; inset: 0; }
.banner__media img { width: 100%; height: 100%; object-fit: cover; }
.banner__overlay { position: absolute; inset: 0; background: #00000099; }
.banner__in { position: relative; z-index: 2; max-width: 860px; margin-inline: auto; }
.banner h1 { color: #fff; }
.banner p { color: #fff; }
.crumbs { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; list-style: none; margin: 18px 0 0; padding: 0; font-size: 14px; color: #cfd6e4; }
.crumbs a { color: var(--orange-light); }
.crumbs li + li::before { content: "/"; margin-right: 8px; color: #7d879b; }

/* ==========================================================================
   WHY CHOOSE  — #60c1c9e
   ========================================================================== */
.why { padding: 0 40px 100px; }
.why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: start; }
.why__left { padding-top: 80px; padding-right: 40px; }
.why__divider { border: none; border-top: 1px solid #fff; width: 90%; margin: 24px 0; }

/* Grey inset panel that bleeds off the left edge */
.callout {
  background: var(--grey-bg);
  margin-left: -1000px;
  padding: 20px 0 10px 1000px;
  display: flex; align-items: flex-start; gap: 20px;
}
.callout__icon {
  width: 62px; height: 62px; flex: none;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--blue-2); color: #DBE8F2;
}
.callout__icon svg { width: 30px; height: 30px; fill: #DBE8F2; }
.callout__title { font-family: var(--ff-body); font-weight: 700; color: var(--ink-2); margin: 0 0 -10px; font-size: 16px; text-transform: none; }
.callout__num { font-family: var(--ff-body); font-size: 32px; font-weight: 700; color: var(--orange-deep); line-height: 1.4; display: block; }
.callout__num:hover { color: var(--orange-light); }

/* Blue gradient form card, pulled up over the hero */
/* [data-anim] sets will-change, which makes every animated wrapper its own
   stacking context — so a z-index on .formcard itself is trapped inside and
   loses to .hero__overlay (z-index 1). The lift has to go on the wrapper. */
.formcard-wrap { position: relative; z-index: 2; }

.formcard {
  background-image: var(--grad-blue);
  border: 4px solid var(--field-fg);
  border-radius: var(--radius);
  box-shadow: 0 104px 104px -40px rgba(0,0,0,.16);
  margin: -120px 0 0 80px;
  padding: 50px;
}
.formcard__title { text-align: center; font-weight: 700; text-transform: uppercase; color: #fff; font-size: 24px; margin-bottom: 22px; }
.formcard .field input, .formcard .field textarea, .formcard .field select {
  width: 100%; padding: 15px;
  font-family: var(--ff-body); font-size: 16px;
  color: var(--field-fg); background: var(--field-bg);
  border: none; border-radius: var(--radius);
}
.formcard .field input::placeholder, .formcard .field textarea::placeholder { color: var(--field-fg); opacity: 1; }
.formcard .field { margin-bottom: 14px; }
.formcard .field textarea { min-height: 120px; resize: vertical; }
.formcard .btn { width: 100%; }
.form-status { margin-top: 12px; font-size: 14px; font-weight: 600; color: #fff; }

/* ==========================================================================
   SERVICES  — image-box cards, white, 4px radius, heavy shadow
   ========================================================================== */
.services { background: var(--grey-bg); padding: 100px 40px; }
.services__head { text-align: center; margin-bottom: 40px; }
.services__head .flame { margin: 0 auto 8px; }
.services__head .lead { margin: 0 auto; max-width: 700px; }
.svc-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; align-items: stretch; }
.svc-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.svc {
  background: #fff; border-radius: var(--radius); overflow: hidden;
  box-shadow: 4px 4px 10px 10px rgba(0,0,0,.15);
  margin: 10px; padding: 24px;
  display: flex; flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.svc:hover { transform: translateY(-8px); box-shadow: 4px 8px 16px 12px rgba(0,0,0,.18); }
/* Full-bleed card image, matching paragonph.com. The source site (onewayairfl)
   uses a 22% thumbnail here; this is a deliberate departure from that mirror. */
.svc__img { width: auto; aspect-ratio: 4 / 3; overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; margin: -24px -24px 20px; }
.svc__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.svc:hover .svc__img img { transform: scale(1.08); }
.svc h4 { font-weight: 700; text-transform: none; margin-bottom: 12px; overflow-wrap: anywhere; }
.svc p { font-size: 15px; color: var(--body-fg); flex: 1; margin-bottom: 20px; overflow-wrap: break-word; }
.svc .btn { align-self: center; margin-top: auto; }

/* ==========================================================================
   LOCALLY TRUSTED  — verbatim from source (owlt-*)
   ========================================================================== */
.owlt-wrap * , .owlt-wrap *::before, .owlt-wrap *::after { box-sizing: border-box; margin: 0; padding: 0; }
.owlt-wrap { font-family: var(--ff-trust-body); background-color: var(--tint-peach); position: relative; padding: 64px 24px 72px; overflow: hidden; }
.owlt-wrap::before {
  content: ''; position: absolute; bottom: -180px; right: -180px;
  width: 480px; height: 480px; border-radius: 50%;
  border: 40px solid rgba(0,149,217,0.08); pointer-events: none;
}
.owlt-wrap::after {
  content: ''; position: absolute; top: -100px; left: -100px;
  width: 340px; height: 340px; border-radius: 50%;
  border: 30px solid rgba(232,86,10,0.07); pointer-events: none;
}
.owlt-inner { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; position: relative; z-index: 1; }
.owlt-eyebrow { font-family: var(--ff-trust); font-size: 12px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--orange-alt); margin-bottom: 10px; }
.owlt-heading { font-family: var(--ff-trust); font-size: clamp(26px, 3vw, 38px); font-weight: 900; color: var(--blue-trust); line-height: 1.2; text-transform: uppercase; margin-bottom: 6px; }
.owlt-heading span { color: var(--ink-trust); }
.owlt-divider { width: 56px; height: 4px; background: var(--orange-alt); border-radius: 2px; margin: 16px 0 22px; }
.owlt-body { font-size: 15.5px; line-height: 1.85; color: var(--body-fg); margin-bottom: 28px; }
.owlt-body a { color: var(--blue-trust); font-weight: 600; border-bottom: 2px solid rgba(0,149,217,0.25); transition: color .2s, border-color .2s; }
.owlt-body a:hover { color: var(--orange-alt); border-color: var(--orange-alt); }
.owlt-logo-strip { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 22px; border-top: 2px solid rgba(0,149,217,0.15); }
.owlt-logo-strip-label { font-family: var(--ff-trust); font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--orange-alt); font-weight: 800; white-space: nowrap; }
.owlt-logo-link { display: block; opacity: .5; filter: grayscale(50%) sepia(10%); transition: opacity .25s, filter .25s, transform .2s; }
.owlt-logo-link:hover { opacity: 1; filter: none; transform: translateY(-2px); }
.owlt-logo-link img { height: 36px; width: auto; max-width: 140px; object-fit: contain; }
.owlt-right { display: flex; flex-direction: column; gap: 14px; }
.owlt-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: #fff; border: 1px solid #e8ddd4; border-left: 5px solid var(--blue-trust);
  border-radius: 10px; padding: 18px 24px 18px 18px;
  box-shadow: 0 3px 14px rgba(0,0,0,.06); position: relative; overflow: hidden;
}
.owlt-card--orange { border-left-color: var(--orange-alt); }
.owlt-card--green  { border-left-color: #22a06b; }
.owlt-card--gold   { border-left-color: #f4b400; }
.owlt-card-icon { width: 48px; height: 48px; border-radius: 8px; background: linear-gradient(135deg,#e8f6fd,#cceeff); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.owlt-card--orange .owlt-card-icon { background: linear-gradient(135deg,#fff0e8,#ffd5bb); }
.owlt-card--green  .owlt-card-icon { background: linear-gradient(135deg,#e6f9f1,#b8ecd8); }
.owlt-card--gold   .owlt-card-icon { background: linear-gradient(135deg,#fffbe6,#ffe99a); }
.owlt-card-icon svg { width: 24px; height: 24px; }
.owlt-card-stars { display: flex; align-items: center; gap: 2px; margin: 3px 0 2px; }
.owlt-card-stars span { font-size: 14px; color: #f4b400; line-height: 1; }
.owlt-card-rating { font-family: var(--ff-trust); font-size: 11px; font-weight: 700; color: var(--ink-trust); margin-left: 4px; }
.owlt-card-tag { font-family: var(--ff-trust); font-size: 9px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--blue-trust); margin-bottom: 2px; }
.owlt-card--orange .owlt-card-tag { color: var(--orange-alt); }
.owlt-card--green  .owlt-card-tag { color: #22a06b; }
.owlt-card--gold   .owlt-card-tag { color: #c89800; }
.owlt-card-name { font-family: var(--ff-trust); font-size: 14px; font-weight: 700; color: var(--ink-trust); margin-bottom: 4px; }
.owlt-card-desc { font-size: 12px; color: #6a6a7a; line-height: 1.55; }

/* ==========================================================================
   SPLIT CONTENT SECTIONS  — #398e363 / #b1c2f30 / #4c97045
   ========================================================================== */
.split { padding: 100px 40px; }
.split__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; }
.split__text { padding-right: 64px; }
.split--rev .split__media { order: -1; padding-right: 10%; }
.split--rev .split__text { padding-left: 10%; padding-right: 0; }
.split__media img { border-radius: 5px; box-shadow: 0 0 25px -5px rgba(0,0,0,.5); width: 100%; }
.split .btn { margin-top: 40px; }

/* Icon list (checkmarks) */
.icon-list { list-style: none; margin: 0 0 8px; padding: 0; }
.icon-list li { display: flex; align-items: flex-start; gap: 8px; padding-bottom: 6px; margin-top: 6px; }
.icon-list li:first-child { margin-top: 0; }
.icon-list svg { width: 20px; height: 20px; flex: none; fill: var(--orange-alt); margin-top: 4px; }

/* ==========================================================================
   STATS  — #F05023, 64px, weight 700, title 16px
   ========================================================================== */
.stats { min-height: 280px; display: flex; align-items: center; padding: 64px 40px; background: #fff; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; width: 100%; }
.stat { text-align: center; padding: 40px 0; }
.stat__num { font-family: var(--ff-head); color: var(--orange-deep); font-size: 64px; font-weight: 700; line-height: 1.1; }
.stat__label { font-size: 16px; color: var(--ink-3); margin-top: 4px; }

/* ==========================================================================
   LOCATIONS  — #6dd797e navy #182961, padding 75px 0 150px
   ========================================================================== */
.locations { background-color: var(--navy); padding: 75px 40px 150px; position: relative; overflow: hidden; }
.locations__overlay { position: absolute; inset: 0; background-repeat: no-repeat; background-position: center right; background-size: 61% auto; pointer-events: none; }
.locations__grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 0; align-items: center; position: relative; z-index: 1; }
.locations__map { padding-right: 40px; }
.locations__map .frame { border: 10px solid #fff; border-radius: 25px; overflow: hidden; }
.locations__map iframe { width: 100%; height: 660px; border: 0; display: block; }
.locations__eyebrow { font-weight: 700; text-transform: uppercase; color: #fff; font-size: 24px; margin-bottom: 4px; }
.locations h2 { font-weight: 700; text-transform: uppercase; color: var(--orange-deep); margin: 5px 0; }
.locations__intro { color: #fff; margin-bottom: 24px; }
.loc-cols { display: flex; gap: 60px; }
.loc-cols ul { list-style: none; margin: 0; padding: 0; }
.loc-cols li { margin-bottom: 10px; }
.loc-cols a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: 16px; transition: color .3s, transform .3s; }
.loc-cols a:hover { color: var(--orange-light); transform: translateX(4px); }
.loc-cols svg { width: 14px; height: 14px; fill: var(--orange-light); flex: none; }

/* ==========================================================================
   ESTIMATE CTA  — #26cce08, pulled up -170px over locations
   ========================================================================== */
/* Transparent band is pinned to the exact pull-up distance so the navy always
   meets the locations band seamlessly, whatever the content height. */
.estimate {
  background-image: linear-gradient(180deg, rgba(0,5,47,0) 170px, var(--navy) 170px);
  margin-top: -170px; padding: 200px 40px 100px; position: relative; overflow: hidden;
}
.estimate__overlay { position: absolute; inset: 0; background-repeat: no-repeat; background-position: bottom left; background-size: contain; pointer-events: none; }
.estimate__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: center; position: relative; z-index: 1; }
.estimate__left { padding-right: 40%; }
.estimate__right { margin: 50px 0 0 80px; }
.estimate p { color: #fff; margin: 0 0 24px; padding-right: 160px; }
.estimate .btn-row { gap: 35px; }

/* ==========================================================================
   FOOTER  — #FFF3E5 top, #F26822 bottom bar
   ========================================================================== */
.site-footer { border-top: 3px solid; border-image: linear-gradient(to right, #f05023, #f68a1e, #2d86c8, #29b0e5) 1 0 0 0; }
.footer-top { background: var(--tint-warm); padding: 50px 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
.footer-col:last-child { padding-left: 30px; }
.footer-col h4 { font-family: var(--ff-alt); font-size: 20px; font-weight: 900; text-transform: uppercase; line-height: 22px; color: var(--ink-3); margin-bottom: 10px; }
.footer-list { list-style: none; margin: 0; padding: 0; }
.footer-list li { display: flex; align-items: flex-start; gap: 10px; padding-bottom: 7px; margin-top: 7px; }
.footer-list li:first-child { margin-top: 0; }
.footer-list svg { width: 20px; height: 20px; flex: none; fill: var(--orange-bar); margin-top: 3px; }
.footer-list a, .footer-list span { font-family: var(--ff-alt); font-size: 16px; font-weight: 500; line-height: 26px; color: var(--ink-3); }
.footer-list a:hover { color: var(--orange-bar); }
.footer-links li svg { width: 10px; height: 10px; margin-top: 8px; }
.footer-links a { text-transform: capitalize; line-height: 20px; }
.footer-mid { text-align: center; }
.footer-mid img { margin: 0 auto 14px; max-width: 260px; }
.footer-note { font-family: var(--ff-alt); font-size: 16px; font-weight: 400; line-height: 26px; color: var(--ink-3); text-align: center; }
.socials { display: flex; justify-content: center; gap: 8px; margin-top: 10px; }
.socials a { width: 41px; height: 41px; display: grid; place-items: center; border-radius: 50px; padding: 7px; color: var(--ink-3); transition: background-color .3s, color .3s, transform .3s; }
.socials a:hover { background: var(--orange-bar); color: #fff; transform: translateY(-3px); }
.socials svg { width: 27px; height: 27px; fill: currentColor; }
.footer-bar { background: var(--orange-bar); color: #fff; }
.footer-bar__in { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding: 12px 0; font-family: var(--ff-body); font-size: 16px; font-weight: 500; }
.footer-bar a { color: #fff; display: inline-flex; align-items: center; gap: 7px; }
.footer-bar svg { width: 14px; height: 14px; fill: #fff; }

/* Mobile sticky call bar */
.callbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 190; display: none; gap: 8px; background: var(--navy); padding: 8px 12px; }
.callbar .btn { flex: 1; padding: 13px 8px; font-size: 14px; }

/* ==========================================================================
   REVEAL ANIMATIONS  (source uses Elementor fadeIn / fadeInUp / fadeInLeft / fadeInRight / zoomIn)
   ========================================================================== */
[data-anim] { opacity: 0; will-change: opacity, transform; }
[data-anim].is-in { animation-duration: 1s; animation-fill-mode: both; opacity: 1; }
[data-anim="fadeIn"].is-in       { animation-name: fadeIn; }
[data-anim="fadeInUp"].is-in     { animation-name: fadeInUp; }
[data-anim="fadeInLeft"].is-in   { animation-name: fadeInLeft; }
[data-anim="fadeInRight"].is-in  { animation-name: fadeInRight; }
[data-anim="zoomIn"].is-in       { animation-name: zoomIn; }
[data-anim="bounceIn"].is-in     { animation-name: bounceIn; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translate3d(0,100%,0); } to { opacity: 1; transform: none; } }
@keyframes fadeInLeft { from { opacity: 0; transform: translate3d(-100%,0,0); } to { opacity: 1; transform: none; } }
@keyframes fadeInRight { from { opacity: 0; transform: translate3d(100%,0,0); } to { opacity: 1; transform: none; } }
@keyframes zoomIn { from { opacity: 0; transform: scale3d(.3,.3,.3); } 50% { opacity: 1; } }
@keyframes bounceIn {
  0%,20%,40%,60%,80%,to { animation-timing-function: cubic-bezier(.215,.61,.355,1); }
  0% { opacity: 0; transform: scale3d(.3,.3,.3); }
  20% { transform: scale3d(1.1,1.1,1.1); }
  40% { transform: scale3d(.9,.9,.9); }
  60% { opacity: 1; transform: scale3d(1.03,1.03,1.03); }
  80% { transform: scale3d(.97,.97,.97); }
  to { opacity: 1; transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  [data-anim] { opacity: 1 !important; }
}

/* ==========================================================================
   RESPONSIVE  — breakpoints mirrored from source (1024 / 921 / 767 / 544)
   ========================================================================== */
@media (max-width: 1024px) {
  .container { max-width: 1024px; }
  .nav__list > li > a, .nav__list > li > button { font-size: 15px; padding: 15px 10px; }
  .locations__map { padding-right: 50px; }
  .estimate__left { padding-right: 0; }
  .estimate__right { margin: 24px 0 0; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 40px 0; }
  .hero { padding: 200px 0 40px; }
  .hero__col { margin-right: 0; }
  .why { padding: 80px 0 80px 40px; }
  .why__left { padding-top: 0; }
  .formcard { margin: -35px 0 0; padding: 32px; }
  .callout__num { font-size: 24px; }
  .split { padding: 80px 40px; }
  .split__grid { grid-template-columns: 1fr; gap: 40px; }
  .split__text, .split--rev .split__text { padding: 0 0 40px; }
  .split--rev .split__media { order: 0; padding-right: 0; }
  .split__media img { max-width: 75%; margin-inline: auto; }
  .locations { padding: 50px 40px; }
  .locations__grid { grid-template-columns: 1fr; gap: 40px; }
  /* Source swaps to a solid-navy variant (#fb24b8f) below 1025px */
  .estimate { margin-top: 0; padding: 80px 40px; background-image: none; background-color: var(--navy); }
  .estimate__grid { grid-template-columns: 1fr; gap: 30px; }
  .estimate p { padding-right: 0; }
  .footer-top { padding: 50px 100px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-col:last-child { padding-left: 0; }
  .footer-col h4 { text-align: center; }
  .footer-list li { justify-content: center; }
  .why__grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 1100px) {
  .navbar { display: none; }
  .burger { display: block; }
}

@media (max-width: 921px) {
  html { font-size: 91.2%; }
  h1 { font-size: 56px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
}

@media (max-width: 767px) {
  .container { max-width: 767px; }
  .topbar__in { font-size: 14px; justify-content: center; }
  .phonebox { display: none; }
  /* Mobile header: CTA drops out, logo centres, burger pins to the right. */
  .mainbar__in { position: relative; justify-content: center; }
  .mainbar__in .btn-grad { display: none; }
  .brand { order: 0; }
  .brand img { height: 132px; }
  .mainbar.is-stuck .brand img { height: 100px; }
  .burger { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); }
  .owlt-inner { grid-template-columns: 1fr; gap: 36px; }
  .owlt-right { order: -1; }
  .owlt-heading { font-size: 26px; }
  .owlt-wrap { padding: 48px 20px 56px; }
  .stat__num { font-size: 40px; }
  .stat { padding: 0 0 32px; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc { margin: 0; padding: 28px; }
  .services, .split, .locations, .estimate { padding-inline: 20px; }
  .loc-cols { gap: 24px; }
  .locations__map { padding-right: 0; }
  .footer-top { padding: 50px 10px; }
  .footer-bar__in { justify-content: center; text-align: center; }
  .callbar { display: flex; }
  body { padding-bottom: 66px; }
  .btn-row { gap: 16px; }
  .why { padding: 60px 20px; }
  .callout { margin-left: -20px; padding-left: 20px; }
  .hero { padding: 120px 0 60px; }
  .split__media img { max-width: 100%; }
}

@media (max-width: 544px) {
  html { font-size: 91.2%; }
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 22px; }
  h4 { font-size: 20px; }
  .eyebrow { font-size: 20px; }
  .btn { padding: 13px 22px; font-size: 15px; }
}

/* ============================================================
   REVIEWS / TESTIMONIALS
   Mirrors the Facebook reviews widget on paragonph.com: photo
   background, white heading, recommend summary, 3-up carousel.
   ============================================================ */
.reviews { position: relative; padding: 90px 40px 100px; overflow: hidden; }
.reviews__bg { position: absolute; inset: 0; background-size: cover; background-position: 50.7% 43.7%; z-index: 0; }
.reviews__in { position: relative; z-index: 1; }
.reviews__title { color: #fff; text-align: center; margin-bottom: 28px; }

.reviews__summary { display: flex; align-items: center; justify-content: center; gap: 18px; margin-bottom: 44px; text-decoration: none; }
.reviews__fb { width: 44px; height: 44px; flex: none; border-radius: 50%; background: #1877F2; display: grid; place-items: center; }
.reviews__fb svg { width: 22px; height: 22px; fill: #fff; }
.reviews__meta { display: block; color: #fff; }
.reviews__biz { display: block; font-size: 20px; line-height: 1.4; }
.reviews__pct { display: block; font-size: 17px; font-weight: 700; }
.reviews__basis { display: block; font-size: 14px; opacity: .9; }

.carousel { position: relative; padding: 0 56px 44px; }
.carousel__viewport { overflow: hidden; }
.carousel__track { display: flex; gap: 24px; transition: transform .5s var(--ease); }
.carousel__arrow {
  position: absolute; top: 42%; transform: translateY(-50%);
  width: 40px; height: 40px; border: 0; background: transparent; cursor: pointer; padding: 0;
  display: grid; place-items: center; z-index: 2;
}
.carousel__arrow svg { width: 26px; height: 26px; fill: #fff; }
.carousel__arrow--prev { left: 0; }
.carousel__arrow--prev svg { transform: rotate(90deg); }
.carousel__arrow--next { right: 0; }
.carousel__arrow--next svg { transform: rotate(-90deg); }
.carousel__arrow[disabled] { opacity: .35; cursor: default; }

.carousel__dots { display: flex; justify-content: center; gap: 10px; position: absolute; left: 0; right: 0; bottom: 0; }
.carousel__dots button { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: rgba(255,255,255,.45); cursor: pointer; }
.carousel__dots button[aria-selected="true"] { background: #fff; }

.review { background: #fff; padding: 30px 24px; text-align: center; display: flex; flex-direction: column; flex: none; }
.review__avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; margin: 0 auto 18px; display: block; }
.review__badge { display: flex; align-items: center; justify-content: center; gap: 8px; color: var(--body-fg); margin-bottom: 16px; }
.review__badge svg { width: 15px; height: 15px; fill: var(--orange-deep); }
.review__quote { font-size: 16px; line-height: 1.5; margin-bottom: 16px; flex: 1; }
.review__more { display: inline-flex; align-items: center; justify-content: center; gap: 6px; color: var(--orange-deep); font-size: 15px; margin-bottom: 22px; }
.review__more svg { width: 11px; height: 11px; fill: currentColor; }
.review__by { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: var(--body-fg); }
.review__by svg { width: 16px; height: 16px; fill: #1877F2; flex: none; }

@media (max-width: 1024px) { .carousel { padding: 0 44px 44px; } }
@media (max-width: 767px) {
  .reviews { padding: 60px 20px 70px; }
  .carousel { padding: 0 34px 40px; }
  .reviews__summary { gap: 12px; }
}

/* Attribution for CC BY / CC BY-SA town photos on the service-area pages. */
.photo-credit { max-width: var(--container); margin: 0 auto; padding: 0 20px 28px; font-size: 13px; color: var(--body-fg); opacity: .75; }
.photo-credit a { color: inherit; text-decoration: underline; }
