/* Schmidt Haveservice — Site styles
   Ported from Claude Design handoff (HTML/CSS/JSX prototype)
   Brand: green-on-cream, serif headlines (Fraunces), sans body (DM Sans)
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,500&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  /* Brand */
  --green-deep: #1a5c2a;
  --green-deep-active: #134420;
  --green-light: #9fd48a;
  --green-light-soft: #d8eccb;
  --green-tint: #eef5e6;
  --primary: var(--green-deep);
  --primary-active: var(--green-deep-active);
  --on-primary: #faf9f5;

  /* Surface */
  --canvas: #faf9f5;
  --canvas-hero: #f4f9ef;
  --surface-soft: #f5f0e8;
  --surface-card: #efe9de;
  --surface-cream-strong: #e8e0d2;
  --surface-dark: #1a1f1a;

  /* Ink */
  --ink: #14201a;
  --body: #3d4a40;
  --muted: #6c7a6e;
  --hairline: #e6dfd8;
  --hairline-soft: #ebe6df;

  /* Type */
  --font-serif: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-sans: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --maxw-narrow: 920px;
  --nav-h: 72px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--green-deep); text-decoration: none; }
a:hover { text-decoration: underline; }

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 { font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.03em; }
h2 { font-size: clamp(32px, 4.2vw, 52px); line-height: 1.1; letter-spacing: -0.02em; }
h3 { font-size: clamp(24px, 2.6vw, 32px); line-height: 1.2; }
h4 { font-size: 22px; line-height: 1.3; }

p { margin: 0; color: var(--body); text-wrap: pretty; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green-deep);
}

/* ——— Layout primitives ——— */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  width: 100%;
  max-width: var(--maxw-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .section-sm { padding: 48px 0; }
}

.bg-canvas { background: var(--canvas); }
.bg-soft { background: var(--surface-soft); }
.bg-cream { background: var(--surface-card); }
.bg-tint { background: var(--green-tint); }

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 22px;
  border-radius: 9999px;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease, transform 160ms ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn:hover { text-decoration: none; }
.btn svg { transition: transform 160ms ease; }
.btn:hover svg { transform: translateX(2px); }
.btn-primary {
  background: var(--green-deep);
  color: var(--on-primary);
}
.btn-primary:hover { background: var(--green-deep-active); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--canvas); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
}
.btn-ghost:hover { background: rgba(20,32,26,0.06); }
.btn-light {
  background: var(--green-light);
  color: var(--surface-dark);
  border: none;
}
.btn-light:hover { background: #b8e1a4; }
.btn-outline-light {
  background: transparent;
  color: var(--canvas);
  border: 1px solid rgba(250,249,245,0.4);
}
.btn-outline-light:hover { border-color: var(--canvas); background: rgba(255,255,255,0.06); }
.btn-lg { height: 56px; padding: 0 28px; font-size: 16px; }
.btn-sm { height: 40px; padding: 0 18px; font-size: 14px; }

/* ——— Form controls ——— */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 13px; font-weight: 500; color: var(--body); }
.input, .select, .textarea {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.textarea {
  height: auto;
  min-height: 140px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.55;
}
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--green-deep);
  box-shadow: 0 0 0 3px rgba(26,92,42,0.15);
}
.select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%2314201a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}

/* ——— Cards & surfaces ——— */
.card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px;
}
.card-soft {
  background: var(--surface-card);
  border: none;
  border-radius: 16px;
  padding: 32px;
}
.divider { height: 1px; background: var(--hairline); border: none; margin: 0; }

/* ——— Pills, badges ——— */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 32px;
  padding: 0 14px;
  border-radius: 9999px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}
.pill-tint { background: var(--green-tint); border-color: transparent; color: var(--green-deep); }
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green-light); }

/* ——— Section header ——— */
.section-header {
  max-width: 720px;
  margin-bottom: 48px;
}
.section-header.is-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header .eyebrow { display: block; margin-bottom: 12px; }
.section-header h2 { margin-bottom: 16px; }
.section-header .kicker { font-size: 18px; color: var(--body); }

