:root {
  --ink: #201a17;
  --ink-soft: #5a4f48;
  --paper: #faf6f1;
  --paper-alt: #f1e9df;
  --line: #e4d9cb;
  --amber: #c9752b;
  --amber-dark: #a85e1e;
  --amber-light: #fce8d3;
  --green: #4a7856;
  --green-light: #e3efe6;
  --radius: 14px;
  --shadow: 0 10px 30px -12px rgba(32, 26, 23, 0.18);
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.btn:focus-visible,
.main-nav a:focus-visible,
.logo:focus-visible,
.service-card:focus-visible,
.nav-toggle:focus-visible,
.footer-links a:focus-visible,
.faq-item summary:focus-visible {
  outline: 3px solid var(--amber-dark);
  outline-offset: 3px;
}
.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--amber-dark);
  margin: 0 0 8px;
}
h1, h2, h3 { line-height: 1.15; margin: 0 0 16px; font-weight: 800; }
h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.section-sub { color: var(--ink-soft); margin-top: -8px; }

.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: 1rem;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-primary { background: var(--amber); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--amber-dark); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-block { width: 100%; text-align: center; }
.btn:disabled { cursor: not-allowed; opacity: 0.6; box-shadow: none; transform: none; }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.logo { font-weight: 800; font-size: 1.3rem; text-decoration: none; color: var(--ink); }
.logo span { color: var(--amber); }
.logo small { font-weight: 500; color: var(--ink-soft); margin-left: 6px; font-size: 0.85rem; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { text-decoration: none; font-weight: 600; color: var(--ink); font-size: 0.95rem; }
.main-nav a:hover { color: var(--amber-dark); }
.nav-cta { background: var(--amber); color: #fff !important; padding: 10px 20px; border-radius: 999px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); display: block; }

/* Hero */
.hero { padding: 64px 0 40px; }
.hero-inner { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 64px; align-items: center; }
.hero-sub { color: var(--ink-soft); font-size: 1.1rem; max-width: 46ch; }
.hero-actions { display: flex; gap: 16px; margin: 28px 0; flex-wrap: wrap; }
.trust-row { list-style: none; padding: 0; margin: 20px 0 0; display: flex; gap: 24px; flex-wrap: wrap; color: var(--ink-soft); font-size: 0.92rem; }
.trust-row strong { color: var(--ink); }
.hero-media {
  position: relative;
  width: 240px;
  height: 300px;
  justify-self: end;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: var(--shadow);
}
.hero-photo {
  border-radius: var(--radius);
  box-shadow: none;
  aspect-ratio: auto;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Section spacing */
.section { padding: 88px 0; }
.section.services, .section.testimonials { background: var(--paper-alt); }

/* Services */
.services-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--amber); }
.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--amber-light);
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.service-icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.service-title { display: block; font-weight: 700; font-size: 1.05rem; margin-bottom: 6px; }
.service-desc { display: block; color: var(--ink-soft); font-size: 0.9rem; }
.services-more { margin-top: 32px; }
.services-more a { color: var(--amber-dark); font-weight: 700; text-decoration: none; }
.services-more a:hover { text-decoration: underline; }

