:root {
  --ink: #12232e;
  --muted: #5c6b73;
  --brand: #0f6e56;
  --brand-dark: #0b5744;
  --brand-soft: #e7f3ef;
  --paper: #fbfaf7;
  --cream: #f3efe6;
  --card: #ffffff;
  --line: #e4e0d8;
  --danger: #9b2c2c;
  --ok: #0f6e56;
  --radius: 14px;
  --shadow: 0 12px 40px rgba(18, 35, 46, 0.08);
  --font: "DM Sans", system-ui, -apple-system, sans-serif;
  --display: "Fraunces", Georgia, serif;
  --max: 1120px;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.05rem;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-dark); }
a:hover { color: var(--brand); }
h1, h2, h3, h4 { font-family: var(--display); line-height: 1.2; letter-spacing: -0.02em; }
h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 0.6em; }
h2 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 0.6em; }
h3 { font-size: 1.2rem; }
.container { width: min(var(--max), calc(100% - 2rem)); margin-inline: auto; }
.narrow { width: min(760px, calc(100% - 2rem)); }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--brand); color: #fff; padding: .6rem 1rem; z-index: 1000;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 250, 247, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  min-height: 72px;
}
.logo img { width: 200px; height: auto; }
.site-nav { flex: 1; }
.nav-list {
  display: flex; align-items: center; gap: .2rem 1.1rem; list-style: none; margin: 0; padding: 0; flex-wrap: wrap;
}
.nav-list > li > a,
.nav-more {
  display: inline-block; padding: .4rem 0; color: var(--ink); text-decoration: none; font-weight: 600;
  background: none; border: 0; font: inherit; cursor: pointer;
}
.nav-list a[aria-current="page"] { color: var(--brand); box-shadow: inset 0 -2px 0 var(--brand); }
.has-sub { position: relative; }
.sub-menu {
  display: none; position: absolute; left: 0; top: 100%;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  box-shadow: var(--shadow); list-style: none; margin: .4rem 0 0; padding: .5rem 0; min-width: 200px;
}
.has-sub.open .sub-menu, .has-sub:hover .sub-menu { display: block; }
.sub-menu a { display: block; padding: .45rem 1rem; text-decoration: none; color: var(--ink); }
.sub-menu a:hover, .sub-menu a:focus { background: var(--brand-soft); }
.nav-toggle {
  display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 8px; background: #fff;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--ink); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1.2rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  border: 2px solid transparent; cursor: pointer; font-family: inherit; font-size: .98rem;
  transition: transform .15s ease, background .15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 3px solid var(--brand); outline-offset: 2px; }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-dark); color: #fff; }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-light { background: #fff; color: var(--brand-dark); }
