:root {
  --ink: #17201d;
  --muted: #5c6963;
  --line: #d9ded9;
  --paper: #f7f6f1;
  --white: #ffffff;
  --steel: #33423d;
  --teal: #1d6d67;
  --clay: #b45f3c;
  --sage: #dfe7dd;
  --shadow: 0 18px 50px rgba(23, 32, 29, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 64px);
  background: rgba(247, 246, 241, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--steel);
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
}

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

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

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

nav a:hover {
  color: var(--teal);
}

.hero {
  position: relative;
  min-height: calc(100vh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 64px);
  overflow: hidden;
  background: #1f2a26;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(23, 32, 29, 0.91), rgba(23, 32, 29, 0.52) 54%, rgba(23, 32, 29, 0.18)),
    linear-gradient(0deg, rgba(23, 32, 29, 0.55), transparent 42%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(29, 109, 103, 0.46), transparent 42%),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80") center / cover;
  filter: saturate(0.92);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  color: var(--white);
}

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

.hero .eyebrow {
  color: #f0b28d;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.hero-content p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

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

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

.button.primary,
button {
  background: var(--teal);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button:hover,
button:hover {
  transform: translateY(-1px);
}

.band,
.section,
.contact {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 4vw, 64px);
}

.band {
  background: var(--sage);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

.intro p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 32px;
}

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

.service-grid article,
.trust-grid article,
.project-grid article {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 8px 28px rgba(23, 32, 29, 0.06);
}

.service-grid p,
.trust-grid p,
.project-grid p,
.process p {
  color: var(--muted);
}

.industry-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 1040px;
}

.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 15px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 32, 29, 0.1);
  border-radius: 4px;
  color: var(--steel);
  font-weight: 800;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.process li {
  min-height: 220px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.58);
  border-left: 4px solid var(--teal);
}

.process span {
  display: block;
  margin-bottom: 28px;
  color: var(--clay);
  font-weight: 900;
}

.process strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.project-image {
  height: 190px;
  margin: -24px -24px 20px;
  background-size: cover;
  background-position: center;
  border-radius: 8px 8px 0 0;
}

.project-image.retail {
  background-image: url("https://images.unsplash.com/photo-1555529669-e69e7aa0ba9a?auto=format&fit=crop&w=900&q=80");
}

.project-image.cafe {
  background-image: url("https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=900&q=80");
}

.project-image.clinic {
  background-image: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?auto=format&fit=crop&w=900&q=80");
}

.trust-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-grid article {
  min-height: 230px;
  border-top: 5px solid var(--teal);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.7fr);
  gap: clamp(30px, 6vw, 90px);
  background: var(--steel);
  color: var(--white);
}

.contact-copy p:not(.section-label) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.direct-contact {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.direct-contact a,
.direct-contact span {
  display: inline-flex;
  width: fit-content;
  min-height: 42px;
  align-items: center;
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  color: var(--white);
  font-weight: 800;
}

.direct-contact a:hover {
  background: rgba(255, 255, 255, 0.15);
}

.company-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 0;
}

.company-details div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  border-radius: 6px;
}

.company-details dt,
.company-details dd {
  margin: 0;
}

.company-details dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.company-details dd {
  margin-top: 4px;
  color: var(--white);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 7px;
  color: var(--steel);
  font-size: 14px;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 12px;
  color: var(--ink);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(29, 109, 103, 0.18);
  border-color: var(--teal);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 64px);
  background: #111715;
  color: rgba(255, 255, 255, 0.76);
}

footer p {
  margin: 0;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 720px;
  }

  .intro,
  .contact {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .trust-grid,
  .project-grid,
  .process ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .brand {
    min-width: 0;
  }

  nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero {
    min-height: 650px;
  }

  .hero::after {
    background: linear-gradient(0deg, rgba(23, 32, 29, 0.9), rgba(23, 32, 29, 0.35));
  }

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

  .service-grid,
  .trust-grid,
  .project-grid,
  .process ol {
    grid-template-columns: 1fr;
  }

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

  .contact-form {
    padding: 18px;
  }

  .company-details {
    grid-template-columns: 1fr;
  }
}
