:root{
  --bg:#f7f8f6;
  --text:#1f2937;
  --muted:#4b5563;
  --accent:#2f4f4f;
  --border:#e5e7eb;
  --card:#ffffff;
  --shadow:0 10px 25px rgba(0,0,0,0.05);
  --header-offset:74px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
section[id]{ scroll-margin-top:var(--header-offset); }

body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  background:var(--bg);
  color:var(--text);
  line-height:1.65;
}

.skip-link{
  position:absolute;
  left:-999px;
  top:10px;
  background:#fff;
  color:var(--accent);
  padding:10px 12px;
  border-radius:10px;
  border:2px solid var(--accent);
  z-index:999;
}
.skip-link:focus{ left:10px; }

a:focus-visible, summary:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
  outline:3px solid rgba(47,79,79,0.35);
  outline-offset:3px;
}

.site-header{
  background:rgba(255,255,255,0.92);
  border-bottom:1px solid var(--border);
  padding:14px 20px;
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(8px);
}

.nav{
  max-width:1100px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  font-weight:800;
  color:var(--accent);
  text-decoration:none;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
}

.nav-links a{
  text-decoration:none;
  color:var(--accent);
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
}

.nav-links a:hover{ background:rgba(47,79,79,0.08); }
.nav-cta{ border:2px solid var(--accent); }

.hero{
  position:relative;
  min-height:66vh;
  background-image:url("hero-skov.jpg");
  background-size:cover;
  background-position:center;
  display:flex;
  align-items:center;
  padding:70px 20px;
  color:#fff;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.62));
}

.hero-inner{
  position:relative;
  max-width:1100px;
  margin:0 auto;
  width:100%;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.15fr 0.85fr;
  gap:42px;
  align-items:center;
}

.hero-text{ max-width:720px; }

.hero h1{
  margin:0 0 14px;
  font-size:2.25rem;
  font-weight:650;
  letter-spacing:0.2px;
}

.hero p{
  margin:0;
  font-size:1.08rem;
  color:#e5e7eb;
}

.hero-portrait{
  display:flex;
  justify-content:center;
}

.hero-portrait img{
  width:100%;
  max-width:380px;
  height:auto;
  border-radius:18px;
  box-shadow:0 24px 55px rgba(0,0,0,0.35);
  object-fit:cover;
  border:1px solid rgba(255,255,255,0.18);
}

.hero-buttons{
  margin-top:18px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:12px;
  border:2px solid #fff;
  color:#fff;
  text-decoration:none;
  font-weight:800;
}
.btn:hover{ background:rgba(255,255,255,0.12); }

.btn.primary{
  background:#fff;
  color:var(--accent);
}
.btn.primary:hover{ background:#f3f4f6; }

.trust-row{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.trust-pill{
  padding:8px 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.14);
  border:1px solid rgba(255,255,255,0.25);
  color:#fff;
  font-weight:800;
  font-size:0.95rem;
}

.section{
  max-width:980px;
  margin:0 auto;
  padding:54px 20px;
}

.section-alt{
  background:rgba(255,255,255,0.55);
  border-top:1px solid rgba(229,231,235,0.9);
  border-bottom:1px solid rgba(229,231,235,0.9);
  padding:54px 0;
}

.section-alt > *{
  max-width:980px;
  margin:0 auto;
  padding:0 20px;
}

.section h2{
  margin:0 0 14px;
  font-size:1.85rem;
  font-weight:650;
  color:var(--accent);
}

.lead{
  margin-top:-6px;
  color:var(--muted);
  font-size:1.02rem;
}

.micro{
  margin-top:10px;
  font-size:0.98rem;
  color:var(--muted);
}

.text-block,.single-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:22px;
  margin-top:18px;
  box-shadow:var(--shadow);
}
.text-block.compact{ padding:18px 20px; }

.note{
  margin-top:14px;
  padding:12px 14px;
  border-radius:12px;
  border:1px dashed rgba(47,79,79,0.25);
  color:var(--muted);
  background:rgba(47,79,79,0.04);
}