/* ——— Navigation ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,249,245,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.nav-inner {
  height: var(--nav-h);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex: none;
}
.nav-logo:hover { text-decoration: none; }
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.nav-logo-wordmark {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--green-deep);
  white-space: nowrap;
}
.nav-logo-wordmark span { font-style: italic; font-weight: 500; }

.nav-pill {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px;
  background: var(--surface-dark);
  border-radius: 9999px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  border-radius: 9999px;
  color: rgba(250,249,245,0.76);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  background: transparent;
  font-family: inherit;
  transition: background 160ms ease, color 160ms ease;
  text-decoration: none;
}
.nav-link:hover { color: var(--canvas); text-decoration: none; }
.nav-link.is-active {
  background: var(--green-light);
  color: var(--surface-dark);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 44px;
  background: var(--green-deep);
  border-radius: 9999px;
  color: var(--canvas);
  overflow: hidden;
  flex: none;
  transition: background 160ms ease;
}
.nav-cta:hover { background: var(--green-deep-active); text-decoration: none; }
.nav-cta-text,
.nav-cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 100%;
  padding: 0 18px;
  background: transparent;
  border: none;
  color: var(--canvas);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 160ms ease;
}
.nav-cta-text:hover,
.nav-cta-phone:hover {
  background: rgba(255,255,255,0.10);
  color: var(--canvas);
  text-decoration: none;
}
.nav-cta-divider {
  width: 1px;
  height: 22px;
  background: rgba(255,255,255,0.4);
  flex: none;
}

.nav-mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-mobile-menu {
  display: none;
  border-top: 1px solid var(--hairline);
  background: var(--canvas);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile-menu.is-open { display: flex; }
.nav-mobile-menu .nav-link {
  width: 100%;
  height: 44px;
  background: transparent;
  color: var(--ink);
  justify-content: flex-start;
  border-radius: 10px;
}
.nav-mobile-menu .nav-link.is-active {
  background: var(--green-tint);
  color: var(--green-deep);
}
.nav-mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
}

@media (max-width: 880px) {
  .nav-pill { display: none; }
  .nav-cta { display: none; }
  .nav-mobile-toggle { display: inline-flex; }
}

/* ——— Hero (Forside) ——— */
.hero {
  position: relative;
  background: var(--canvas-hero);
  padding: 72px 0 120px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--green-deep);
  margin-bottom: 36px;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2d7a3a;
  box-shadow: 0 0 0 4px rgba(45, 122, 58, 0.14);
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: #0f2d15;
  font-weight: 500;
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  color: var(--green-deep);
  font-weight: 400;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: #6b7c6b;
  max-width: 460px;
  margin: 0 0 40px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  overflow: hidden;
  background: #d8e4cb;
  box-shadow:
    0 30px 80px -40px rgba(15, 45, 21, 0.35),
    0 1px 2px rgba(15, 45, 21, 0.06);
}
.hero-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.info-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 22px 26px;
  min-width: 240px;
  box-shadow: 0 20px 50px -20px rgba(15, 45, 21, 0.32);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.info-card-label { font-size: 13px; color: #6b7c6b; font-weight: 400; }
.info-card-price {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 500;
  color: #0f2d15;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 2px 0 4px;
}
.info-card-meta { font-size: 12px; color: #6b7c6b; letter-spacing: 0.02em; }
.info-card-meta .sep {
  display: inline-block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #6b7c6b;
  vertical-align: middle;
  margin: 0 6px;
  opacity: 0.5;
}

@media (max-width: 960px) {
  .hero { padding: 48px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-photo-wrap { aspect-ratio: 4 / 4.5; max-width: 540px; margin: 0 auto; }
  .hero-lede { max-width: 580px; }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 44px; }
  .hero-lede { font-size: 17px; margin-bottom: 32px; }
  .info-card { left: 16px; bottom: 16px; padding: 18px 20px; min-width: 200px; }
  .info-card-price { font-size: 32px; }
}

/* ——— Page hero (sub-pages) ——— */
.page-hero {
  background: var(--surface-soft);
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}
.page-hero-watermark {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 280px;
  height: 280px;
  opacity: 0.08;
  pointer-events: none;
  user-select: none;
}
.page-hero .container,
.page-hero .container-narrow { position: relative; }
.page-hero h1 { font-size: clamp(40px, 5vw, 64px); margin-bottom: 20px; }
.page-hero .eyebrow { display: block; margin-bottom: 14px; }
.page-hero .kicker { font-size: 19px; color: var(--body); max-width: 720px; }

/* ——— Grid utilities ——— */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 880px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 521px) and (max-width: 880px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}

/* ——— Service cards (home preview) ——— */
.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.service-card .icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--canvas);
  display: grid;
  place-items: center;
}
.service-card h4 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 500;
}
.service-card p { font-size: 15px; }

