:root {
  color-scheme: light;
  --ink: #16211f;
  --muted: #64726f;
  --line: #d7e1dd;
  --paper: #f7faf6;
  --surface: #ffffff;
  --accent: #136f5d;
  --accent-strong: #0d584a;
  --accent-soft: #dcefe8;
  --warm: #f3d79a;
  --blue: #d9e9f6;
  --rose: #f4d8d2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family:
    "Avenir Next",
    "Segoe UI",
    "Hiragino Sans",
    "Yu Gothic",
    sans-serif;
  background:
    radial-gradient(circle at 9% 8%, rgba(19, 111, 93, 0.16), transparent 18rem),
    radial-gradient(circle at 92% 18%, rgba(217, 233, 246, 0.9), transparent 22rem),
    linear-gradient(146deg, rgba(243, 215, 154, 0.36), transparent 34rem),
    var(--paper);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(19, 111, 93, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(19, 111, 93, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, black, transparent 76%);
}

a {
  color: var(--accent);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.page {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 64px 0 44px;
}

.hero {
  position: relative;
  padding: 56px 0 64px;
}

.hero::after {
  display: block;
  width: min(52vw, 420px);
  height: 10px;
  margin-top: 48px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--rose));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(2.55rem, 7vw, 6rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.6vw, 1.45rem);
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgba(19, 111, 93, 0.18);
  border-radius: 999px;
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-meta span:last-child {
  border-color: rgba(243, 215, 154, 0.72);
  color: #69501a;
  background: rgba(255, 250, 235, 0.84);
}

.section {
  padding: 40px 0;
  border-top: 1px solid var(--line);
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

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

.service-grid li {
  min-height: 230px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 48px rgba(22, 33, 31, 0.07);
}

.service-number {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-grid h3 {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.service-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.highlight {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.25fr);
  gap: 34px;
  align-items: start;
}

.highlight .section-header {
  display: block;
  margin-bottom: 0;
}

.highlight p {
  max-width: 660px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.75;
}

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

dl div {
  min-width: 0;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

dd {
  margin: 0;
  overflow-wrap: anywhere;
  font-size: 1.05rem;
  font-weight: 650;
}

.footer {
  width: min(100% - 40px, 920px);
  margin: 0 auto;
  padding: 22px 0 40px;
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 680px) {
  .page {
    width: min(100% - 28px, 920px);
    padding-top: 40px;
  }

  .hero {
    padding: 36px 0 42px;
  }

  .section-header {
    display: block;
  }

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

  .highlight {
    grid-template-columns: 1fr;
  }

  dl {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

@media (max-width: 520px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-grid li {
    min-height: auto;
  }

  .service-number {
    margin-bottom: 24px;
  }
}
