:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6862;
  --line: #d9e1dc;
  --soft: #f4f6f2;
  --paper: #fffdf7;
  --green: #244c3a;
  --green-2: #3f7458;
  --gold: #c49a4a;
  --clay: #b86143;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(23, 33, 29, 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.5;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255, 253, 247, 0.92);
  border-bottom: 1px solid rgba(217, 225, 220, 0.8);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
}

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

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
  min-height: calc(100svh - 70px);
  padding: clamp(54px, 8vw, 96px) clamp(20px, 5vw, 64px) 52px;
  background:
    linear-gradient(120deg, rgba(36, 76, 58, 0.08), transparent 38%),
    radial-gradient(circle at 82% 16%, rgba(196, 154, 74, 0.18), transparent 28%);
}

.hero-copy {
  max-width: 760px;
}

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

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

h1 {
  max-width: 830px;
  margin-bottom: 24px;
  font-size: clamp(2.9rem, 8vw, 6.8rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.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: 0 18px;
  border: 1px solid var(--green);
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

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

.button.secondary {
  color: var(--green);
  background: transparent;
}

.hero-panel {
  width: min(100%, 440px);
  justify-self: end;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.panel-header {
  display: grid;
  gap: 5px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.panel-header span {
  color: var(--muted);
  font-size: 0.9rem;
}

.panel-header strong {
  font-size: 1.5rem;
}

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

.check-list li {
  position: relative;
  padding-left: 26px;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 0.1rem;
  color: var(--green-2);
  content: "✓";
  font-weight: 900;
}

.problem-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
  background: var(--green);
}

.problem-band div {
  min-height: 150px;
  padding: 26px clamp(20px, 4vw, 48px);
  color: var(--white);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.problem-band div:last-child {
  border-right: 0;
}

.metric {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-weight: 900;
}

.problem-band p {
  max-width: 360px;
  margin: 0;
  font-size: 1.3rem;
  font-weight: 750;
}

.section {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 64px);
}

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

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

.service-card {
  display: grid;
  align-content: space-between;
  min-height: 280px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card.featured {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

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

.service-card.featured p {
  color: rgba(255, 255, 255, 0.82);
}

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

.service-card.featured span {
  color: var(--gold);
}

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

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

.process-list li {
  min-height: 220px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  counter-increment: process;
}

.process-list li::before {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  content: counter(process, decimal-leading-zero);
  font-weight: 900;
}

.process-list strong {
  display: block;
  margin-bottom: 9px;
}

.examples-section {
  padding-bottom: clamp(38px, 5vw, 78px);
}

.examples {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.examples span {
  padding: 10px 13px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 750;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 64px);
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 64px);
  color: var(--white);
  background: var(--green);
}

.contact-copy {
  max-width: 620px;
}

.contact-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
}

.contact-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(24px, 4vw, 38px);
  color: var(--ink);
  background: var(--white);
  border-radius: 8px;
}

.contact-panel h3,
.contact-panel p {
  margin-bottom: 0;
}

.contact-panel > p {
  color: var(--muted);
  font-size: 1rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-panel .button.secondary {
  background: var(--white);
}

.response-note {
  font-weight: 750;
}

.data-note {
  padding: 18px;
  background: var(--soft);
  border-left: 4px solid var(--gold);
}

.data-note strong {
  display: block;
  margin-bottom: 6px;
}

.data-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(20px, 5vw, 64px);
  color: var(--muted);
  background: var(--paper);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.privacy-page {
  padding: clamp(58px, 8vw, 108px) clamp(20px, 5vw, 64px);
  background: var(--soft);
}

.privacy-content {
  max-width: 860px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.privacy-content h1 {
  margin-bottom: 10px;
  font-size: 4rem;
  line-height: 1;
}

.privacy-updated {
  margin-bottom: 46px;
  color: var(--muted);
}

.privacy-content section + section {
  margin-top: 34px;
}

.privacy-content h2 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.privacy-content section p {
  margin-bottom: 0;
  color: var(--muted);
}

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

  nav {
    flex-wrap: wrap;
  }

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

  .hero-panel {
    justify-self: start;
  }

  .problem-band,
  .service-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .problem-band div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

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

@media (max-width: 560px) {
  .brand {
    align-items: flex-start;
  }

  .hero {
    min-height: auto;
  }

  h1 {
    font-size: 3rem;
  }

  .button {
    width: 100%;
  }

  .privacy-content h1 {
    font-size: 3rem;
  }
}
