
:root {
  --bg: #f7f2ea;
  --paper: #fffaf2;
  --paper-2: #f1e5d4;
  --text: #201d1a;
  --muted: #6b6259;
  --line: #ded1bf;
  --green-dark: #173d32;
  --green: #285d49;
  --green-soft: #dcebe2;
  --amber: #c8841e;
  --amber-soft: #f6ead6;
  --coal: #151413;
  --white: #ffffff;
  --shadow: 0 18px 50px rgba(32, 29, 26, .10);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0%, rgba(200,132,30,.14), transparent 32%),
    radial-gradient(circle at 90% 10%, rgba(40,93,73,.13), transparent 28%);
  z-index: -1;
}

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

a {
  color: inherit;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: var(--coal);
  color: var(--white);
  padding: 10px 14px;
  z-index: 1000;
  border-radius: 10px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247,242,234,.82);
  border-bottom: 1px solid rgba(222,209,191,.75);
}

.navbar {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.05;
}

.logo-mark {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
}

.logo-text {
  display: inline-flex;
  flex-direction: column;
}

.logo strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  letter-spacing: -.035em;
}

.logo span {
  color: var(--muted);
  font-size: .72rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-top: 3px;
}

.navlinks {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.navlinks a {
  text-decoration: none;
  color: var(--muted);
  font-size: .94rem;
  font-weight: 650;
  padding: 10px 12px;
  border-radius: 999px;
}

.navlinks a:hover,
.navlinks a[aria-current="page"] {
  background: var(--green-soft);
  color: var(--green-dark);
}

.navlinks .nav-cta {
  background: var(--green-dark);
  color: var(--white);
  margin-left: 6px;
  padding-inline: 16px;
}

.navlinks .nav-cta:hover {
  background: var(--coal);
  color: var(--white);
}

.hero {
  padding: clamp(44px, 8vw, 92px) 0 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green-dark);
  font-weight: 800;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--amber);
}

h1, h2, h3 {
  line-height: 1.1;
  margin: 0;
}

h1,
.section-title,
.page-title {
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -.055em;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 6.15rem);
  max-width: 930px;
}

h1 em,
.section-title em {
  color: var(--green);
  font-style: italic;
}

.hero-lead {
  font-size: clamp(1.08rem, 2.2vw, 1.34rem);
  color: var(--muted);
  max-width: 680px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  padding: 12px 20px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green-dark);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--coal);
}

.btn-secondary {
  background: rgba(255,255,255,.62);
  border-color: var(--line);
  color: var(--green-dark);
}

.btn-secondary:hover {
  background: var(--white);
}

.hero-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-wrap {
  position: relative;
  aspect-ratio: 4/4.15;
  background: var(--paper-2);
  overflow: hidden;
}

.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portrait-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  background: rgba(255,250,242,.88);
  border: 1px solid rgba(222,209,191,.9);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 15px 16px;
}

.portrait-badge strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.portrait-badge span {
  color: var(--muted);
  font-size: .93rem;
}

.hero-card-body {
  padding: 22px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}

.stat {
  padding: 17px 16px;
  border-right: 1px solid var(--line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  font-size: 1.25rem;
  color: var(--green-dark);
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.35;
}

.section {
  padding: clamp(54px, 8vw, 96px) 0;
}

.section.alt {
  background: rgba(255,250,242,.56);
  border-block: 1px solid rgba(222,209,191,.75);
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 16px;
}

.section-text,
.page-lead {
  font-size: 1.07rem;
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 10px 28px rgba(32,29,26,.06);
}

.card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--green-soft);
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: start;
}

.panel {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 38px);
  box-shadow: var(--shadow);
}

.panel .eyebrow {
  color: var(--amber-soft);
}

.panel .eyebrow::before {
  background: var(--amber-soft);
}

.panel h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

.panel p {
  color: rgba(255,255,255,.78);
  margin: 0 0 18px;
}

.list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.list li:last-child {
  border-bottom: 0;
}

.check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--amber);
  display: grid;
  place-items: center;
  color: var(--white);
  font-weight: 900;
  font-size: .8rem;
}

.text-block p {
  color: var(--muted);
  margin: 0 0 18px;
}

.text-block strong {
  color: var(--text);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.price-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 12px 28px rgba(32,29,26,.07);
  display: flex;
  flex-direction: column;
}

.price-card.featured {
  background: var(--green-dark);
  color: var(--white);
  border-color: var(--green-dark);
  transform: translateY(-8px);
}

.badge {
  position: absolute;
  right: 18px;
  top: 18px;
  background: var(--amber);
  color: var(--white);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .73rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
}

.price-name {
  font-weight: 900;
  color: var(--green-dark);
  margin-bottom: 12px;
}

.featured .price-name {
  color: var(--amber-soft);
}

.price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.1rem;
  letter-spacing: -.05em;
  line-height: .9;
  margin-bottom: 8px;
}

.price small {
  font-family: Inter, ui-sans-serif, system-ui;
  font-size: .92rem;
  letter-spacing: normal;
  font-weight: 700;
}

.price-sub {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 18px;
}

.featured .price-sub,
.featured .features li {
  color: rgba(255,255,255,.78);
}

.features {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
}

.features li {
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 0;
  font-size: .93rem;
}

.featured .features li {
  border-top-color: rgba(255,255,255,.16);
}

.price-card .btn {
  margin-top: auto;
  width: 100%;
}

