/*
Theme Name: Walles Haveentreprise
Theme URI: https://haveentreprise.dk
Author: Custom
Description: Eksklusivt custom theme til Walle's Haveentreprise
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: walles-haveentreprise
*/

/* ─────────────────────────────────────────
   RESET & VARIABLES
───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --forest:   #1a2e1a;
  --moss:     #2d4a2d;
  --sage:     #4a7a4a;
  --fern:     #6aaa6a;
  --mint:     #a8d5a8;
  --cream:    #f5f0e8;
  --warm:     #e8e0d0;
  --gold:     #c8a84b;
  --gold-lt:  #e8c870;
  --charcoal: #2a2a2a;
  --text:     #3a3a3a;
  --text-lt:  #6a6a6a;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ─────────────────────────────────────────
   NAV
───────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 110px;
  background: rgba(26,46,26,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(168,213,168,.15);
  transition: height .3s ease, box-shadow .3s ease;
  overflow: visible;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  text-decoration: none;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .04em;
}
.nav-logo-sub {
  font-size: 10px;
  font-weight: 300;
  color: var(--mint);
  letter-spacing: .25em;
  text-transform: uppercase;
}

/* Centreret logo-billede */
.nav-logo-img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  text-decoration: none;
  pointer-events: auto;
}
.nav-logo-img img {
  height: 70px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: height .35s ease, opacity .2s;
}
.nav-logo-img:hover img { opacity: .85; }

/* Scrollet/sticky state */
.site-nav.scrolled {
  height: 64px;
  border-bottom-color: rgba(168,213,168,.22);
  box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.site-nav.scrolled .nav-logo-img img { height: 38px; }

/* Skjul på lille mobil hvor der ikke er plads */
@media (max-width: 600px) {
  .nav-logo-img { display: none; }
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,232,.7);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold-lt); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--forest);
  padding: 10px 24px;
  font-weight: 500;
  border-radius: 2px;
  transition: background .2s;
}
.nav-links .nav-cta:hover { background: var(--gold-lt); color: var(--forest); }
.nav-links .nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--mint) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  letter-spacing: .06em !important;
  border: 1px solid rgba(168,213,168,.25);
  padding: 8px 16px !important;
  border-radius: 100px;
  transition: border-color .2s, color .2s !important;
}
.nav-links .nav-phone:hover {
  border-color: var(--mint);
  color: var(--cream) !important;
}

/* Mobile menu button */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all .3s;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─────────────────────────────────────────
   HERO V2 – fullscreen centeret med morphende ord
───────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 40%, rgba(26,46,26,.45) 0%, rgba(10,20,10,.75) 100%),
    linear-gradient(to bottom, rgba(10,20,10,.55) 0%, rgba(10,20,10,.40) 50%, rgba(10,20,10,.70) 100%);
  z-index: 1;
}
.hero-img-wrap {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 55% 45%, #2d4a2d 0%, #1a2e1a 40%, #0a140a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: heroZoom 14s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.hero-leaf {
  position: absolute;
  opacity: .04;
  pointer-events: none;
}
.hero-leaf.l1 { right: 4%; top: 10%; width: 320px; }
.hero-leaf.l2 { left: 4%; bottom: 10%; width: 220px; transform: rotate(120deg); }
.hero-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(168,213,168,.35);
  letter-spacing: .1em;
  text-align: center;
  padding: 20px;
}

/* Centeret indhold */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: heroFadeUp .8s .2s ease forwards;
}
.hero-eyebrow::before,
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .7;
}

