:root {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #14231d;
  background: #eef3ef;
  font-synthesis: none;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(180deg, #f7f9f7 0%, #eef3ef 100%);
}
a { color: inherit; }
.site-header {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #52655c;
}
.brand {
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
  color: #102a20;
}
main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 28px 88px;
}
.hero { max-width: 760px; margin-bottom: 54px; }
.eyebrow {
  margin: 0 0 12px;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #3d7560;
}
h1, h2 { margin: 0; letter-spacing: -0.045em; }
h1 {
  max-width: 720px;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: .94;
  color: #102a20;
}
.intro {
  max-width: 660px;
  margin: 26px 0 0;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  line-height: 1.65;
  color: #52655c;
}
.services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  min-height: 280px;
  padding: 32px;
  border: 1px solid rgba(20, 35, 29, .10);
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 16px 48px rgba(20, 35, 29, .07);
}
.service-card.resrutt { background: #dfeaf4; }
.service-card.loppisrutt { background: #dfece2; }
.service-kicker {
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #53675e;
}
.service-card h2 { margin-top: 20px; font-size: 2.25rem; }
.service-card p {
  margin: 12px 0 30px;
  max-width: 34rem;
  line-height: 1.6;
  color: #465a51;
}
.service-card a {
  margin-top: auto;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid currentColor;
  padding-bottom: 2px;
}
.more {
  max-width: 720px;
  margin: 72px 0 0;
  padding-top: 38px;
  border-top: 1px solid rgba(20, 35, 29, .12);
}
.more h2 { font-size: clamp(2rem, 5vw, 3.4rem); }
.more > p:last-child { color: #52655c; line-height: 1.65; }
footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(20, 35, 29, .1);
  color: #687a72;
}
@media (max-width: 720px) {
  .site-header span { display: none; }
  main { padding-top: 48px; }
  .services { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  footer { flex-direction: column; }
}