/* About */
.about-inner { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 56px; align-items: center; }
.about-photo {
  width: 280px;
  height: 280px;
  justify-self: center;
  padding: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: #fff;
  box-shadow: var(--shadow);
}
.about-photo img { width: 100%; height: 100%; border-radius: var(--radius); object-fit: cover; }
.stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 28px 0; }
.stat { background: var(--paper-alt); border-radius: 12px; padding: 16px 10px; text-align: center; }
.stat strong { display: block; font-size: 1.4rem; color: var(--amber-dark); }
.stat span { font-size: 0.82rem; color: var(--ink-soft); }
.sub-heading { font-size: 1.05rem; margin-top: 30px; }
.tag-list { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list li { background: var(--paper-alt); border: 1px solid var(--line); border-radius: 999px; padding: 6px 14px; font-size: 0.85rem; }
.verify-row { margin-top: 24px; display: flex; gap: 12px; flex-wrap: wrap; }
.badge { background: #eaf3ec; color: var(--green); border-radius: 999px; padding: 8px 16px; font-size: 0.85rem; font-weight: 700; }

/* Portfolio */
.portfolio-slider { --slides-visible: 3; margin-top: 40px; }
.portfolio-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  border-radius: var(--radius);
}
.portfolio-viewport::-webkit-scrollbar { display: none; }
.portfolio-track { display: flex; gap: 16px; }
.portfolio-item {
  flex: 0 0 calc((100% - (var(--slides-visible) - 1) * 16px) / var(--slides-visible));
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 3/4;
  scroll-snap-align: start;
}
.portfolio-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.portfolio-item:hover img { transform: scale(1.06); }
.portfolio-controls { margin-top: 24px; display: flex; align-items: center; justify-content: center; gap: 18px; }
.portfolio-arrow {
  width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%;
  background: var(--paper); color: var(--ink); font: inherit; font-size: 1.35rem;
  cursor: pointer; box-shadow: 0 4px 14px -8px rgba(32, 26, 23, 0.5);
}
.portfolio-arrow:hover:not(:disabled) { background: var(--amber); color: #fff; border-color: var(--amber); }
.portfolio-arrow:disabled { opacity: 0.35; cursor: not-allowed; }
.portfolio-dots { display: flex; align-items: center; justify-content: center; gap: 8px; }
.portfolio-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: var(--line); cursor: pointer; }
.portfolio-dot.active { width: 24px; border-radius: 999px; background: var(--amber); }
.portfolio-status { margin: 10px 0 0; min-height: 1.2em; text-align: center; color: var(--ink-soft); font-size: 0.8rem; }

/* Testimonials */
.rating-bars { max-width: 480px; margin: 32px auto 48px; display: grid; gap: 12px; }
.rating-bar { display: grid; grid-template-columns: 130px 1fr 36px; align-items: center; gap: 12px; font-size: 0.9rem; }
.rating-bar .bar { background: var(--line); border-radius: 999px; height: 8px; overflow: hidden; }
.rating-bar .bar i { display: block; height: 100%; background: var(--amber); border-radius: 999px; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin: 0;
}
.testimonial p { margin: 0 0 14px; font-size: 0.98rem; }
.testimonial cite { font-style: normal; font-weight: 700; font-size: 0.88rem; display: block; }
.testimonial cite span { display: block; font-weight: 500; color: var(--ink-soft); font-size: 0.82rem; margin-top: 2px; }
.testimonial-note { text-align: center; color: var(--ink-soft); font-size: 0.82rem; margin-top: 32px; }

/* Booking */
.booking-inner { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 56px; }
.booking-points { list-style: none; padding: 0; margin: 20px 0; display: grid; gap: 8px; color: var(--ink-soft); }
.contact-block { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.contact-block p { margin: 6px 0; }
.contact-block a { text-decoration: none; font-weight: 700; color: var(--amber-dark); }

.booking-form {
  background: var(--paper-alt);
  border-radius: var(--radius);
  padding: 32px;
  display: grid;
  gap: 18px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; gap: 6px; }
.form-row.two-col { grid-template-columns: 1fr 1fr; }
.form-row.two-col > div { display: grid; gap: 6px; }
label { font-size: 0.85rem; font-weight: 700; }
input, select, textarea {
  font-family: inherit;
  font-size: 0.98rem;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
}
input:focus, select:focus, textarea:focus { outline: 2px solid var(--amber); outline-offset: 1px; }
.form-note { text-align: center; font-size: 0.9rem; min-height: 1.2em; color: var(--green); font-weight: 600; }
.privacy-note { margin: 0; color: var(--ink-soft); font-size: 0.78rem; line-height: 1.5; }
.privacy-note a, .tax-note a { color: var(--amber-dark); font-weight: 700; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* Footer */
.site-footer { background: var(--ink); color: #ddd2c6; padding: 28px 0; }
.footer-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }
.footer-links a { text-decoration: none; color: #ddd2c6; }

/* Nav active state */
.main-nav a.active { color: var(--amber-dark); }

/* Pricing page */
.price-hero { padding-bottom: 24px; }
.price-hero h1 { font-size: clamp(2rem, 4vw, 2.6rem); }
.price-hero .section-sub { max-width: 60ch; margin-left: 0; margin-right: 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 8px;
}
.price-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.price-card-head {
  background: var(--ink);
  color: var(--paper);
  padding: 28px 28px 24px;
  position: relative;
}
.price-card-head h2 { color: #fff; font-size: 1.4rem; margin-bottom: 10px; }
.price-card-head p { margin: 0; color: #cfc4b8; font-size: 0.92rem; }
.price-ribbon {
  display: inline-block;
  background: var(--amber);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.price-card-body { padding: 28px; display: grid; gap: 10px; }
.price-tag { margin: 0; font-size: 2.6rem; font-weight: 800; line-height: 1; }
.price-tag .from { font-size: 1rem; font-weight: 600; color: var(--ink-soft); margin-right: 6px; vertical-align: middle; }
.price-unit { margin: 0 0 8px; color: var(--ink-soft); font-size: 0.9rem; }
.price-checklist { list-style: none; padding: 0; margin: 0 0 12px; display: grid; gap: 8px; }
.price-checklist li { padding-left: 24px; position: relative; font-size: 0.92rem; color: var(--ink-soft); }
.price-checklist li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.price-note-link { text-align: center; font-size: 0.85rem; color: var(--amber-dark); text-decoration: none; font-weight: 600; }
.price-disclaimer { text-align: center; color: var(--ink-soft); font-size: 0.85rem; margin-top: 32px; }

.surcharges { background: var(--paper-alt); }
.surcharge-list { list-style: none; padding: 0; margin: 28px 0 40px; display: grid; gap: 16px; max-width: 70ch; }
.surcharge-list li {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 0.95rem;
}
.tax-note {
  background: var(--paper);
  border: 1px dashed var(--amber);
  border-radius: var(--radius);
  padding: 22px 26px;
  max-width: 70ch;
}
.tax-note h3 { margin: 0 0 8px; font-size: 1.05rem; }
.tax-note p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }

.price-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.price-cta-inner h2 { margin-bottom: 6px; }
.price-cta-inner p { margin: 0; color: var(--ink-soft); }
.price-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 640px) {
  .price-cta-inner { flex-direction: column; align-items: flex-start; }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .booking-inner { grid-template-columns: 1fr; }
  .hero-media { width: 210px; height: 263px; justify-self: center; }
  .about-photo { width: 220px; height: 220px; }
  .portfolio-slider { --slides-visible: 2; }
  .main-nav {
    position: absolute; top: 76px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 16px 24px; gap: 14px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .nav-cta { text-align: center; }
  .nav-toggle { display: flex; }
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row.two-col { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .hero { padding: 40px 0 32px; }
  .hero-inner { text-align: center; }
  .hero-media {
    order: -1;
    width: 136px;
    height: 136px;
    padding: 0;
    margin-bottom: 4px;
    border-radius: 50%;
  }
  .hero-photo {
    width: 136px;
    height: 136px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin: 0 auto;
    border: 4px solid #fff;
  }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .trust-row { justify-content: center; }
  .about-photo { width: 180px; height: 180px; }
  .portfolio-slider { --slides-visible: 1; }
}

/* Opgaver page */
.opgaver-hero { padding-bottom: 32px; }
.opgaver-hero-inner { max-width: 74ch; }
.opgaver-hero h1 { font-size: clamp(2rem, 4vw, 2.7rem); }
.highlight-list {
  list-style: none; padding: 0; margin: 20px 0 0;
  display: grid; gap: 10px;
}
.highlight-list li {
  padding-left: 28px; position: relative; color: var(--ink-soft); font-size: 1rem;
}
.highlight-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}

.how-it-works { background: var(--paper-alt); }
.steps-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.step {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 22px;
}
.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.05rem; margin-bottom: 8px; }
.step p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.urgent-note {
  margin: 36px 0 0;
  background: var(--amber-light);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 0.95rem;
  max-width: 74ch;
}
.urgent-note a { color: var(--amber-dark); font-weight: 700; }

.task-columns {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.task-column {
  border-radius: var(--radius);
  padding: 28px 26px;
}
.task-column:nth-child(1) { background: var(--amber-light); }
.task-column:nth-child(2) { background: var(--green-light); }
.task-column h3 { font-size: 1.15rem; margin-bottom: 16px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li { padding-left: 26px; position: relative; font-size: 0.95rem; }
.check-list li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--green); font-weight: 700;
}
.task-note { text-align: center; color: var(--ink-soft); font-size: 0.9rem; margin-top: 40px; }

.faq { background: var(--paper-alt); }
.faq-list { max-width: 78ch; margin: 40px auto 0; display: grid; gap: 12px; }
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 6px 22px;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 16px 0;
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 14px;
  font-size: 1.3rem; color: var(--amber-dark); font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); font-size: 0.95rem; }
.faq-item p a { color: var(--amber-dark); font-weight: 700; }
