:root{
  --bg:#F6F7F8;
  --surface:#FFFFFF;
  --card:#FFFFFF;
  --text:#222021;
  --muted:#5C5B60;
  --brand:#1f7a3a;
  --brand2:#2aa24d;
  --border:rgba(0,0,0,.10);
  --shadow:0 10px 26px rgba(0,0,0,.08);
  --radius:18px;
  --max:1160px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  background:var(--bg);
  color:var(--text);
  line-height:1.5;
}
a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.pill{
  display:inline-flex; gap:10px; align-items:center;
  padding:10px 14px; border:1px solid var(--border);
  border-radius:999px; background:rgba(255,255,255,.75);
  color:var(--muted); font-size:14px;
}
.dot{width:8px;height:8px;border-radius:99px;background:var(--brand2); box-shadow:0 0 0 5px rgba(42,162,77,.12)}
header{
  position:sticky; top:0; z-index:50;
  background:#F0F0F0;
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
}
.brand{
  display:flex; align-items:center; gap:12px;
  min-width:220px;
}
.brand img{
  width:88px; height:88px;
  object-fit:contain;
  border-radius:12px;
  background:rgba(0,0,0,.04);
  border:1px solid rgba(0,0,0,.12);
  padding:6px;
}
.brand strong{font-size:16px; letter-spacing:.2px}
.brand small{display:block; color:var(--muted); font-size:12px; margin-top:2px}
nav ul{list-style:none; display:flex; gap:18px; padding:0; margin:0}
nav a{color:var(--text); font-size:14px}
nav a:hover{opacity:.75}
.nav-cta{display:flex; gap:10px; align-items:center}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.75);
  color:var(--text);
  font-weight:600;
  font-size:14px;
  cursor:pointer;
}
.btn:hover{transform:translateY(-1px)}
.btn.primary{
  background:linear-gradient(180deg, rgba(42,162,77,.95), rgba(31,122,58,.95));
  border-color:rgba(42,162,77,.35);
  box-shadow:0 10px 30px rgba(42,162,77,.18);
}
.btn.primary:hover{box-shadow:0 14px 36px rgba(42,162,77,.22)}
.btn.ghost{color:var(--muted)}
.menu-btn{display:none}

/* SECTIONS */
main{min-height:70vh}
section{padding:56px 0}
.section-head{
  display:flex; align-items:flex-end; justify-content:space-between; gap:18px;
  margin-bottom:18px;
}
.section-head h2{
  margin:0;
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing:-.3px;
}
.section-head p{margin:0; color:var(--muted); max-width:58ch}

.grid-3{display:grid; grid-template-columns:repeat(3, 1fr); gap:14px}
.grid-2{display:grid; grid-template-columns:repeat(2, 1fr); gap:14px}

.card{
  border:1px solid var(--border);
  background:var(--card);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}
.card h3{margin:0 0 8px; font-size:16px}
.card p{margin:0; color:var(--muted); font-size:14px}
.tagrow{display:flex; flex-wrap:wrap; gap:8px; margin-top:12px}
.tag{
  font-size:12px; color:var(--muted);
  border:1px solid var(--border);
  padding:6px 10px; border-radius:999px;
  background:rgba(255,255,255,.85);
}

/* HERO */
.hero{padding:56px 0 24px}
.hero-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:22px;
  align-items:stretch;
}
h1{
  margin:16px 0 10px;
  font-size: clamp(34px, 4vw, 54px);
  line-height:1.05;
  letter-spacing:-.6px;
}
.lead{color:var(--muted); font-size: clamp(15px, 1.3vw, 18px); margin:0 0 18px}
.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
.hero-kpis{
  display:grid; grid-template-columns:1fr 1fr;
  gap:12px;
}
.kpi{
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:var(--radius);
  padding:16px;
  box-shadow: var(--shadow);
}
.kpi strong{display:block; font-size:22px}
.kpi span{color:var(--muted); font-size:13px}
.hero-card{
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
  height:100%;
}
.hero-card h3{margin:0 0 10px; font-size:16px}
.list{margin:0; padding:0; list-style:none; display:grid; gap:10px}
.list li{
  display:flex; gap:10px;
  padding:10px 12px;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:14px;
  color:var(--muted);
  font-size:14px;
}
.tick{
  width:18px;height:18px;border-radius:7px;
  background:rgba(42,162,77,.18);
  border:1px solid rgba(42,162,77,.35);
  display:inline-flex; align-items:center; justify-content:center;
  color:var(--text); font-weight:900; font-size:12px; flex:0 0 auto;
}