/* ——— Why us ——— */
.why-card {
  background: var(--canvas);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--hairline);
}
.why-card .num {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--green-deep);
  color: var(--canvas);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}
.why-card h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 8px;
}
.why-card p { font-size: 14px; }

/* ——— Vedligeholdelses-pakker ——— */
.pakker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}
.pakke-card {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.pakke-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 48px -28px rgba(20,32,26,0.22);
}
.pakke-card.featured {
  border: 2px solid var(--green-deep);
  background: linear-gradient(180deg, #f4faec 0%, var(--canvas) 60%);
  box-shadow: 0 30px 60px -30px rgba(26,92,42,0.35);
}
.pakke-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-deep);
  color: var(--canvas);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.pakke-card h3 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--green-deep);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.pakke-blurb { font-size: 14px; color: var(--muted); line-height: 1.5; }
.pakke-price-row {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 18px 0 22px;
  border-bottom: 1px solid var(--hairline-soft);
  margin-bottom: 22px;
}
.pakke-price {
  font-family: var(--font-serif);
  font-size: 36px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.pakke-price-note { font-size: 13px; color: var(--muted); }
.pakke-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.pakke-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  color: var(--body);
  line-height: 1.45;
}
.pakke-list svg { flex: none; margin-top: 2px; }
.pakker-note {
  margin-top: 36px;
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
@media (max-width: 880px) {
  .pakker-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ——— Servicefradrag dark band ——— */
.fradrag-band {
  background: #143d22;
  color: var(--canvas);
  padding: 80px 0;
}
.fradrag-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.fradrag-band h2 {
  color: var(--canvas);
  margin: 16px 0 24px;
}
.fradrag-band h2 em {
  font-style: italic;
  color: var(--green-light);
  font-weight: 500;
}
.fradrag-band .lede {
  color: rgba(250,249,245,0.78);
  font-size: 18px;
  max-width: 560px;
}
.fradrag-band .eyebrow { color: var(--green-light); }
.fradrag-checks {
  list-style: none;
  padding: 0;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.fradrag-checks li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250,249,245,0.85);
  font-size: 15px;
}
.fradrag-checks .tick {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green-light);
  display: grid;
  place-items: center;
  flex: none;
}
.fradrag-example {
  background: rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(159,212,138,0.2);
}
.fradrag-example .label {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-light);
  margin-bottom: 16px;
  font-weight: 600;
}
.fradrag-example .rows {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fradrag-row {
  display: flex;
  justify-content: space-between;
  color: rgba(250,249,245,0.78);
  font-size: 14px;
  font-weight: 400;
}
.fradrag-row.strong { font-weight: 600; }
.fradrag-row.strong span:last-child { color: var(--canvas); }
.fradrag-row.accent { color: var(--green-light); }
.fradrag-example hr {
  border: none;
  border-top: 1px solid rgba(159,212,138,0.2);
  margin: 8px 0;
}
.fradrag-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 4px;
}
.fradrag-final .l { color: var(--canvas); font-size: 16px; font-weight: 500; }
.fradrag-final .v {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--green-light);
  font-weight: 600;
}
@media (max-width: 880px) {
  .fradrag-grid { grid-template-columns: 1fr; }
}

