:root {
  --ink: #19242c;
  --muted: #5d6a72;
  --line: #d9e2e6;
  --paper: #ffffff;
  --soft: #eef5f4;
  --brand: #0b7f78;
  --brand-dark: #075e5a;
  --accent: #f3a11d;
  --deep: #132a35;
  --shadow: 0 18px 44px rgba(17, 42, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.contact-strip {
  color: #ffffff;
  background: var(--deep);
  font-size: 14px;
}

.contact-strip__inner {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
}

.nav {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand__mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: var(--muted);
  font-size: 13px;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #32434d;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: var(--deep);
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(9, 32, 42, 0.86), rgba(9, 32, 42, 0.46)),
    url("images/image_1.jpeg") center / cover;
}

.hero__content {
  position: relative;
  display: grid;
  min-height: 620px;
  align-content: center;
  max-width: 760px;
  padding: 72px 0 104px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

h3 {
  margin-bottom: 8px;
  font-size: 21px;
  line-height: 1.2;
}

.hero p:not(.eyebrow) {
  max-width: 620px;
  color: #dce8e8;
  font-size: 20px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 12px 20px;
  font-weight: 800;
  cursor: pointer;
}

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

.button--secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 88px 0;
}

.section--tint {
  background: var(--soft);
}

.section--dark {
  color: #ffffff;
  background: var(--deep);
}

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

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

.service-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(17, 42, 52, 0.08);
}

.service-card img {
  height: 170px;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p,
.value-grid p,
.split p {
  color: var(--muted);
}

.philosophy-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 20px;
  color: var(--muted);
}

.philosophy-list li::marker {
  color: var(--brand);
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: start;
}

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

.facts div {
  min-height: 132px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.facts dt {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.facts dd {
  margin: 8px 0 0;
  font-size: 22px;
  font-weight: 800;
}

.value-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.value-grid article {
  border-top: 4px solid var(--brand);
  padding: 24px 0 0;
}

.value-grid span {
  color: var(--accent);
  font-weight: 900;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

blockquote {
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.06);
}

blockquote p {
  color: #e8f3f2;
}

cite {
  color: var(--accent);
  font-style: normal;
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

address {
  color: var(--muted);
  font-style: normal;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #33464f;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cbd9de;
  border-radius: 6px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  color: #ffffff;
  background: #0b1c24;
}

.footer__inner {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav,
  .contact-strip__inner,
  .footer__inner {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .nav {
    padding: 16px 0;
  }

  .nav__links {
    width: 100%;
    flex-wrap: wrap;
    gap: 14px 20px;
  }

  .service-grid,
  .split,
  .testimonials,
  .contact {
    grid-template-columns: 1fr;
  }

  .value-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 64px 0;
  }

  .hero,
  .hero__content {
    min-height: 560px;
  }

  .hero__content {
    padding: 52px 0 76px;
  }

  .facts {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    padding: 20px;
  }
}