/* PROCESS */
.steps{display:grid; gap:12px}
.step{
  display:grid;
  grid-template-columns: 42px 1fr;
  gap:12px;
  align-items:flex-start;
  padding:16px;
  border:1px solid var(--border);
  background:var(--surface);
  border-radius:var(--radius);
}
.num{
  width:42px;height:42px;border-radius:14px;
  background:linear-gradient(180deg, rgba(42,162,77,.25), rgba(31,122,58,.12));
  border:1px solid rgba(42,162,77,.35);
  display:flex; align-items:center; justify-content:center;
  font-weight:800;
}

/* LOGO STRIP */
.logos{
  display:grid; grid-template-columns:repeat(6, 1fr); gap:10px;
  opacity:.9;
}
.logo{
  border:1px dashed rgba(255,255,255,.14);
  border-radius:14px;
  padding:14px 10px;
  text-align:center;
  color:rgba(233,242,236,.55);
  font-size:12px;
  background:rgba(255,255,255,.75);
}

/* CTA */
.cta{
  padding:26px;
  border-radius:calc(var(--radius) + 6px);
  background:
    radial-gradient(500px 200px at 20% 0%, rgba(42,162,77,.25), transparent 60%),
    radial-gradient(500px 200px at 80% 100%, rgba(31,122,58,.20), transparent 60%),
    rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1fr auto;
  gap:14px;
  align-items:center;
}
.cta h3{margin:0 0 6px}
.cta p{margin:0; color:var(--muted)}
.cta .btn{white-space:nowrap}

/* FOOTER */
footer{padding:34px 0; border-top:1px solid var(--border); color:var(--muted); background:var(--surface)}
.foot{
  display:grid; grid-template-columns:1.2fr .8fr; gap:18px;
  align-items:start;
}
.foot a{color:var(--muted)}
.foot a:hover{color:var(--text)}
.cols{display:grid; grid-template-columns:repeat(2, 1fr); gap:12px}
.col h4{margin:0 0 10px; color:var(--text); font-size:14px}
.col ul{list-style:none; padding:0; margin:0; display:grid; gap:8px; font-size:13px}

/* MOBILE */
@media (max-width: 980px){
  .hero-grid{grid-template-columns:1fr}
  .hero-kpis{grid-template-columns:1fr 1fr}
  .grid-3{grid-template-columns:1fr 1fr}
  .logos{grid-template-columns:repeat(3, 1fr)}
  .cta{grid-template-columns:1fr}
  nav ul{display:none}
  .menu-btn{display:inline-flex}
}
@media (max-width: 620px){
  .grid-3,.grid-2{grid-template-columns:1fr}
  .hero-kpis{grid-template-columns:1fr}
  .brand{min-width:auto}
}

/* Mobile menu panel */
.panel{
  display:none;
  border-top:1px solid var(--border);
  background:#F0F0F0;
}
.panel.open{display:block}
.panel a{
  display:block;
  padding:14px 20px;
  color:var(--muted);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.panel a:hover{color:var(--text); background:rgba(255,255,255,.03)}

/* Page hero */
.page-hero{
  padding:40px 0 0;
}
.page-hero .wrap{
  border:1px solid var(--border);
  background:rgba(255,255,255,.75);
  border-radius:calc(var(--radius) + 6px);
  padding:22px;
  box-shadow: var(--shadow);
}
.breadcrumb{color:var(--muted); font-size:13px}
.page-hero h1{margin:10px 0 0; font-size:clamp(28px, 3.3vw, 44px)}
.page-hero p{margin:10px 0 0; color:var(--muted); max-width:70ch}
/* Wider header banner */
header .container {
  max-width: 1800px;
}

/* Light header text override */
header, header a, header strong, header small {
  color: #222021 !important;
}

/* Global light theme text override */
body, p, h1, h2, h3, h4, h5, h6, span, li, a, strong, small, label {
  color:#222021;
}

/* Preserve button styling */
.btn, .btn * {
  color: inherit;
}

/* theme-version: v10-light */

/* Force light theme surfaces */
section, header, footer, .card, .panel {
  background: var(--surface);
  color: var(--text);
}

/* Muted text */
.muted, small, .meta {
  color: var(--muted);
}

/* Light theme typography */
p{color:var(--muted)}
.lead{color:var(--muted)}
.breadcrumb{color:var(--muted)}
.tag{color:var(--muted); background:var(--surface); border:1px solid var(--border)}
.logo{background:var(--surface); border:1px dashed rgba(0,0,0,.18); color:rgba(34,32,33,.55)}
.pill{background:rgba(255,255,255,.75); border:1px solid var(--border); color:var(--muted)}

/* theme-version: v12-true-light */

/* Header navigation typography */
nav a{
  font-size:16px !important;
  font-weight:800 !important;
}

/* Active nav link (scrollspy) */
nav a.active, .panel a.active{
  color: var(--brand) !important;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 2px;
}

/* ===== Parallax (Layered) ===== */
.parallax-section{
  position:relative;
  overflow:hidden;
}
.parallax-section::before,
.parallax-section::after{
  content:"";
  position:absolute;
  inset:-20% -10%;
  pointer-events:none;
  z-index:0;
  transform: translate3d(0, var(--p1, 0px), 0);
  transition: transform 80ms linear;
}
/* Layer 1: soft gradient wash */
.parallax-section::before{
  background:
    radial-gradient(700px 300px at 20% 20%, rgba(31,122,58,.10), transparent 60%),
    radial-gradient(700px 300px at 80% 60%, rgba(42,162,77,.08), transparent 65%);
}
/* Layer 2: subtle pattern texture */
.parallax-section::after{
  opacity:.55;
  background-image:
    radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: 18px 18px;
  transform: translate3d(0, var(--p2, 0px), 0);
}
.parallax-section > .container{
  position:relative;
  z-index:1;
}

/* Placeholder imagery (patterned) */
.img-placeholder{
  border:1px solid var(--border);
  border-radius: calc(var(--radius) + 6px);
  background:
    linear-gradient(135deg, rgba(31,122,58,.10), rgba(42,162,77,.06)),
    radial-gradient(rgba(0,0,0,.06) 1px, transparent 1px);
  background-size: auto, 16px 16px;
  box-shadow: var(--shadow);
}
.hero-media{ height:160px; margin-bottom:14px; }
.section-media{ height:14px; margin-top:10px; max-width:520px; }

/* ===== Header opacity + shrink (buttons unchanged) ===== */
header#siteHeader{
  transition: background-color 120ms ease, box-shadow 120ms ease, border-color 120ms ease;
}
header#siteHeader.scrolled{
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
}
header#siteHeader.scrolled .nav{ padding:10px 0; }
header#siteHeader .nav{ padding:14px 0; }
header#siteHeader.scrolled .brand img{
  width:72px !important;
  height:72px !important;
}
header#siteHeader.scrolled .brand strong{ font-size:15px; }
header#siteHeader.scrolled .brand small{ font-size:11px; }
/* Keep CTA buttons stable */
header#siteHeader .btn{ padding:11px 14px; font-size:14px; }

