/* ==========================================================
   DALTON PLUMBING & GAS — Newcastle NSW
   Stylesheet. Built to convert, not to win design awards.
   ----------------------------------------------------------
   0  Tokens
   1  Base
   2  Layout
   3  Type
   4  Buttons
   5  Header / nav
   6  Hero + enquiry form
   7  Claims / trust
   8  Services
   9  Content blocks
   10 Reviews
   11 Gallery / jobs
   12 Pricing tables
   13 FAQ
   14 Forms
   15 Footer
   16 Utilities
   17 Responsive
   ========================================================== */

/* ---------- 0  TOKENS ---------- */
:root {
  --navy:      #12305A;
  --navy-d:    #0B2141;
  --navy-l:    #1D4780;
  --navy-xl:   #2B5A9B;

  --orange:    #EE6A11;
  --orange-d:  #C8550A;
  --orange-l:  #FF8534;
  --yellow:    #FFC400;
  --red:       #C8261C;
  --red-d:     #A11C14;
  --green:     #1E7F45;

  /* Text — dark and readable. No thin grey. */
  --ink:       #1B2430;
  --ink-2:     #3B4756;
  --ink-3:     #5A6675;

  --line:      #D3DAE3;
  --line-d:    #B4BFCC;
  --grey:      #EEF1F5;
  --grey-2:    #E3E8EF;
  --white:     #FFFFFF;

  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1200px;
  --gutter: 16px;
  --pad: clamp(38px, 4.6vw, 62px);
  --r: 4px;
  --header-h: 72px;

  --sh: 0 1px 3px rgba(15,30,50,.14);
  --sh-2: 0 2px 10px rgba(15,30,50,.16);
  --sh-3: 0 6px 26px rgba(11,25,45,.24);
}

/* ---------- 1  BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16.5px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }

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

h1,h2,h3,h4,h5 { margin: 0; font-weight: 800; line-height: 1.14; letter-spacing: -.015em; color: var(--ink); }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
a { color: var(--navy-l); text-decoration: none; }
a:hover { text-decoration: underline; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
strong, b { font-weight: 700; }

::selection { background: var(--orange); color: #fff; }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }

/* ---------- 2  LAYOUT ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: 820px; }

.sec { padding-block: var(--pad); }
.sec--tight { padding-block: clamp(26px, 3vw, 40px); }
.sec--grey { background: var(--grey); }
.sec--navy { background: var(--navy); color: #fff; }
.sec--navy h1, .sec--navy h2, .sec--navy h3, .sec--navy h4 { color: #fff; }
.sec--navy p { color: #D2DCE8; }
.sec--line-top { border-top: 1px solid var(--line); }

.cols { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }

.main-side {
  display: grid;
  grid-template-columns: minmax(0,1fr) 372px;
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
}
.side-sticky { position: sticky; top: calc(var(--header-h) + 14px); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(22px, 3.4vw, 46px);
  align-items: center;
}
.split--top { align-items: start; }
.split--60 { grid-template-columns: 1.35fr 1fr; }
.split--40 { grid-template-columns: 1fr 1.35fr; }

/* ---------- 3  TYPE ---------- */
.h1 { font-size: clamp(2rem, 4.6vw, 3.1rem); line-height: 1.06; letter-spacing: -.025em; }
.h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.12; letter-spacing: -.02em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.2; }
.h4 { font-size: 1.0625rem; line-height: 1.3; }

.sec-head { margin-bottom: clamp(20px, 2.6vw, 32px); }
.sec-head p { margin-top: 10px; color: var(--ink-2); max-width: 74ch; }
.sec-head--center { text-align: center; }
.sec-head--center p { margin-inline: auto; }

.kicker {
  display: block;
  font-size: .8125rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
}
.sec--navy .kicker { color: var(--yellow); }

