:root {
  color-scheme: light;
  --ink: #17211e;
  --muted: #5b6863;
  --paper: #fbfcfa;
  --panel: #ffffff;
  --line: #dfe7e2;
  --soft: #f3f7f4;
  --brand: #174c43;
  --brand-2: #0c7a6c;
  --accent: #b9802a;
  --accent-soft: #fff3dc;
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, Helvetica, sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--brand);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--brand-2);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(12, 122, 108, 0.28);
  outline-offset: 3px;
}

.visually-hidden,
.honeypot-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.honeypot-field[hidden] {
  display: none !important;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 50;
  padding: 10px 14px;
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
}

.nav-shell,
.section-inner,
.footer-inner,
.footer-bottom-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 22px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 9px 10px;
  border-radius: var(--radius);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: var(--soft);
}

.site-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--brand);
}

.site-nav .nav-cta:hover {
  color: #fff;
  background: var(--brand-2);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
}

.button {
  color: #fff;
  background: var(--brand);
}

.button:hover {
  color: #fff;
  background: var(--brand-2);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.68;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  color: var(--ink);
  border-color: var(--brand-2);
}

.hero-simple {
  padding: 74px 22px 62px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-simple h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.16rem;
}

.eyebrow {
  margin: 0 0 14px;
  color: #83530f;
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.section {
  padding: 58px 22px;
}

.section.alt {
  background: #f5f8f5;
  border-block: 1px solid var(--line);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.section-heading h2,
.section-inner > h2,
.prose h2,
.service-detail h2,
.faq-list h2 {
  margin: 0;
  font-size: clamp(1.45rem, 3vw, 2.2rem);
  line-height: 1.12;
}

.section-heading p,
.three-up p,
.service-card p,
.prose p,
.faq-list p,
.service-detail li,
.small-note,
.privacy-note,
.form-note {
  color: var(--muted);
}

.section-heading p {
  max-width: 520px;
  margin: 0;
}

.three-up,
.pricing-strip,
.service-detail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.three-up article,
.pricing-strip article,
.service-card,
.faq-list article {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.three-up h2,
.pricing-strip h2,
.service-card h3,
.faq-list h2 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  line-height: 1.2;
}

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

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 188px;
}

.service-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.service-card h3 a:hover {
  color: var(--brand);
}

.service-card p {
  margin: 0 0 10px;
}

.price,
.price-note {
  color: var(--brand);
  font-weight: 850;
}

.price {
  margin: 8px 0;
  font-size: 1.6rem;
}

.price-note {
  margin-top: auto;
}

.price-table {
  display: grid;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--line);
  gap: 1px;
}

.price-table div {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: #fff;
}

.price-table span {
  color: var(--muted);
}

.price-table b {
  color: var(--brand);
  text-align: right;
}

.small-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
}

.cta-panel {
  max-width: var(--max);
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.cta-panel h2,
.cta-panel p {
  margin-top: 0;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 34px;
  align-items: start;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.field.full,
.privacy-note,
.form-status {
  grid-column: 1 / -1;
}

.field label {
  display: block;
  margin-bottom: 6px;
  font-weight: 800;
}

.field label span {
  color: var(--muted);
  font-weight: 600;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #cbd7d0;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  font: inherit;
}

.field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-status {
  margin: 0;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 750;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  color: #12443b;
  background: #e7f5f1;
  border: 1px solid rgba(12, 122, 108, 0.24);
}

.form-status.is-error {
  color: #672516;
  background: #f6e9e4;
  border: 1px solid rgba(159, 50, 28, 0.22);
}

.service-detail {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
}

.service-detail > div,
.prose,
.faq-list article {
  min-width: 0;
}

.service-detail ul,
.prose ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.service-detail li {
  margin: 8px 0;
}

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

.prose {
  max-width: 760px;
}

.footer {
  color: #d9e5df;
  background: #111a17;
}

.footer a {
  color: #f1cf99;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.1fr 1.7fr 0.85fr 1fr;
  gap: 28px;
  padding: 40px 22px;
}

.footer h2,
.footer h3 {
  margin: 0 0 12px;
  color: #fff;
}

.footer p {
  margin: 0;
  color: #c4d1cc;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer li {
  margin: 8px 0;
}

.footer-services-list {
  columns: 2;
  column-gap: 22px;
}

.footer-services-list li {
  break-inside: avoid;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  color: #aebbb6;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: absolute;
    left: 12px;
    right: 12px;
    top: 66px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav .nav-cta {
    margin-left: 0;
  }

  .section-heading,
  .three-up,
  .pricing-strip,
  .service-grid,
  .service-detail,
  .enquiry-layout,
  .faq-list,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading p {
    margin-top: 10px;
  }

  .price-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .price-table b {
    text-align: left;
  }

  .footer-services-list {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .nav-shell,
  .section,
  .hero-simple,
  .footer-inner,
  .footer-bottom-inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-simple {
    padding-top: 54px;
    padding-bottom: 48px;
  }

  .hero-simple h1 {
    font-size: 2.25rem;
  }

  .section {
    padding-top: 46px;
    padding-bottom: 46px;
  }

  .section-actions,
  .footer-bottom-inner {
    flex-direction: column;
  }

  .button,
  .button-secondary {
    width: 100%;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
    padding: 18px;
  }
}
