@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/montserrat-400.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/montserrat-500.ttf") format("truetype");
}

@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-700.ttf") format("truetype");
}

@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/outfit-700.ttf") format("truetype");
}

:root {
  --ink: #15242b;
  --muted: #60717b;
  --paper: #ffffff;
  --wash: #f2f6f9;
  --line: #dce6ea;
  --green: #5a9e1a;
  --green-dark: #3d7410;
  --orange: #f6961b;
  --dark: #071115;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  overflow-wrap: break-word;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.7rem 1rem;
  background: var(--dark);
  color: var(--paper);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  display: none;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(220, 230, 234, 0.8);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 700;
  font-size: 1.22rem;
}

.header-logo {
  min-width: 0;
}

.brand-logo {
  width: 172px;
  height: auto;
  max-height: 56px;
  object-fit: contain;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(135deg, var(--green), var(--orange));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.56rem 0.78rem;
  border-radius: 6px;
  color: #40515a;
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--ink);
  background: var(--wash);
}

.nav-links .nav-cta {
  margin-left: 0.2rem;
  color: var(--paper);
  background: var(--green);
}

.nav-links .nav-cta:hover {
  color: var(--paper);
  background: var(--green-dark);
}

.hero {
  min-height: 740px;
  display: grid;
  place-items: center;
  position: relative;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(7, 17, 21, 0.38), rgba(7, 17, 21, 0.64)),
    url("../images/hero-desk.jpg") center / cover no-repeat;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 30%;
  z-index: -1;
  background: linear-gradient(180deg, rgba(7, 17, 21, 0), rgba(7, 17, 21, 0.38));
}

.hero-inner {
  width: min(var(--max), calc(100% - 40px));
  padding: 7rem 0 8rem;
  color: var(--paper);
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.hero h1 {
  font-family: "Outfit", Arial, sans-serif;
  font-size: clamp(4rem, 11vw, 10rem);
  font-weight: 700;
}

.hero p {
  max-width: 760px;
  margin: 1.35rem auto 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: clamp(1.06rem, 2vw, 1.55rem);
}

.hero-actions,
.actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.82rem 1.18rem;
  border: 2px solid transparent;
  border-radius: 6px;
  background: var(--green);
  color: var(--paper);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.button:hover {
  background: var(--green-dark);
}

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

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.22);
}

.button.orange {
  background: var(--orange);
}

.button.orange:hover {
  background: #dc7f00;
}

.button.dark {
  background: var(--dark);
}

.button.dark:hover {
  background: #1f3037;
}

.section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.tight {
  padding: clamp(3rem, 6vw, 5rem) 0;
}

.section.wash {
  background: var(--wash);
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 2.4rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin-bottom: 0.72rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.section-head h2,
.page-hero h1,
.cta h2 {
  font-family: "Outfit", Arial, sans-serif;
  font-weight: 700;
}

.section-head h2 {
  font-size: clamp(2rem, 5vw, 4rem);
}

.section-head p {
  margin-top: 1rem;
  font-size: 1.05rem;
}

.grid {
  display: grid;
  gap: 1.35rem;
}

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

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

.service-card,
.plain-card,
.step,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card {
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(67, 96, 124, 0.14);
}

.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card-content {
  padding: 1.45rem;
}

.service-card h3 {
  font-size: 1.26rem;
}

.service-card p,
.plain-card p,
.step p,
.contact-card p {
  margin-top: 0.72rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1.15rem;
  color: var(--green-dark);
  font-weight: 700;
}

.text-link:hover {
  color: var(--orange);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.8fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1fr);
}

.media-frame {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(29, 48, 58, 0.15);
}

.logo-panel {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  padding: 2rem;
}

.logo-panel img {
  max-width: 360px;
  width: 100%;
}

.check-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.6rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.75rem;
  color: #43545d;
}

.check-list li::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--orange));
}

.workbench {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.workbench-item {
  padding: 1.35rem;
  background: var(--paper);
}

.workbench-item strong {
  display: block;
  margin-bottom: 0.5rem;
}

.plain-card,
.step,
.contact-card {
  padding: 1.35rem;
}

.step-label {
  display: inline-flex;
  min-width: 40px;
  height: 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 6px;
  background: var(--wash);
  color: var(--green-dark);
  font-weight: 700;
}

.cta {
  position: relative;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 7rem) 0;
  color: var(--paper);
  text-align: center;
  background:
    linear-gradient(180deg, rgba(7, 17, 21, 0.68), rgba(7, 17, 21, 0.72)),
    url("../images/hero-desk.jpg") center / cover no-repeat;
}

.cta h2 {
  font-size: clamp(2rem, 5vw, 4.5rem);
}

.cta p {
  max-width: 660px;
  margin: 1rem auto 0;
  color: rgba(255, 255, 255, 0.9);
}

.page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0 clamp(3.5rem, 8vw, 6rem);
  background: linear-gradient(180deg, #f8fbfc, #eef5f7);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.7fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 8vw, 6.4rem);
}

.page-hero p {
  margin-top: 1.2rem;
  font-size: 1.08rem;
}

.page-hero-note {
  border-left: 4px solid var(--green);
  padding: 1rem 0 1rem 1.2rem;
  color: #43545d;
  background: rgba(255, 255, 255, 0.56);
}

.mini-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.7rem;
}

.mini-nav a {
  padding: 0.56rem 0.72rem;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #43545d;
  background: var(--paper);
  font-weight: 700;
  font-size: 0.9rem;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-strip div {
  padding: 1.15rem;
  background: var(--paper);
}

.feature-strip strong {
  display: block;
  font-size: 1.8rem;
  line-height: 1;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 1.35rem;
}

.contact-card a {
  color: var(--green-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-card {
  min-width: 0;
}

.site-footer {
  background: var(--dark);
  color: var(--paper);
}

.footer-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.76);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links a:hover {
  color: var(--paper);
}

.footer-copyright {
  text-align: right;
}

@media (max-width: 900px) {
  .grid.three,
  .grid.two,
  .split,
  .split.reverse,
  .page-hero-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .workbench {
    grid-template-columns: 1fr 1fr;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .footer-copyright {
    text-align: left;
  }
}

@media (max-width: 680px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 1rem 0;
    width: min(var(--max), calc(100% - 32px));
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    justify-content: stretch;
  }

  .nav-links a {
    padding: 0.48rem 0.58rem;
    min-width: 0;
    text-align: center;
  }

  .nav-links .nav-cta {
    grid-column: 1 / -1;
    margin-left: 0;
  }

  .brand-logo {
    width: 158px;
    max-height: 52px;
  }

  .hero {
    min-height: 620px;
    background-position: 38% center;
  }

  .hero-inner {
    text-align: left;
    padding: 5rem 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 15vw, 3.7rem);
  }

  .page-hero h1 {
    font-size: clamp(2.2rem, 11vw, 3.35rem);
  }

  .section-head h2,
  .cta h2 {
    font-size: clamp(1.9rem, 10vw, 3rem);
  }

  .container {
    width: min(var(--max), calc(100% - 32px));
  }

  .hero-actions,
  .actions {
    justify-content: flex-start;
  }

  .button {
    width: 100%;
  }

  .feature-strip,
  .workbench {
    grid-template-columns: 1fr;
  }

  .section {
    padding-left: 0;
    padding-right: 0;
  }
}