/* Headline med morfende ord */
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7.5vw, 100px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 0;
  letter-spacing: -.02em;
  opacity: 0;
  animation: heroFadeUp .9s .45s ease forwards;
}
.hero h1 .hero-static { display: block; }
.hero h1 .hero-morph-wrap {
  display: block;
  position: relative;
  height: 1.1em;
  overflow: hidden;
  margin-top: .05em;
}
.hero-morph-word {
  display: block;
  position: absolute;
  width: 100%;
  text-align: center;
  font-style: italic;
  color: var(--mint);
  opacity: 0;
  transform: translateY(60%);
  transition: opacity .55s ease, transform .55s ease;
  pointer-events: none;
}
.hero-morph-word.active {
  opacity: 1;
  transform: translateY(0);
}
.hero-morph-word.exit {
  opacity: 0;
  transform: translateY(-60%);
}

.hero .hero-desc {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,.7);
  max-width: 520px;
  margin: 36px 0 44px;
  opacity: 0;
  animation: heroFadeUp .9s .7s ease forwards;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: heroFadeUp .9s .9s ease forwards;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll indikator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: rgba(245,240,232,.35);
}
.hero-scroll::after {
  content: '';
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(245,240,232,.35), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%,100% { opacity: .35; transform: scaleY(1);    }
  50%      { opacity: .8;  transform: scaleY(1.12); }
}

/* ─────────────────────────────────────────
   BUTTONS
───────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--gold-lt); transform: translateY(-2px); color: var(--forest); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  border: 1px solid rgba(245,240,232,.3);
  border-radius: 2px;
  transition: border-color .2s, transform .2s;
}
.btn-secondary:hover { border-color: var(--mint); transform: translateY(-2px); color: var(--cream); }

/* ─────────────────────────────────────────
   INTRO SPLIT BAR (erstatter ticker)
───────────────────────────────────────── */
.intro-split {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: var(--forest);
  min-height: 140px;
}
.intro-contact {
  display: flex;
  align-items: center;
  gap: 48px;
  padding: 40px 60px;
}
.intro-contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.intro-contact-item span {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(168,213,168,.85);
}
.intro-contact-item a,
.intro-contact-item strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: .01em;
  transition: color .2s;
}
.intro-contact-item a:hover { color: var(--gold-lt); }
.intro-divider {
  background: rgba(168,213,168,.12);
  width: 1px;
  align-self: stretch;
}
.intro-quote {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 40px 60px;
  position: relative;
}
.intro-quote::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 100px;
  line-height: 1;
  color: rgba(168,213,168,.1);
  position: absolute;
  top: 10px;
  left: 52px;
  pointer-events: none;
}
.intro-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-style: italic;
  font-weight: 300;
  color: rgba(245,240,232,.8);
  line-height: 1.55;
  flex: 1;
}
.intro-quote-author {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
}
.intro-quote-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
}
.intro-quote-name {
  font-size: 11px;
  font-weight: 500;
  color: var(--mint);
  letter-spacing: .08em;
  white-space: nowrap;
}
.intro-quote-loc {
  font-size: 10px;
  font-weight: 300;
  color: rgba(245,240,232,.65);
  letter-spacing: .06em;
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────── */
.site-section { padding: 100px 60px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #3d6b3d;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: #3d6b3d;
}
.section-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4.5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--forest);
  letter-spacing: -.01em;
}
.section-heading em { font-style: italic; color: var(--sage); }

