:root {
  --ink: #14211f;
  --muted: #5c6f6b;
  --teal: #0f766e;
  --lime: #a2d729;
  --sky: #0092d8;
  --coral: #e56f4f;
  --paper: #fbfdfb;
  --line: #dce8e4;
  --soft: #eef7f4;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(20, 33, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(251, 253, 251, 0.86);
  border-bottom: 1px solid rgba(220, 232, 228, 0.75);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--sky));
  border-radius: 8px;
  font-weight: 900;
  font-size: 22px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  color: var(--teal);
  font-size: 21px;
  text-transform: uppercase;
}

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

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

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.site-nav a:hover {
  background: var(--soft);
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(860px, 88vh);
  align-items: center;
  padding: 128px clamp(20px, 7vw, 96px) 72px;
  overflow: hidden;
  background: var(--ink);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background: url("assets/hero-collage.png") center right / cover no-repeat;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 23, 21, 0.98) 0%, rgba(10, 23, 21, 0.88) 42%, rgba(10, 23, 21, 0.38) 72%, rgba(10, 23, 21, 0.14) 100%),
    linear-gradient(0deg, rgba(10, 23, 21, 0.82), rgba(10, 23, 21, 0.06) 42%);
}

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

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--lime);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(46px, 7vw, 92px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 780px;
  margin-top: 34px;
}

.hero-metrics span {
  display: inline-flex;
  flex-direction: column;
  min-width: 178px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(10px);
}

.hero-metrics strong {
  color: var(--white);
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

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

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

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  min-height: 132px;
  padding: 28px clamp(20px, 4vw, 54px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 20px;
}

.trust-band span {
  margin-top: 8px;
  color: var(--muted);
}

.section {
  padding: clamp(72px, 9vw, 124px) clamp(20px, 6vw, 88px);
}

.section h2 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1.05;
  letter-spacing: 0;
}

.split,
.why-layout,
.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.split p,
.why p,
.section-heading-row p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 18px;
}

.services,
.process {
  background: var(--soft);
}

.service-grid,
.work-grid,
.latest-grid,
.proof-grid {
  display: grid;
  gap: 18px;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 42px;
}

.service-grid article,
.proof-grid div,
.work-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(20, 33, 31, 0.03);
}

.service-grid article {
  padding: 24px;
}

.icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  color: var(--teal);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 900;
}

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

.service-grid p,
.work-card p,
.proof-grid span,
.timeline span {
  margin: 0;
  color: var(--muted);
}

.work-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 28px;
}

.latest-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 42px;
}

.latest-card {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.1), rgba(0, 146, 216, 0.08)),
    var(--white);
  box-shadow: var(--shadow);
}

.latest-card h3 {
  max-width: 540px;
  font-size: clamp(28px, 3vw, 40px);
}

.latest-card p:not(.card-label) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.card-label {
  margin: 0 0 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.work-card {
  overflow: hidden;
}

.work-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: top;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.work-card div {
  padding: 22px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
  margin: 42px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 184px;
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  background: var(--white);
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 16px;
  font-size: 18px;
}

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

.why .section-kicker,
.why .text-link {
  color: var(--lime);
}

.why p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  color: var(--teal);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

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

.proof-grid div {
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  margin-bottom: 10px;
  color: var(--white);
  font-size: 20px;
}

.proof-grid span {
  color: rgba(255, 255, 255, 0.72);
}

.contact {
  background:
    linear-gradient(135deg, rgba(15, 118, 110, 0.08), rgba(229, 111, 79, 0.08)),
    var(--paper);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 6vw, 84px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.contact-panel p {
  color: var(--muted);
  font-size: 18px;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-list a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-list span {
  color: var(--muted);
}

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

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

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.email-button {
  color: var(--teal);
  border-color: var(--line);
  background: var(--white);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.form-status.success {
  color: var(--teal);
}

.form-status.warning {
  color: var(--coral);
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px clamp(20px, 6vw, 88px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--lime);
  font-weight: 900;
}

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

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

@media (max-width: 860px) {
  .site-header {
    min-height: 68px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    padding: 12px 8px;
  }

  .hero {
    min-height: 780px;
    padding-top: 128px;
    align-items: end;
  }

  .hero-media {
    background-position: 64% center;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 23, 21, 0.98) 4%, rgba(10, 23, 21, 0.84) 58%, rgba(10, 23, 21, 0.22) 100%),
      linear-gradient(90deg, rgba(10, 23, 21, 0.74), rgba(10, 23, 21, 0.16));
  }

  .trust-band,
  .split,
  .why-layout,
  .section-heading-row,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

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

@media (min-width: 861px) and (max-height: 760px) {
  .hero {
    min-height: 650px;
    padding-top: 112px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(46px, 6vw, 78px);
  }

  .hero-copy {
    max-width: 620px;
    font-size: 19px;
  }

  .hero-metrics {
    display: none;
  }
}

@media (max-width: 640px) {
  .brand small {
    max-width: 190px;
  }

  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero h1 {
    font-size: 44px;
  }

  .hero-metrics {
    display: none;
  }

  .hero-copy,
  .split p,
  .why p,
  .section-heading-row p,
  .contact-panel p {
    font-size: 16px;
  }

  .service-grid,
  .proof-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
