:root {
  --bg: #fff9ef;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --ink: #17231c;
  --muted: #647269;
  --line: rgba(23, 35, 28, 0.12);
  --orange: #ff8a1f;
  --orange-dark: #df6910;
  --green: #2f9f65;
  --green-dark: #137548;
  --mint: #dff4df;
  --cream: #fff1d4;
  --shadow: 0 24px 70px rgba(35, 58, 43, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 138, 31, 0.18), transparent 26rem),
    radial-gradient(circle at 84% 16%, rgba(47, 159, 101, 0.16), transparent 24rem),
    linear-gradient(180deg, #fffaf1 0%, #fbfff7 48%, #fff9ef 100%);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  margin: 12px auto 0;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 40px rgba(35, 58, 43, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--orange), var(--green));
  color: #fff;
  font-weight: 800;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 16px;
  letter-spacing: 0;
}

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

.main-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

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

.main-nav a:hover {
  background: rgba(47, 159, 101, 0.09);
  color: var(--green-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ghost-link,
.menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 10px;
}

.ghost-link:hover,
.menu-button:hover {
  border-color: var(--line);
  background: #fff;
}

.menu-button {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  border: 0;
  border-radius: var(--radius);
  background: var(--orange);
  color: #1f1409;
  cursor: pointer;
  font-weight: 800;
  padding: 14px 20px;
  box-shadow: 0 16px 34px rgba(255, 138, 31, 0.28);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover {
  background: #ff9b3b;
  box-shadow: 0 20px 42px rgba(255, 138, 31, 0.34);
  transform: translateY(-1px);
}

.button-sm {
  min-height: 40px;
  padding: 9px 14px;
}

.button-secondary {
  border: 1px solid rgba(47, 159, 101, 0.24);
  background: #fff;
  color: var(--green-dark);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--mint);
  box-shadow: none;
}

.section-pad {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 96px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: 54px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding-top: 72px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow span {
  width: 34px;
  height: 2px;
  background: var(--orange);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(42px, 5.8vw, 72px);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.15;
}

.hero-lead {
  max-width: 690px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}

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

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 42px;
}

.hero-metrics div {
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  padding: 18px;
}

.hero-metrics strong,
.hero-metrics span {
  display: block;
}

.hero-metrics strong {
  margin-bottom: 8px;
  color: var(--green-dark);
  font-size: 18px;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  position: relative;
  isolation: isolate;
}

.hero-visual::before {
  position: absolute;
  inset: 8% -6% -6% 9%;
  z-index: -1;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.18), rgba(47, 159, 101, 0.18));
  content: "";
  transform: rotate(-3deg);
}

.hero-visual img {
  width: 100%;
  max-height: 660px;
  border: 1px solid rgba(255, 138, 31, 0.22);
  border-radius: 28px;
  box-shadow: var(--shadow);
  object-fit: cover;
}

.visual-card {
  position: absolute;
  display: flex;
  gap: 10px;
  align-items: center;
  max-width: 250px;
  border: 1px solid rgba(23, 35, 28, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 50px rgba(23, 35, 28, 0.12);
  backdrop-filter: blur(14px);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  padding: 14px;
}

.visual-card svg {
  flex: 0 0 auto;
  color: var(--green);
}

.visual-card-top {
  top: 34px;
  left: -24px;
}

.visual-card-bottom {
  right: -14px;
  bottom: 42px;
}

.answer {
  padding-top: 54px;
}

.answer-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: stretch;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  padding: 34px;
}

.answer-grid > div:first-child p {
  color: var(--muted);
  font-size: 18px;
}

.answer-list {
  display: grid;
  gap: 12px;
}

.answer-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-solid);
  padding: 18px;
}

.answer-list svg {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: var(--mint);
  color: var(--green-dark);
  padding: 10px;
}

.answer-list p,
.section-head p,
.service-card p,
.steps p,
.contact-strip p {
  color: var(--muted);
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.section-head p {
  max-width: 430px;
  margin-bottom: 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 44px rgba(23, 35, 28, 0.06);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.service-card::after {
  position: absolute;
  inset: auto -28px -42px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(255, 138, 31, 0.12);
  content: "";
}

.service-card:hover {
  border-color: rgba(47, 159, 101, 0.32);
  box-shadow: 0 22px 54px rgba(23, 35, 28, 0.12);
  transform: translateY(-3px);
}

.service-card-large {
  min-height: 330px;
  padding: 26px;
}

.service-card-large h3 {
  max-width: 310px;
  font-size: 30px;
}

.service-card-large > span {
  position: absolute;
  top: 26px;
  right: 26px;
  color: rgba(23, 35, 28, 0.28);
  font-weight: 800;
}

.service-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 48px;
  border-radius: var(--radius);
  background: var(--cream);
  color: var(--orange-dark);
}

.accent-orange {
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.22), rgba(255, 255, 255, 0.8));
}

.accent-green {
  background: linear-gradient(135deg, rgba(47, 159, 101, 0.22), rgba(255, 255, 255, 0.8));
}

.accent-green .service-icon {
  background: var(--mint);
  color: var(--green-dark);
}

.card-actions {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.card-actions a,
.service-card-small a {
  display: inline-flex;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  padding: 10px 12px;
}

.card-actions a:last-child {
  background: var(--ink);
  color: #fff;
}

.service-card-small {
  display: flex;
  min-height: 184px;
  flex-direction: column;
  justify-content: space-between;
  padding: 20px;
}

.service-card-small > svg {
  color: var(--green);
}

.service-card-small h3 {
  max-width: 220px;
  font-size: 19px;
}

.process {
  width: 100%;
  background: linear-gradient(180deg, rgba(47, 159, 101, 0.08), rgba(255, 138, 31, 0.08));
}

.process > * {
  width: min(1180px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}

.steps article {
  min-height: 230px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  padding: 20px;
}

.steps span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--orange-dark);
  font-weight: 800;
}

.contact-strip {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  outline: none;
  padding: 14px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(47, 159, 101, 0.55);
  box-shadow: 0 0 0 4px rgba(47, 159, 101, 0.12);
}

svg {
  width: 19px;
  height: 19px;
  stroke-width: 2;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    padding: 8px;
    box-shadow: var(--shadow);
  }

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

  .menu-button {
    display: inline-flex;
  }

  .hide-sm {
    display: none;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-metrics,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .section-head {
    align-items: start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .site-header {
    width: min(100% - 20px, 1180px);
  }

  .ghost-link span,
  .button-sm {
    display: none;
  }

  .section-pad {
    width: min(100% - 24px, 1180px);
    padding: 68px 0;
  }

  .hero {
    gap: 34px;
    padding-top: 48px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 34px;
  }

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

  .hero-metrics,
  .services-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .answer-grid {
    padding: 22px;
  }

  .service-card-large {
    min-height: 300px;
  }

  .service-card-large h3 {
    font-size: 27px;
  }

  .visual-card {
    position: static;
    max-width: none;
    margin-top: 10px;
  }
}