/* ─────────────────────────────────────────
   ABOUT
───────────────────────────────────────── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  background: var(--cream);
  padding: 100px 60px;
  max-width: 1300px;
  margin: 0 auto;
}
.about-media { position: relative; }
.about-img {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  max-height: 680px;
  background: linear-gradient(135deg, #2d4a2d, #1a2e1a);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.img-placeholder-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 15px;
  font-style: italic;
  color: rgba(168,213,168,.5);
  letter-spacing: .1em;
  text-align: center;
  padding: 20px;
}
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 40px rgba(200,168,75,.35);
}
.about-badge strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 400;
  color: var(--forest);
  line-height: 1;
}
.about-badge span {
  font-size: 11px;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: center;
  padding: 0 10px;
}
.about-text p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-lt);
  margin-top: 24px;
}
.about-text p + p { margin-top: 16px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 44px;
}
.value-item {
  position: relative;
  padding: 24px 22px;
  background: white;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(26,46,26,.06);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: default;
}
.value-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--fern));
  transition: width .3s ease;
}
.value-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168,213,168,.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
}
.value-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(26,46,26,.11);
}
.value-item:hover::before { width: 4px; }
.value-item:hover::after  { opacity: 1; }
.value-item strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--forest);
  letter-spacing: .02em;
  margin-bottom: 5px;
  position: relative;
  z-index: 1;
}
.value-item span {
  font-size: 12px;
  font-weight: 300;
  color: var(--text-lt);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* ─────────────────────────────────────────
   SERVICES
───────────────────────────────────────── */
.services-section {
  background: var(--forest);
  padding: 100px 60px;
}
.services-section .section-label { color: var(--mint); }
.services-section .section-label::before { background: var(--mint); }
.services-section .section-heading { color: var(--cream); }
.services-section .section-heading em { color: var(--mint); }
.services-intro {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 64px;
}
.services-intro p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(245,240,232,.65);
  max-width: 440px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.service-card {
  position: relative;
  padding: 44px 36px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(168,213,168,.08);
  cursor: default;
  transition: background .3s, border-color .3s, transform .3s;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--fern));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(168,213,168,.2);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: rgba(168,213,168,.12);
  line-height: 1;
  margin-bottom: 12px;
}
.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  background: rgba(168,213,168,.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-icon svg { width: 22px; height: 22px; stroke: var(--mint); fill: none; stroke-width: 1.5; }
.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
  letter-spacing: .01em;
}
.service-card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(245,240,232,.55);
}
.service-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s;
}
.service-more:hover { gap: 14px; color: var(--gold); }
.service-more svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }

/* ─────────────────────────────────────────
   GALLERY STRIP
───────────────────────────────────────── */
.gallery-strip {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3px;
  height: 480px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d4a2d, #1a2e1a);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform .7s cubic-bezier(.25,.46,.45,.94), filter .7s ease;
  filter: brightness(.92);
  will-change: transform;
}
.gallery-item:hover img {
  transform: scale(1.12);
  filter: brightness(.75);
}

/* Gradient-reveal overlay – altid synlig i bunden */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,20,10,.82) 0%,
    rgba(10,20,10,.25) 45%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 28px 32px;
  gap: 6px;
  transition: background .5s ease;
}
.gallery-item:hover .gallery-overlay {
  background: linear-gradient(
    to top,
    rgba(10,20,10,.90) 0%,
    rgba(10,20,10,.45) 55%,
    rgba(10,20,10,.10) 100%
  );
}

/* Titel – glider op ved hover */
.gallery-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 300;
  color: var(--cream);
  letter-spacing: .03em;
  transform: translateY(6px);
  transition: transform .45s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.gallery-item--large .gallery-label { font-size: 34px; }

/* Undertitel – skjult, fader ind ved hover */
.gallery-sub {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease .08s, transform .4s ease .08s;
  display: block;
}
.gallery-item:hover .gallery-label { transform: translateY(0); }
.gallery-item:hover .gallery-sub   { opacity: 1; transform: translateY(0); }

/* Tynd guldlinje i bunden – vokser ved hover */
.gallery-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 2px;
  width: 0;
  background: var(--gold);
  transition: width .5s cubic-bezier(.25,.46,.45,.94);
}
.gallery-item:hover::after { width: 100%; }

/* ─────────────────────────────────────────
   PROCESS
───────────────────────────────────────── */
.process-section {
  background: var(--warm);
  padding: 100px 60px;
  text-align: center;
}
.process-section .section-label { justify-content: center; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--sage), var(--mint), var(--sage));
}
.process-step { text-align: center; }
.process-num {
  width: 56px;
  height: 56px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.process-num span {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--mint);
}
.process-step h3, .process-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 10px;
}
.process-step p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-lt);
}