.services{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:18px;
}

.service-box{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:18px;
  box-shadow:var(--shadow);
}

.service-box h3{ margin:0 0 10px; color:var(--accent); }
.service-box p{ margin:0 0 10px; color:var(--muted); }

.mini-list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--muted);
}
.mini-list li{ margin:8px 0; }

.inline-cta{
  margin-top:18px;
  text-align:center;
}

.cta-button{
  display:inline-block;
  margin-top:18px;
  background:var(--accent);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  padding:12px 18px;
  border-radius:12px;
  border:2px solid var(--accent);
  transition:background .2s ease, color .2s ease;
  cursor:pointer;
}
.cta-button:hover{
  background:#fff;
  color:var(--accent);
}

.testimonials{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
  margin-top:18px;
}

.testimonial-card{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:20px;
  box-shadow:var(--shadow);
}

.testimonial-card p{
  margin:0 0 10px;
  color:var(--muted);
}

.testimonial-card footer{
  margin-top:10px;
  font-style:italic;
  color:var(--muted);
}

.faq{
  background:var(--card);
  border:1px solid var(--border);
  border-radius:16px;
  padding:10px 14px;
  margin-top:18px;
  box-shadow:var(--shadow);
}

.faq details{
  border-bottom:1px solid var(--border);
  padding:10px 6px;
}
.faq details:last-child{ border-bottom:none; }

.faq summary{
  cursor:pointer;
  font-weight:850;
  color:var(--accent);
  list-style:none;
}
.faq summary::-webkit-details-marker{ display:none; }

.faq p{
  margin:10px 0 0;
  color:var(--muted);
  max-width:72ch;
}

.profile-grid{
  display:grid;
  grid-template-columns:160px 1fr;
  gap:22px;
  align-items:start;
}

.profile-image img{
  width:140px;
  height:140px;
  object-fit:cover;
  border-radius:50%;
  box-shadow:0 10px 25px rgba(0,0,0,0.08);
}

.profile-text p{
  margin:0 0 10px;
  color:var(--muted);
}

.facts-wrap{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  align-items:start;
  margin-top:18px;
}

.facts-intro{ grid-column:1 / -1; }

.facts-box{
  grid-column:1 / -1;
  background:rgba(47,79,79,0.04);
  border:1px solid rgba(47,79,79,0.28);
  border-radius:16px;
  padding:18px;
  box-shadow:0 10px 25px rgba(0,0,0,0.04);
}

.facts-group{
  margin-top:14px;
  padding-top:14px;
  border-top:1px solid rgba(229,231,235,0.9);
}
.facts-group:first-of-type{
  margin-top:0;
  padding-top:0;
  border-top:none;
}

.facts-title{
  font-weight:900;
  color:var(--accent);
  font-size:0.95rem;
  margin-bottom:10px;
}

.facts-list{
  margin:0;
  padding-left:18px;
}

.facts-list li{
  margin-bottom:14px;
  color:var(--muted);
  line-height:1.5;
}

.facts-list li strong{ color:var(--text); }

.facts-box a{
  color:var(--accent);
  text-decoration:none;
  font-weight:800;
}
.facts-box a:hover{ text-decoration:underline; }

.facts-box .source{
  display:block;
  margin-top:4px;
  font-size:0.85rem;
  color:#6b7280;
}

.cta-card{
  background:var(--card);
  border:2px solid rgba(47,79,79,0.22);
  border-radius:16px;
  padding:30px 22px;
  text-align:center;
  box-shadow:var(--shadow);
}

.cta-card p{
  margin:10px auto 0;
  max-width:680px;
  color:var(--muted);
}

.cta-card .small{
  font-size:0.95rem;
  color:var(--muted);
}

.contact-form{
  margin-top:18px;
  text-align:left;
}

.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-top:12px;
}