.lead { font-size: 1.125rem; line-height: 1.55; color: var(--ink-2); }
.prose p + p { margin-top: 14px; }
.prose h2 { margin-top: 30px; margin-bottom: 10px; }
.prose h3 { margin-top: 24px; margin-bottom: 8px; }
.prose ul { margin: 12px 0; padding-left: 0; list-style: none; }
.prose ul li { position: relative; padding-left: 26px; margin-bottom: 8px; }
.prose ul li::before {
  content: "";
  position: absolute; left: 0; top: .45em;
  width: 13px; height: 8px;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.prose a { text-decoration: underline; font-weight: 600; }

.small { font-size: .875rem; }
.muted { color: var(--ink-2); }
.mono { font-family: ui-monospace, Menlo, Consolas, monospace; font-size: .8em; letter-spacing: .03em; }
.up { text-transform: uppercase; letter-spacing: .06em; }

/* ---------- 4  BUTTONS — big and blunt ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 17px 30px;
  font-size: 1.0625rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .01em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  border: 0;
  border-bottom: 4px solid var(--orange-d);
  border-radius: var(--r);
  cursor: pointer;
  text-align: center;
  transition: background-color .12s linear, transform .08s linear;
  text-decoration: none !important;
}
.btn:hover { background: var(--orange-l); color: #fff; }
.btn:active { transform: translateY(2px); border-bottom-width: 2px; }
.btn svg { flex: none; }

.btn--navy { background: var(--navy); border-bottom-color: var(--navy-d); }
.btn--navy:hover { background: var(--navy-l); }

.btn--red { background: var(--red); border-bottom-color: var(--red-d); }
.btn--red:hover { background: #E03327; }

.btn--green { background: var(--green); border-bottom-color: #135C31; }
.btn--green:hover { background: #269B55; }

.btn--white {
  background: #fff; color: var(--navy);
  border: 2px solid var(--line-d); border-bottom-width: 4px;
}
.btn--white:hover { background: var(--grey); color: var(--navy); }

.btn--outline {
  background: transparent; color: #fff;
  border: 2px solid rgba(255,255,255,.75); border-bottom-width: 2px;
}
.btn--outline:hover { background: #fff; color: var(--navy); }

.btn--lg { padding: 21px 38px; font-size: 1.1875rem; }
.btn--sm { padding: 11px 18px; font-size: .875rem; }
.btn--block { display: flex; width: 100%; }

.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.btn-row--stack { flex-direction: column; }

.btn__sub {
  display: block;
  font-size: .6875rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  opacity: .85;
  margin-top: 3px;
}

/* Phone button with number spelled out */
.btn-phone { flex-direction: column; gap: 2px; padding-block: 13px; }
.btn-phone .n { font-size: 1.3125rem; letter-spacing: -.01em; }
.btn-phone .l { font-size: .6875rem; letter-spacing: .1em; opacity: .9; }

.tlink { font-weight: 700; color: var(--navy-l); text-decoration: underline; display: inline-flex; align-items: center; gap: 6px; }
.tlink:hover { color: var(--orange); }

/* ---------- 5  HEADER ---------- */
.topbar {
  background: var(--navy-d);
  color: #C6D4E4;
  font-size: .8125rem;
  font-weight: 600;
}
.topbar__in {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; min-height: 36px; flex-wrap: wrap;
}
.topbar ul { display: flex; gap: 18px; list-style: none; flex-wrap: wrap; }
.topbar li { display: flex; align-items: center; gap: 6px; }
.topbar svg { flex: none; color: var(--yellow); }
.topbar a { color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--yellow); text-decoration: underline; }
.topbar__open { color: #6FD79B; display: flex; align-items: center; gap: 6px; font-weight: 700; }

.hdr {
  position: sticky; top: 0; z-index: 50;
  background: #fff;
  border-bottom: 3px solid var(--navy);
}
.hdr.is-stuck { box-shadow: var(--sh-2); }
.nav { display: flex; align-items: center; gap: 20px; min-height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; flex: none; text-decoration: none !important; }
.logo__mark { width: 44px; height: 44px; flex: none; }
.logo__txt { line-height: 1.05; }
.logo__name {
  display: block;
  font-size: 1.25rem; font-weight: 800; color: var(--navy);
  letter-spacing: -.03em; text-transform: uppercase;
}
.logo__sub {
  display: block;
  font-size: .625rem; font-weight: 700; color: var(--ink-2);
  letter-spacing: .14em; text-transform: uppercase; margin-top: 2px;
}

.nav__links { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav__links a {
  display: block; padding: 10px 13px;
  font-size: .9375rem; font-weight: 700; color: var(--ink);
  text-decoration: none; border-radius: var(--r);
}
.nav__links a:hover { background: var(--grey); color: var(--navy); }
.nav__links a[aria-current="page"] { color: var(--orange); box-shadow: inset 0 -3px 0 var(--orange); border-radius: 0; }

.nav__cta { display: flex; align-items: center; gap: 10px; flex: none; margin-left: auto; }
.nav__num { text-align: right; line-height: 1.1; text-decoration: none !important; }
.nav__num small { display: block; font-size: .625rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-2); }
.nav__num b { display: block; font-size: 1.3125rem; font-weight: 800; color: var(--navy); letter-spacing: -.02em; }
.nav__num:hover b { color: var(--orange); }

.burger {
  display: none; width: 48px; height: 44px;
  border: 2px solid var(--line-d); border-radius: var(--r);
  place-items: center; flex: none; background: #fff;
}
.burger span { display: block; width: 20px; height: 2.5px; background: var(--navy); border-radius: 2px; }
.burger span + span { margin-top: 4px; }
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 45;
  background: var(--navy-d); color: #fff;
  padding: calc(var(--header-h) + 22px) var(--gutter) 30px;
  overflow-y: auto; display: none;
}
.drawer.is-open { display: block; }
.drawer ul { list-style: none; }
.drawer a {
  display: block; padding: 15px 0; color: #fff; text-decoration: none;
  font-size: 1.25rem; font-weight: 700;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.drawer a:hover { color: var(--yellow); }
.drawer__cta { display: grid; gap: 10px; margin-top: 22px; }

/* Sticky mobile call bar */
.callbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; gap: 6px; padding: 8px 8px calc(8px + env(safe-area-inset-bottom));
  background: var(--navy-d); border-top: 2px solid var(--orange);
}
.callbar .btn { flex: 1; padding: 14px 8px; font-size: .9375rem; border-bottom-width: 3px; }

