/* ============================================================
   GENOMBYG — Site stylesheet
   Bygger på brand/02-visuelt-fundament.md
   ============================================================ */

/* --- 1. Reset / base --- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { line-height: 1.6; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, picture, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* --- 2. Design tokens --- */
:root {
  /* Farver */
  --c-cream: #F5F0E8;
  --c-white: #FFFFFF;
  --c-ink: #2B221C;
  --c-ink-soft: #5A4F46;
  --c-line: #E4DCD0;
  --c-line-soft: #EFE8DD;
  --c-accent: #8B2A1F;

  /* Typografi */
  --f-serif: "Cormorant Garamond", "Garamond", "Georgia", serif;
  --f-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Skala — desktop */
  --t-hero: clamp(2.5rem, 5vw + 1rem, 5.25rem);     /* 40–84 px */
  --t-h1: clamp(2rem, 3.5vw + 1rem, 3.5rem);         /* 32–56 px */
  --t-h2: clamp(1.5rem, 2vw + 1rem, 2.5rem);         /* 24–40 px */
  --t-h3: clamp(1.25rem, 1vw + 0.85rem, 1.6rem);
  --t-body: 1.0625rem;                                /* 17px */
  --t-body-lg: 1.1875rem;                             /* 19px */
  --t-small: 0.875rem;                                /* 14px */
  --t-micro: 0.75rem;                                 /* 12px */

  /* Spacing */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;

  /* Layout */
  --container: 1200px;
  --container-tight: 880px;
  --container-narrow: 680px;

  /* Andre */
  --radius: 2px;
  --shadow-soft: 0 1px 3px rgba(43, 34, 28, 0.04);
  --shadow-card: 0 2px 8px rgba(43, 34, 28, 0.05);
  --tr: 200ms ease;
}

/* --- 3. Body & base typography --- */
body {
  font-family: var(--f-sans);
  font-size: var(--t-body);
  font-weight: 400;
  color: var(--c-ink);
  background: var(--c-cream);
  letter-spacing: -0.005em;
}

h1, h2, h3, h4 {
  font-family: var(--f-serif);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--c-ink);
}
h1 { font-size: var(--t-h1); }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); font-weight: 400; }
h4 { font-size: 1.125rem; font-weight: 500; font-family: var(--f-sans); letter-spacing: -0.005em; }

p { color: var(--c-ink); max-width: 65ch; }
p + p { margin-top: 0.85em; }

strong, b { font-weight: 600; }

/* --- 4. Layout primitives --- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--s-5); }
.container--tight { max-width: var(--container-tight); }
.container--narrow { max-width: var(--container-narrow); }

section { padding: var(--s-10) 0; }
@media (max-width: 768px) { section { padding: var(--s-8) 0; } }

section.section--tight { padding: var(--s-8) 0; }
@media (max-width: 768px) { section.section--tight { padding: var(--s-7) 0; } }

section.section--cream { background: var(--c-cream); }
section.section--white { background: var(--c-white); }
section.section--ink { background: var(--c-ink); color: var(--c-cream); }
section.section--ink h1, section.section--ink h2, section.section--ink h3 { color: var(--c-cream); }

/* --- 5. Common bits --- */
.eyebrow {
  display: inline-block;
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: var(--s-5);
}
section.section--ink .eyebrow { color: var(--c-line-soft); opacity: 0.7; }

.lead {
  font-size: var(--t-body-lg);
  line-height: 1.55;
  color: var(--c-ink);
  max-width: 60ch;
}

.muted { color: var(--c-ink-soft); }

.section-head { margin-bottom: var(--s-8); }
.section-head h2 { max-width: 24ch; }
.section-head p { margin-top: var(--s-4); }