.btn-ghost-light { background: transparent; border-color: #fff; color: #fff; }
.btn-text { background: none; border: 0; color: var(--brand-dark); text-decoration: underline; border-radius: 0; }
.btn-block { width: 100%; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; color: inherit; cursor: pointer; text-decoration: underline; }

.hero { padding: 3.2rem 0 4rem; background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2.5rem; align-items: start; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--brand); }
.lead { font-size: 1.2rem; color: var(--muted); }
.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: .7rem; margin: 1.2rem 0; }
.hero-points { padding-left: 1.1rem; color: var(--muted); }
.hero-form h2 { margin-top: 0; }

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.3rem; box-shadow: var(--shadow);
}
.card.quiet { box-shadow: none; }
.card img { border-radius: 10px; margin-bottom: .8rem; width: 100%; object-fit: cover; max-height: 180px; }
.link-card h2 a, .link-card h3 a, .card h3 a, .card h2 a { text-decoration: none; color: inherit; }
.link-card:hover { border-color: var(--brand); }
.section { padding: 4rem 0; }
.section.alt { background: var(--cream); }
.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.card-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(3, 1fr); }
.card-grid.four { grid-template-columns: repeat(4, 1fr); }
.card-grid.three { grid-template-columns: repeat(3, 1fr); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
.ticks { padding-left: 1.1rem; }
.ticks.two-col { columns: 2; }
.steps { padding-left: 1.1rem; }
.steps.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; list-style: none; padding: 0; counter-reset: step; }
.steps.grid li { counter-increment: step; }
.steps.grid li::before { content: counter(step); display: inline-block; width: 1.6rem; height: 1.6rem; border-radius: 50%; background: var(--brand-soft); color: var(--brand-dark); text-align: center; font-weight: 700; margin-bottom: .4rem; }
.chip-list { display: flex; flex-wrap: wrap; gap: .6rem; list-style: none; padding: 0; }
.chip-list a { display: inline-block; padding: .45rem .9rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; }
.chip-list a:hover, .chip-list a[aria-current="page"] { background: var(--brand); color: #fff; border-color: var(--brand); }
.page-hero { padding: 2.8rem 0 1.5rem; background: var(--cream); }
.prose :where(h2, h3) { margin-top: 1.6em; }
.prose :where(p, ul, ol) { margin: 0 0 1em; }
.feature-img { margin: 1.5rem auto; }
.feature-img img { width: 100%; border-radius: var(--radius); max-height: 420px; object-fit: cover; }
.quote footer { display: flex; flex-direction: column; margin-top: 1rem; color: var(--muted); font-size: .95rem; }
.stars { color: #c4a35a; letter-spacing: .1em; }
.accordion details { border-bottom: 1px solid var(--line); padding: .8rem 0; }
.accordion summary { cursor: pointer; font-weight: 700; }
.cta-band { background: var(--ink); color: #fff; padding: 3rem 0; }
.cta-inner { display: flex; justify-content: space-between; gap: 2rem; align-items: center; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #d5ddd9; }
.map-wrap iframe { width: 100%; height: 320px; border: 0; border-radius: var(--radius); }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: .4rem; list-style: none; padding: 0.8rem 0 0; margin: 0; font-size: .9rem; color: var(--muted); }
.breadcrumbs li:not(:last-child)::after { content: "/"; margin-left: .4rem; }
.meta, .tags { color: var(--muted); font-size: .92rem; }
.pagination { display: flex; gap: 1rem; align-items: center; margin-top: 2rem; }
.sitemap-cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }

.enquiry-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.field { margin-bottom: .8rem; }
.field label { display: block; font-weight: 600; margin-bottom: .3rem; }
.field input, .field select, .field textarea {
  width: 100%; padding: .65rem .7rem; border: 1px solid var(--line); border-radius: 10px; font: inherit; background: #fff;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--brand); border-color: var(--brand); }
.field.check { display: flex; gap: .5rem; align-items: flex-start; }
.field.check input { width: auto; margin-top: .3rem; }
.hp { position: absolute; left: -9999px; }
.alert { padding: .8rem 1rem; border-radius: 10px; }
.alert.success { background: var(--brand-soft); }
.alert.error { background: #fdecec; color: var(--danger); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field .error { color: var(--danger); font-size: .88rem; }

.site-footer { background: #0e1a22; color: #d7ddd9; padding: 3rem 0 1.2rem; }
.site-footer h2 { color: #fff; font-size: 1.05rem; font-family: var(--font); }
.site-footer a { color: #eef3f0; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin: .35rem 0; }
.footer-logo { filter: invert(1) hue-rotate(180deg); display: inline-block; margin-bottom: 1rem; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid #24343c; margin-top: 2rem; padding-top: 1rem; font-size: .92rem; }

.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 80;
  background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(0,0,0,.08);
  padding: 1rem 0;
}
.cookie-actions { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: .8rem; }
.cookie-customise { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: .8rem; }

body.nav-open { overflow: hidden; }

@media (max-width: 960px) {
  .hero-grid, .split, .card-grid, .card-grid.four, .card-grid.three, .steps.grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 800px) {
  .header-inner { min-height: 64px; }
  .logo { order: -1; }
  .nav-toggle { display: flex; margin-left: auto; }
  .site-nav {
    display: none; position: absolute; left: 0; right: 0; top: 64px; background: var(--paper);
    border-bottom: 1px solid var(--line); padding: 1rem;
  }
  .site-nav.open { display: block; }
  .nav-list { flex-direction: column; align-items: stretch; }
  .sub-menu { position: static; box-shadow: none; border: 0; }
  .hero { padding-top: 1.8rem; }
  .hero-grid, .split, .card-grid, .card-grid.four, .enquiry-form .form-row, .footer-grid { grid-template-columns: 1fr; }
  .ticks.two-col { columns: 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
