:root {
  --ink: #151714;
  --muted: #5c655e;
  --paper: #f4f6f1;
  --white: #ffffff;
  --green: #26684f;
  --green-deep: #133315;
  --blue: #305f89;
  --lime: #c5d956;
  --line: #dce3da;
  --shadow: 0 18px 50px rgba(21, 23, 20, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 18px clamp(20px, 5vw, 72px);
  color: var(--ink);
  background: rgba(244, 246, 241, 0.9);
  border-bottom: 1px solid rgba(21, 23, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: 0;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border-radius: 8px;
}

.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a,
.nav-cta {
  text-shadow: none;
}

.nav-cta {
  padding: 10px 16px;
  font-weight: 800;
  color: var(--white);
  background: var(--green-deep);
  border: 1px solid var(--green-deep);
  border-radius: 8px;
}

.hero {
  position: relative;
  display: flex;
  min-height: 86vh;
  align-items: flex-end;
  padding: 150px clamp(20px, 6vw, 92px) 92px;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(244, 246, 241, 0.96), rgba(244, 246, 241, 0.68), rgba(244, 246, 241, 0.14)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(244, 246, 241, 0.55), rgba(244, 246, 241, 0) 54%);
}

.hero-content {
  position: relative;
  width: min(780px, 100%);
}

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

.hero .eyebrow {
  color: var(--green);
}

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

h1,
h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.02;
}

h1 {
  max-width: 760px;
  font-size: 5.7rem;
}

h2 {
  font-size: 3.8rem;
}

h3 {
  margin: 16px 0 10px;
  font-size: 1.35rem;
  line-height: 1.2;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  font-size: 1.18rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 32px;
}

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

.button-primary {
  color: var(--white);
  background: var(--green-deep);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(21, 23, 20, 0.3);
  background: rgba(255, 255, 255, 0.38);
}

.section {
  display: grid;
  gap: clamp(34px, 6vw, 82px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 92px);
}

.split,
.testimonial {
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  align-items: center;
}

.section-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  content: "";
  background: var(--lime);
  border-radius: 6px;
}

.check-list li::after {
  position: absolute;
  left: 7px;
  top: 7px;
  width: 5px;
  height: 9px;
  content: "";
  border: solid var(--ink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feature-image {
  width: 100%;
  min-height: 420px;
  max-height: 680px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.section-heading {
  max-width: 760px;
}

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

.service-card {
  min-height: 300px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.service-card span {
  color: var(--blue);
  font-weight: 900;
}

.service-card p {
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--green-deep);
  font-weight: 900;
  border-bottom: 2px solid var(--lime);
}

.offer-detail {
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  align-items: start;
  background: var(--paper);
}

.offer-detail.alt {
  background: var(--white);
}

.offer-detail p {
  max-width: 680px;
  color: var(--muted);
}

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

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

.detail-grid article {
  min-height: 220px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.offer-detail.alt .detail-grid article {
  background: var(--paper);
}

.plain-list,
.process-list {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.process-list {
  font-weight: 900;
}

.shift-band .eyebrow,
.results-band .eyebrow {
  color: var(--lime);
}

.results-band {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr);
  gap: clamp(36px, 7vw, 100px);
  align-items: start;
  padding: clamp(72px, 10vw, 122px) clamp(20px, 6vw, 92px);
  color: var(--white);
  background: var(--green-deep);
}

.metrics {
  display: grid;
  gap: 18px;
}

.metrics article {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.metrics strong {
  color: var(--lime);
  font-size: 2rem;
  line-height: 1;
}

.testimonial {
  background: var(--paper);
}

.proof-section {
  background: var(--white);
}

.quote-panel {
  max-width: 680px;
}

blockquote {
  margin: 0;
  font-size: 3.15rem;
  font-weight: 900;
  line-height: 1.08;
}

.quote-credit {
  margin-top: 24px;
  color: var(--muted);
  font-weight: 900;
}

.companies-section {
  background: var(--paper);
}

.company-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.company-grid span {
  display: grid;
  min-height: 104px;
  place-items: center;
  padding: 24px;
  color: var(--green-deep);
  font-size: 1.18rem;
  font-weight: 900;
  text-align: center;
  background: var(--white);
}

.about-section {
  background: var(--paper);
}

.portrait-image {
  width: 75%;
  justify-self: center;
  object-position: center top;
}

.about-button {
  margin-top: 28px;
}

.contact-band {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 0.9fr);
  gap: clamp(34px, 7vw, 98px);
  padding: clamp(72px, 10vw, 132px) clamp(20px, 6vw, 92px);
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(23, 32, 27, 0.86), rgba(23, 32, 27, 0.64)),
    url("https://images.unsplash.com/photo-1542744095-fcf48d80b0fd?auto=format&fit=crop&w=1600&q=82") center / cover;
}

.contact-band p {
  max-width: 560px;
}

.contact-panel {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 28px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  backdrop-filter: blur(14px);
}

.contact-simple {
  align-content: center;
}

.email-button {
  width: 100%;
}

.site-footer {
  padding: 28px 20px 44px;
  text-align: center;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.linkedin-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--green-deep);
}

.linkedin-link svg {
  width: 28px;
  height: 28px;
}


@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 82vh;
    padding-top: 120px;
    padding-bottom: 64px;
  }

  .split,
  .testimonial,
  .results-band,
  .contact-band,
  .service-grid,
  .offer-detail,
  .detail-grid,
  .offer-detail.alt .detail-grid,
  .company-grid {
    grid-template-columns: 1fr;
  }

  .testimonial img {
    order: 2;
  }

  .feature-image {
    min-height: 320px;
  }

  h1 {
    font-size: 4rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  blockquote {
    font-size: 2.35rem;
  }

  .metrics article {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .nav-cta {
    padding: 9px 12px;
  }

  .hero {
    min-height: 84vh;
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  blockquote {
    font-size: 1.85rem;
  }

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

  .section,
  .results-band,
  .contact-band {
    padding-right: 16px;
    padding-left: 16px;
  }

  .contact-panel {
    padding: 18px;
  }
}
