:root {
  --ink: #172438;
  --muted: #607181;
  --green: #62d567;
  --green-dark: #239a55;
  --teal: #1d7d78;
  --sky: #eaf8f6;
  --cream: #fff8ef;
  --paper: #ffffff;
  --line: #dbeae7;
  --shadow: 0 22px 50px rgba(23, 36, 56, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fbfefd;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 10px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--green-dark);
  font-size: 0.92rem;
  font-weight: 700;
}

.top-bar a {
  color: #fff;
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  position: relative;
  display: block;
  width: clamp(172px, 18vw, 240px);
  aspect-ratio: 2.05 / 1.22;
  background: #fff;
  line-height: 0;
}

.brand-logo-crop {
  display: block;
  overflow: hidden;
  width: 100%;
  height: 76%;
}

.brand-logo-crop img {
  display: block;
  width: 100%;
  height: auto;
}

.brand-logo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 24%;
  content: "";
  background: #fff;
}

.brand-logo-text {
  position: absolute;
  left: 27%;
  bottom: 3%;
  z-index: 2;
  display: flex;
  gap: 6px;
  font-size: clamp(1rem, 1.35vw, 1.34rem);
  line-height: 1;
}

.brand-logo-text span:first-child {
  color: var(--green);
}

.brand-logo-text span:last-child {
  color: #000;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: var(--muted);
  font-weight: 800;
}

.nav a,
.header-cta,
.button {
  text-decoration: none;
}

.nav a:hover {
  color: var(--green-dark);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 8px;
  font-weight: 900;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--green-dark);
  box-shadow: 0 14px 28px rgba(35, 154, 85, 0.22);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(2.7rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin: 12px 0 9px;
  font-size: 1.12rem;
  line-height: 1.25;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.95fr);
  gap: clamp(32px, 6vw, 82px);
  align-items: center;
  min-height: calc(100vh - 136px);
  padding: clamp(48px, 7vw, 92px) clamp(20px, 5vw, 72px);
  background:
    radial-gradient(circle at 10% 18%, rgba(98, 213, 103, 0.18), transparent 28%),
    linear-gradient(115deg, #f3fffb 0%, #fff8ef 100%);
}

.hero-text {
  max-width: 660px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-panel {
  position: relative;
}

.hero-panel img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.promise-row article {
  min-height: 210px;
  padding: 30px clamp(20px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.promise-row article:last-child {
  border-right: 0;
}

.promise-row span {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.promise-row strong {
  display: block;
  margin-top: 18px;
  font-size: 1.25rem;
}

.promise-row p,
.service-card p,
.why p,
.value-list span,
.about-copy,
.enquiry p,
.footer p {
  color: var(--muted);
}

.image-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 14px clamp(20px, 5vw, 72px) 0;
  background: #fff;
}

.image-story figure {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  margin: 0;
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(23, 36, 56, 0.1);
}

.image-story img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
}

.image-story figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 11px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 8px;
  font-weight: 900;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 72px);
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  background: #fff;
}

.about-copy {
  font-size: 1.08rem;
}

.tick-list {
  display: grid;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: var(--ink);
  font-weight: 800;
}

.tick-list li::before {
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--green-dark);
  content: "✓";
}

.services {
  background: var(--sky);
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

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

.service-card {
  min-height: 238px;
  padding: 22px;
  background: #fff;
  border: 1px solid rgba(29, 125, 120, 0.14);
  border-radius: 8px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(23, 36, 56, 0.12);
}

.service-card > span {
  display: inline-flex;
  padding: 6px 9px;
  color: var(--green-dark);
  background: rgba(98, 213, 103, 0.15);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
}

.why {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(90deg, rgba(35, 154, 85, 0.98), rgba(29, 125, 120, 0.94)),
    var(--green-dark);
  color: #fff;
}

.why .eyebrow {
  color: #b5f3b8;
}

.why p,
.value-list span {
  color: rgba(255, 255, 255, 0.74);
}

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

.value-list article {
  min-height: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.value-list strong,
.value-list span {
  display: block;
}

.value-list strong {
  font-size: 1.24rem;
}

.value-list span {
  margin-top: 9px;
}

.enquiry {
  display: flex;
  justify-content: center;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 255, 255, 0.22), transparent 28%),
    linear-gradient(135deg, var(--green-dark), var(--teal));
}

.enquiry-form {
  width: min(100%, 560px);
  padding: clamp(26px, 4vw, 42px);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 8px;
  box-shadow: 0 22px 50px rgba(23, 36, 56, 0.18);
}

.enquiry-form h2 {
  margin-bottom: 30px;
  color: #fff;
  text-align: center;
}

.enquiry-form label {
  display: block;
  margin-bottom: 13px;
}

.enquiry-form label span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.enquiry-form input,
.enquiry-form textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 7px;
  padding: 15px 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 1.25rem;
  outline: none;
}

.enquiry-form input {
  min-height: 60px;
}

.enquiry-form textarea {
  min-height: 188px;
  resize: vertical;
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: #7e8790;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.26);
}

.enquiry-form button {
  display: block;
  min-width: 148px;
  min-height: 60px;
  margin: 12px auto 0;
  border: 0;
  border-radius: 7px;
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.enquiry-form button:hover {
  background: #0f1a29;
}

.footer {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 28px;
  padding: 38px clamp(20px, 5vw, 72px);
  color: #fff;
  background: var(--green-dark);
}

.footer strong {
  display: block;
  margin-bottom: 8px;
}

.footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.footer a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 1180px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .promise-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promise-row article:nth-child(2) {
    border-right: 0;
  }

  .promise-row article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 900px) {
  .top-bar,
  .site-header {
    position: static;
  }

  .site-header {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero,
  .about,
  .why,
  .enquiry {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .value-list,
  .image-story,
  .footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 620px) {
  .top-bar {
    flex-direction: column;
  }

  .header-cta,
  .hero-actions,
  .button {
    width: 100%;
  }

  .promise-row,
  .service-grid,
  .value-list,
  .image-story,
  .footer {
    grid-template-columns: 1fr;
  }

  .promise-row article,
  .promise-row article:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .promise-row article:last-child {
    border-bottom: 0;
  }

}
