:root {
  --ink: #12231b;
  --forest: #164f35;
  --green: #2a9e2c;
  --leaf: #dff3df;
  --paper: #fbfaf5;
  --white: #ffffff;
  --muted: #52645a;
  --line: #cfdad2;
  --amber: #f7bc60;
  --shadow-sm: 0 10px 30px rgb(18 35 27 / 8%);
  --shadow-lg: 0 28px 80px rgb(18 35 27 / 18%);
  --radius-sm: 0.65rem;
  --radius-md: 1.15rem;
  --radius-lg: 1.8rem;
}

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

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.22em;
}

button,
input {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  transform: translateY(-180%);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--amber);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  width: min(1180px, calc(100% - 2rem));
  margin-inline: auto;
}

.partnership-bar {
  color: var(--white);
  background: var(--ink);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  text-align: center;
}

.partnership-bar .site-shell {
  padding-block: 0.55rem;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgb(207 218 210 / 80%);
  background: var(--paper);
}

.header-row {
  display: flex;
  align-items: center;
  min-height: 78px;
  gap: 1.5rem;
}

.brand {
  flex: 0 0 auto;
  border-radius: var(--radius-sm);
}

.brand img {
  width: 92px;
  height: 64px;
  object-fit: contain;
}

.site-header nav {
  margin-left: auto;
}

.nav-list,
.site-footer ul,
.trust-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-list a,
.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.6rem 0.85rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 750;
  text-decoration: none;
}

.nav-list a:hover {
  background: var(--leaf);
}

.header-phone {
  color: var(--white);
  background: var(--forest);
  padding-inline: 1.1rem;
}

.header-phone:hover {
  background: var(--ink);
}

section[id] {
  scroll-margin-top: 118px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgb(247 188 96 / 30%), transparent 27rem),
    linear-gradient(128deg, var(--ink) 0%, #123d2b 52%, var(--forest) 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 26rem;
  height: 26rem;
  right: -8rem;
  bottom: -13rem;
}

.hero::after {
  width: 11rem;
  height: 11rem;
  right: 18%;
  top: -5rem;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.65fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5.5rem);
  min-height: 660px;
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

.eyebrow,
.summary-label {
  margin: 0 0 1rem;
  color: var(--forest);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero .summary-label,
.section-contact .eyebrow {
  color: var(--amber);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  line-height: 1.08;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 13ch;
  margin-bottom: 1.5rem;
  font-size: clamp(2.4rem, 6vw, 5.25rem);
}

h2 {
  max-width: 18ch;
  margin-bottom: 1.2rem;
  font-size: clamp(2rem, 4vw, 3.7rem);
}

h3 {
  font-size: 1.24rem;
}

.hero-lead {
  max-width: 40rem;
  color: rgb(255 255 255 / 86%);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 0.82rem 1.25rem;
  cursor: pointer;
  font-weight: 850;
  text-decoration: none;
}

.button-primary {
  color: var(--ink);
  background: var(--amber);
}

.button-primary:hover {
  background: #ffd28d;
}

.button-secondary {
  color: var(--white);
  border-color: rgb(255 255 255 / 70%);
  background: transparent;
}

.button-secondary:hover {
  color: var(--ink);
  background: var(--white);
}

.hero-summary {
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.4rem);
  background: rgb(255 255 255 / 8%);
  box-shadow: var(--shadow-lg);
}

.hero-media {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: calc(var(--radius-lg) - 0.6rem);
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.hero-summary li {
  position: relative;
  padding: 1rem 0 1rem 1.8rem;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.hero-summary li:last-child {
  border-bottom: 0;
}

.hero-summary li::before {
  position: absolute;
  left: 0;
  content: "✓";
  color: var(--amber);
  font-weight: 900;
}

.trust-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-strip ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-strip li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1.5rem clamp(1rem, 3vw, 2.2rem);
  border-right: 1px solid var(--line);
}

.trust-strip li:last-child {
  border-right: 0;
}

.trust-strip strong {
  color: var(--forest);
  font-size: 0.98rem;
}

.trust-strip span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  padding-block: clamp(4.5rem, 9vw, 8rem);
}

.section-about {
  background: var(--leaf);
}

.split-panel,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(2rem, 7vw, 7rem);
  align-items: start;
}

.section-lead {
  margin: 0;
  color: #264736;
  font-size: clamp(1.1rem, 2.2vw, 1.38rem);
  line-height: 1.75;
}

