/* Purified Group - design system */

:root {
  --orange: #FFA503;
  --orange-dark: #E89500;
  --orange-a11y: #8A5600;
  --slate: #36454F;
  --slate-deep: #1C1C1C;
  --darker: #263238;
  --ink: #1C2226;
  --paper: #FAF8F4;
  --paper-alt: #F0EDE7;
  --line: #E4E0D8;
  --white: #FFFFFF;
  --success: #188bf6;
  --font-display: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius: 20px;
  --shadow-sm: 0 1px 3px rgba(28,34,38,.08), 0 1px 2px rgba(28,34,38,.06);
  --shadow-md: 0 8px 24px rgba(28,34,38,.10), 0 2px 8px rgba(28,34,38,.06);
  --shadow-lg: 0 24px 60px rgba(28,34,38,.18);
  --container: 1180px;
}

@font-face {
  font-family: 'Sora';
  src: url('/fonts/sora-latin-var.woff2') format('woff2-variations'), url('/fonts/sora-latin-var.woff2') format('woff2');
  font-weight: 300 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('/fonts/inter-latin-var.woff2') format('woff2-variations'), url('/fonts/inter-latin-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

* , *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; max-width: 100vw; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * , *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.12;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
  color: var(--slate-deep);
}
h1 { font-weight: 800; }
h2 { font-weight: 700; }
h3 { font-weight: 700; }
p { margin: 0 0 1em; }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; background: var(--slate-deep); color: #fff;
  padding: 12px 18px; border-radius: 8px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--orange-dark);
  outline-offset: 2px;
}

/* Buttons , header/footer site chrome only (outside #pg). Matches the
   .btn-orange recipe used sitewide inside #pg content, so it's one button
   system, not a different era. */
