/* ============================================
   Projekttjek - Standalone one-pager
   Brand: 3dbyggeri Danmark - matcher originalen visuelt
   ============================================ */

/* ---- BRAND PALETTE ----
   Primary green:  #66B245
   Darker green:   #5AA039 (hover)
   Charcoal:       #2b2b2b (tekst/dark sections)
   Light gray:     #f3f3f3 (sektion-baggrund)
*/

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Avenir Next", "Avenir", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2b2b2b;
  background: #ffffff;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #66B245; text-decoration: none; }
a:hover { color: #5AA039; text-decoration: underline; }

h1, h2, h3, h4 {
  margin: 0 0 0.6em;
  line-height: 1.25;
  color: #2b2b2b;
  font-weight: 400;
}
h1 { font-size: 2.6rem; font-weight: 500; letter-spacing: -0.01em; }
h2 { font-size: 1.7rem; font-weight: 500; margin-top: 1.6em; }
h2:first-child { margin-top: 0; }
h3 { font-size: 1.25rem; font-weight: 500; }
h4 { font-size: 1.05rem; font-weight: 600; }

p { margin: 0 0 1.1em; }

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.15s ease;
  text-decoration: none !important;
  line-height: 1.2;
  border-radius: 2px;
}

.btn-hero {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-hero:hover {
  background: #ffffff;
  color: #66B245;
}

.btn-outline {
  background: transparent;
  color: #66B245;
  border-color: #66B245;
}
.btn-outline:hover {
  background: #66B245;
  color: #ffffff;
}

.btn-dark {
  background: #2b2b2b;
  color: #ffffff;
  border-color: #2b2b2b;
}
.btn-dark:hover {
  background: #000000;
  border-color: #000000;
  color: #ffffff;
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
  margin-bottom: 10px;
}

/* ---- HEADER ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #ffffff;
  border-bottom: 1px solid #eeeeee;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo img { height: 36px; width: auto; }
.site-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.site-nav a {
  color: #2b2b2b;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover { color: #66B245; text-decoration: none; }
.site-nav .nav-cta {
  background: #66B245;
  color: #fff;
  padding: 9px 18px;
  border-radius: 2px;
}
.site-nav .nav-cta:hover { background: #5AA039; color: #fff; }

/* ---- HERO ---- */
.hero {
  background: #66B245;
  color: #ffffff;
  padding: 70px 0 80px;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.hero-text h1 {
  color: #ffffff;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 2.8rem;
}
.hero-eyebrow {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 8px;
  line-height: 1.3;
}
.hero-subtitle {
  color: #ffffff;
  font-size: 1.05rem;
  margin-top: 24px;
  margin-bottom: 16px;
}
.hero-text p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.65;
}
.hero-text .btn-hero {
  margin-top: 20px;
}
.hero-image img {
  max-width: 100%;
  height: auto;
}

/* ---- SECTIONS GENERIC ---- */
.section {
  padding: 70px 0;
}

/* ---- MAIN TWO-COLUMN LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.col-main h2 {
  color: #2b2b2b;
}
.col-main p, .col-main li {
  color: #2b2b2b;
}

/* ---- BULLET LIST ---- */
.bullet-list {
  padding-left: 22px;
  margin: 16px 0 24px;
}
.bullet-list li {
  margin-bottom: 10px;
  padding-left: 4px;
}
.bullet-list li::marker {
  color: #66B245;
}

/* ---- CALLOUT BOX ---- */
.callout {
  background: #f3f3f3;
  padding: 22px 28px;
  margin: 28px 0;
  border-radius: 2px;
}
.callout p { margin-bottom: 12px; }
.callout-list {
  margin: 0;
  padding-left: 22px;
  list-style: none;
}
.callout-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  color: #66B245;
  font-weight: 500;
}
.callout-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #66B245;
  font-weight: 700;
}

/* ---- FAQ ACCORDION (højre kolonne) ---- */
.col-faq {
  padding-top: 4px;
}
.faq-heading {
  color: #66B245;
  font-size: 1.05rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  line-height: 1.4;
}

