/* Let & Fri — shared design system
   Colors, type and components extracted from the approved Claude Design mockups. */

:root {
  --forest: #2e3a28;
  --forest-soft: #242e1f;
  --terracotta: #b3603c;
  --terracotta-dark: #9a4f30;
  --peach: #d98f6b;
  --cream: #f7f4ec;
  --sage: #eef1e6;
  --card: #fbf8f1;
  --ink: #24281f;
  --ink-soft: #5b6152;
  --ink-softer: #3a3f31;
  --olive-light: #b7bda9;
  --cream-soft: #cfd6c0;
  --sage-icon: #e6ead9;
  --peach-icon: #f4e3da;
  --icon-green: #4a5a3f;
  --icon-terracotta: #b3603c;
  --check: #4a7c3f;

  --serif: 'Newsreader', serif;
  --sans: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--terracotta); text-decoration: none; }
a:hover { color: var(--terracotta-dark); }

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

input, textarea, button { font-family: var(--sans); }
input::placeholder, textarea::placeholder { color: #9aa190; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: clamp(20px, 5vw, 40px);
  padding-right: clamp(20px, 5vw, 40px);
}

/* ---------- Announcement bar + nav ---------- */

.announcement {
  background: var(--forest);
  color: #e9ecdf;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  letter-spacing: 0.01em;
}
.announcement strong { color: var(--peach); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(247, 244, 236, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(36, 40, 31, 0.08);
}

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand img { width: 72px; height: 72px; object-fit: contain; }
.brand span {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink);
}

.nav-links-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.nav-links a {
  color: var(--ink);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--terracotta); }
.nav-links a.active { font-weight: 600; }

.nav-actions { display: flex; align-items: center; gap: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(36, 40, 31, 0.08);
    transition: grid-template-rows 0.25s ease, opacity 0.2s ease;
  }
  .nav-links.open { grid-template-rows: 1fr; opacity: 1; }
  .nav-links-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    min-height: 0;
    overflow: hidden;
    padding: 0 clamp(20px, 5vw, 40px);
  }
  .nav-links.open .nav-links-inner { padding: 12px clamp(20px, 5vw, 40px) 18px; }
  .nav-links a { width: 100%; padding: 10px 0; font-size: 15.5px; }
}

@media (max-width: 400px) {
  .brand span { display: none; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 26px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.btn-sm { padding: 11px 20px; font-size: 14px; }

.btn-primary { background: var(--terracotta); color: #fff; }
.btn-primary:hover { background: var(--terracotta-dark); color: #fff; transform: translateY(-2px); }
.btn-sm.btn-primary:hover { transform: none; }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(36, 40, 31, 0.18);
}
.btn-outline:hover { border-color: var(--ink); color: var(--ink); }

.btn-light { background: var(--cream); color: var(--forest); }
.btn-light:hover { background: #fff; color: var(--forest); transform: translateY(-2px); }

.btn-dark { background: var(--forest); color: var(--cream); }
.btn-dark:hover { background: var(--forest-soft); color: var(--cream); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--terracotta);
}
.link-light { color: var(--cream); font-size: 15px; font-weight: 600; }
.link-light:hover { color: var(--peach); }

/* ---------- Eyebrow / headings ---------- */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--terracotta);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.eyebrow.on-dark { color: var(--peach); }

h1, h2, h3 { font-family: var(--serif); font-weight: 500; margin: 0; letter-spacing: -0.01em; }
em { color: var(--terracotta); font-style: italic; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 60px;
}
.hero-glow {
  position: absolute;
  top: 10%;
  right: 6%;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(179, 96, 60, 0.14), transparent 70%);
  border-radius: 50%;
  filter: blur(10px);
  z-index: 0;
}
.hero-row {
  display: flex;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.hero-copy { flex: 1 1 440px; min-width: 320px; }
.hero-copy h1 { font-size: clamp(2.6rem, 4.4vw, 3.8rem); line-height: 1.08; margin: 0 0 22px; }
.hero-copy p { font-size: 17px; line-height: 1.7; color: var(--ink-soft); max-width: 460px; margin: 0 0 32px; }
.hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-media { flex: 1 1 380px; min-width: 300px; position: relative; max-width: 460px; }
.hero-media figure {
  border-radius: 28px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 4.3;
  box-shadow: 0 30px 60px -20px rgba(36, 40, 31, 0.25);
  margin: 0;
}
.hero-media img, .cta-media img { width: 100%; height: 100%; object-fit: cover; }

/* smaller inner-page hero variant */
.page-hero { padding-top: clamp(48px, 7vw, 90px); padding-bottom: 60px; }
.page-hero .hero-glow { top: 8%; right: 8%; width: 260px; height: 260px; }
.page-hero .hero-copy h1 { font-size: clamp(2.4rem, 4vw, 3.4rem); line-height: 1.1; margin-bottom: 18px; }
.page-hero .hero-copy p { font-size: 16.5px; max-width: 480px; margin-bottom: 0; }
.page-hero .hero-media { flex: 1 1 300px; min-width: 260px; max-width: 380px; }
.page-hero .hero-media figure { aspect-ratio: 4 / 4.3; border-radius: 24px; }

/* ---------- Quote ---------- */

.quote {
  background: var(--sage);
  border-top: 1px solid rgba(36, 40, 31, 0.08);
  border-bottom: 1px solid rgba(36, 40, 31, 0.08);
}
.quote-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 80px) clamp(20px, 5vw, 40px);
  text-align: center;
}
.quote-mark { font-family: var(--serif); font-size: 54px; line-height: 1; color: var(--terracotta); margin-bottom: 6px; }
.quote-inner p { font-family: var(--serif); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.7rem); line-height: 1.55; color: var(--forest); margin: 0 0 20px; }
.quote-attr { font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); }