.btn {
  display: inline-block; padding: 15px 36px; border-radius: 9999px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: .09em; text-transform: uppercase; text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn-orange {
  background: linear-gradient(180deg, #FFA503 0%, #E89500 100%); color: #fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 4px 12px rgba(0,0,0,.12), 0 8px 24px rgba(255,165,3,.18);
}
.btn-orange:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.15), 0 8px 24px rgba(0,0,0,.18), 0 12px 36px rgba(255,165,3,.22);
}
.btn-dark {
  background: var(--slate); color: var(--white); display: inline-block; padding: 15px 36px; border-radius: 9999px;
  font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; text-decoration: none; border: none; cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.16);
}
.btn-dark:hover { background: var(--darker); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.18), 0 12px 40px rgba(0,0,0,.28); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 100; background: rgba(250,248,244,.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 6px 24px; gap: 20px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.brand img { height: 90px; width: auto; flex-shrink: 0; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: var(--slate-deep); }
.main-nav { display: none; }
.main-nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.main-nav a {
  display: block; padding: 10px 14px; text-decoration: none; font-weight: 600; font-size: .93rem;
  color: var(--slate); border-radius: 8px; transition: background .15s, color .15s;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { background: var(--paper-alt); color: var(--slate-deep); }
.main-nav li { position: relative; }
.nav-services__trigger {
  display: flex; align-items: center; gap: 6px; padding: 10px 14px; font: inherit; font-weight: 600; font-size: .93rem;
  color: var(--slate); background: none; border: none; border-radius: 8px; cursor: pointer; transition: background .15s, color .15s;
}
.nav-services__trigger:hover, .nav-services.is-open .nav-services__trigger { background: var(--paper-alt); color: var(--slate-deep); }
.nav-services__caret { transition: transform .2s ease; flex-shrink: 0; }
.nav-services:hover .nav-services__caret, .nav-services.is-open .nav-services__caret { transform: rotate(180deg); }
.main-nav .nav-services__menu {
  list-style: none; margin: 0; padding: 8px; position: absolute; top: calc(100% + 6px); left: 0; width: 260px;
  display: flex; flex-direction: column; gap: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08), 0 16px 48px rgba(0,0,0,.12);
  opacity: 0; visibility: hidden; transform: translateY(-6px); transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 10;
}
.nav-services:hover .nav-services__menu,
.nav-services:focus-within .nav-services__menu,
.nav-services.is-open .nav-services__menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-services__menu a {
  display: block; padding: 10px 12px; border-radius: 8px; text-decoration: none; font-weight: 600; font-size: .89rem;
  color: var(--slate); white-space: nowrap;
}
.nav-services__menu a:hover, .nav-services__menu a[aria-current="page"] { background: var(--paper-alt); color: var(--slate-deep); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.header-phone { display: none; align-items: center; gap: 8px; font-weight: 700; font-family: var(--font-display); color: var(--slate-deep); text-decoration: none; }
.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px;
  border-radius: 10px; border: 1px solid var(--line); background: var(--white); cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--slate-deep); position: relative; transition: transform .2s;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
@media (max-width: 479px) {
  .header-inner { padding: 6px 14px; gap: 10px; }
  .brand img { height: 56px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 16px; font-size: 11px; letter-spacing: .06em; }
  .nav-toggle { width: 36px; height: 36px; }
}
.mobile-nav {
  display: none; flex-direction: column; gap: 2px; padding: 8px 24px 20px; background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a { padding: 12px 8px; text-decoration: none; font-weight: 600; color: var(--slate); border-radius: 8px; }
.mobile-nav a:hover { background: var(--paper-alt); }
.mobile-nav__services { border-radius: 8px; }
.mobile-nav__services summary {
  padding: 12px 8px; font-weight: 600; color: var(--slate); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between;
}
.mobile-nav__services summary::-webkit-details-marker { display: none; }
.mobile-nav__services summary::after {
  content: ''; width: 8px; height: 8px; border-right: 1.6px solid var(--slate); border-bottom: 1.6px solid var(--slate);
  transform: rotate(45deg); transition: transform .2s ease; margin-right: 4px;
}
.mobile-nav__services[open] summary::after { transform: rotate(-135deg); }
.mobile-nav__services-list { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 8px 12px; }
.mobile-nav__services-list a { padding: 10px 8px; text-decoration: none; font-weight: 600; font-size: .93rem; color: var(--slate); border-radius: 8px; }
.mobile-nav__services-list a:hover { background: var(--paper-alt); }

@media (min-width: 960px) {
  .main-nav { display: block; }
  .header-phone { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* Footer - premium rebuild, 2026-07-21 (supersedes the hand-ported GHL footer) */
.ftr{
  background:#263238;
  color:#ffffff;
  padding:80px 32px 0;
  font-family:'Inter',sans-serif;
  border-top:3px solid var(--orange);
}
.ftr *{box-sizing:border-box;}
.ftr-inner{max-width:1400px;margin:0 auto;}
.ftr-top{display:grid;grid-template-columns:1.5fr 1fr 1fr 1.1fr;gap:56px;padding-bottom:56px;}
.ftr-col{min-width:0;}
.ftr-brand{min-width:0;}
.ftr-brand__logo-link{display:inline-block;margin-bottom:26px;}
.ftr-brand__logo{height:76px;width:auto;display:block;}
.ftr-brand__text{font-size:14px;line-height:1.7;margin:0 0 22px;color:rgba(255,255,255,.62);max-width:320px;}
.ftr-socials{display:flex;gap:10px;}
.ftr-socials a{
  width:38px;height:38px;border-radius:9999px;display:flex;align-items:center;justify-content:center;
  background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.1);transition:background .2s,border-color .2s,transform .2s;
}
.ftr-socials a:hover{background:rgba(255,165,3,.14);border-color:rgba(255,165,3,.4);transform:translateY(-2px);}
.ftr-socials img{width:16px;height:16px;display:block;filter:brightness(0) invert(1);}
.ftr-heading{
  font-family:'Sora',sans-serif;font-size:14px;font-weight:700;letter-spacing:.06em;text-transform:uppercase;
  color:#ffffff;margin:0 0 22px;position:relative;padding-bottom:14px;
}
.ftr-heading::after{content:'';position:absolute;left:0;bottom:0;width:28px;height:2px;background:#FFA503;}
.ftr-heading-sm{
  font-family:'Sora',sans-serif;font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;
  color:rgba(255,255,255,.85);margin:0 0 18px;
}
.ftr-list{list-style:none;padding:0;margin:0;}
.ftr-list li{margin:0 0 13px;}
.ftr-list a{color:rgba(255,255,255,.62);font-size:14px;text-decoration:none;transition:color .18s;}
.ftr-list a:hover{color:#FFA503;}
.ftr-contact-list{list-style:none;padding:0;margin:0 0 26px;}
.ftr-contact-list li{margin:0 0 16px;}
.ftr-contact-label{display:block;font-size:11px;font-weight:600;letter-spacing:.06em;text-transform:uppercase;color:rgba(255,255,255,.58);margin-bottom:4px;}
.ftr-contact-list a{color:#ffffff;font-size:14.5px;font-weight:600;text-decoration:none;transition:color .18s;}
.ftr-contact-list a:hover{color:#FFA503;}
.ftr-cta{
  display:inline-block;background:linear-gradient(180deg,#FFA503 0%,#E89500 100%);color:#ffffff;
  padding:14px 30px;border-radius:9999px;font-family:'Sora',sans-serif;font-size:12.5px;font-weight:700;
  letter-spacing:.08em;text-transform:uppercase;text-decoration:none;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 4px 12px rgba(0,0,0,.18),0 8px 24px rgba(255,165,3,.18);
  transition:transform .22s ease,box-shadow .22s ease;
}
.ftr-cta:hover{transform:translateY(-2px);box-shadow:inset 0 1px 0 rgba(255,255,255,.15),0 8px 24px rgba(0,0,0,.24),0 12px 36px rgba(255,165,3,.24);}

.ftr-areas{display:grid;grid-template-columns:2.4fr 1fr;gap:56px;padding:44px 0 48px;border-top:1px solid rgba(255,255,255,.08);}
.ftr-areas-list{list-style:none;padding:0;margin:0;column-count:4;column-gap:24px;}
.ftr-areas-list--res{column-count:4;}
.ftr-areas-list li{margin:0 0 9px;break-inside:avoid;}
.ftr-areas-list a{color:rgba(255,255,255,.42);font-size:12.5px;text-decoration:none;transition:color .18s;}
.ftr-areas-list a:hover{color:#FFA503;}
.ftr-areas-note{margin:34px 0 0;max-width:62ch;font-size:12.5px;line-height:1.65;color:rgba(255,255,255,.52);text-wrap:pretty;}
.ftr-areas-note a{color:#FFA503;text-decoration:none;font-weight:600;}
.ftr-areas-note a:hover{text-decoration:underline;}

.ftr-bottom{
  border-top:1px solid rgba(255,255,255,.08);padding:26px 0;
  display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:8px;
}
.ftr-bottom p{margin:0;font-size:13px;color:rgba(255,255,255,.45);}
.ftr-bottom__copy{color:rgba(255,255,255,.6);}
.ftr-bottom__credit a{color:#FFA503;text-decoration:none;font-weight:600;}
.ftr-bottom__credit a:hover{text-decoration:underline;}
/* The legal text is deliberately two lines, always: the copyright line, then
   the ABN and privacy link. Grouping them in one flex child keeps the
   NimbleDingo credit on its own side instead of space-between spreading three
   items across the row. */
.ftr-bottom__legalblock{display:flex;flex-direction:column;gap:4px;}
.ftr-bottom__legalline{white-space:nowrap;}

/* Privacy policy link. Sits in the legal line rather than a footer column on
   purpose: it is a compliance link, not a navigation destination. */
.ftr-bottom__legal{color:rgba(255,255,255,.6);text-decoration:underline;text-underline-offset:2px;}
.ftr-bottom__legal:hover{color:#FFA503;}

@media (max-width:1100px){
  .ftr-top{grid-template-columns:1fr 1fr;gap:40px 32px;}
  .ftr-brand{grid-column:1 / -1;}
  .ftr-areas{grid-template-columns:1fr;gap:36px;}
  .ftr-areas-list,.ftr-areas-list--res{column-count:3;}
}
@media (max-width:640px){
  .ftr{padding:56px 20px 0;}
  .ftr-top{grid-template-columns:1fr;gap:36px;padding-bottom:40px;}
  .ftr-brand__text{max-width:none;}
  .ftr-areas{padding:32px 0 36px;gap:28px;}
  .ftr-areas-list,.ftr-areas-list--res{column-count:2;}
  .ftr-areas-note{margin-top:26px;}
  .ftr-cta{display:block;text-align:center;}
  .ftr-bottom{flex-direction:column;align-items:flex-start;gap:6px;padding:22px 0;}
}
