/* ── DELT STIL FOR ALLE SIDER ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1B3E35;
  --teal:     #2A6B5A;
  --teal-mid: #3D8B78;
  --teal-pale:#E8F2EF;
  --orange:   #D4622A;
  --orange-lt:#F2A478;
  --cream:    #F5F0E8;
  --offwhite: #FAF8F5;
  --sky:      #C8DDE8;
  --dark:     #141F1C;
  --text:     #3A4440;
  --muted:    #7A8E88;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--offwhite);
  color: var(--text);
  line-height: 1.7;
}
a { color: inherit; text-decoration: none; }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  padding: 0 6%;
  display: flex; align-items: center; justify-content: space-between;
  height: 70px;
  transition: background 0.3s, border-color 0.3s;
}
nav.scrolled, nav.solid {
  background: rgba(250,248,245,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27,62,53,0.1);
}
.nav-logo {
  display: flex; align-items: center;
  color: white;
  transition: color 0.3s;
}
.nav-logo-dot {
  color: var(--orange);
  font-family: 'Lora', serif;
  margin-left: 0.04em;
}
nav.scrolled .nav-logo, nav.solid .nav-logo { color: var(--forest); }
.nav-logo-text {
  font-family: 'Lora', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.02em;
  transition: color 0.3s;
}
nav.scrolled .nav-logo-text, nav.solid .nav-logo-text { color: var(--forest); }
nav ul {
  list-style: none;
  display: flex; gap: 2.2rem; align-items: center;
}
nav ul a {
  font-size: 0.88rem;
  font-weight: 500;
  color: white;
  transition: opacity 0.2s;
}
nav.scrolled ul a, nav.solid ul a { color: var(--text); }
nav ul a:hover { opacity: 0.65; }
nav ul a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: white !important;
  padding: 0.55rem 1.4rem;
  border-radius: 4px;
  opacity: 1 !important;
}
.nav-cta:hover { opacity: 0.85 !important; }

/* ── PAGE HERO (kort hero for undersider) ── */
.page-hero {
  background: var(--forest);
  color: white;
  padding: 11rem 7% 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-image: url('https://images.unsplash.com/photo-1465146344425-f00d5f5c8f07?w=1400&q=80&fit=crop');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}
.page-hero .eyebrow { color: var(--orange-lt); margin-bottom: 1rem; }
.page-hero h1 {
  font-family: 'Lora', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.page-hero h1 em { font-style: italic; color: var(--orange-lt); }
.page-hero .lede {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  max-width: 620px;
  color: rgba(255,255,255,0.85);
  font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--orange);
  color: white !important;
  padding: 0.95rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #B85522; transform: translateY(-1px); }
.btn-phone {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--forest);
  color: white !important;
  padding: 0.95rem 1.6rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.95rem;
  font-family: 'Lora', serif;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.2s;
  text-decoration: none;
}
.btn-phone:hover { background: var(--orange); transform: translateY(-1px); }
.btn-phone .phone-icon {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.cta-buttons {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.6rem;
  border: 1.5px solid var(--forest);
  color: var(--forest) !important;
  padding: 0.85rem 1.8rem;
  border-radius: 4px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--forest); color: white !important; }
.btn-text {
  display: inline-flex; align-items: center; gap: 0.4rem;
  color: var(--orange);
  font-weight: 500;
  font-size: 0.93rem;
  transition: gap 0.2s;
}
.btn-text:hover { gap: 0.7rem; }

/* ── SECTIONS ── */
.section {
  padding: 6rem 7%;
}
.section-cream { background: var(--cream); }
.section-forest { background: var(--forest); color: white; }

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-header h2 {
  font-family: 'Lora', serif;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--forest);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-top: 0.7rem;
}
.section-header h2 em { font-style: italic; color: var(--orange); }
.section-forest .section-header h2 { color: white; }
.section-header p {
  font-size: 1rem;
  color: var(--muted);
  margin-top: 1rem;
}
.section-forest .section-header p { color: rgba(255,255,255,0.8); }

/* ── PHONE STRIP / STICKY FAGTELEFON ── */
.sticky-call {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 95;
  background: var(--orange);
  color: white;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(212,98,42,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
}
.sticky-call:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(212,98,42,0.5); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 3rem 6% 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 1.5rem;
}
.footer-logo {
  font-family: 'Lora', serif;
  color: white;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.footer-grid .tagline {
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  max-width: 360px;
}
.footer-col h4 {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange-lt);
  font-weight: 600;
  margin-bottom: 0.9rem;
}
.footer-col a, .footer-col p {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}

/* ── FORM ── */
.form-fields {
  display: flex; flex-direction: column; gap: 0.9rem;
}
.form-fields input, .form-fields textarea, .form-fields select {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid rgba(27,62,53,0.18);
  border-radius: 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  background: white;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}
.form-fields input:focus, .form-fields textarea:focus, .form-fields select:focus { border-color: var(--orange); }
.form-fields textarea { min-height: 90px; resize: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav ul li:nth-child(-n+4) { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section { padding: 4rem 6%; }
  .page-hero { padding: 9rem 6% 3.5rem; }
  .sticky-call { padding: 0.7rem 1rem; font-size: 0.85rem; }
}
