:root{
  --bg:#f6f7f3;
  --card:#ffffff;
  --text:#1f2a24;
  --muted:#4a5a52;

  --green-900:#1f3a2e;
  --green-700:#2f5a45;
  --green-500:#4f7b64;
  --green-200:#cfe0d5;

  --border:#e6ebe6;
  --shadow:0 14px 40px rgba(16,24,20,.10);
  --shadow-soft:0 10px 24px rgba(16,24,20,.08);

  --radius:18px;
  --radius-lg:24px;
  --max:1100px;
}

/* Base */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }

body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Cantarell,Noto Sans,Helvetica,Arial;
  color:var(--text);
  background:
    radial-gradient(1200px 600px at 15% 5%, rgba(79,123,100,.14), transparent 60%),
    radial-gradient(900px 500px at 90% 10%, rgba(47,90,69,.10), transparent 55%),
    var(--bg);
  line-height:1.6;
}

a{ color:inherit; }

.wrap{ max-width:var(--max); margin:0 auto; padding:0 18px; }
.section{ padding:64px 0; }

/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter:blur(10px);
  background:rgba(246,247,243,.72);
  border-bottom:1px solid rgba(230,235,230,.8);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  font-weight:700;
  letter-spacing:.2px;
}

.brand__dot{
  width:12px;
  height:12px;
  border-radius:999px;
  background:linear-gradient(135deg, var(--green-700), var(--green-500));
  box-shadow:0 10px 20px rgba(47,90,69,.25);
}

.nav{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  font-size:14px;
  color:var(--muted);
}

.nav a{
  text-decoration:none;
  padding:8px 10px;
  border-radius:12px;
}

.nav a:hover{
  background:rgba(79,123,100,.10);
  color:var(--green-900);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  text-decoration:none;
  font-weight:700;
  border:1px solid transparent;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}

.btn:active{ transform:translateY(1px); }

.btn--primary{
  background:linear-gradient(135deg, var(--green-700), var(--green-500));
  color:#fff;
  box-shadow:0 14px 30px rgba(47,90,69,.22);
}

.btn--primary:hover{ box-shadow:0 18px 34px rgba(47,90,69,.28); }

.btn--ghost{
  background:rgba(255,255,255,.55);
  border-color:rgba(207,224,213,.9);
  color:var(--green-900);
}

.btn--ghost:hover{ background:rgba(255,255,255,.8); }

/* HERO */
.hero{ padding:42px 0 18px; }

.hero__grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:26px;
  align-items:center;
}

.kicker{
  display:inline-flex;
  gap:10px;
  align-items:center;
  font-size:13px;
  color:var(--green-900);
  padding:8px 12px;
  border-radius:999px;
  background:rgba(207,224,213,.55);
  border:1px solid rgba(207,224,213,.95);
  width:fit-content;
}

.kicker span{
  width:6px;
  height:6px;
  border-radius:999px;
  background:var(--green-700);
  box-shadow:0 10px 20px rgba(47,90,69,.25);
}

h1{
  margin:14px 0 10px;
  font-size:clamp(28px, 4vw, 44px);
  line-height:1.08;
  letter-spacing:-.3px;
  color:var(--green-900);
}

.lead{
  margin:0 0 18px;
  font-size:16.5px;
  color:var(--muted);
  max-width:56ch;
}

/* Center kun CTA + meta (ikke resten af teksten) */
.hero__cta,
.hero__meta{
  width:100%;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
}

.hero__cta{
  gap:12px;
  margin-top:10px;
}

.hero__meta{
  gap:14px;
  margin-top:18px;
  color:var(--muted);
  font-size:14px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,.62);
  border:1px solid rgba(230,235,230,.9);
  box-shadow:var(--shadow-soft);
}

.pill i{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(79,123,100,.55);
}

.hero__card{
  background:rgba(255,255,255,.70);
  border:1px solid rgba(230,235,230,.85);
  border-radius:var(--radius-lg);
  padding:16px;
  box-shadow:var(--shadow);
}

.portrait{
  aspect-ratio:4 / 5;
  width:100%;
  border-radius:22px;
  overflow:hidden;
  border:1px solid rgba(230,235,230,.9);
  background:linear-gradient(180deg, rgba(207,224,213,.35), rgba(255,255,255,0));
  position:relative;
}