/* ---------- 6  HERO ---------- */
.hero { position: relative; background: var(--navy-d); }
.hero__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 32%;
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(8,20,38,.93) 0%, rgba(8,20,38,.86) 42%, rgba(8,20,38,.55) 68%, rgba(8,20,38,.42) 100%);
}
.hero__in {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) 396px;
  gap: clamp(24px, 3vw, 48px);
  align-items: center;
  padding-block: clamp(30px, 3.6vw, 52px);
}
.hero__copy { color: #fff; max-width: 640px; }
.hero__copy h1 { color: #fff; font-size: clamp(2.15rem, 5.4vw, 3.6rem); line-height: 1.02; letter-spacing: -.03em; }
.hero__sub {
  font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
  color: #DCE5F0; margin-top: 14px; font-weight: 500; max-width: 52ch;
}
.hero__loc {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .875rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 12px;
}
.hero__loc svg { flex: none; }

/* Stacked plain claims — right under the H1 */
.claims { list-style: none; margin-top: 20px; display: grid; gap: 9px; }
.claims li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 1.0625rem; font-weight: 700; color: #fff;
}
.claims .tick {
  flex: none; width: 24px; height: 24px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center; margin-top: 1px;
}
.hero .btn-row { margin-top: 24px; }
.hero__note { margin-top: 14px; font-size: .875rem; color: #B9C8DA; }
.hero__note b { color: #fff; }

/* Enquiry form card sitting in the hero */
.quote-card {
  background: #fff;
  border-radius: var(--r);
  border-top: 6px solid var(--orange);
  box-shadow: var(--sh-3);
  padding: 22px;
}
.quote-card__hd { margin-bottom: 14px; }
.quote-card__hd h2 { font-size: 1.375rem; letter-spacing: -.02em; }
.quote-card__hd p { font-size: .875rem; color: var(--ink-2); margin-top: 5px; }
.quote-card__foot {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--ink-2); display: flex; align-items: center; gap: 7px;
}
.quote-card__foot svg { flex: none; color: var(--green); }

/* Page hero (inner pages) */
.phero { background: var(--navy); color: #fff; padding-block: clamp(24px, 3vw, 40px); position: relative; }
.phero--img { background: var(--navy-d); }
.phero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.phero__scrim { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,20,38,.94), rgba(8,20,38,.72)); }
.phero__in { position: relative; }
.phero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.phero p { color: #D2DCE8; margin-top: 10px; max-width: 70ch; font-size: 1.0625rem; }

.crumbs { display: flex; gap: 7px; list-style: none; font-size: .8125rem; color: #A9BCD2; margin-bottom: 10px; flex-wrap: wrap; }
.crumbs a { color: #A9BCD2; text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs li:not(:last-child)::after { content: "›"; margin-left: 7px; }
.crumbs [aria-current] { color: #fff; font-weight: 600; }

/* ---------- 7  CLAIMS / TRUST BARS ---------- */
.claimbar { background: var(--navy); color: #fff; border-top: 3px solid var(--orange); }
.claimbar__grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.claimbar__cell {
  display: flex; align-items: center; gap: 11px;
  padding: 15px 18px;
  border-right: 1px solid rgba(255,255,255,.16);
}
.claimbar__cell:last-child { border-right: 0; }
.claimbar__cell svg { flex: none; color: var(--yellow); }
.claimbar__t { display: block; font-size: .9375rem; font-weight: 800; line-height: 1.2; }
.claimbar__d { display: block; font-size: .75rem; color: #AFC2D8; margin-top: 2px; }

.statbar { background: var(--grey); border-block: 1px solid var(--line); }
.statbar__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.statbar__cell { padding: 18px 16px; text-align: center; border-right: 1px solid var(--line); }
.statbar__cell:last-child { border-right: 0; }
.statbar__k { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.statbar__l { font-size: .8125rem; font-weight: 600; color: var(--ink-2); margin-top: 6px; }

/* Google review strip */
.grev {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  flex-wrap: wrap; padding: 14px 16px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
}
.grev__score { font-size: 1.75rem; font-weight: 800; color: var(--ink); letter-spacing: -.03em; }
.grev__txt { font-size: .9375rem; font-weight: 600; color: var(--ink-2); }
.grev__txt b { color: var(--ink); }

.stars { display: inline-flex; gap: 1px; color: #FFA800; }
.stars svg { flex: none; }

/* Badge row */
.badges { display: flex; flex-wrap: wrap; gap: 10px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  font-size: .8125rem; font-weight: 700; color: var(--ink);
}
.badge svg { flex: none; color: var(--navy); }
.badge--green svg { color: var(--green); }
.badge--orange svg { color: var(--orange); }

/* ---------- 8  SERVICES ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.svc {
  background: #fff; display: flex; flex-direction: column;
  text-decoration: none !important; color: inherit;
  transition: background-color .12s linear;
}
.svc:hover { background: #FFF8F2; }
.svc__pic { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--navy); }
.svc__pic img { width: 100%; height: 100%; object-fit: cover; }
.svc__pic::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(9,22,40,.55), transparent 55%);
}
.svc__cat {
  position: absolute; left: 0; bottom: 0; z-index: 1;
  background: var(--orange); color: #fff;
  padding: 6px 12px; font-size: .6875rem; font-weight: 800;
  letter-spacing: .09em; text-transform: uppercase;
}
.svc__body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.svc__body h3 { font-size: 1.1875rem; margin-bottom: 7px; color: var(--navy); }
.svc__body p { font-size: .9375rem; color: var(--ink-2); }
.svc__ul { list-style: none; margin: 12px 0 0; display: grid; gap: 6px; font-size: .875rem; }
.svc__ul li { position: relative; padding-left: 22px; color: var(--ink-2); }
.svc__ul li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 11px; height: 6px;
  border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.svc__foot {
  margin-top: auto; padding-top: 14px;
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.svc__from { font-size: .8125rem; font-weight: 700; color: var(--ink-2); }
.svc__from b { display: block; font-size: 1.125rem; color: var(--navy); letter-spacing: -.02em; }
.svc__more { font-size: .875rem; font-weight: 800; color: var(--orange); text-transform: uppercase; letter-spacing: .04em; }
.svc:hover .svc__more { text-decoration: underline; }

/* Compact linked list of jobs we do */
.joblist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 1px; background: var(--line); border: 1px solid var(--line); }
.joblist a {
  background: #fff; padding: 12px 15px; font-size: .9375rem; font-weight: 600;
  color: var(--ink); text-decoration: none; display: flex; align-items: center; gap: 9px;
  border-bottom: 1px solid var(--line);
}
.joblist a:hover { background: var(--navy); color: #fff; }
.joblist a::before {
  content: ""; flex: none; width: 7px; height: 7px; background: var(--orange); border-radius: 50%;
}

/* ---------- 9  CONTENT BLOCKS ---------- */
.box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r); padding: clamp(18px, 2.2vw, 26px);
}
.box--grey { background: var(--grey); }
.box--navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.box--navy h2, .box--navy h3 { color: #fff; }
.box--navy p { color: #D2DCE8; }

.calloutbox {
  border-left: 5px solid var(--orange);
  background: #FFF6EE;
  padding: 16px 18px;
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .9688rem;
}
.calloutbox--red { border-left-color: var(--red); background: #FDF1F0; }
.calloutbox--green { border-left-color: var(--green); background: #F0F8F3; }
.calloutbox strong { display: block; margin-bottom: 4px; }

.figure { border: 1px solid var(--line); background: var(--grey); }
.figure img { width: 100%; }
.figure figcaption {
  padding: 10px 14px; font-size: .8125rem; color: var(--ink-2);
  border-top: 1px solid var(--line); background: #fff;
}

/* Numbered steps — plain, no circles-in-a-row cliché */
.steps { list-style: none; counter-reset: s; display: grid; gap: 0; border-top: 1px solid var(--line); }
.steps li {
  counter-increment: s;
  display: grid; grid-template-columns: 44px 1fr; gap: 14px;
  padding: 16px 0; border-bottom: 1px solid var(--line);
}
.steps li::before {
  content: counter(s);
  width: 36px; height: 36px; border-radius: var(--r);
  background: var(--navy); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 1.0625rem;
}
.steps h3 { font-size: 1.0625rem; margin-bottom: 4px; }
.steps p { font-size: .9375rem; color: var(--ink-2); }

/* Why-us list, two columns of ticks */
.whylist { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 14px 26px; }
.whylist li { display: flex; gap: 11px; align-items: flex-start; }
.whylist .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center; margin-top: 1px;
}
.whylist h3 { font-size: 1rem; margin-bottom: 3px; }
.whylist p { font-size: .9063rem; color: var(--ink-2); }

/* Spec table */
.spec { list-style: none; border-top: 1px solid var(--line); }
.spec li {
  display: grid; grid-template-columns: 190px 1fr; gap: 14px;
  padding: 11px 0; border-bottom: 1px solid var(--line); font-size: .9375rem;
}
.spec .k { font-weight: 700; color: var(--ink-2); }
.spec .v { font-weight: 600; }

/* ---------- 10  REVIEWS ---------- */
.rev {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r);
  padding: 18px; display: flex; flex-direction: column; gap: 11px; height: 100%;
}
.rev__top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.rev__txt { font-size: .9688rem; color: var(--ink); }
.rev__job {
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
  color: var(--orange);
}
.rev__who { display: flex; align-items: center; gap: 10px; margin-top: auto; padding-top: 11px; border-top: 1px solid var(--line); }
.av {
  width: 40px; height: 40px; border-radius: 50%; flex: none;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .8125rem;
  background: var(--navy-l);
}
.av--1 { background: #2E5C8A; } .av--2 { background: #A3541F; } .av--3 { background: #2C7A55; }
.av--4 { background: #5C4B8A; } .av--5 { background: #8A2F3F; } .av--6 { background: #3F5A6B; }
.rev__name { font-weight: 800; font-size: .9375rem; }
.rev__meta { font-size: .78rem; color: var(--ink-2); }
.rev__src {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  color: var(--ink-2);
}

.rev-summary {
  display: grid; grid-template-columns: auto 1fr; gap: clamp(20px,3vw,40px);
  align-items: center;
}
.rev-score { text-align: center; padding-right: clamp(20px,3vw,40px); border-right: 1px solid var(--line); }
.rev-score__n { font-size: clamp(3rem,6vw,4.4rem); font-weight: 800; letter-spacing: -.05em; line-height: .9; color: var(--ink); }
.rev-score__c { font-size: .875rem; color: var(--ink-2); margin-top: 8px; }
.rev-bars { display: grid; gap: 7px; }
.rev-bar { display: grid; grid-template-columns: 42px 1fr 40px; gap: 10px; align-items: center; font-size: .8125rem; font-weight: 600; }
.rev-bar__t { height: 9px; background: var(--grey-2); border-radius: 2px; overflow: hidden; }
.rev-bar__f { height: 100%; background: #FFA800; width: 0; transition: width 1s ease-out; }
.rev-bar__n { text-align: right; color: var(--ink-2); }

.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 16px; border: 2px solid var(--line-d); border-radius: var(--r);
  background: #fff; font-size: .875rem; font-weight: 700; color: var(--ink-2);
}
.chip:hover { border-color: var(--navy); color: var(--navy); }
.chip.is-on { background: var(--navy); border-color: var(--navy); color: #fff; }

/* Scrolling review strip */
.marquee { overflow: hidden; }
.marquee__t { display: flex; gap: 14px; width: max-content; animation: mq 60s linear infinite; }
.marquee:hover .marquee__t { animation-play-state: paused; }
@keyframes mq { to { transform: translateX(-50%); } }
.marquee .rev { width: 340px; flex: none; }

/* ---------- 11  GALLERY / JOBS ---------- */
.jobs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.job { border: 1px solid var(--line); background: #fff; }
.job__pic { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--navy); }
.job__pic img { width: 100%; height: 100%; object-fit: cover; }
.job__tag {
  position: absolute; top: 0; left: 0;
  background: var(--navy); color: #fff; padding: 5px 11px;
  font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em;
}
.job__body { padding: 13px 15px; }
.job__body h3 { font-size: 1rem; margin-bottom: 5px; }
.job__body p { font-size: .875rem; color: var(--ink-2); }
.job__meta {
  margin-top: 10px; padding-top: 10px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 10px; font-size: .78rem; color: var(--ink-2); font-weight: 600;
}
.job__meta b { color: var(--navy); }

/* ---------- 12  PRICING ---------- */
.ptable { width: 100%; border-collapse: collapse; background: #fff; font-size: .9375rem; }
.ptable th, .ptable td { padding: 13px 16px; text-align: left; border-bottom: 1px solid var(--line); }
.ptable thead th {
  background: var(--navy); color: #fff; font-size: .75rem;
  text-transform: uppercase; letter-spacing: .08em; font-weight: 800; white-space: nowrap;
}
.ptable tbody tr:nth-child(even) { background: #F8FAFC; }
.ptable tbody tr:hover { background: #FFF6EE; }
.ptable td.price { font-weight: 800; color: var(--navy); white-space: nowrap; }
.tbl-wrap { overflow-x: auto; border: 1px solid var(--line); }
.ptable { min-width: 560px; }

.pcards { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.pcard { border: 1px solid var(--line); background: #fff; display: flex; flex-direction: column; }
.pcard--hi { border: 2px solid var(--orange); }
.pcard__hd { background: var(--grey); padding: 14px 18px; border-bottom: 1px solid var(--line); }
.pcard--hi .pcard__hd { background: var(--orange); color: #fff; border-bottom-color: var(--orange); }
.pcard--hi .pcard__hd h3 { color: #fff; }
.pcard__hd h3 { font-size: 1.0625rem; }
.pcard__hd span { font-size: .78rem; font-weight: 700; opacity: .85; }
.pcard__amt { padding: 18px; border-bottom: 1px solid var(--line); }
.pcard__amt b { font-size: 2.25rem; font-weight: 800; letter-spacing: -.04em; color: var(--navy); }
.pcard__amt small { font-size: .875rem; color: var(--ink-2); font-weight: 600; }
.pcard__body { padding: 16px 18px; flex: 1; }
.pcard__body ul { list-style: none; display: grid; gap: 8px; font-size: .9063rem; }
.pcard__body li { position: relative; padding-left: 24px; }
.pcard__body li::before {
  content: ""; position: absolute; left: 0; top: .42em;
  width: 11px; height: 6px; border-left: 2.5px solid var(--green); border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}
.pcard__ft { padding: 0 18px 18px; }

/* ---------- 13  FAQ ---------- */
.faq { border-top: 2px solid var(--navy); }
.faq__i { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 16px 0; text-align: left; font-size: 1.0625rem; font-weight: 700; color: var(--ink);
}
.faq__q:hover { color: var(--orange); }
.faq__ic {
  flex: none; width: 30px; height: 30px; border-radius: var(--r);
  background: var(--navy); color: #fff; display: grid; place-items: center; position: relative;
}
.faq__ic::before, .faq__ic::after { content: ""; position: absolute; background: #fff; border-radius: 1px; }
.faq__ic::before { width: 13px; height: 2.5px; }
.faq__ic::after { width: 2.5px; height: 13px; transition: transform .18s linear; }
.faq__i.is-open .faq__ic { background: var(--orange); }
.faq__i.is-open .faq__ic::after { transform: scaleY(0); }
.faq__a { overflow: hidden; height: 0; transition: height .22s ease-out; }
.faq__a > div { padding-bottom: 18px; color: var(--ink-2); max-width: 80ch; }
.faq__a p + p { margin-top: 10px; }

/* ---------- 14  FORMS ---------- */
.form { display: grid; gap: 12px; }
.f { display: grid; gap: 5px; }
.f label { font-size: .8125rem; font-weight: 800; color: var(--ink); }
.f .req { color: var(--red); }
.f2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.inp, .sel, .txt {
  width: 100%; padding: 13px 14px;
  font: inherit; font-size: 1rem; color: var(--ink);
  background: #fff; border: 2px solid var(--line-d); border-radius: var(--r);
  appearance: none;
}
.txt { min-height: 104px; resize: vertical; }
.inp::placeholder, .txt::placeholder { color: #7C8794; }
.inp:focus, .sel:focus, .txt:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 3px rgba(238,106,17,.18); }
.sel {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='8' fill='none'%3E%3Cpath d='M1 1l5.5 5.5L12 1' stroke='%233B4756' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px;
}

.urgency { display: grid; grid-template-columns: repeat(3,1fr); gap: 7px; }
.urgency label { position: relative; display: block; cursor: pointer; }
.urgency input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.urgency span {
  display: block; text-align: center; padding: 11px 6px;
  border: 2px solid var(--line-d); border-radius: var(--r);
  font-size: .8125rem; font-weight: 800; color: var(--ink-2); background: #fff;
}
.urgency input:checked + span { border-color: var(--orange); background: #FFF3E9; color: var(--orange-d); }
.urgency input:focus-visible + span { outline: 3px solid var(--orange); outline-offset: 2px; }

.check { display: flex; gap: 9px; align-items: flex-start; font-size: .8125rem; color: var(--ink-2); cursor: pointer; }
.check input { width: 18px; height: 18px; flex: none; margin-top: 1px; accent-color: var(--orange); }

.err { font-size: .78rem; font-weight: 700; color: var(--red); display: none; }
.f.bad .inp, .f.bad .sel, .f.bad .txt { border-color: var(--red); }
.f.bad .err { display: block; }

.ok-msg {
  display: none; padding: 24px; text-align: center;
  background: #F0F8F3; border: 2px solid var(--green); border-radius: var(--r);
}
.ok-msg.on { display: block; }
.ok-msg__ic { width: 54px; height: 54px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; margin: 0 auto 12px; }
.ok-msg h3 { margin-bottom: 6px; }
.ok-msg p { color: var(--ink-2); font-size: .9375rem; }

/* Big bottom enquiry block */
.enquire { background: var(--navy); color: #fff; }
.enquire__in { display: grid; grid-template-columns: 1fr 460px; gap: clamp(24px,3.4vw,52px); align-items: start; }
.enquire h2 { color: #fff; }
.enquire p { color: #D2DCE8; }
.enquire .form-shell { background: #fff; border-radius: var(--r); border-top: 6px solid var(--orange); padding: 22px; color: var(--ink); }
.enquire .form-shell h3 { color: var(--ink); }

.contact-line { display: flex; gap: 13px; align-items: flex-start; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.18); }
.contact-line:last-child { border-bottom: 0; }
.contact-line__ic { width: 40px; height: 40px; border-radius: var(--r); background: rgba(255,255,255,.12); display: grid; place-items: center; flex: none; color: var(--yellow); }
.contact-line__l { font-size: .6875rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: #9FB4CC; }
.contact-line__v { font-size: 1.125rem; font-weight: 800; margin-top: 2px; }
.contact-line__v a { color: #fff; text-decoration: none; }
.contact-line__v a:hover { color: var(--yellow); text-decoration: underline; }
.contact-line small { display: block; font-size: .8125rem; font-weight: 500; color: #B9C8DA; margin-top: 2px; }

/* Emergency banner */
.emerg-strip {
  background: var(--red); color: #fff;
  padding: 13px 0;
}
.emerg-strip__in { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; text-align: center; }
.emerg-strip b { font-size: 1.0625rem; font-weight: 800; }
.emerg-strip a { color: #fff; font-weight: 800; text-decoration: underline; white-space: nowrap; }

.dot {
  width: 9px; height: 9px; border-radius: 50%; background: #4ADE80; display: inline-block; flex: none;
  box-shadow: 0 0 0 0 rgba(74,222,128,.7); animation: pd 2s infinite;
}
@keyframes pd {
  0% { box-shadow: 0 0 0 0 rgba(74,222,128,.7); }
  70% { box-shadow: 0 0 0 7px rgba(74,222,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
}

/* ---------- 15  FOOTER ---------- */
.ftr { background: var(--navy-d); color: #C3D1E1; font-size: .9375rem; }
.ftr__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.25fr;
  gap: clamp(20px,3vw,40px); padding-block: clamp(30px,4vw,48px);
}
.ftr h4 { color: #fff; font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 13px; }
.ftr ul { list-style: none; display: grid; gap: 8px; }
.ftr a { color: #C3D1E1; text-decoration: none; }
.ftr a:hover { color: #fff; text-decoration: underline; }
.ftr__about p { margin-top: 12px; line-height: 1.6; max-width: 42ch; }
.ftr .logo__name { color: #fff; }
.ftr .logo__sub { color: #8FA5BE; }
.ftr__lic {
  margin-top: 14px; padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.18); border-radius: var(--r);
  font-size: .8125rem; line-height: 1.8;
}
.ftr__lic b { color: #fff; }
.ftr__bot {
  border-top: 1px solid rgba(255,255,255,.16); padding-block: 16px;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .8125rem;
}
.ftr__bot nav { display: flex; gap: 18px; flex-wrap: wrap; }
.social { display: flex; gap: 8px; margin-top: 14px; }
.social a {
  width: 38px; height: 38px; border-radius: var(--r);
  border: 1px solid rgba(255,255,255,.2); display: grid; place-items: center; color: #C3D1E1;
}
.social a:hover { background: var(--orange); border-color: var(--orange); color: #fff; }

.demo-note {
  background: #08172B; color: #7C8FA6; font-size: .78rem; text-align: center;
  padding: 12px 16px; line-height: 1.55; border-top: 1px solid rgba(255,255,255,.1);
}
.demo-note a { color: #A8BACE; text-decoration: underline; }

/* ---------- 16  UTILITIES ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
.skip { position: absolute; left: 10px; top: -60px; z-index: 100; background: var(--orange); color: #fff; padding: 11px 18px; font-weight: 800; }
.skip:focus { top: 0; }

.mt-0{margin-top:0}.mt-1{margin-top:8px}.mt-2{margin-top:14px}.mt-3{margin-top:20px}.mt-4{margin-top:28px}
.mb-2{margin-bottom:14px}.mb-3{margin-bottom:20px}.mb-4{margin-bottom:28px}
.tc { text-align: center; }
.nowrap { white-space: nowrap; }
.hide { display: none !important; }
.full { width: 100%; }
.rel { position: relative; }

.pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px; border-radius: 3px;
  font-size: .6875rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em;
}
.pill--green { background: #DCF3E6; color: #14663A; }
.pill--red { background: #FBE3E1; color: var(--red-d); }
.pill--orange { background: #FFEEDF; color: var(--orange-d); }
.pill--navy { background: #E1E9F4; color: var(--navy); }

hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }

/* ---------- 17  RESPONSIVE ---------- */
@media (max-width: 1080px) {
  .hero__in { grid-template-columns: 1fr; }
  .hero__copy { max-width: none; }
  .quote-card { max-width: 560px; }
  .main-side { grid-template-columns: 1fr; }
  .side-sticky { position: static; }
  .enquire__in { grid-template-columns: 1fr; }
  .svc-grid, .jobs, .pcards, .joblist { grid-template-columns: repeat(2, 1fr); }
  .ftr__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .nav__links, .nav__num { display: none; }
  .burger { display: grid; }
  /* Bottom call bar already carries Call + Quote, so free up header room */
  .nav__cta > .btn { display: none; }
  .nav { gap: 12px; }
  .callbar { display: flex; }
  body { padding-bottom: 68px; }
  .claimbar__grid { grid-template-columns: repeat(2, 1fr); }
  .claimbar__cell:nth-child(2n) { border-right: 0; }
  .claimbar__cell { border-bottom: 1px solid rgba(255,255,255,.16); }
  .statbar__grid { grid-template-columns: repeat(2, 1fr); }
  .statbar__cell:nth-child(2n) { border-right: 0; }
  .statbar__cell { border-bottom: 1px solid var(--line); }
  .split, .split--60, .split--40 { grid-template-columns: 1fr; }
  .whylist { grid-template-columns: 1fr; }
  .rev-summary { grid-template-columns: 1fr; }
  .rev-score { border-right: 0; border-bottom: 1px solid var(--line); padding-right: 0; padding-bottom: 18px; }
  .topbar ul li:nth-child(n+3) { display: none; }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .cols-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .svc-grid, .jobs, .pcards, .joblist, .cols-2, .cols-3, .cols-4 { grid-template-columns: 1fr; }
  .f2, .urgency { grid-template-columns: 1fr; }
  .urgency { grid-template-columns: repeat(3,1fr); }
  .ftr__grid { grid-template-columns: 1fr; }
  .spec li { grid-template-columns: 1fr; gap: 3px; }
  .steps li { grid-template-columns: 36px 1fr; gap: 11px; }
  .topbar ul { display: none; }
  .topbar__in { justify-content: center; }
  /* Keep the crew visible on mobile — dark enough for contrast, light enough to read as a photo */
  .hero__img { object-position: center 22%; }
  .hero__scrim { background: linear-gradient(180deg, rgba(8,20,38,.62) 0%, rgba(8,20,38,.80) 45%, rgba(8,20,38,.93) 100%); }
  .btn { padding: 16px 22px; font-size: 1rem; }
  .btn--lg { padding: 18px 26px; font-size: 1.0625rem; }
  .marquee .rev { width: 280px; }
  .grev { gap: 8px; }
}

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

@media print {
  .hdr, .topbar, .callbar, .drawer, .ftr, .enquire { display: none !important; }
}