/* ---------- Fade-in-on-scroll ---------- */

.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Feature strip (dark cards) ---------- */

.feature-strip { padding: clamp(64px, 8vw, 90px) 0 90px; }
.feature-grid, .steps-grid, .promise-grid, .included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.feature-card {
  background: var(--forest);
  border-radius: 20px;
  padding: 30px 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(36, 40, 31, 0.3); }
.icon-tile {
  width: 42px; height: 42px; border-radius: 12px;
  background: rgba(247, 244, 236, 0.12);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card .icon-tile svg { stroke: var(--peach); }
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--cream); }
.feature-card p { font-size: 15px; line-height: 1.65; color: var(--olive-light); margin: 0; }

/* ---------- Services / Ydelser section ---------- */

.section { padding-top: clamp(70px, 9vw, 100px); padding-bottom: 100px; }
.section-head { max-width: 560px; margin-bottom: 46px; }
.section-head p { font-size: 16px; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.section-head.on-dark p { color: var(--olive-light); }
.section-head.on-dark h2 { color: var(--cream); }

.on-sage { background: var(--sage); border-top: 1px solid rgba(36, 40, 31, 0.08); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--card);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(36, 40, 31, 0.06);
  box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -20px rgba(180, 96, 61, 0.18); }
.service-media { aspect-ratio: 4 / 5; position: relative; margin: 0; }
.service-media img { width: 100%; height: 100%; object-fit: cover; }
.service-body { padding: 24px 24px 26px; position: relative; }
.service-icon {
  width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  position: absolute; top: -20px; left: 24px;
  box-shadow: 0 8px 16px -6px rgba(36, 40, 31, 0.25);
}
.service-icon.bg-sage { background: var(--sage-icon); }
.service-icon.bg-peach { background: var(--peach-icon); }
.service-body h3 { font-size: 18.5px; font-weight: 700; margin: 14px 0 8px; }
.service-body p { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); margin-bottom: 16px; }

.service-card.no-cta .service-body p { margin-bottom: 0; }

.promo-banner {
  grid-column: 1 / -1;
  background: var(--forest);
  border-radius: 22px;
  padding: 40px clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.promo-banner-left { display: flex; align-items: center; gap: 20px; flex: 1 1 320px; }
.promo-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(247, 244, 236, 0.12);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.promo-banner-left strong { display: block; font-size: 20px; font-weight: 700; color: var(--cream); font-family: var(--serif); }
.promo-banner-left span { display: block; font-size: 14.5px; line-height: 1.5; color: var(--olive-light); margin-top: 4px; max-width: 480px; }

/* ---------- Steps (dark) ---------- */

.steps-section {
  background: var(--forest);
  background-image: radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.05), transparent 55%);
}
.steps-section .container { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.step-num { font-family: var(--serif); font-size: 40px; color: rgba(247, 244, 236, 0.28); margin-bottom: 12px; }
.steps-grid > div h3, .steps-grid .step-title { font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 8px; font-family: var(--serif); }
.steps-grid p { font-size: 14.5px; line-height: 1.6; color: var(--olive-light); margin: 0; }
.steps-grid { margin-bottom: 48px; }
.steps-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }

