:root {
  --ink: #17211f;
  --muted: #5f6f6a;
  --paper: #f8f5ef;
  --white: #ffffff;
  --mist: #e9eee9;
  --line: rgba(23, 33, 31, 0.14);
  --green: #0e5b4f;
  --teal: #087b84;
  --coral: #d96a4d;
  --gold: #d9a441;
  --shadow: 0 22px 60px rgba(15, 35, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 16px clamp(20px, 5vw, 72px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(248, 245, 239, 0.94);
  box-shadow: 0 10px 32px rgba(12, 23, 21, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 800;
}

.brand-mark {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-weight: 800;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  opacity: 0.9;
}

.site-nav a:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 86vh;
  overflow: hidden;
  color: var(--white);
  background: #111b1a;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 18, 17, 0.88) 0%, rgba(7, 18, 17, 0.68) 34%, rgba(7, 18, 17, 0.16) 70%),
    linear-gradient(0deg, rgba(7, 18, 17, 0.5) 0%, rgba(7, 18, 17, 0) 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 86vh;
  width: min(700px, calc(100% - 40px));
  padding: 120px 0 88px clamp(20px, 6vw, 88px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 660px;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 2vw, 1.3rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
  box-shadow: 0 16px 30px rgba(14, 91, 79, 0.24);
}

.hero .button.primary {
  background: var(--coral);
  box-shadow: 0 16px 30px rgba(217, 106, 77, 0.28);
}

.button.secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.button.full {
  width: 100%;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1120px, calc(100% - 40px));
  margin: -54px auto 0;
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.trust-strip div {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

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

.trust-strip strong {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
}

.trust-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-weight: 600;
}

.section {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(72px, 9vw, 116px) 0;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
}

.intro-grid h2,
.section-heading h2,
.feature-copy h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4.5vw, 4.6rem);
  line-height: 1;
  letter-spacing: 0;
}

.intro-grid p,
.section-heading p,
.feature-copy p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.services-section {
  padding-top: 0;
}

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

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

.service-card {
  display: grid;
  align-content: start;
  min-height: 278px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.service-icon {
  display: inline-grid;
  width: 46px;
  height: 46px;
  place-items: center;
  margin-bottom: 34px;
  border-radius: 50%;
  color: var(--green);
  background: var(--mist);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-card h3,
.audience-grid h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.service-card p,
.audience-grid p,
.steps p {
  margin: 0;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
  padding: clamp(72px, 9vw, 112px) clamp(20px, 6vw, 88px);
  color: var(--white);
  background: var(--green);
}

.feature-copy p {
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.78);
}

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

.steps li {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-weight: 800;
}

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

.section-heading.compact {
  display: block;
}

.audience-section {
  padding-bottom: clamp(56px, 7vw, 88px);
}

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

.audience-grid > div {
  min-height: 190px;
  padding: 28px;
  background: var(--white);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 0.7fr);
  gap: clamp(34px, 6vw, 84px);
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto clamp(64px, 8vw, 104px);
  padding: clamp(34px, 5vw, 56px);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-copy p {
  margin-top: 20px;
}

.contact-copy a {
  display: inline-block;
  margin-top: 22px;
  color: var(--teal);
  font-weight: 800;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer p {
  margin: 0;
}

.site-footer div {
  display: flex;
  gap: 18px;
  font-weight: 700;
}

@media (max-width: 940px) {
  .site-header {
    min-height: 66px;
    padding: 14px 20px;
  }

  .nav-toggle {
    display: inline-grid;
    z-index: 22;
  }

  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 28px;
    color: var(--ink);
    background: rgba(248, 245, 239, 0.98);
    font-size: 1.45rem;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    min-height: 76vh;
  }

  .hero-image {
    object-position: 62% center;
  }

  .hero-content {
    min-height: 76vh;
    padding: 92px 0 32px 20px;
  }

  .trust-strip,
  .intro-grid,
  .section-heading,
  .feature-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
    width: 100%;
    border-width: 0 0 1px;
    border-radius: 0;
    box-shadow: none;
  }

  .trust-strip div {
    min-height: 92px;
  }

  .service-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.5rem);
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1rem;
  }

  .hero-actions {
    margin-top: 22px;
  }

  .hero-actions .secondary {
    display: none;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 18, 17, 0.9) 0%, rgba(7, 18, 17, 0.7) 58%, rgba(7, 18, 17, 0.42) 100%),
      linear-gradient(0deg, rgba(7, 18, 17, 0.5) 0%, rgba(7, 18, 17, 0) 34%);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .trust-strip,
  .service-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .section {
    width: min(100% - 32px, 1120px);
    padding: 64px 0;
  }

  .intro-grid h2,
  .section-heading h2,
  .feature-copy h2,
  .contact-copy h2 {
    font-size: clamp(2rem, 12vw, 3.2rem);
  }

  .service-card,
  .audience-grid > div {
    min-height: auto;
  }

  .feature-band {
    padding: 64px 20px;
  }

  .contact-section {
    width: min(100% - 32px, 1120px);
    padding: 24px;
  }

  .site-footer {
    flex-direction: column;
  }
}