.portrait img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:saturate(1.02) contrast(1.02);
}

.portrait__label{
  position:absolute;
  left:14px;
  bottom:14px;
  background:rgba(31,58,46,.82);
  color:#fff;
  padding:10px 12px;
  border-radius:14px;
  font-size:13px;
  line-height:1.2;
  max-width:90%;
}

/* SECTIONS */
.eyebrow{
  color:var(--green-700);
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 8px;
}

h2{
  margin:0 0 10px;
  font-size:clamp(22px, 2.6vw, 30px);
  line-height:1.15;
  color:var(--green-900);
  letter-spacing:-.2px;
}

.sub{
  margin:0;
  color:var(--muted);
  max-width:70ch;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:16px;
  margin-top:22px;
}

.card{
  background:rgba(255,255,255,.72);
  border:1px solid rgba(230,235,230,.9);
  border-radius:var(--radius);
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.card h3{
  margin:0 0 6px;
  color:var(--green-900);
  letter-spacing:-.15px;
  font-size:18px;
}

.card p{ margin:0; color:var(--muted); }

.tagrow{ display:flex; gap:8px; flex-wrap:wrap; margin-top:12px; }

.tag{
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
  background:rgba(207,224,213,.55);
  border:1px solid rgba(207,224,213,.95);
  color:var(--green-900);
  font-weight:650;
}

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
  margin-top:22px;
  align-items:start;
}

.steps{
  display:grid;
  gap:12px;
  margin-top:16px;
}

.step{
  display:flex;
  gap:12px;
  padding:14px;
  border-radius:var(--radius);
  background:rgba(255,255,255,.65);
  border:1px solid rgba(230,235,230,.9);
  box-shadow:var(--shadow-soft);
}

.step b{
  width:34px;
  height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:rgba(79,123,100,.14);
  border:1px solid rgba(207,224,213,.95);
  color:var(--green-900);
  flex:0 0 auto;
}

.step h4{ margin:0 0 2px; color:var(--green-900); }
.step p{ margin:0; color:var(--muted); font-size:14.5px; }

/* CONTACT */
.contact{
  background:linear-gradient(180deg, rgba(207,224,213,.35), rgba(255,255,255,0));
  border-top:1px solid rgba(230,235,230,.9);
}

form{ display:grid; gap:10px; margin-top:14px; }
label{ font-size:13px; color:var(--muted); }

input,textarea{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid rgba(230,235,230,.95);
  background:rgba(255,255,255,.78);
  color:var(--text);
  outline:none;
}

input:focus,textarea:focus{
  border-color:rgba(79,123,100,.55);
  box-shadow:0 0 0 4px rgba(79,123,100,.12);
}

textarea{ min-height:120px; resize:vertical; }

.fineprint{
  font-size:12.5px;
  color:var(--muted);
  margin-top:10px;
}

footer{
  padding:26px 0 40px;
  color:var(--muted);
  font-size:13px;
}

.divider{
  height:1px;
  background:rgba(230,235,230,.9);
  margin:18px 0;
}

/* behandlinger layout */
.services-layout{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:32px;
  align-items:center;
}

.services-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow);
}

.services-cards{
  display:grid;
  gap:14px;
  margin-top:20px;
}

/* erfaring layout */
.experience-layout{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:32px;
  align-items:center;
}

.experience-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:22px;
  box-shadow:var(--shadow);
}

/* Responsive */
@media (max-width: 920px){
  .hero__grid{ grid-template-columns:1fr; }
}

@media (max-width: 760px){
  .nav{ display:none; } /* simplificér mobil header */

  .grid-3{ grid-template-columns:1fr; }
  .split{ grid-template-columns:1fr; }

  .services-layout{ grid-template-columns:1fr; }
  .services-image{ order:-1; }

  .experience-layout{ grid-template-columns:1fr; }
  .experience-image{ order:-1; }

  /* Mobil: centrér CTA knapper og skjul meta/kicker */
  .hero__cta{ text-align:center; }
  .hero__meta{ display:none; }
  .hero__grid .kicker{ display:none; }
}