/* ---------- Final CTA ---------- */

.cta-wrap { border-top: 1px solid rgba(36, 40, 31, 0.08); }
.cta-wrap .container { padding: clamp(60px, 8vw, 90px) clamp(20px, 5vw, 40px); }
.cta-banner {
  background: var(--forest);
  border-radius: 32px;
  padding: clamp(40px, 6vw, 64px);
  overflow: hidden;
  position: relative;
}
.cta-glow {
  position: absolute; top: -20%; left: 60%; width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(217, 143, 107, 0.18), transparent 70%);
  border-radius: 50%;
}
.cta-row { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); flex-wrap: wrap; position: relative; z-index: 1; }
.cta-copy { flex: 1 1 380px; min-width: 280px; }
.cta-copy h2 { font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--cream); margin: 0 0 8px; }
.cta-copy .cta-italic { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--cream-soft); margin: 0 0 20px; letter-spacing: -0.01em; }
.cta-copy p { font-size: 16px; line-height: 1.7; color: var(--olive-light); margin: 0 0 30px; max-width: 420px; }
.cta-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.cta-media { flex: 1 1 340px; max-width: 460px; }
.cta-media figure { border-radius: 28px; overflow: hidden; width: 100%; aspect-ratio: 4 / 4.5; box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.4); margin: 0; }

/* ---------- Footer ---------- */

.site-footer { background: var(--sage); border-top: 1px solid rgba(36, 40, 31, 0.08); }
.footer-inner { max-width: 1240px; margin: 0 auto; padding: clamp(50px, 7vw, 70px) clamp(20px, 5vw, 40px) 30px; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; margin-bottom: 44px; }
.footer-brand { max-width: 280px; }
.footer-brand-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand-row img { width: 64px; height: 64px; object-fit: contain; }
.footer-brand-name { font-family: var(--serif); font-size: 19px; line-height: 1.2; }
.footer-brand-tag { font-size: 9px; letter-spacing: 0.08em; color: var(--ink-soft); }
.footer-brand p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 18px; }
.footer-social { display: flex; gap: 18px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center; color: var(--ink);
  transition: opacity 0.15s ease;
}
.footer-social a:hover { opacity: 0.7; }
.footer-col-title { font-size: 13px; font-weight: 700; margin-bottom: 16px; color: var(--ink); }
.footer-links { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; }
.footer-links a { color: var(--ink-soft); }
.footer-links a:hover { color: var(--terracotta); }
.footer-contact { display: flex; flex-direction: column; gap: 11px; font-size: 14.5px; color: var(--ink-soft); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(36, 40, 31, 0.08); font-size: 13px; color: var(--ink-soft);
}
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { color: var(--ink-soft); }
.footer-bottom-links a:hover { color: var(--terracotta); }

/* ---------- Accordion (FAQ / situations) ---------- */

.accordion-group { max-width: 800px; margin: 0 auto; padding: clamp(36px, 5vw, 50px) clamp(20px, 5vw, 40px); }
.accordion-group h2 { font-size: clamp(1.7rem, 2.6vw, 2.1rem); margin: 0 0 28px; }
.accordion-list { display: flex; flex-direction: column; gap: 14px; }
.accordion-item {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid rgba(36, 40, 31, 0.06);
  overflow: hidden;
  box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1);
}
.accordion-item button {
  width: 100%;
  background: var(--card);
  border: none;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.accordion-item.situation button { font-family: var(--serif); font-size: 17px; font-weight: 600; }
.accordion-chevron {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage); display: flex; align-items: center; justify-content: center;
  transition: transform 0.2s ease;
}
.accordion-item[data-open="true"] .accordion-chevron { transform: rotate(180deg); }
.accordion-panel {
  padding: 0 22px 20px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink-soft);
  white-space: pre-line;
  display: none;
}
.accordion-item[data-open="true"] .accordion-panel { display: block; }

/* ---------- Promise / included cards ---------- */