/* ——— Before/after slider ——— */
.ba-slider {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface-card);
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.ba-after, .ba-before { position: absolute; inset: 0; }
.ba-after img, .ba-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.ba-before { clip-path: inset(0 50% 0 0); will-change: clip-path; }
.ba-tag {
  position: absolute;
  top: 14px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--canvas);
}
.ba-tag.before { left: 14px; background: rgba(20,32,26,0.7); }
.ba-tag.after { right: 14px; background: rgba(26,92,42,0.85); }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--canvas);
  box-shadow: 0 0 0 1px rgba(20,32,26,0.2);
  transform: translateX(-1px);
  will-change: left;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--canvas);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(20,32,26,0.25);
}

/* ——— Reviews ——— */
.review-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  cursor: pointer;
}
.review-card .stars { display: flex; gap: 2px; }
.review-card blockquote {
  font-family: var(--font-serif);
  font-size: 20px;
  font-style: italic;
  color: var(--ink);
  line-height: 1.4;
  margin: 0;
}
.review-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--hairline);
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-tint);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-weight: 600;
  font-size: 14px;
}
.review-name { font-weight: 600; color: var(--ink); font-size: 14px; }
.review-loc { font-size: 13px; color: var(--muted); }

/* ——— FAQ ——— */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--hairline);
  border-radius: 14px;
  background: var(--canvas);
  overflow: hidden;
  transition: background 200ms ease;
}
.faq-item.is-open { background: var(--surface-soft); }
.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  gap: 16px;
}
.faq-toggle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--canvas);
  color: var(--ink);
  border: 1px solid var(--hairline);
  display: grid;
  place-items: center;
  flex: none;
  transition: all 200ms ease;
}
.faq-item.is-open .faq-toggle {
  background: var(--green-deep);
  color: var(--canvas);
  border: none;
}
.faq-toggle svg { transition: transform 200ms ease; }
.faq-item.is-open .faq-toggle svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.6;
  max-width: 720px;
}
.faq-item.is-open .faq-answer { display: block; }

/* ——— CTA strip ——— */
.cta-strip {
  background: var(--green-deep);
  color: var(--canvas);
  padding: 72px 0;
}
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-strip h3 {
  color: var(--canvas);
  margin-bottom: 10px;
  font-size: 36px;
}
.cta-strip p {
  color: rgba(250,249,245,0.85);
  font-size: 17px;
  max-width: 640px;
}
.cta-strip-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ——— Service-fradrag note (used on contact) ——— */
.fradrag-note {
  background: var(--green-tint);
  border: 1px solid var(--green-light-soft);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.fradrag-note .badge {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--green-deep);
  color: var(--canvas);
  display: grid;
  place-items: center;
  flex: none;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 18px;
}
.fradrag-note .title { font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.fradrag-note p { font-size: 14px; }

/* ——— Footer ——— */
.footer {
  background: var(--surface-dark);
  color: var(--canvas);
  padding: 80px 0 40px;
}
.footer h4 {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-light);
  margin: 0 0 16px;
}
.footer a { color: rgba(250,249,245,0.78); display: block; padding: 4px 0; font-size: 14px; }
.footer a:hover { color: var(--canvas); text-decoration: none; }
.footer p { color: rgba(250,249,245,0.72); font-size: 14px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }
.footer-logo {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: var(--canvas);
  padding: 4px;
  margin-bottom: 16px;
}
.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(250,249,245,0.12);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(250,249,245,0.6);
}

