/* ============================================
   Vognmand Thomas Krogh Andersen — stylesheet
   Ren, nordisk og enkel — bløde runde former
   ============================================ */

:root {
  --bg: #f7f5f1;
  --bg-alt: #efeae2;
  --card: #ffffff;
  --text: #2b2622;
  --text-muted: #6b625a;
  --accent: #8f241f;
  --accent-dark: #7a1e1a;
  --accent-light: #f6e2df;
  --line: #e4ddd2;

  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --radius-full: 999px;

  --shadow: 0 10px 30px rgba(43, 38, 34, 0.08);
  --shadow-sm: 0 4px 14px rgba(43, 38, 34, 0.06);

  --container: 1180px;
}

/* ---------- Sitelock ---------- */
#sitelock {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
html.ta-unlocked #sitelock {
  display: none;
}
html:not(.ta-unlocked) body {
  overflow: hidden;
}
.sitelock-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 44px 36px;
  max-width: 380px;
  width: 100%;
  text-align: center;
}
.sitelock-card .logo-img {
  margin: 0 auto 20px;
}
.sitelock-card form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}
.sitelock-card input {
  text-align: center;
  letter-spacing: 0.08em;
}
.sitelock-card .btn {
  width: 100%;
  justify-content: center;
}
.sitelock-error {
  display: none;
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
}
.sitelock-error.show {
  display: block;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1, h2, h3, h4 {
  font-family: "Lora", "Georgia", serif;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.25rem; }

p { margin: 0 0 1em; color: var(--text-muted); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.9em;
}

section {
  padding: 88px 0;
}

section.tight {
  padding: 56px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 640px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-head.left {
  text-align: left;
  margin: 0 0 40px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

.btn-light {
  background: #fff;
  color: var(--accent);
}
.btn-light:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

/* ---------- Header ---------- */
.top-strip {
  background: var(--accent-dark);
  color: #f1e6e6;
  font-size: 0.82rem;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  flex-wrap: wrap;
}
.top-strip a {
  color: #f1e6e6;
  opacity: 0.9;
}
.top-strip a:hover { opacity: 1; text-decoration: underline; }
.top-strip .top-links {
  display: flex;
  gap: 20px;
}

header.site-header {
  background: rgba(247, 245, 241, 0.92);
  backdrop-filter: blur(8px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--text);
}

.logo-img {
  height: 52px;
  width: auto;
  border-radius: var(--radius-sm);
}

footer .logo-img {
  height: 60px;
}

.brand .brand-sub {
  display: block;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 8px;
  margin: 0;
  padding: 0;
}

nav.main-nav a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text);
  transition: background 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(43,30,26,0.82) 0%, rgba(43,30,26,0.55) 45%, rgba(43,30,26,0.25) 100%);
}

.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 640px;
  padding: 60px 0;
}

.hero-content .eyebrow { color: #f0c9c9; }
.hero-content h1 { color: #fff; }
.hero-content p { color: #ede6e0; font-size: 1.08rem; }

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-hero {
  background: var(--accent-dark);
  color: #fff;
  padding: 120px 0 64px;
  text-align: center;
}
.page-hero .eyebrow { color: #f0c9c9; }
.page-hero h1 { color: #fff; margin-bottom: 0.3em; }
.page-hero p { color: #ecdede; max-width: 560px; margin: 0 auto; }

/* ---------- Cards / grid ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.card .card-img {
  height: 190px;
  overflow: hidden;
}
.card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.card:hover .card-img img {
  transform: scale(1.06);
}

.card .card-body {
  padding: 26px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card .card-body h3 { margin-bottom: 0.4em; }
.card .card-body p { flex: 1; }

.card .card-link {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.card .card-link:hover { color: var(--accent-dark); }

/* ---------- About / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.stat-row {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.stat-row .stat strong {
  display: block;
  font-family: "Lora", serif;
  font-size: 2rem;
  color: var(--accent);
}
.stat-row .stat span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ---------- Why us / features ---------- */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.feature-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--card);
  padding: 20px 22px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
}
.feature-list .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}
.feature-list strong { display: block; margin-bottom: 2px; }
.feature-list p { margin: 0; font-size: 0.92rem; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; margin-bottom: 0.2em; }
.cta-banner p { color: #f0dede; margin: 0; }

/* ---------- Press release ---------- */
.press-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 40px;
}
.press-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ---------- Service sections (ydelser page) ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}
.service-block:last-child { border-bottom: none; }
.service-block.reverse .service-media { order: 2; }
.service-block .service-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.service-block .badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 14px;
}
.service-block ul.checklist {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}
.service-block ul.checklist li {
  padding-left: 28px;
  position: relative;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.service-block ul.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
}

.contact-card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.info-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-row .icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
}
.info-row strong { display: block; }
.info-row a:hover { color: var(--accent); }

form.contact-form {
  display: grid;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}
input, textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}
input:focus, textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
}
textarea { resize: vertical; min-height: 130px; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  margin-top: 30px;
}
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--accent-dark);
  color: #ecdede;
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
footer h4 { color: #fff; font-family: "Inter", sans-serif; font-size: 1rem; margin-bottom: 18px; }
footer .brand { color: #fff; margin-bottom: 12px; }
footer .brand .brand-sub { color: #d9bcbc; }
footer p, footer a { color: #d9bcbc; }
footer a:hover { color: #fff; }
footer ul { list-style: none; padding: 0; margin: 0; }
footer li { margin-bottom: 10px; }
.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
  color: #c9a8a8;
}
.social-row { display: flex; gap: 10px; margin-top: 16px; }
.social-row a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.social-row a:hover { background: rgba(255,255,255,0.2); }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split .split-media { order: -1; }
  .split img { min-height: 320px; }
  .service-block { grid-template-columns: 1fr; }
  .service-block.reverse .service-media { order: -1; }
  .feature-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  nav.main-nav { display: none; }
  nav.main-nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 12px 24px 20px;
  }
  nav.main-nav.open ul { flex-direction: column; }
  .nav-toggle { display: block; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; padding: 40px 26px; }
  section { padding: 60px 0; }
  .top-strip .container { justify-content: center; text-align: center; }
}