.promise-card, .included-card {
  background: var(--card);
  border-radius: 18px;
  padding: 24px;
  border: 1px solid rgba(36, 40, 31, 0.06);
  box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1);
}
.promise-card .icon-tile, .included-card .icon-tile, .process-copy .icon-tile { margin-bottom: 14px; background: var(--sage-icon); }
.promise-card .icon-tile.peach, .included-card .icon-tile.peach, .process-copy .icon-tile.peach { background: var(--peach-icon); }
.promise-card h3, .included-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 6px; }
.promise-card p, .included-card p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }
.included-card h3 { font-size: 15px; margin-bottom: 4px; }
.included-card p { font-size: 13.5px; line-height: 1.55; }

/* ---------- Pricing ---------- */

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; align-items: stretch; }
.price-card {
  border-radius: 22px; padding: 32px 28px; display: flex; flex-direction: column;
}
.price-card.light { background: var(--card); border: 1px solid rgba(36, 40, 31, 0.08); box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1); }
.price-card.dark { background: var(--forest); position: relative; }
.price-badge {
  position: absolute; top: 24px; right: 24px; background: var(--terracotta); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px;
}
.price-label { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 16px; }
.price-card.dark .price-label { color: var(--peach); }
.price-value { display: flex; align-items: baseline; gap: 6px; margin-bottom: 6px; }
.price-value strong { font-family: var(--serif); font-size: 38px; font-weight: 500; }
.price-value span { font-size: 14px; color: var(--ink-soft); }
.price-card.dark .price-value strong { color: var(--cream); }
.price-card.dark .price-value span { color: var(--olive-light); }
.price-sub { font-size: 13px; color: var(--ink-soft); margin-bottom: 18px; }
.price-card.dark .price-sub { color: var(--olive-light); }
.price-desc { font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.price-card.dark .price-desc { color: var(--olive-light); }

.price-extra {
  background: var(--sage); border-radius: 22px; padding: clamp(24px, 4vw, 32px); margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 24px; align-items: center; justify-content: space-between;
}
.price-extra-item { display: flex; align-items: baseline; gap: 8px; }
.price-extra-item span:first-child { font-size: 14.5px; color: var(--ink-softer); }
.price-extra-item strong { font-family: var(--serif); font-size: 20px; font-weight: 600; }
.price-notes { font-size: 13px; line-height: 1.65; color: var(--ink-soft); margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }

.included-panel { background: var(--sage); border-radius: 28px; padding: clamp(36px, 5vw, 52px); }
.included-panel h2 { font-size: clamp(1.8rem, 2.8vw, 2.2rem); margin-bottom: 10px; }
.included-panel > p { font-size: 15px; color: var(--ink-soft); margin: 0 0 28px; max-width: 460px; }

/* ---------- Timeline (Sådan virker det) ---------- */

.timeline { display: flex; flex-direction: column; gap: 30px; border-left: 2px solid rgba(247, 244, 236, 0.18); padding-left: 26px; max-width: 900px; margin: 0 auto; }
.timeline-item { position: relative; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--peach); }
.timeline-time { font-size: 12.5px; font-weight: 700; color: var(--peach); letter-spacing: 0.04em; margin-bottom: 4px; }
.timeline-item h3 { font-size: 17px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.timeline-item p { font-size: 14.5px; line-height: 1.6; color: var(--olive-light); margin: 0; }

/* ---------- Process rows (Sådan virker det steps) ---------- */

.process-rows { max-width: 1100px; margin: 0 auto; padding: clamp(30px, 4vw, 40px) clamp(20px, 5vw, 40px) clamp(70px, 9vw, 90px); display: flex; flex-direction: column; gap: clamp(48px, 6vw, 64px); }
.process-row { display: flex; align-items: center; gap: clamp(32px, 5vw, 56px); flex-wrap: wrap; }
.process-row.reverse { flex-wrap: wrap-reverse; }
.process-media { flex: 0 0 320px; max-width: 100%; }
.process-media figure { border-radius: 20px; overflow: hidden; width: 100%; aspect-ratio: 3 / 4; margin: 0; }
.process-media img { width: 100%; height: 100%; object-fit: cover; }
.process-media.empty figure {
  border: 1.5px dashed rgba(36, 40, 31, 0.18);
  display: flex; align-items: center; justify-content: center;
  background: rgba(36, 40, 31, 0.02);
  flex-direction: column; gap: 10px; color: var(--ink-soft);
  font-size: 13.5px; font-weight: 600; text-align: center; padding: 20px;
}
.process-media.empty svg { stroke: var(--terracotta); }
.ba-toggle { display: flex; gap: 6px; margin-bottom: 12px; }
.ba-btn { flex: 1; padding: 9px 0; border-radius: 999px; border: 1.5px solid rgba(36, 40, 31, 0.14); background: var(--card); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.01em; color: var(--ink-soft); cursor: pointer; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease; }
.ba-btn:hover { border-color: var(--terracotta); color: var(--ink); }
.ba-btn.active { background: var(--forest); border-color: var(--forest); color: var(--cream); }
.ba-figure { position: relative; }
.ba-figure img { position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s ease; }
.ba-figure img.active { opacity: 1; }
.process-copy { flex: 1 1 340px; min-width: 280px; }
.process-step-label { font-size: 13px; font-weight: 600; color: var(--terracotta); margin-bottom: 8px; }
.process-copy h3 { font-size: 26px; font-weight: 700; margin: 0 0 14px; color: var(--ink); }
.process-copy > p { font-size: 15.5px; line-height: 1.7; color: var(--ink-softer); margin: 0 0 18px; max-width: 460px; }
.check-list { display: flex; flex-direction: column; gap: 16px; }
.check-list div { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; color: var(--ink-softer); }
.check-list svg { flex-shrink: 0; margin-top: 2px; stroke: var(--check); }
.process-tip { font-size: 14px; line-height: 1.6; color: var(--ink-soft); font-style: italic; max-width: 460px; margin-top: 16px; }

/* ---------- Ydelser rows ---------- */

.ydelser-rows { display: flex; flex-direction: column; gap: 28px; }

.ydelser-card {
  display: flex; align-items: center; gap: clamp(28px, 4vw, 48px); flex-wrap: wrap;
  border-radius: 24px; padding: clamp(24px, 3.5vw, 40px);
}
.ydelser-card.light { background: var(--card); }
.ydelser-card.dark { background: var(--forest); }

.ydelser-card-media { flex: 0 0 320px; max-width: 100%; }
.ydelser-card-media figure { border-radius: 18px; overflow: hidden; width: 100%; aspect-ratio: 3 / 4; margin: 0; }
.ydelser-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }

.ydelser-card-copy { flex: 1 1 320px; min-width: 260px; }
.ydelser-card-copy h3 { font-size: 24px; font-weight: 700; margin: 0 0 12px; }
.ydelser-card-copy > p { font-size: 15px; line-height: 1.7; margin: 0 0 16px; }
.ydelser-card.light .ydelser-card-copy h3 { color: var(--ink); }
.ydelser-card.light .ydelser-card-copy > p { color: var(--ink-softer); }
.ydelser-card.dark .ydelser-card-copy h3 { color: var(--cream); }
.ydelser-card.dark .ydelser-card-copy > p { color: var(--olive-light); }
.ydelser-card.dark .check-list div { color: var(--olive-light); }
.ydelser-card.dark .check-list svg { stroke: var(--peach); }

/* ---------- Contact page ---------- */

.contact-panel {
  display: flex; align-items: stretch; gap: 0; flex-wrap: wrap;
  border-radius: 32px; overflow: hidden; box-shadow: 0 30px 60px -30px rgba(36, 40, 31, 0.18);
  margin: clamp(40px, 5vw, 64px) 0;
}
.contact-info { flex: 1 1 340px; min-width: 280px; background: var(--forest); padding: clamp(36px, 5vw, 64px); }
.contact-info h1 { font-size: clamp(2.2rem, 3.6vw, 3rem); line-height: 1.1; margin: 0 0 20px; color: var(--cream); }
.contact-info h1 em { color: var(--peach); }
.contact-info > p { font-size: 16px; line-height: 1.7; color: var(--olive-light); margin: 0 0 32px; max-width: 420px; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.contact-card {
  background: rgba(247, 244, 236, 0.08); border-radius: 16px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.contact-card-icon {
  width: 42px; height: 42px; border-radius: 12px; background: rgba(247, 244, 236, 0.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-card-icon svg { stroke: var(--peach); }
.contact-card-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 2px; }
.contact-card-value { font-size: 16px; font-weight: 700; color: var(--cream); }
.contact-card-value:hover { color: var(--peach); }
.follow-label { font-size: 11.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-light); margin-bottom: 12px; }
.follow-icons { display: flex; gap: 20px; }
.follow-icons a {
  display: flex; align-items: center; justify-content: center; color: var(--cream);
  transition: opacity 0.15s ease;
}
.follow-icons a:hover { opacity: 0.75; }

.contact-form { flex: 1 1 380px; min-width: 280px; background: var(--cream); padding: clamp(36px, 5vw, 64px); }
.contact-form h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); font-weight: 700; margin: 0 0 8px; color: var(--ink); }
.contact-form > p { font-size: 14.5px; color: var(--ink-soft); margin: 0 0 28px; }
.form-fields { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-row .form-field { flex: 1 1 160px; }
.form-field label { display: block; font-size: 14px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.form-field label .req { color: var(--terracotta); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 16px; border-radius: 12px;
  border: 1px solid rgba(36, 40, 31, 0.1); font-size: 15px;
  background: var(--card); color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1);
}
.form-field textarea { resize: vertical; }
.form-submit {
  width: 100%; display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--terracotta); color: #fff; padding: 16px 26px; border-radius: 100px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer; transition: background 0.2s ease;
}
.form-submit:hover { background: var(--terracotta-dark); }
.form-note { font-size: 14px; color: var(--forest); background: var(--sage); border-radius: 12px; padding: 12px 16px; margin-top: 8px; display: none; }
.form-note.show { display: block; }
.form-note.error { color: var(--terracotta-dark); background: var(--peach-icon); }
.hp-field { position: absolute; left: -9999px; top: -9999px; height: 0; width: 0; overflow: hidden; }

