/* Närke Flis AB — static brochure site
   Palette: forest green + wood amber + cream. No build step, no JS. */

:root {
  --green-dark: #244d2a;
  --green: #2f6135;
  --green-light: #7ab85f;
  --amber: #c8862a;
  --amber-dark: #a96f1f;
  --cream: #f5f0e6;
  --ink: #2b2b2b;
  --muted: #5e6b5a;
  --maxw: 960px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

a { color: var(--amber-dark); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }

/* ---------- Header ---------- */
.site-header {
  background: var(--green-dark);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 12px;
  padding-bottom: 12px;
  flex-wrap: wrap;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand svg { width: 40px; height: 40px; flex: none; }
.brand-name {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: .5px;
}
.call-btn {
  background: var(--amber);
  color: var(--green-dark) !important;
  font-weight: 700;
  text-decoration: none;
  padding: 9px 16px;
  border-radius: 8px;
  white-space: nowrap;
  font-size: .95rem;
}
.call-btn:hover { background: #d9933a; }

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 48px 0 24px;
}
.hero h1 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  line-height: 1.15;
}
.hero .lead {
  margin: 0 auto 8px;
  max-width: 540px;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}
.hero-art {
  width: 100%;
  max-width: 620px;
  height: auto;
  margin: 20px auto 0;
  display: block;
}

/* ---------- Sections ---------- */
section { padding: 40px 0; }
.section-title {
  text-align: center;
  color: var(--green-dark);
  font-size: clamp(1.4rem, 4vw, 1.9rem);
  margin: 0 0 28px;
}
.services { background: #fff; }
.service-card {
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid #e3d9c4;
  border-radius: 14px;
  padding: 28px 26px;
  text-align: center;
  background: var(--cream);
}
.service-card .icon { font-size: 2.4rem; line-height: 1; }
.service-card h3 { color: var(--amber-dark); margin: 10px 0 8px; font-size: 1.35rem; }
.service-card p { margin: 0; color: var(--muted); }

/* ---------- Contact ---------- */
.contact { text-align: center; }
.contact .person { font-size: 1.2rem; font-weight: 700; margin: 0 0 14px; color: var(--green-dark); }
.contact-list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}
.contact-list li { font-size: 1.1rem; }
.contact-list a {
  color: var(--amber-dark);
  font-weight: 700;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline; }
.contact-list .ic { display: inline-block; width: 1.6rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: #cdbfa3;
  text-align: center;
  padding: 20px;
  font-size: .9rem;
}

@media (max-width: 480px) {
  .brand-name { font-size: 1rem; }
  .site-header .wrap { justify-content: center; }
}