.faq-item {
  border-bottom: 1px solid #cccccc;
  margin-bottom: 0;
}
.faq-item:first-of-type {
  border-top: 1px solid #cccccc;
}
.faq-item summary {
  padding: 22px 4px;
  font-weight: 500;
  font-size: 1.05rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  color: #2b2b2b;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1.5px solid #66B245;
  border-bottom: 1.5px solid #66B245;
  transform: rotate(45deg);
  transition: transform 0.2s;
  margin-left: 12px;
  margin-top: -4px;
}
.faq-item[open] summary::after {
  transform: rotate(-135deg);
  margin-top: 4px;
}
.faq-item summary:hover { color: #66B245; }
.faq-body {
  padding: 4px 4px 22px;
  color: #444444;
  font-size: 0.97rem;
}
.faq-body p { margin-bottom: 12px; }
.faq-body ul, .faq-body ol {
  padding-left: 20px;
  margin: 10px 0;
}
.faq-body li { margin-bottom: 8px; }

/* ---- QUOTE ---- */
.section-quote {
  background: #f3f3f3;
}
.section-quote blockquote {
  margin: 0;
  max-width: 900px;
  padding: 20px 0;
}
.section-quote blockquote p {
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.3;
  color: #2b2b2b;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.section-quote blockquote footer {
  font-size: 0.95rem;
  color: #555555;
  font-style: normal;
}

/* ---- VI SAMLER TRÅDENE ---- */
.section-threads {
  background: #ffffff;
}
.section-threads .container { max-width: 720px; }

/* ---- KONTAKT KORT ---- */
.section-contact-card {
  padding: 30px 0;
}
.contact-card {
  background: #f3f3f3;
  padding: 40px;
  text-align: center;
  border-radius: 2px;
}
.contact-card h3 {
  margin-bottom: 18px;
  font-weight: 500;
}
.contact-links {
  font-size: 1.1rem;
  margin: 0;
  line-height: 2;
}
.contact-links a {
  color: #2b2b2b;
}
.contact-links a:hover {
  color: #66B245;
}

/* ---- KOMME I GANG ---- */
.section-start {
  background: #ffffff;
}
.section-start h2 {
  margin-top: 0;
}
.col-cta {
  position: sticky;
  top: 90px;
}
.cta-card {
  background: #f3f3f3;
  padding: 32px;
  border-radius: 2px;
}
.cta-card h3 {
  margin-bottom: 6px;
  font-weight: 500;
}
.cta-card-lede {
  color: #555555;
  font-size: 0.95rem;
  margin-bottom: 16px;
}
.cta-card .btn-block:first-of-type {
  margin-top: 18px;
}

/* ---- FOOTER ---- */
.site-footer {
  background: #1a1a1a;
  color: #c4c4c4;
  padding: 60px 0 0;
  font-size: 0.85rem;
  line-height: 1.6;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-bottom: 40px;
}
.footer-col p { margin-bottom: 16px; }
.footer-col a { color: #c4c4c4; }
.footer-col a:hover { color: #ffffff; }
.footer-col-right { text-align: right; }
.footer-col strong { color: #ffffff; font-weight: 600; letter-spacing: 0.02em; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  font-size: 0.8rem;
  color: #888888;
  text-align: center;
}
.footer-bottom p { margin: 0; }

/* ---- RESPONSIVE ---- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero { padding: 50px 0 60px; }
  .hero-text h1 { font-size: 2.1rem; }
  .hero-eyebrow { font-size: 1.15rem; }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .col-cta { position: static; }

  .section { padding: 50px 0; }

  .section-quote blockquote p { font-size: 1.35rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-col-right { text-align: left; }
}

@media (max-width: 480px) {
  .container { padding: 0 18px; }
  body { font-size: 15px; }
  .header-inner { height: 60px; }
  .logo img { height: 28px; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.4rem; }
  .hero-text h1 { font-size: 1.8rem; }
  .contact-card { padding: 28px 20px; }
  .cta-card { padding: 24px; }
}
