/* Kukkakauppa Kanerva demo — mobile-first, dependency-free. */
:root {
  --bg: #fbf7f4;
  --panel: #ffffff;
  --text: #2b2320;
  --muted: #6f635c;
  --accent: #b0468a;
  --line: #ecdfd8;
  --radius: 14px;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: var(--accent); }

.site-header { background: var(--panel); border-bottom: 1px solid var(--line); }
.site-header__inner {
  max-width: 960px; margin: 0 auto; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
}
.site-header__logo { font-weight: 700; font-size: 1.15rem; text-decoration: none; color: var(--text); }
.site-header__nav { display: flex; gap: 1.1rem; }
.site-header__link { text-decoration: none; color: var(--muted); font-size: .95rem; }
.site-header__link:hover { color: var(--accent); }

.hero {
  background: linear-gradient(160deg, #fdeef6 0%, var(--bg) 70%);
}
.hero__inner { max-width: 960px; margin: 0 auto; padding: 3.5rem 1.25rem; }
.hero__eyebrow { color: var(--accent); font-weight: 600; letter-spacing: .04em; margin: 0 0 .5rem; text-transform: uppercase; font-size: .8rem; }
.hero__title { font-size: clamp(2rem, 6vw, 3rem); line-height: 1.1; margin: 0 0 .75rem; }
.hero__lead { color: var(--muted); font-size: 1.1rem; max-width: 34rem; margin: 0 0 1.75rem; }

.button {
  display: inline-block; padding: .75rem 1.4rem; border-radius: 999px;
  text-decoration: none; font-weight: 600;
}
.button--primary { background: var(--accent); color: #fff; }
.button--primary:hover { background: #97397440; background: #973974; }

.services, .contact { max-width: 960px; margin: 0 auto; padding: 3rem 1.25rem; }
.services__title, .contact__title { font-size: 1.6rem; margin: 0 0 1.5rem; }
.services__grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.4rem; }
.card__title { margin: 0 0 .4rem; font-size: 1.2rem; }
.card__text { margin: 0; color: var(--muted); }

.contact { border-top: 1px solid var(--line); }
.contact__line { margin: .25rem 0; }

.site-footer { border-top: 1px solid var(--line); background: var(--panel); }
.site-footer p { max-width: 960px; margin: 0 auto; padding: 1.5rem 1.25rem; color: var(--muted); font-size: .85rem; }

@media (min-width: 640px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}