.form-field{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.form-field.full{ grid-column:1 / -1; }

.form-field label{
  font-weight:800;
  color:var(--accent);
  font-size:0.95rem;
}

.contact-form input,.contact-form textarea{
  width:100%;
  border:1px solid var(--border);
  border-radius:12px;
  padding:12px 12px;
  font:inherit;
  color:var(--text);
  background:#fff;
  box-shadow:0 10px 25px rgba(0,0,0,0.02);
}

.contact-form textarea{
  resize:vertical;
  min-height:120px;
}

.form-actions{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}

.cta-link{
  color:var(--accent);
  font-weight:800;
  text-decoration:none;
}
.cta-link:hover{ text-decoration:underline; }

.form-message{
  margin:16px auto 0;
  max-width:720px;
  padding:12px 14px;
  border-radius:12px;
  text-align:left;
  font-weight:700;
  border:1px solid var(--border);
  box-shadow:0 10px 25px rgba(0,0,0,0.03);
}

.form-message.success{
  background:rgba(47,79,79,0.06);
  border-color:rgba(47,79,79,0.25);
  color:var(--text);
}

.form-message.error{
  background:rgba(185,28,28,0.06);
  border-color:rgba(185,28,28,0.25);
  color:#7f1d1d;
}

.hp-field{
  position:absolute;
  left:-9999px;
  width:1px;
  height:1px;
  overflow:hidden;
}

.contact-extra{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(229,231,235,0.9);
  text-align:left;
}

.contact-extra h3{
  margin:0 0 8px;
  color:var(--accent);
  font-size:1.05rem;
}

.quick-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:10px 0 16px;
  align-items:center;
}

.btn.btn-ghost{
  background:#fff;
  color:var(--accent);
  border:2px solid rgba(47,79,79,0.25);
  padding:10px 12px;
  border-radius:12px;
  font-weight:900;
  cursor:pointer;
}

.btn.btn-ghost:hover{ background:rgba(47,79,79,0.06); }

.copy-status{
  font-size:0.95rem;
  color:var(--muted);
  font-weight:800;
}

.site-footer{
  text-align:center;
  padding:34px 20px;
  color:#6b7280;
}

.h3-tight{ margin:0 0 10px; color:var(--accent); }
.extra-top{ margin-top:18px; }

.split{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:18px;
}

.testimonial-expand .more{ display:none; }
.testimonial-expand .dots{ display:inline; }
.testimonial-expand.expanded .more{ display:inline; }
.testimonial-expand.expanded .dots{ display:none; }

.readmore-btn{
  display:inline-block;
  margin-top:10px;
  padding:10px 12px;
  border-radius:12px;
  border:2px solid rgba(47,79,79,0.25);
  background:#fff;
  color:var(--accent);
  cursor:pointer;
  font:inherit;
  font-weight:900;
}
.readmore-btn:hover{ background:rgba(47,79,79,0.06); }

@media (max-width:980px){
  .services{ grid-template-columns:1fr; }

  .hero-grid{
    grid-template-columns:1fr;
    text-align:center;
    gap:26px;
  }

  .hero-text{ margin:0 auto; }
  .trust-row{ justify-content:center; }
  .hero-buttons{ justify-content:center; }
}

@media (max-width:760px){
  .site-header{ padding:10px 14px; }

  .nav{ align-items:flex-start; }

  .nav-links{
    justify-content:flex-end;
    gap:6px;
  }

  .nav-links a{
    font-size:0.9rem;
    padding:6px 8px;
  }

  .brand{
    padding-top:6px;
    white-space:nowrap;
  }

  .form-grid{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }

  .hero h1{ font-size:2.0rem; }
  .hero p{ font-size:1.03rem; }

  .profile-grid{
    grid-template-columns:1fr;
    text-align:center;
  }

  .profile-image{
    display:flex;
    justify-content:center;
  }

  .testimonials{ grid-template-columns:1fr; }
  .hero-portrait img{ max-width:320px; }
}

@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
}