/* --- 6. Top nav --- */
.topnav {
  background: var(--c-ink);
  color: var(--c-cream);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.topnav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: var(--s-4) var(--s-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}
.topnav__logo {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--c-cream);
}
.topnav__links {
  display: flex;
  gap: var(--s-7);
  align-items: center;
}
.topnav__links a {
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-cream);
  opacity: 0.85;
  transition: opacity var(--tr);
  padding: var(--s-2) 0;
  border-bottom: 1px solid transparent;
}
.topnav__links a:hover { opacity: 1; border-bottom-color: var(--c-cream); }
.topnav__links a.is-active { opacity: 1; border-bottom-color: var(--c-cream); }
.topnav__cta {
  display: inline-block;
  padding: var(--s-3) var(--s-5);
  border: 1px solid var(--c-cream);
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background var(--tr), color var(--tr);
}
.topnav__cta:hover { background: var(--c-cream); color: var(--c-ink); border-bottom-color: var(--c-cream); }
.topnav__toggle { display: none; }

@media (max-width: 900px) {
  .topnav__links, .topnav__cta { display: none; }
  .topnav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--s-3);
    margin: calc(var(--s-3) * -1);
  }
  .topnav__toggle span { width: 22px; height: 1px; background: var(--c-cream); display: block; }
  .topnav.is-open .topnav__links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--c-ink);
    padding: var(--s-5);
    gap: var(--s-4);
    align-items: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .topnav.is-open .topnav__cta {
    display: inline-block;
    margin: var(--s-3) var(--s-5) var(--s-5);
  }
}

/* --- 7. Buttons --- */
.btn {
  display: inline-block;
  padding: var(--s-4) var(--s-6);
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--c-ink);
  color: var(--c-ink);
  background: transparent;
  transition: background var(--tr), color var(--tr);
  cursor: pointer;
  text-align: center;
}
.btn:hover { background: var(--c-ink); color: var(--c-cream); }

.btn--solid { background: var(--c-ink); color: var(--c-cream); }
.btn--solid:hover { background: var(--c-ink-soft); }

.btn--on-dark { border-color: var(--c-cream); color: var(--c-cream); }
.btn--on-dark:hover { background: var(--c-cream); color: var(--c-ink); }

.btn--on-image { border-color: var(--c-white); color: var(--c-white); }
.btn--on-image:hover { background: var(--c-white); color: var(--c-ink); }

.link-arrow {
  font-family: var(--f-sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  border-bottom: 1px solid var(--c-ink);
  padding-bottom: 2px;
  transition: opacity var(--tr), letter-spacing var(--tr);
  display: inline-block;
}
.link-arrow::after { content: " →"; transition: padding var(--tr); display: inline-block; }
.link-arrow:hover::after { padding-left: 4px; }

/* --- 8. Hero --- */
.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--c-white);
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(43, 34, 28, 0.30) 0%, rgba(43, 34, 28, 0.55) 100%);
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  padding: var(--s-10) var(--s-5);
}
.hero__eyebrow {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: var(--s-6);
  color: var(--c-cream);
  opacity: 0.85;
}
.hero h1 {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: var(--t-hero);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--c-white);
  margin-bottom: var(--s-6);
}
.hero__sub {
  max-width: 620px;
  margin: 0 auto var(--s-7);
  font-size: var(--t-body-lg);
  line-height: 1.5;
  color: var(--c-cream);
  opacity: 0.92;
}
.hero__cta { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* --- 9. Beviskasse / 3-up grid --- */
.three-up {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
  margin-top: var(--s-7);
}
@media (max-width: 900px) {
  .three-up { grid-template-columns: 1fr; gap: var(--s-6); }
}
.proof {
  border-top: 1px solid var(--c-line);
  padding-top: var(--s-5);
}
.proof__label {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  margin-bottom: var(--s-3);
}
.proof__body {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--c-ink);
}
.proof__body strong {
  font-weight: 500;
  font-family: var(--f-sans);
  font-size: 1rem;
  display: block;
  margin-bottom: var(--s-3);
  letter-spacing: -0.005em;
}