/* ─────────────────────────────────────────
   TESTIMONIALS
───────────────────────────────────────── */
.testimonials-section { background: var(--cream); padding: 100px 60px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.testimonial-card {
  background: white;
  padding: 40px 36px;
  border-radius: 4px;
  box-shadow: 0 4px 30px rgba(26,46,26,.06);
  border-top: 3px solid var(--sage);
  transition: transform .3s, box-shadow .3s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(26,46,26,.1); }
.stars { display: flex; gap: 4px; margin-bottom: 20px; }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  color: var(--forest);
  margin-bottom: 24px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  color: var(--cream);
  flex-shrink: 0;
}
.author-info strong { font-size: 14px; font-weight: 500; color: var(--forest); display: block; }
.author-info span   { font-size: 12px; font-weight: 300; color: var(--text-lt); }

/* ─────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────── */
.cta-banner {
  position: relative;
  padding: 120px 60px;
  background: var(--moss);
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(106,170,106,.25) 0%, transparent 70%);
}
.cta-deco {
  position: absolute;
  opacity: .04;
  pointer-events: none;
}
.cta-deco.d1 { top: -80px; left: -80px; width: 400px; }
.cta-deco.d2 { bottom: -80px; right: -80px; width: 400px; transform: rotate(180deg); }
.cta-inner { position: relative; z-index: 1; }
.cta-banner .section-label { justify-content: center; color: var(--mint); }
.cta-banner .section-label::before { background: var(--mint); }
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(38px, 5vw, 64px);
  font-weight: 300;
  color: var(--cream);
  margin: 20px 0 16px;
  line-height: 1.1;
}
.cta-banner p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,240,232,.7);
  max-width: 500px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ─────────────────────────────────────────
   AREA
───────────────────────────────────────── */
.area-section {
  background: var(--forest);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.area-section .section-label { color: var(--mint); }
.area-section .section-label::before { background: var(--mint); }
.area-section .section-heading { color: var(--cream); }
.area-section .section-heading em { color: var(--mint); }
.area-section p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(245,240,232,.65);
  margin-top: 20px;
}
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.area-tag {
  padding: 7px 16px;
  border: 1px solid rgba(168,213,168,.25);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 300;
  color: rgba(245,240,232,.7);
  letter-spacing: .04em;
}
.area-map-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
#area-map {
  width: 100%;
  height: 100%;
}

/* Mapbox attribution – dæmp så det passer til mørkt design */
#area-map .mapboxgl-ctrl-attrib {
  background: rgba(26,46,26,.7) !important;
  color: rgba(245,240,232,.4) !important;
  font-size: 10px !important;
}
#area-map .mapboxgl-ctrl-attrib a { color: rgba(168,213,168,.5) !important; }

/* Custom markør */
.map-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.map-marker-dot {
  width: 14px;
  height: 14px;
  background: var(--gold);
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 0 0 4px rgba(200,168,75,.3), 0 2px 8px rgba(0,0,0,.3);
}
.map-marker-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--forest);
  background: white;
  padding: 4px 10px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,.15);
  white-space: nowrap;
}

/* ─────────────────────────────────────────
   CONTACT
───────────────────────────────────────── */
.contact-section {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
  padding: 100px 60px;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 300;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 20px;
}
.contact-info h2 em { font-style: italic; color: var(--sage); }
.contact-info > p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-lt);
  margin-bottom: 40px;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; align-items: center; gap: 16px; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--forest);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; stroke: var(--mint); fill: none; stroke-width: 1.5; }
.contact-detail strong { display: block; font-size: 13px; font-weight: 400; color: var(--text-lt); margin-bottom: 2px; }
.contact-detail span  { font-size: 15px; font-weight: 500; color: var(--forest); }
.contact-detail a     { text-decoration: none; color: var(--forest); transition: color .2s; }
.contact-detail a:hover { color: var(--sage); }