/* ---------- Mød Helle page bits ---------- */

.about-hero-row { display: flex; align-items: center; gap: clamp(32px, 5vw, 72px); flex-wrap: wrap; position: relative; z-index: 1; }
.about-media { flex: 0 0 360px; max-width: 100%; }
.about-media figure { border-radius: 28px; overflow: hidden; width: 100%; aspect-ratio: 4 / 4.3; box-shadow: 0 30px 60px -20px rgba(36, 40, 31, 0.25); margin: 0; }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-copy { flex: 1 1 420px; min-width: 300px; }
.about-copy h1 { font-size: clamp(2.2rem, 3.6vw, 3rem); margin: 0 0 20px; }
.about-copy p { font-size: 16px; line-height: 1.75; color: var(--ink-soft); margin: 0 0 18px; }
.about-social { display: flex; gap: 12px; margin-bottom: 30px; }

.about-body { max-width: 760px; margin: 0 auto; padding: clamp(64px, 8vw, 90px) clamp(20px, 5vw, 40px); }
.about-section { margin-bottom: 56px; }
.about-section h2 { font-size: clamp(1.8rem, 2.8vw, 2.2rem); margin: 0 0 20px; }
.about-section .prose { display: flex; flex-direction: column; gap: 16px; font-size: 15.5px; line-height: 1.75; color: var(--ink-softer); }
.about-section .prose p { margin: 0; }
.about-highlight { background: var(--sage); border-radius: 24px; padding: clamp(30px, 5vw, 44px); }
.pull-quote { font-family: var(--serif); font-style: italic; font-size: 18px; color: var(--ink); margin: 4px 0; }
.prose-subhead { font-family: var(--serif); font-weight: 600; font-size: 21px; color: var(--ink); margin: 12px 0 0; }
.signature { font-family: var(--serif); font-style: italic; font-size: 17px; color: var(--ink); margin: 8px 0 0; }

.sort-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-bottom: 24px; }
.sort-card { background: var(--card); border-radius: 14px; padding: 18px; border: 1px solid rgba(36, 40, 31, 0.06); box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1); }
.sort-card strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 4px; font-family: var(--serif); }
.sort-card span { font-size: 13.5px; line-height: 1.5; color: var(--ink-soft); }

.hobby-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.hobby-card { background: var(--card); border-radius: 20px; overflow: hidden; border: 1px solid rgba(36, 40, 31, 0.06); box-shadow: 0 10px 24px -8px rgba(180, 96, 61, 0.1); }
.hobby-media { aspect-ratio: 4 / 3; margin: 0; }
.hobby-media img { width: 100%; height: 100%; object-fit: cover; }
.hobby-body { padding: 20px 22px 24px; }
.hobby-body h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }
.hobby-body p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); margin: 0; }

/* ---------- Utility ---------- */

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

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

@media (max-width: 640px) {
  .contact-panel { border-radius: 20px; }
  .included-grid { grid-template-columns: 1fr; }
}