/* --- 10. Proces (numbered steps) --- */
.steps { counter-reset: step; margin-top: var(--s-7); }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--s-5);
  padding: var(--s-6) 0;
  border-top: 1px solid var(--c-line);
}
.step:last-child { border-bottom: 1px solid var(--c-line); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 2rem;
  color: var(--c-ink-soft);
  line-height: 1;
}
.step h3 { margin-bottom: var(--s-3); font-family: var(--f-sans); font-weight: 500; font-size: 1.125rem; letter-spacing: -0.005em; }
.step p { color: var(--c-ink); max-width: 60ch; }

/* --- 11. Cards (cases, services) --- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-7);
}
@media (max-width: 900px) { .card-grid { grid-template-columns: 1fr; gap: var(--s-5); } }

.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: border-color var(--tr), transform var(--tr);
}
.card:hover { border-color: var(--c-ink); }
.card__img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--c-line-soft); }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 400ms ease; }
.card:hover .card__img img { transform: scale(1.03); }
.card__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-4); flex: 1; }
.card__eyebrow {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  font-weight: 500;
}
.card__title {
  font-family: var(--f-serif);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.2;
}
.card__meta {
  margin-top: auto;
  padding-top: var(--s-4);
  border-top: 1px solid var(--c-line);
  font-size: var(--t-small);
  color: var(--c-ink-soft);
  display: grid;
  gap: var(--s-1);
}
.card__meta dt { display: inline; font-weight: 500; color: var(--c-ink); }
.card__meta dd { display: inline; }

/* Case card uses 16:9 hero image */
.card--case .card__img { aspect-ratio: 16 / 9; }

/* --- 12. Negation list (Hvad vi ikke gør) --- */
.nope-list { margin-top: var(--s-7); display: grid; gap: var(--s-5); }
.nope {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: var(--s-4);
  padding: var(--s-5) 0;
  border-top: 1px solid var(--c-line);
  align-items: start;
}
.nope:last-child { border-bottom: 1px solid var(--c-line); }
.nope__mark {
  font-family: var(--f-serif);
  font-size: 1.25rem;
  color: var(--c-accent);
  line-height: 1;
  margin-top: 0.15em;
}
.nope h3 { font-family: var(--f-sans); font-size: 1.0625rem; font-weight: 500; letter-spacing: -0.005em; margin-bottom: var(--s-2); }
.nope p { color: var(--c-ink-soft); font-size: 0.9375rem; line-height: 1.55; }

/* --- 13. Two-column block (e.g. garanti) --- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-8);
  margin-top: var(--s-7);
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; gap: var(--s-6); } }
.two-col__col { padding: var(--s-6); background: var(--c-white); border: 1px solid var(--c-line); }
.two-col__col h3 { margin-bottom: var(--s-4); }

/* --- 14. Anmeldelser --- */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
  margin-top: var(--s-7);
}
@media (max-width: 900px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  padding: var(--s-6);
  background: var(--c-white);
  border-left: 2px solid var(--c-ink);
}
.quote__body {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--c-ink);
  margin-bottom: var(--s-5);
}
.quote__attr {
  font-size: var(--t-small);
  color: var(--c-ink-soft);
  font-weight: 500;
}

/* --- 15. Form --- */
.form { display: grid; gap: var(--s-5); max-width: 560px; margin-top: var(--s-6); }
.form-row { display: grid; gap: var(--s-2); }
.form-row label {
  font-family: var(--f-sans);
  font-size: var(--t-small);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-ink);
}
.form-row .hint { font-size: var(--t-small); color: var(--c-ink-soft); margin-top: -2px; font-weight: 400; }
.form-row input,
.form-row select,
.form-row textarea {
  font-family: var(--f-sans);
  font-size: 1rem;
  padding: var(--s-3) var(--s-4);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-ink);
  border-radius: var(--radius);
  transition: border-color var(--tr);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-ink);
}
.form-row textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.form-row.is-error input,
.form-row.is-error select,
.form-row.is-error textarea { border-color: var(--c-accent); }
.form-row .err { color: var(--c-accent); font-size: var(--t-small); margin-top: var(--s-1); display: none; }
.form-row.is-error .err { display: block; }
.form-actions { display: flex; align-items: center; gap: var(--s-5); margin-top: var(--s-2); flex-wrap: wrap; }
.form-meta { font-size: var(--t-small); color: var(--c-ink-soft); max-width: 50ch; }
.form-success {
  display: none;
  padding: var(--s-5) var(--s-6);
  background: var(--c-white);
  border-left: 2px solid var(--c-ink);
  margin-top: var(--s-5);
}
.form-success.is-visible { display: block; }

