/* Stenhus Solutions */
:root {
  --bg: #ffffff;
  --bg-alt: #f7f5f0;
  --fg: #18211c;
  --muted: #6a7570;
  --accent: #2c5f43;
  --line: #e0ddd5;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif; font-size: 16px; line-height: 1.6; color: var(--fg); background: var(--bg); -webkit-font-smoothing: antialiased; }
.wrap { max-width: 1100px; margin: 0 auto; padding: 0 28px; }
.wrap.narrow { max-width: 760px; }

.nav { padding: 22px 0; border-bottom: 1px solid var(--line); }
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--fg); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.brand-mark { width: 22px; height: 22px; background: var(--accent); border-radius: 4px; display: inline-block; }
.nav nav { display: flex; gap: 26px; }
.nav nav a { text-decoration: none; color: var(--muted); font-size: 15px; }
.nav nav a:hover, .nav nav a.active { color: var(--accent); }

.hero { padding: 100px 0 80px; background: var(--bg-alt); border-bottom: 1px solid var(--line); }
.hero h1 { font-size: 48px; line-height: 1.1; letter-spacing: -0.025em; max-width: 820px; margin-bottom: 24px; font-weight: 700; }
.hero p { font-size: 19px; color: var(--muted); max-width: 700px; margin-bottom: 36px; }
.cta { display: inline-block; background: var(--accent); color: white; padding: 14px 26px; text-decoration: none; border-radius: 4px; font-weight: 500; font-size: 16px; transition: background 0.15s; }
.cta:hover { background: #1f4631; }

.services { padding: 90px 0; }
.services h2, .clients h2 { font-size: 30px; margin-bottom: 40px; letter-spacing: -0.02em; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }
.card { padding: 32px; background: var(--bg-alt); border-radius: 8px; }
.card-num { font-size: 13px; color: var(--accent); font-weight: 600; letter-spacing: 0.1em; margin-bottom: 14px; }
.card h3 { font-size: 21px; margin-bottom: 12px; letter-spacing: -0.01em; }
.card p { color: var(--muted); }

.quote { background: var(--accent); color: white; padding: 80px 0; }
.quote blockquote p { font-size: 22px; line-height: 1.5; margin-bottom: 16px; font-style: italic; }
.quote cite { font-size: 14px; opacity: 0.8; font-style: normal; }

.clients { padding: 80px 0; border-top: 1px solid var(--line); }
.muted { color: var(--muted); margin-bottom: 30px; }
.logo-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.logo-strip span { padding: 22px; background: var(--bg-alt); border-radius: 6px; font-size: 14px; color: var(--muted); text-align: center; }

.page { padding: 70px 0 90px; }
.page h1 { font-size: 42px; letter-spacing: -0.025em; margin-bottom: 18px; }
.page h2 { font-size: 22px; margin-top: 38px; margin-bottom: 14px; }
.page h3 { font-size: 17px; margin-bottom: 6px; }
.lead { font-size: 18px; color: var(--muted); margin-bottom: 30px; }
.page p { margin-bottom: 16px; }
.service-block { margin-bottom: 50px; padding-bottom: 30px; border-bottom: 1px solid var(--line); }
.service-block:last-of-type { border: none; }
.cta-block { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--line); font-size: 17px; }
.cta-block a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-blocks { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 40px; margin: 40px 0; }
.contact-blocks h3 { color: var(--accent); margin-bottom: 8px; }
.contact-blocks p { margin-bottom: 8px; }

footer { padding: 36px 0; border-top: 1px solid var(--line); background: var(--bg-alt); color: var(--muted); font-size: 14px; }
footer p { margin-bottom: 4px; }
footer a { color: var(--muted); }
footer .small { font-size: 13px; opacity: 0.7; }

@media (max-width: 640px) {
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 32px; }
}