/* Contact form */
.contact-form {
  background: white;
  padding: 52px;
  border-radius: 4px;
  box-shadow: 0 8px 50px rgba(26,46,26,.08);
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--forest);
  margin-bottom: 32px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-lt);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid rgba(26,46,26,.15);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(74,122,74,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%;
  padding: 18px;
  background: var(--forest);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  margin-top: 8px;
}
.form-submit:hover { background: var(--moss); transform: translateY(-2px); }
.form-note {
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  color: var(--text-lt);
  margin-top: 16px;
}

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
/* ─────────────────────────────────────────
   FOOTER – editorial premium
───────────────────────────────────────── */
.site-footer {
  background: var(--forest);
  color: rgba(245,240,232,.65);
  position: relative;
  overflow: hidden;
}
/* Subtil tekstur/mønster i baggrunden */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(74,122,74,.18) 0%, transparent 55%),
    radial-gradient(ellipse at 100% 0%, rgba(200,168,75,.07) 0%, transparent 50%);
  pointer-events: none;
}

/* CTA-bjælke øverst i footer */
.footer-cta {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 60px;
  border-bottom: 1px solid rgba(168,213,168,.12);
  flex-wrap: wrap;
}
.footer-cta-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-cta-text span {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mint);
  opacity: .7;
}
.footer-cta-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 300;
  color: var(--cream);
  letter-spacing: -.01em;
  font-style: italic;
}
.footer-cta-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}
.footer-cta-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-cta-phone:hover { opacity: .75; }
.footer-cta-phone-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.footer-cta-phone-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--forest);
  fill: none;
  stroke-width: 2;
}
.footer-cta-phone-text span {
  display: block;
  font-size: 10px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(168,213,168,.6);
  margin-bottom: 2px;
}
.footer-cta-phone-text strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: .02em;
}

/* Hoved-grid */
.footer-top {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding: 52px 60px 48px;
  border-bottom: 1px solid rgba(168,213,168,.1);
}

/* Brand-kolonne */
.footer-brand .footer-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--cream);
  display: block;
  letter-spacing: .01em;
  margin-bottom: 2px;
}
.footer-brand .footer-sub {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .65;
}
.footer-brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.8;
  margin-top: 20px;
  color: rgba(245,240,232,.45);
  max-width: 280px;
}
.footer-brand-divider {
  width: 36px;
  height: 1px;
  background: var(--gold);
  opacity: .4;
  margin: 20px 0;
}
.footer-logo {
  display: block;
  margin-bottom: 20px;
  width: 104px;
  height: 104px;
  object-fit: contain;
  opacity: .75;
  transition: opacity .2s;
}
.footer-logo:hover { opacity: 1; }

/* Link-kolonner */
.footer-col h4 {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: .75;
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,.5);
  text-decoration: none;
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-col ul li a:hover { color: var(--mint); padding-left: 4px; }
.footer-col ul li.no-link {
  font-size: 13px;
  font-weight: 300;
  color: rgba(245,240,232,.5);
}

/* Bund-linje */
.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 60px;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: .04em;
  color: rgba(245,240,232,.3);
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom a {
  color: rgba(168,213,168,.95);
  text-decoration: none;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--mint); }