/* Side-by-side layout: form + "what happens next" */
.form-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-8);
  margin-top: var(--s-7);
  align-items: start;
}
@media (max-width: 900px) { .form-layout { grid-template-columns: 1fr; gap: var(--s-7); } }
.form-aside {
  padding: var(--s-6);
  background: var(--c-cream);
  border-left: 2px solid var(--c-ink);
}
.form-aside ol { counter-reset: aside; display: grid; gap: var(--s-4); }
.form-aside li {
  counter-increment: aside;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: var(--s-3);
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--c-ink);
}
.form-aside li::before {
  content: counter(aside, decimal-leading-zero);
  font-family: var(--f-serif);
  color: var(--c-ink-soft);
  font-size: 1.0625rem;
}

/* --- 16. CTA strip --- */
.cta-strip { padding: var(--s-10) 0; text-align: center; background: var(--c-ink); color: var(--c-cream); }
.cta-strip h2 { color: var(--c-cream); margin-bottom: var(--s-4); }
.cta-strip p { color: var(--c-cream); opacity: 0.85; max-width: 56ch; margin: 0 auto var(--s-6); }
.cta-strip__actions { display: flex; gap: var(--s-4); justify-content: center; flex-wrap: wrap; }

/* --- 17. Breadcrumb --- */
.breadcrumb {
  font-family: var(--f-sans);
  font-size: var(--t-small);
  color: var(--c-ink-soft);
  padding: var(--s-5) 0 0;
}
.breadcrumb a { border-bottom: 1px solid transparent; transition: border-color var(--tr); }
.breadcrumb a:hover { border-bottom-color: var(--c-ink-soft); }
.breadcrumb__sep { margin: 0 var(--s-2); opacity: 0.5; }

/* --- 18. Footer --- */
.footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding: var(--s-9) 0 var(--s-6);
  margin-top: var(--s-9);
}
.footer__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-5);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-6);
}
@media (max-width: 1000px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr; gap: var(--s-6); }
  .footer__inner > div:nth-child(4) { grid-column: 1 / -1; display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-5); }
  .footer__inner > div:nth-child(4) h4 { grid-column: 1 / -1; }
  .footer__inner > div:nth-child(4) ul { display: contents; }
}
@media (max-width: 800px) {
  .footer__inner { grid-template-columns: 1fr; gap: var(--s-6); }
  .footer__inner > div:nth-child(4) { grid-template-columns: 1fr; }
  .footer__inner > div:nth-child(4) ul { display: block; }
}
.footer__logo {
  font-family: var(--f-sans);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.22em;
  color: var(--c-cream);
  margin-bottom: var(--s-3);
}
.footer__tag {
  font-family: var(--f-serif);
  font-weight: 300;
  font-size: 1.25rem;
  line-height: 1.3;
  color: var(--c-cream);
  opacity: 0.85;
  max-width: 28ch;
  margin-bottom: var(--s-5);
}
.footer h4 {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-cream);
  opacity: 0.7;
  margin-bottom: var(--s-4);
}
.footer ul li { padding: var(--s-2) 0; }
.footer a {
  color: var(--c-cream);
  opacity: 0.85;
  font-size: 0.9375rem;
  transition: opacity var(--tr);
}
.footer a:hover { opacity: 1; }
.footer__bottom {
  max-width: var(--container);
  margin: var(--s-7) auto 0;
  padding: var(--s-5) var(--s-5) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: var(--t-small);
  opacity: 0.6;
}