.section-intro {
  max-width: 48rem;
  margin-bottom: 2.8rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 19rem;
  padding: 1.7rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.service-card:nth-child(even) {
  margin-top: 1.5rem;
}

.card-number {
  display: inline-grid;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 3.5rem;
  border-radius: 50%;
  place-items: center;
  color: var(--forest);
  background: var(--leaf);
  font-size: 0.78rem;
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.section-process {
  color: var(--white);
  background: var(--forest);
}

.section-process .eyebrow {
  color: var(--amber);
}

.process-list {
  margin: 3rem 0 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.2rem;
  padding: 1.7rem 0;
  border-top: 1px solid rgb(255 255 255 / 18%);
}

.process-list > li > span {
  color: var(--amber);
  font-size: 1.6rem;
  font-weight: 850;
}

.process-list h3 {
  margin-bottom: 0.4rem;
  font-size: 1.45rem;
}

.process-list p {
  max-width: 44rem;
  margin-bottom: 0;
  color: rgb(255 255 255 / 76%);
}

.section-contact {
  color: var(--white);
  background: var(--ink);
}

.contact-copy h2 {
  max-width: 12ch;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 35rem;
  color: rgb(255 255 255 / 78%);
  font-size: 1.1rem;
}

.contact-actions {
  display: grid;
  gap: 0.7rem;
  margin-top: 2rem;
}

.contact-actions a {
  display: flex;
  flex-direction: column;
  min-height: 44px;
  padding: 0.9rem 1rem;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: var(--radius-sm);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.contact-actions a:hover {
  border-color: var(--amber);
  background: rgb(255 255 255 / 6%);
}

.contact-actions span {
  color: var(--amber);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.enquiry-form {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-lg);
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}

.form-heading h3 {
  margin-bottom: 0.5rem;
  font-size: 1.6rem;
}

.form-heading p,
.form-note {
  color: var(--muted);
}

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

.field-grid,
.range-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.field {
  min-width: 0;
}

.field label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  font-weight: 800;
}

.field input:not([type="range"]) {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.8rem;
  border: 1px solid #9caf9f;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--white);
}

.field input:not([type="range"]):focus-visible {
  border-color: var(--forest);
}

.field input[type="range"] {
  width: 100%;
  min-height: 44px;
  accent-color: var(--green);
}

output {
  color: var(--forest);
  font-weight: 850;
}

.form-note {
  margin-block: 1.2rem;
  font-size: 0.84rem;
}

.enquiry-form .button-primary {
  border: 0;
}

.enquiry-form .button-primary:disabled {
  cursor: wait;
  opacity: 0.7;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
}

.alert {
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
}

.alert-success {
  color: #0f3a26;
  background: var(--leaf);
}

.alert-danger {
  color: #702019;
  background: #fde6e2;
}

.site-footer {
  border-top: 1px solid #243d31;
  color: rgb(255 255 255 / 72%);
  background: var(--ink);
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 92px;
}

.site-footer p {
  margin: 0;
}

.site-footer ul {
  display: flex;
  gap: 1.2rem;
}

.site-footer a:hover {
  color: var(--amber);
}

@media (max-width: 800px) {
  .header-row {
    flex-wrap: wrap;
    gap: 0.4rem 1rem;
    padding-block: 0.55rem;
  }

  .site-header nav {
    order: 3;
    width: 100%;
  }

  .nav-list {
    justify-content: center;
  }

  .hero-grid,
  .split-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-summary {
    max-width: 38rem;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card:nth-child(even) {
    margin-top: 0;
  }

  .site-shell {
    width: min(100% - 1.25rem, 1180px);
  }

  .partnership-bar {
    font-size: 0.76rem;
  }

  .brand img {
    width: 76px;
    height: 53px;
  }

  .header-phone {
    margin-left: auto;
  }

  .nav-list {
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .nav-list a {
    white-space: nowrap;
  }

  .hero-grid {
    gap: 2.5rem;
    padding-block: 4.5rem;
  }

  .trust-strip ul,
  .service-grid,
  .field-grid,
  .range-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip li {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip li:last-child {
    border-bottom: 0;
  }

  .service-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 2rem;
  }

  .footer-row {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-block: 1.5rem;
  }
}

@media (max-width: 520px) {
  .header-phone {
    min-height: 44px;
    padding-inline: 0.8rem;
    font-size: 0.84rem;
  }

  .nav-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }

  .nav-list a {
    width: 100%;
  }

  .button-row,
  .button-row .button,
  .enquiry-form .button {
    width: 100%;
  }

  .process-list li {
    grid-template-columns: 2.5rem 1fr;
  }

  .site-footer ul {
    flex-direction: column;
    gap: 0.6rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media print {
  .partnership-bar,
  .site-header,
  .button-row,
  .enquiry-form {
    display: none;
  }

  body,
  .hero,
  .section-process,
  .section-contact,
  .site-footer {
    color: #000;
    background: #fff;
  }
}