/* ——— Ydelser detail rows ——— */
.ydelse-row {
  display: grid;
  gap: 56px;
  align-items: center;
}
.ydelse-row.left  { grid-template-columns: 1fr 1.3fr; }
.ydelse-row.right { grid-template-columns: 1.3fr 1fr; }
.ydelse-row.right .ydelse-art { order: 2; }
.ydelse-list { display: flex; flex-direction: column; gap: 64px; }
.ydelse-art {
  border-radius: 20px;
  padding: 56px;
  display: grid;
  place-items: center;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ydelse-art .icon-tile {
  width: 96px;
  height: 96px;
  border-radius: 24px;
  background: var(--canvas);
  display: grid;
  place-items: center;
}
.ydelse-art .icon-tile svg { transform: scale(2.4); transform-origin: center; }
.ydelse-row .eyebrow { display: block; margin-bottom: 12px; }
.ydelse-row h3 { margin-bottom: 16px; font-size: 36px; }
.ydelse-row .lede { font-size: 18px; margin-bottom: 16px; }
.ydelse-row .body { font-size: 15px; margin-bottom: 12px; }
.ydelse-row ul.bullets {
  list-style: none;
  padding: 0;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.leaf-bullet::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-light);
  margin-right: 12px;
  vertical-align: middle;
}
@media (max-width: 880px) {
  .ydelse-row { grid-template-columns: 1fr !important; gap: 24px; }
  .ydelse-row.right .ydelse-art { order: 0; }
  .ydelse-art { padding: 36px; }
}

/* ——— Calculator (full page) ——— */
.calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: start;
}
.calc-summary { position: sticky; top: 96px; }
.calc-summary-card {
  background: var(--surface-dark);
  color: var(--canvas);
  border-radius: 20px;
  padding: 32px;
}
.calc-summary-card .eyebrow { color: var(--green-light); margin-bottom: 12px; }
.calc-total {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 500;
  color: var(--canvas);
  line-height: 1;
  letter-spacing: -0.02em;
}
.calc-total-note { font-size: 13px; color: rgba(250,249,245,0.6); margin-top: 6px; }
.calc-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(250,249,245,0.15);
  margin-top: 24px;
}
.calc-row {
  display: flex;
  justify-content: space-between;
  color: rgba(250,249,245,0.78);
}
.calc-row span:last-child { font-variant-numeric: tabular-nums; }
.calc-fradrag {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(159,212,138,0.12);
  border: 1px solid rgba(159,212,138,0.3);
}
.calc-fradrag-line {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--green-light);
  font-weight: 500;
  margin-bottom: 6px;
}
.calc-final {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.calc-final .l { color: rgba(250,249,245,0.78); font-size: 14px; }
.calc-final .v {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 600;
  color: var(--canvas);
}
.calc-fineprint {
  font-size: 12px;
  color: rgba(250,249,245,0.55);
  margin-top: 14px;
  line-height: 1.5;
}
.calc-quote-state h3 { color: var(--canvas); font-size: 28px; margin-bottom: 16px; }
.calc-quote-state p { color: rgba(250,249,245,0.78); font-size: 15px; margin-bottom: 24px; }

.calc-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  border: 1px solid var(--hairline);
  border-radius: 10px;
  margin-bottom: 12px;
  cursor: pointer;
  background: var(--canvas);
  transition: background 160ms ease, border-color 160ms ease;
}
.calc-toggle.is-on {
  background: var(--green-tint);
  border-color: var(--green-light);
}
.calc-toggle input { width: 18px; height: 18px; accent-color: var(--green-deep); }
.calc-toggle .label { font-weight: 500; color: var(--ink); }
.calc-toggle .sublabel { font-size: 13px; color: var(--muted); }
.calc-toggle .price { font-weight: 600; color: var(--ink); }

input[type="range"] { width: 100%; accent-color: var(--green-deep); }