/* --- 19. Section dividers / quiet header --- */
.page-header { padding: var(--s-9) 0 var(--s-7); border-bottom: 1px solid var(--c-line); }
.page-header h1 { max-width: 22ch; margin-bottom: var(--s-5); }
.page-header .lead { max-width: 56ch; }

/* --- 20. Case detail bits --- */
.case-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-3) var(--s-7);
  margin: var(--s-7) 0;
  padding: var(--s-6);
  background: var(--c-white);
  border: 1px solid var(--c-line);
}
@media (max-width: 600px) { .case-meta { grid-template-columns: 1fr; } }
.case-meta dt {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--c-ink-soft);
  margin-bottom: var(--s-1);
}
.case-meta dd { font-size: 1.0625rem; color: var(--c-ink); }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-4); margin: var(--s-7) 0; }
@media (max-width: 800px) { .gallery { grid-template-columns: 1fr; } }
.gallery figure {
  margin: 0;
  background: var(--c-white);
  border: 1px solid var(--c-line);
}
.gallery img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; }
.gallery figcaption {
  padding: var(--s-3) var(--s-4);
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
}

/* --- 21. Table (pris/tid) --- */
.table { width: 100%; margin-top: var(--s-6); border-collapse: collapse; }
.table th, .table td {
  padding: var(--s-4) var(--s-3);
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  font-size: 1rem;
  vertical-align: top;
}
.table th {
  font-family: var(--f-sans);
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-soft);
  padding-bottom: var(--s-3);
}
.table td:last-child { font-variant-numeric: tabular-nums; }

/* --- 22. FAQ --- */
.faq { margin-top: var(--s-6); }
.faq details {
  border-top: 1px solid var(--c-line);
  padding: var(--s-5) 0;
}
.faq details:last-of-type { border-bottom: 1px solid var(--c-line); }
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--s-4);
  font-family: var(--f-serif);
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--c-ink);
  line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--f-sans); font-size: 1.5rem; color: var(--c-ink-soft); transition: transform var(--tr); flex: 0 0 auto; }
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: var(--s-4); color: var(--c-ink); max-width: 70ch; }

/* --- 23. Bullets (in body content) --- */
.bullets { display: grid; gap: var(--s-3); margin: var(--s-5) 0; padding: 0; }
.bullets li {
  position: relative;
  padding-left: var(--s-5);
  line-height: 1.6;
  max-width: 65ch;
}
.bullets li::before {
  content: "·";
  position: absolute;
  left: var(--s-2);
  color: var(--c-ink-soft);
  font-weight: 700;
}
.bullets--lined li {
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  border-top: 1px solid var(--c-line);
}
.bullets--lined li:last-child { border-bottom: 1px solid var(--c-line); }

/* --- 24. Utility classes --- */
.mt-3 { margin-top: var(--s-3); }
.mt-5 { margin-top: var(--s-5); }
.mt-7 { margin-top: var(--s-7); }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
.max-prose { max-width: 65ch; }

/* --- 25. People (holdet) placeholder cards --- */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-6); margin-top: var(--s-7); }
@media (max-width: 900px) { .people { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .people { grid-template-columns: 1fr; } }
.person {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  padding: var(--s-6);
}
.person__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--c-line-soft);
  color: var(--c-ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin-bottom: var(--s-4);
}
.person h3 { font-family: var(--f-sans); font-size: 1.125rem; font-weight: 500; margin-bottom: var(--s-1); }
.person__role { font-size: var(--t-small); color: var(--c-ink-soft); margin-bottom: var(--s-3); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.person p { font-size: 0.9375rem; line-height: 1.55; }

/* --- 26. Sticky mobile CTA --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-ink);
  padding: var(--s-3) var(--s-5);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 40;
  text-align: center;
}
.sticky-cta a {
  color: var(--c-cream);
  font-family: var(--f-sans);
  font-size: 0.8125rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sticky-cta { display: block; }
  body.has-sticky-cta { padding-bottom: 52px; }
}