.note-box {
  background: var(--amber-soft);
  border: 1px solid #e7c995;
  border-radius: var(--radius);
  padding: 22px;
  color: #5a3c12;
  margin-top: 22px;
}

.quote {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2.15rem);
  line-height: 1.35;
  letter-spacing: -.035em;
  margin: 0 0 20px;
}

.quote cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
}

.contact-box {
  background: var(--coal);
  color: var(--white);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(30px, 5vw, 54px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: center;
}

.contact-box h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4rem);
  letter-spacing: -.055em;
  margin-bottom: 16px;
}

.contact-box p {
  color: rgba(255,255,255,.76);
  margin: 0;
}

.contact-actions {
  display: grid;
  gap: 12px;
}

.contact-link {
  display: block;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  padding: 16px 18px;
  color: var(--white);
  text-decoration: none;
  font-weight: 850;
}

.contact-link span {
  display: block;
  color: rgba(255,255,255,.64);
  font-weight: 500;
  font-size: .9rem;
  margin-top: 3px;
}

.site-footer {
  padding: 36px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.page-hero {
  padding: clamp(42px, 8vw, 84px) 0 24px;
}

.page-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  max-width: 900px;
}

.content {
  padding: 34px 0 84px;
}

.content-grid {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 34px;
  align-items: start;
}

.sidebar {
  position: sticky;
  top: 96px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
}

.sidebar a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: .93rem;
}

.sidebar a:hover {
  background: var(--green-soft);
  color: var(--green-dark);
}

.article {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 46px);
  box-shadow: 0 12px 32px rgba(32,29,26,.06);
}

.article h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.5rem);
  letter-spacing: -.04em;
  margin: 32px 0 12px;
}

.article h2:first-child {
  margin-top: 0;
}

.article h3 {
  font-size: 1.15rem;
  margin: 22px 0 8px;
}

.article p {
  color: var(--muted);
  margin: 0 0 16px;
}

.article ul,
.article ol {
  color: var(--muted);
  padding-left: 1.2rem;
}

.article li {
  margin: 7px 0;
}

.table-wrap {
  overflow-x: auto;
  margin: 20px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th, td {
  padding: 13px 15px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

th {
  background: var(--paper-2);
  color: var(--green-dark);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}

tr:last-child td {
  border-bottom: 0;
}

.inline-callout {
  background: var(--green-soft);
  color: var(--green-dark);
  border-radius: 16px;
  padding: 18px;
  margin: 20px 0;
}

.formal-header {
  border-bottom: 3px solid var(--amber);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 32px;
}

.signature-line {
  border-top: 1px solid var(--text);
  padding-top: 8px;
  color: var(--muted);
}


.brand-logo-strip {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.brand-logo-strip img {
  width: clamp(120px, 18vw, 190px);
  height: auto;
}

.hero-brand-watermark { display: none !important; }

.footer-logo {
  width: 124px;
  height: auto;
  margin-bottom: 12px;
}

.article-logo {
  width: min(260px, 70%);
  height: auto;
  margin: 0 0 24px;
}

@media (max-width: 720px) {
  .logo-mark {
    width: 54px;
  }

  .logo strong {
    font-size: 1.05rem;
  }

  .logo span {
    font-size: .66rem;
  }

  .hero-brand-watermark { display: none !important; }
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .contact-box,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .price-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sidebar {
    position: static;
  }

  .price-card.featured {
    transform: none;
  }
}

@media (max-width: 720px) {
  .navbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .navlinks {
    justify-content: flex-start;
  }

  .navlinks a {
    padding: 8px 10px;
  }

  .navlinks .nav-cta {
    margin-left: 0;
  }

  .hero {
    padding-top: 28px;
  }

  .card-grid,
  .price-grid,
  .stat-row,
  .signature-grid {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .price {
    font-size: 2.65rem;
  }
}

@media print {
  .site-header,
  .site-footer,
  .sidebar,
  .btn,
  .contact-box {
    display: none !important;
  }

  body {
    background: white;
  }

  .container {
    width: auto;
    margin: 0;
  }

  .article {
    border: 0;
    box-shadow: none;
    padding: 0;
  }

  .content-grid {
    display: block;
  }
}


/* ── Tilrettelser: T-modellen og testimonial ─────────────────────────── */
.method-line {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.method-chip {
  background: rgba(255,255,255,.68);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}

.method-chip strong {
  display: block;
  color: var(--green-dark);
  margin-bottom: 6px;
}

.testimonial-section {
  padding-top: clamp(40px, 6vw, 74px);
  padding-bottom: clamp(40px, 6vw, 74px);
}

.quote-kicker {
  margin: 0 0 14px;
  color: var(--green-dark);
  font-weight: 900;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.quote-subnote {
  margin-top: 22px;
  color: var(--muted);
  max-width: 720px;
}

.article-testimonial {
  margin-top: 26px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}

.article-testimonial blockquote {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.45;
  letter-spacing: -.025em;
}

.article-testimonial cite {
  color: var(--muted);
  font-style: normal;
  font-weight: 800;
}

@media (max-width: 720px) {
  .method-line {
    grid-template-columns: 1fr;
  }
}


/* Logo og portræt holdes adskilt */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  line-height: 1.05;
}
.logo-mark {
  width: 68px;
  height: auto;
  flex: 0 0 auto;
}
.logo-text {
  display: inline-flex;
  flex-direction: column;
}
.footer-logo {
  width: 124px;
  height: auto;
  margin-bottom: 12px;
}
@media (max-width: 720px) {
  .logo-mark {
    width: 54px;
  }
}
