:root {
  --olive: #6B7A3F;
  --olive-deep: #3E4A22;
  --olive-ink: #2A331A;
  --olive-tint: #F2F4E6;
  --olive-soft: #D8DEC2;
  --cream: #FAF8F0;
  --white: #FFFFFF;
  --amber: #C77E1F;
  --amber-dark: #A5670F;
  --line: #E4E2D5;
  --text: #33381F;
  --text-soft: #5C6640;
  --radius: 10px;
  --font-head: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  font-size: 16.5px;
}

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 { font-family: var(--font-head); color: var(--olive-ink); line-height: 1.25; }
h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 12px; }
section h2 { text-align: center; }
.section-sub { text-align: center; color: var(--text-soft); max-width: 560px; margin: 0 auto 8px; }

a { color: var(--olive-deep); }

/* Buttons */
.btn {
  display: inline-block;
  padding: 11px 24px;
  border-radius: 8px;
  border: none;
  font-family: var(--font-body);
  font-size: 15.5px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn-lg { padding: 14px 30px; font-size: 16.5px; }
.btn-block { width: 100%; }
.btn-accent { background: var(--amber); color: #FFF7EA; }
.btn-accent:hover { background: var(--amber-dark); }
.btn-ghost { background: transparent; color: #F7F8EE; border: 1.5px solid rgba(247, 248, 238, 0.55); }
.btn-ghost:hover { border-color: #F7F8EE; background: rgba(247, 248, 238, 0.08); }
.btn-outline { background: transparent; color: var(--olive-deep); border: 1.5px solid var(--olive); }
.btn-outline:hover { background: var(--olive-tint); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 240, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--olive-deep);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.logo-mark { width: 22px; height: 22px; color: var(--olive); }
.logo-tld { color: var(--amber); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
}
.nav-links a:not(.btn) {
  text-decoration: none;
  color: var(--text-soft);
  font-size: 15px;
  font-weight: 500;
}
.nav-links a:not(.btn):hover { color: var(--olive-deep); }
.btn-nav { padding: 9px 18px; font-size: 14.5px; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--olive-deep);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Hero */
.hero { background: var(--olive); color: #F7F8EE; }
.hero-inner { padding: 84px 24px 72px; text-align: center; }
.hero-kicker {
  font-size: 14px;
  letter-spacing: 0.6px;
  color: var(--olive-soft);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero h1 {
  color: #F7F8EE;
  font-size: clamp(34px, 6vw, 54px);
  margin-bottom: 18px;
}
.hero-sub {
  max-width: 580px;
  margin: 0 auto 30px;
  font-size: 18px;
  color: #E2E6CF;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-trust {
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin-top: 40px;
  font-size: 14.5px;
  color: var(--olive-soft);
}
.hero-trust li::before { content: "✓ "; color: #F7F8EE; }

/* Pains */
.pains { padding: 72px 0; }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.pain-card h3 { font-size: 17px; margin-bottom: 10px; font-family: var(--font-body); font-weight: 600; }
.pain-card p { font-size: 14.5px; color: var(--text-soft); }

/* Services */
.services { padding: 72px 0; background: var(--olive-tint); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
  margin-top: 40px;
}
.services-extra {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px dashed var(--olive);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 22px;
}
.services-extra-icon { width: 28px; height: 28px; color: var(--amber-dark); flex-shrink: 0; margin-top: 2px; }
.services-extra p { font-size: 15px; color: var(--text-soft); }
.services-extra strong { color: var(--olive-ink); }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.service-card.featured { border: 2px solid var(--olive); background: #FDFDF8; }
.badge {
  position: absolute;
  top: -12px;
  left: 22px;
  background: var(--amber);
  color: #FFF7EA;
  font-size: 12.5px;
  font-weight: 600;
  padding: 3px 12px;
  border-radius: 6px;
}
.service-icon { width: 30px; height: 30px; color: var(--olive); margin-bottom: 14px; }
.service-card h3 { font-size: 20px; margin-bottom: 4px; }
.price { font-size: 30px; font-weight: 600; font-family: var(--font-head); color: var(--olive-deep); margin-bottom: 14px; }
.price-was { font-size: 14px; color: var(--amber-dark); font-family: var(--font-body); font-weight: 500; }
.service-card ul { list-style: none; margin-bottom: 22px; flex-grow: 1; }
.service-card li {
  font-size: 14.5px;
  color: var(--text-soft);
  padding: 5px 0 5px 24px;
  position: relative;
}
.service-card li::before {
  content: "✓";
  position: absolute;
  left: 2px;
  color: var(--olive);
  font-weight: 600;
}
.service-card .btn { text-align: center; }

/* Steps */
.steps { padding: 72px 0; }
.step-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.step { text-align: center; padding: 0 10px; }
.step-num {
  display: inline-flex;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--olive);
  color: #F7F8EE;
  align-items: center;
  justify-content: center;
  font-size: 19px;
  font-weight: 600;
  font-family: var(--font-head);
  margin-bottom: 16px;
}
.step h3 { font-size: 19px; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-soft); }

/* Why */
.why { padding: 72px 0; background: var(--olive-deep); }
.why h2 { color: #F7F8EE; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 34px;
  margin-top: 40px;
}
.why-item h3 { color: #F7F8EE; font-size: 19px; margin-bottom: 10px; }
.why-item p { font-size: 15px; color: var(--olive-soft); }

/* Contact */
.contact { padding: 78px 0; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 54px;
  align-items: start;
}
.contact h2 { text-align: left; }
.contact-info > p { color: var(--text-soft); margin-bottom: 26px; }
.contact-details { list-style: none; }
.contact-details li { margin-bottom: 16px; }
.contact-label {
  display: block;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-soft);
  margin-bottom: 2px;
}
.contact-details a { font-size: 19px; font-weight: 600; color: var(--olive-deep); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 30px 28px;
}
.form-row { margin-bottom: 16px; }
.form-split { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--olive-ink);
}
.optional { font-weight: 400; color: var(--text-soft); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(107, 122, 63, 0.15);
}
.contact-form textarea { resize: vertical; }
.hidden-field { display: none; }
.form-privacy { font-size: 13px; color: var(--text-soft); margin-top: 14px; text-align: center; }

/* FAQ */
.faq { padding: 72px 0; background: var(--olive-tint); }
.faq-inner { max-width: 720px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-top: 12px;
  padding: 0 22px;
}
.faq details:first-of-type { margin-top: 34px; }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16px;
  padding: 17px 0;
  color: var(--olive-ink);
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 2px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--olive);
  font-weight: 400;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { padding: 0 0 18px; font-size: 15px; color: var(--text-soft); }

/* SEO-tekst */
.seo-text { padding: 56px 0; }
.seo-inner { max-width: 760px; }
.seo-text h2 { text-align: left; font-size: 22px; margin-bottom: 14px; }
.seo-text p { color: var(--text-soft); font-size: 15px; margin-bottom: 14px; }

/* Legal page */
.legal-page { padding: 56px 0 72px; }
.legal-inner { max-width: 720px; }
.legal-page h1 { font-size: clamp(30px, 5vw, 40px); margin-bottom: 6px; }
.legal-updated { font-size: 14px; color: var(--text-soft); margin-bottom: 26px; }
.legal-page h2 { text-align: left; font-size: 21px; margin: 30px 0 8px; }
.legal-page p { margin-bottom: 12px; }
.legal-page ul { margin: 0 0 12px 22px; }
.legal-page li { margin-bottom: 6px; }

/* Footer */
.site-footer { background: var(--olive-deep); padding: 44px 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.footer-brand .logo { color: #F7F8EE; font-size: 20px; }
.footer-brand p { color: var(--olive-soft); font-size: 14px; max-width: 380px; margin-top: 10px; }
.footer-contact { text-align: right; }
.footer-contact a { color: #F7F8EE; text-decoration: none; font-size: 15px; }
.footer-contact a:hover { text-decoration: underline; }
.footer-legal { color: var(--olive-soft); font-size: 13px; margin-top: 10px; }

/* Mobile */
@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    padding: 18px 24px 22px;
    gap: 16px;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .site-nav { position: static; }
  .site-header { position: sticky; }
  .header-inner { position: relative; }
  .hero-inner { padding: 56px 20px 52px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .form-split { grid-template-columns: 1fr; }
  .footer-contact { text-align: left; }
}