/* ─────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s ease, transform .8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

/* ─────────────────────────────────────────
   STICKY CALL BUTTON (mobile only)
───────────────────────────────────────── */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 200;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  text-decoration: none;
  padding: 14px 22px 14px 18px;
  border-radius: 100px;
  box-shadow: 0 6px 28px rgba(200,168,75,.45);
  transition: transform .2s ease, box-shadow .2s ease, background .2s;
  animation: floatBtn 3s ease-in-out infinite;
}
.sticky-call:hover {
  background: var(--gold-lt);
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 36px rgba(200,168,75,.5);
  color: var(--forest);
}
.sticky-call svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes floatBtn {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
@keyframes ringPulse {
  0%, 90%, 100% { transform: rotate(0deg); }
  92%            { transform: rotate(-15deg); }
  96%            { transform: rotate(15deg); }
}

@media (max-width: 900px) {
  /* Nav */
  .site-nav { padding: 0 24px; }
  .nav-links { display: none; position: absolute; top: 80px; left: 0; right: 0; background: rgba(26,46,26,.98); flex-direction: column; gap: 0; padding: 20px 0; }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 28px; }
  .nav-links .nav-cta { margin: 12px 28px; display: block; text-align: center; }
  .nav-toggle { display: flex; }

  /* Hero – kortere, centeret, plads til nav */
  .hero { min-height: 88vh; height: 88vh; }
  .hero-content { padding: 96px 24px 48px; }
  .hero-scroll { display: none; }
  .hero-eyebrow { font-size: 10px; letter-spacing: .15em; margin-bottom: 18px; }
  .hero-eyebrow::before, .hero-eyebrow::after { width: 18px; }
  .hero .hero-desc { font-size: 14px; margin: 20px 0 28px; }

  /* Intro split – ryddeligt stack */
  .intro-split { grid-template-columns: 1fr; }
  .intro-divider { width: 100%; height: 1px; }
  .intro-contact {
    padding: 28px 24px 20px;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .intro-contact-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 11px 0;
    border-bottom: 1px solid rgba(168,213,168,.08);
  }
  .intro-contact-item:last-child { border-bottom: none; }
  .intro-contact-item span { margin-bottom: 0; }
  .intro-contact-item a,
  .intro-contact-item strong { font-size: 16px; }
  .intro-quote {
    padding: 24px 24px 32px;
    flex-direction: column;
    gap: 18px;
  }
  .intro-quote::before { display: none; }
  .intro-quote blockquote { font-size: 17px; line-height: 1.6; }
  .intro-quote-author { flex-direction: row; gap: 12px; align-items: center; }

  /* Services grid — 2 columns, compact cards */
  .services-section { padding: 60px 20px; }
  .services-intro { flex-direction: column; align-items: flex-start; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .service-card { padding: 24px 18px; }
  .service-num { font-size: 36px; margin-bottom: 6px; }
  .service-icon { width: 36px; height: 36px; margin-bottom: 12px; }
  .service-icon svg { width: 16px; height: 16px; }
  .service-card h3 { font-size: 19px; margin-bottom: 6px; }
  .service-card p { font-size: 12px; line-height: 1.6; }
  .service-more { font-size: 11px; margin-top: 14px; }

  /* Sticky call button */
  .sticky-call { display: inline-flex; }

  /* Rest */
  .about-section { grid-template-columns: 1fr; gap: 60px; padding: 70px 24px; }
  .about-badge { right: 12px; bottom: 12px; }

  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-strip .gallery-item { aspect-ratio: 16/7; }

  .process-section { padding: 70px 24px; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-grid::before { display: none; }

  .testimonials-section { padding: 70px 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .cta-banner { padding: 80px 24px; }

  .area-section { grid-template-columns: 1fr; padding: 70px 24px; gap: 60px; }
  .area-map-wrap { height: 300px; }

  .contact-section { grid-template-columns: 1fr; gap: 48px; padding: 70px 24px; }
  .contact-form { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }

  .footer-cta { padding: 36px 24px; flex-direction: column; align-items: flex-start; gap: 24px; }
  .footer-cta-phone-text strong { font-size: 22px; white-space: nowrap; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; padding: 40px 24px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 20px 24px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-btns { flex-direction: column; gap: 10px; }
  .btn-primary  { padding: 13px 28px; font-size: 12px; justify-content: center; }
  .btn-secondary { padding: 13px 28px; font-size: 12px; text-align: center; justify-content: center; }
  .about-values { grid-template-columns: 1fr; }
  .gallery-strip { grid-template-columns: 1fr; height: auto; }
  .gallery-strip .gallery-item { aspect-ratio: 16/7; }
  .services-grid { grid-template-columns: 1fr 1fr; }
}