/* ===== Fixed oversized logo ===== */
header#siteHeader{
  overflow: visible; /* allow logo to extend outside header */
}

/* Logo 2x size */


/* Keep logo fixed during scroll */
header#siteHeader .brand{
  position: fixed;
  top: 14px;
  left: 24px;
  z-index: 100;
}

/* Prevent nav shift due to fixed logo */
header#siteHeader .nav{
  padding-left: 190px;
}

/* On scroll, header still fades but logo remains fixed and same size */
header#siteHeader.scrolled .brand img{
  width: 160px !important;
  height: 160px !important;
}

/* ===== Header refinements ===== */

/* 1) Logo size 120x120 */
header#siteHeader .brand img{
  width:120px !important;
  height:120px !important;
  top:12px;
}

/* 2) Center nav typography */
header#siteHeader .nav{
  display:flex;
  align-items:center;
  justify-content:center;
  padding-left:160px; /* space for fixed logo */
}

/* 3) Remove brand text (name + tagline) */
header#siteHeader .brand strong,
header#siteHeader .brand small{
  display:none !important;
}

/* 4) Frosted glass effect */
header#siteHeader{
  background: rgba(240,240,240,0.75);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
}

/* ===== Header CTA alignment (right) ===== */
header#siteHeader .nav{
  display:grid;
  grid-template-columns: 1fr auto;
  align-items:center;
}

/* Navigation links centered */
header#siteHeader nav{
  justify-self:center;
}

/* CTA buttons aligned right */
header#siteHeader .actions{
  justify-self:end;
  display:flex;
  gap:10px;
}

/* ===== Lock logo size to 120x120 in all states ===== */
header#siteHeader .brand img,
header#siteHeader.scrolled .brand img{
  width:120px !important;
  height:120px !important;
}



/* ===== Enquiry form (match Book a call CTA sizing) ===== */
.enquiry-card{ max-width: 760px; margin: 18px auto 0; }
.enquiry-form{ margin-top: 12px; }
.enquiry-form .row{ margin-top: 12px; }
.enquiry-form .row.two{ display:grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 720px){ .enquiry-form .row.two{ grid-template-columns: 1fr; } }

/* Inputs scaled to match overall CTA rhythm */
.enquiry-form input,
.enquiry-form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.18);
  background:#D7D7D7;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  outline: none;
  color: #222021;
}
.enquiry-form textarea{
  border-radius: 12px;
  resize: vertical;
  min-height: 120px;
}
.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder{ color: rgba(34,32,33,.55); }

/* Send enquiry button: same as .btn base sizing */
.enquiry-submit{
  width:100%;
  border-radius: 12px;
  padding: 11px 14px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 14px;
}

/* Note */
.enquiry-note{
  margin-top: 10px;
  color: rgba(34,32,33,.7);
  font-size: 14px;
}
/* marker: v24-form-scale */