.range-marks {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

@media (max-width: 900px) {
  .calc-grid { grid-template-columns: 1fr; }
  .calc-summary { position: static; }
}

/* ——— Price list (Prisberegner page) ——— */
.pricelist {
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  overflow: hidden;
}
.pricelist .row {
  display: flex;
  justify-content: space-between;
  padding: 18px 28px;
  font-size: 15px;
  color: var(--body);
  border-bottom: 1px solid var(--hairline);
}
.pricelist .row:last-child { border-bottom: none; }
.pricelist .row .v {
  font-weight: 600;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.note-box {
  background: var(--green-tint);
  border: 1px solid var(--hairline);
  border-left: 4px solid var(--green-deep);
  border-radius: 12px;
  padding: 20px 24px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  max-width: 880px;
  margin: 0 auto;
}
.note-box strong { display: block; margin-bottom: 6px; color: var(--green-deep); }

/* ——— Om page ——— */
.om-hero { background: var(--canvas-hero); padding: 72px 0 96px; }
.om-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.om-photo {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: #d8e4cb;
  box-shadow: 0 30px 80px -40px rgba(15,45,21,0.35), 0 1px 2px rgba(15,45,21,0.06);
}
.om-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.om-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: #0f2d15;
  font-weight: 500;
  margin: 0 0 28px;
  text-wrap: balance;
}
.om-hero h1 em { font-style: italic; color: var(--green-deep); font-weight: 400; }
.om-bio {
  font-size: 17px;
  line-height: 1.65;
  color: var(--body);
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}
.om-bio .pull {
  font-weight: 600;
  color: var(--green-deep);
  border-left: 3px solid #2d7a3a;
  padding-left: 14px;
  margin: 0;
}
@media (max-width: 900px) {
  .om-hero-grid { grid-template-columns: 1fr; gap: 40px; }
}

.om-quote {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 480px;
}
.om-quote img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.om-quote::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,45,21,0.45) 0%, rgba(15,45,21,0.7) 100%);
}
.om-quote-inner {
  position: relative;
  z-index: 1;
  padding: 120px 32px;
  max-width: 880px;
  text-align: center;
  color: #fff;
}
.om-quote-inner svg { margin: 0 auto 28px; opacity: 0.85; }
.om-quote-inner blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.35;
  color: #fff;
  letter-spacing: -0.01em;
  margin: 0;
  text-wrap: balance;
}
.om-quote-byline {
  margin-top: 32px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
}

.fact-tile {
  padding: 32px 24px;
  background: var(--green-tint);
  border-radius: 16px;
  text-align: center;
}
.fact-tile .big {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 8px;
}
.fact-tile .l { font-size: 14px; color: var(--body); line-height: 1.4; }

.om-cta { background: #143d22; color: #fff; padding: 96px 0; }
.om-cta-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.om-cta h2 { color: #fff; font-size: clamp(36px, 4.5vw, 56px); margin-bottom: 16px; }
.om-cta p {
  color: rgba(255,255,255,0.78);
  font-size: 18px;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.om-cta-actions {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ——— Anmeldelser page ——— */
.review-tile {
  background: var(--surface-card);
  border-radius: 16px;
  padding: 32px;
}
.review-tile.tint { background: var(--green-tint); }
.review-tile .stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-tile blockquote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 0 0 18px;
}

/* ——— Kontakt page ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.contact-rows {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.contact-row:hover { text-decoration: none; }
.contact-row .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  flex: none;
}
.contact-row .l {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.contact-row .v { font-size: 16px; color: var(--ink); font-weight: 500; }
.contact-photo {
  width: 72px;
  height: 72px;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  background: var(--canvas);
  box-shadow: 0 8px 20px -8px rgba(20,32,26,0.2);
  margin-bottom: 20px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

.form-success {
  background: var(--green-tint);
  border: 1px solid var(--green-light-soft);
  border-radius: 14px;
  padding: 24px;
  text-align: center;
}
.form-success h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--green-deep);
  margin-bottom: 8px;
}

/* ——— Galleri page extras ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.gallery-meta {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.gallery-meta .label { font-size: 16px; font-weight: 500; color: var(--ink); }
.gallery-meta .year { font-size: 13px; color: var(--muted); }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: 1fr; }
}

.dashed-note {
  margin-top: 48px;
  padding: 32px;
  border: 1px dashed var(--hairline);
  border-radius: 16px;
  text-align: center;
  background: var(--surface-soft);
  font-size: 14px;
  color: var(--muted);
}

/* ——— Misc utilities ——— */
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.mt-40 { margin-top: 40px; }
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mt-16 { margin-top: 16px; }
.stack-md > * + * { margin-top: 16px; }
.stack-lg > * + * { margin-top: 24px; }
