*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

:root {
  --bg: #faf8f4;
  --ink: #1a1a1a;
  --ink-soft: #4a4a4a;
  --accent: #3d1f4d;
  --rule: rgba(26, 26, 26, 0.12);

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --measure: 36rem;
  --gutter: 1.5rem;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection { background: var(--accent); color: var(--bg); }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.2em;
  transition: text-decoration-color 0.2s ease;
}
a:hover { text-decoration-color: var(--accent); }
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 2px;
}

.page {
  max-width: 88rem;
  margin: 0 auto;
  padding: 2.5rem 3rem 5rem;
}

/* Header & nav */
header.site {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  margin: -2.5rem -3rem 9rem;
  padding: 2rem 3rem;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  transition: padding 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

header.site.scrolled {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-bottom-color: var(--rule);
  box-shadow: 0 6px 20px -16px rgba(26, 26, 26, 0.15);
}

@media (max-width: 48rem) {
  header.site { margin: -2.5rem -1.5rem 6rem; padding: 1.5rem 1.5rem; }
  header.site.scrolled { padding-top: 0.75rem; padding-bottom: 0.75rem; }
}

.brand {
  text-decoration: none;
  display: inline-flex;
  line-height: 0;
}

.logo {
  display: inline-block;
  height: 4rem;
  width: auto;
  vertical-align: middle;
  transition: height 0.25s ease;
}

header.site.scrolled .logo {
  height: 2.5rem;
}

@media (max-width: 48rem) {
  .logo { height: 3rem; }
  header.site.scrolled .logo { height: 2rem; }
}

.nav {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.nav a {
  position: relative;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ink);
  padding: 0.625rem 0.5rem;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 0.4rem;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.nav a:not(.button):hover::after {
  transform: scaleX(1);
}

.nav a:hover { color: var(--accent); }

.nav a.button {
  padding: 0.625rem 1.25rem;
  border: 1px solid var(--ink);
  border-radius: 999px;
  margin-left: 0.5rem;
}

.nav a.button[aria-current="page"] {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.nav a.button[aria-current="page"]:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.nav a.button:hover {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

@media (max-width: 40rem) {
  .logo { height: 2.25rem; }
  .nav a { padding: 0.5rem 0.25rem; font-size: 0.75rem; }
  .nav a.button { padding: 0.5rem 1rem; }
}

/* Sections & rhythm */
section {
  margin-bottom: 6rem;
}

.label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

em, .em {
  font-style: italic;
  font-weight: inherit;
}

/* Hero */
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.75rem, 9vw, 8rem);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0 0 2rem;
  max-width: 16ch;
}

.hero p.lede {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3.2vw, 2.5rem);
  line-height: 1.25;
  color: var(--ink-soft);
  margin: 0 0 3.5rem;
  max-width: 38ch;
}

.subhero {
  max-width: 44rem;
  font-size: clamp(1.125rem, 1.4vw, 1.3125rem);
  line-height: 1.55;
}

.subhero p { margin: 0; }

.hero-bottom {
  display: grid;
  gap: 3rem;
  align-items: start;
}

@media (min-width: 60rem) {
  .hero-bottom {
    grid-template-columns: 1fr 22rem;
    gap: 3.5rem;
    align-items: center;
    max-width: 72rem;
  }
}

.portrait {
  max-width: 22rem;
  width: 100%;
}

.portrait img {
  width: 100%;
  height: auto;
  display: block;
}

/* Client logos band */
.clients {
  margin-bottom: 6rem;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
  gap: 3rem 2.5rem;
  align-items: center;
  justify-items: center;
  max-width: 66rem;
}

.clients-grid img {
  max-height: 3rem;
  max-width: 7rem;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.75;
  filter: grayscale(1);
  transition: opacity 0.2s ease;
  object-fit: contain;
}

/* Square / symbol marks (Volkswagen, World Art Dubai) — slightly more vertical room, tighter width */
.clients-grid img.square {
  max-height: 3.75rem;
  max-width: 3.75rem;
}

/* Very wide wordmarks (Kristin Harila, Nordic Formula, North Film) — let them spread wider so they aren't thin lines */
.clients-grid img.wide {
  max-height: 3rem;
  max-width: 9.5rem;
}

/* Logos that fill too aggressively at default settings (Heia Vadsø) — reign them in */
.clients-grid img.compact {
  max-height: 2.5rem;
  max-width: 5.5rem;
}

.clients-grid img:hover {
  opacity: 1;
}

.clients-grid .placeholder {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.0625rem;
  color: var(--ink);
  text-align: center;
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 0.25rem 0;
}

/* Kontakt-side: liten "hva skjer etter du sender"-note */
.kontakt-note {
  margin: 0 0 3rem;
  max-width: 36rem;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(61, 31, 77, 0.04);
  border-radius: 0 4px 4px 0;
}

.kontakt-note p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
}

/* Kart-kort: thumbnail-grid for tidligere kart — 3 per rad på desktop */
.kart-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 1rem;
}

@media (min-width: 36rem) {
  .kart-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 56rem) {
  .kart-cards { grid-template-columns: repeat(3, 1fr); }
}

.kart-card {
  display: block;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  transition: transform 0.25s ease;
}

.kart-card:hover {
  transform: translateY(-3px);
}

.kart-card .name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: -0.005em;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--ink);
}

.kart-card .name .arrow {
  font-family: var(--sans);
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.2s ease;
}

.kart-card:hover .name .arrow {
  transform: translateX(4px);
}

.kart-card .thumb {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--rule);
  border-radius: 4px;
  transition: border-color 0.2s ease, box-shadow 0.25s ease;
}

.kart-card:hover .thumb {
  border-color: var(--accent);
  box-shadow: 0 12px 30px -18px rgba(26, 26, 26, 0.25);
}

.kart-card .role {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0.5rem 0 0;
}

/* "Kommer snart"-placeholder-kort */
.kart-card.placeholder {
  display: flex;
  flex-direction: column;
}

.kart-card.placeholder:hover {
  transform: none;
}

.kart-card.placeholder .name {
  font-style: italic;
  color: var(--ink-soft);
}

.kart-card.placeholder .thumb-empty {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(61, 31, 77, 0.04);
  border: 1px dashed var(--rule);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem;
  box-sizing: border-box;
}

.kart-card.placeholder .placeholder-text {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  font-size: 0.9375rem;
  line-height: 1.4;
}

/* Utility: muted body text */
p.muted {
  color: var(--ink-soft);
  font-size: 0.9375rem;
  max-width: var(--measure);
  margin-top: 0.75rem;
}

/* Hero CTA (anchor button) */
.hero-cta {
  margin-top: 2rem;
}

.btn-large {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--bg);
  background: var(--ink);
  padding: 1.125rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-large:hover {
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* Sekundær variant — outline med sort tekst, fylles lilla på hover */
.btn-large-secondary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: var(--ink);
  background: transparent;
  padding: 1.125rem 2rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-large-secondary:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
  transform: translateY(-1px);
}

/* Paired CTA — to knapper side om side */
.hero-cta-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* Paths grid — "Slik bestiller du" og "Gjør det selv" side om side */
.paths-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 2.5rem 0;
}

@media (min-width: 56rem) {
  .paths-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

.path-card {
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.path-card:hover {
  border-color: var(--accent);
  box-shadow: 0 12px 30px -18px rgba(26, 26, 26, 0.18);
}

.path-card-header {
  margin-bottom: 1.5rem;
}

.path-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}

.path-card .path-price {
  font-family: var(--serif);
  font-style: italic;
  color: var(--accent);
  font-size: 1.0625rem;
  font-weight: 500;
  margin: 0;
}

.path-card .steg-list {
  margin: 0 0 2rem;
  flex: 1;
}

.path-card .steg {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}

.path-card .steg-list .steg:first-child { border-top: 0; padding-top: 0; }
.path-card .steg-list .steg:last-child { border-bottom: 1px solid var(--rule); padding-bottom: 1.25rem; }

.path-card .steg .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
}

.path-card .steg h3 {
  font-size: 1.0625rem;
  margin: 0 0 0.35rem;
  font-weight: 500;
}

.path-card .steg p {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

.path-card .path-cta {
  margin-top: auto;
}

/* Trust band — lilla, three-column */
.trust-band {
  margin: 0 0 6rem;
  padding: 4rem clamp(2rem, 5vw, 4.5rem);
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 60rem) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem;
  }
}

.trust-item {
  display: flex;
  flex-direction: column;
}

.trust-eyebrow {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  color: rgba(243, 238, 234, 0.55);
  margin: 0 0 1rem;
}

.trust-item h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.2vw, 1.875rem);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin: 0 0 0.75rem;
  color: var(--bg);
}

.trust-item p {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(243, 238, 234, 0.82);
  margin: 0;
  max-width: 30ch;
}

.trust-item p em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--bg);
}

/* Steg list (numbered process steps with large lilla numbers) */
.steg-list {
  margin: 0 0 6rem;
}

.steg {
  display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 2.5rem;
  padding: 2rem 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}

.steg-list .steg:last-child {
  border-bottom: 1px solid var(--rule);
}

.steg .num {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--accent);
}

.steg h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.2vw, 1.625rem);
  line-height: 1.2;
  margin: 0 0 0.5rem;
  letter-spacing: -0.005em;
}

.steg h3 a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.2s ease;
}

.steg h3 a:hover {
  border-bottom-color: var(--accent);
}

.steg p {
  color: var(--ink-soft);
  max-width: var(--measure);
  margin: 0;
  font-size: 1.0625rem;
}

@media (max-width: 48rem) {
  .steg {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 1.5rem 0;
  }
  .steg .num {
    font-size: 2rem;
  }
}

/* Large submit button — lilla call-to-action */
.submit-large {
  display: block;
  width: 100%;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bg);
  background: var(--accent);
  padding: 1.25rem 2rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  margin-top: 1rem;
}

.submit-large:hover {
  background: var(--ink);
  border-color: var(--ink);
}

.submit-large:active {
  transform: translateY(1px);
}

@media (min-width: 48rem) {
  .submit-large {
    display: inline-block;
    width: auto;
    min-width: 22rem;
  }
}

/* Signature element — byline style with thumbnail */
.signature {
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  max-width: var(--measure);
}

.signature .sig-greeting {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.signature .sig-byline {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}

.signature .sig-thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  flex-shrink: 0;
}

.signature .sig-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.signature .sig-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--ink);
  margin: 0;
}

.signature .sig-role {
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Hero eyebrow */
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

/* Testimonials */
.testimonials {
  margin: 0 0 6rem;
}

.testimonials > .label {
  margin-bottom: 2rem;
}

.testimonial-featured {
  margin: 0 0 4rem;
  padding: 3.5rem clamp(2rem, 5vw, 4.5rem);
  background: var(--accent);
  color: var(--bg);
  border-radius: 4px;
}

.testimonial-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.875rem, 3.6vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 1.75rem;
  color: var(--bg);
}

.testimonial-title em {
  font-style: italic;
}

.testimonial-featured blockquote {
  margin: 0;
  padding: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.1875rem;
  line-height: 1.6;
  color: rgba(243, 238, 234, 0.92);
  max-width: 48rem;
}

.testimonial-featured blockquote p {
  margin: 0 0 1em;
}

.testimonial-featured blockquote p:last-child {
  margin-bottom: 0;
}

.testimonial-featured blockquote em {
  color: var(--bg);
  font-style: italic;
}

.testimonial-featured figcaption {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(243, 238, 234, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  max-width: 48rem;
}

.testimonial-featured figcaption .name {
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--bg);
  letter-spacing: 0.01em;
}

.testimonial-featured figcaption .role {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: rgba(243, 238, 234, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.testimonials-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 48rem) {
  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.testimonial-short {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

.testimonial-short blockquote {
  margin: 0 0 1.25rem;
  padding: 0;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--ink);
}

.testimonial-short blockquote p {
  margin: 0;
}

.testimonial-short figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  font-family: var(--sans);
  font-size: 0.875rem;
}

.testimonial-short figcaption .name {
  font-weight: 500;
  color: var(--ink);
}

.testimonial-short figcaption .role {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* Why-list */
.why-lead {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  letter-spacing: -0.005em;
  line-height: 1.15;
  margin: 0 0 1.5rem;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.why-lead::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.why-lead:hover::after {
  width: 100%;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  max-width: var(--measure);
}

.why-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--rule);
}

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

.why-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 0.5rem;
  color: var(--accent);
  font-weight: 500;
}

.why-bg {
  max-width: var(--measure);
  margin: 0;
  color: var(--ink-soft);
  padding-top: 1.5rem;
  border-top: 1px solid var(--rule);
}

/* Client marquee — full breadth scrolling band */
.marquee {
  margin: -2rem 0 6rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  overflow: hidden;
  width: 100%;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 180s linear infinite;
}

.marquee:hover .marquee-track,
.marquee:focus-within .marquee-track {
  animation-play-state: paused;
}

.marquee-content {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 1.0625rem;
  color: var(--ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee {
    overflow-x: auto;
  }
  .marquee-track {
    animation: none;
  }
}

/* Section titles */
h2.section-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  margin: 0 0 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rule);
}

/* Section heading — large serif with animated lilla underline (matches offer h3 motif) */
h2.section-heading {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 2.5rem;
  padding-bottom: 0.75rem;
  display: inline-block;
  position: relative;
}

h2.section-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

h2.section-heading:hover::after {
  width: 100%;
}

/* Offers */
.offers {
  display: grid;
  gap: 3.5rem;
}

@media (min-width: 60rem) {
  .offers {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem 4rem;
  }
}

.offer h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  margin: 0 0 1rem;
  letter-spacing: -0.005em;
  line-height: 1.15;
  display: inline-block;
  position: relative;
  padding-bottom: 0.5rem;
}

.offer h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.offer:hover h3::after {
  width: 100%;
}

.offer {
  display: flex;
  flex-direction: column;
}

.offer p {
  margin: 0;
  max-width: var(--measure);
  color: var(--ink-soft);
}

.offer p.price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.125rem;
  color: var(--accent);
}

.offer p + p.price {
  margin-top: 1.5rem;
}

@media (min-width: 60rem) {
  .offer p + p.price {
    margin-top: auto;
    padding-top: 2rem;
  }
}

/* Why & Contact (reusable text section) */
.prose p {
  max-width: var(--measure);
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}

.prose p:last-child { margin-bottom: 0; }

.why p {
  max-width: var(--measure);
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0;
}

.contact a.email {
  position: relative;
  display: inline-block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2rem);
  text-decoration: none;
  color: var(--ink);
  padding-bottom: 0.4rem;
  transition: color 0.2s ease;
}
.contact a.email::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.5rem;
  height: 1px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.contact a.email:hover::after {
  width: 100%;
}

.contact .nudge {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  max-width: var(--measure);
}

/* Form */
form.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 36rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  line-height: 1.25;
}

.field input,
.field textarea,
.field select {
  font-family: var(--sans);
  font-size: 1.0625rem;
  color: var(--ink);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  padding: 0.6rem 0;
  outline: none;
  transition: border-color 0.2s ease;
  width: 100%;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-bottom-color: var(--ink);
}

.field textarea {
  min-height: 8rem;
  resize: vertical;
  line-height: 1.55;
}

button.submit {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.875rem 1.75rem;
  cursor: pointer;
  justify-self: start;
  margin-top: 0.5rem;
  transition: background 0.2s ease, color 0.2s ease;
}

button.submit:hover {
  background: transparent;
  color: var(--ink);
}

.form-note {
  font-size: 0.875rem;
  color: var(--ink-soft);
  margin: 1.5rem 0 0;
  max-width: 36rem;
}

.form-status {
  max-width: 36rem;
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  font-size: 1rem;
  line-height: 1.55;
}

.form-status p { margin: 0; }

.form-status.success {
  border-color: var(--accent);
  background: rgba(61, 31, 77, 0.04);
}

.form-status.error {
  border-color: rgba(229, 122, 122, 0.4);
  background: rgba(229, 122, 122, 0.06);
}

/* Footer */
footer.site {
  margin-top: 6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  color: var(--ink-soft);
  font-size: 0.875rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Offer-card heading link — keeps animated underline, removes default link styling */
.offer h3 a {
  color: inherit;
  text-decoration: none;
}
.offer h3 a:hover { color: var(--accent); }

/* Prose extensions — used on /vilkar/, /strategi/, /kurs/ */
.prose h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.375rem, 2vw, 1.625rem);
  letter-spacing: -0.005em;
  line-height: 1.2;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.prose h2:first-child { margin-top: 0; }

.prose ul, .prose ol {
  max-width: var(--measure);
  font-size: 1.125rem;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
  padding-left: 1.25rem;
  line-height: 1.55;
}
.prose li { margin-bottom: 0.5rem; }
.prose li:last-child { margin-bottom: 0; }

.prose strong { color: var(--ink); font-weight: 500; }

/* Form helper text under fields */
.field-help {
  display: block;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-top: 0.4rem;
}

/* Smaller variant of form-note (used on /strategi/ for legal disclaimer) */
.form-note.small {
  font-size: 0.8125rem;
  margin: 1rem 0 1.5rem;
}

/* Footer link group — used on every page for shared site footer */
footer.site .footer-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
footer.site .footer-links a {
  position: relative;
  color: inherit;
  text-decoration: none;
  padding-bottom: 0.2rem;
}
footer.site .footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
footer.site .footer-links a:hover {
  color: var(--ink);
}
footer.site .footer-links a:hover::after {
  transform: scaleX(1);
}

/* FAQ — details/summary styling for /faq/ */
.faq details {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 0;
  max-width: var(--measure);
}
.faq details:last-of-type {
  border-bottom: 1px solid var(--rule);
  margin-bottom: 2rem;
}
.faq summary {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
  transition: color 0.15s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--ink-soft);
  transition: transform 0.2s;
  line-height: 1;
}
.faq details[open] summary::after {
  content: "−";
}
.faq summary:hover { color: var(--accent); }
.faq details > p {
  margin: 1rem 0 0;
  color: var(--ink-soft);
  font-size: 1.0625rem;
  line-height: 1.6;
}
.faq details > p:first-of-type { margin-top: 1rem; }

.faq .faq-short {
  color: var(--ink);
  font-size: 1.125rem;
}
.faq .faq-short strong,
.faq .faq-long strong {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  display: block;
  margin-bottom: 0.4rem;
}
.faq .faq-long {
  margin-top: 1.25rem;
}
.faq-cta {
  margin-top: 3rem !important;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
  font-size: 1rem;
  color: var(--ink-soft);
}

/* === FAQ overview (/faq/) — kort svar + Les mer pattern === */
.faq-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 2rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rule);
}
.faq-filters button {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.5rem 1rem;
  cursor: pointer;
  color: var(--ink-soft);
  transition: all 0.15s;
}
.faq-filters button:hover { color: var(--ink); border-color: var(--ink); }
.faq-filters button.active {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}

.faq-list { display: grid; gap: 1.5rem; max-width: 56rem; }

.faq-card {
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 1.5rem 1.75rem;
  transition: border-color 0.15s;
}
.faq-card:hover { border-color: var(--ink); }

.faq-card h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.375rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.faq-card h2 a {
  color: var(--ink);
  text-decoration: none;
}
.faq-card h2 a:hover { color: var(--accent); }

.faq-card .faq-short {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.55;
}

.faq-readmore {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
}
.faq-readmore:hover {
  color: var(--ink);
}

/* === FAQ detail page (/faq/[slug]/) === */
.faq-detail { max-width: 44rem; margin: 0 auto; }

.breadcrumb {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0 0 2rem;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.15s;
}
.breadcrumb a:hover { color: var(--ink); }

.faq-detail-header { margin-bottom: 2rem; }
.faq-detail-header h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.75rem;
}
.faq-meta {
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin: 0;
}
.faq-meta strong { color: var(--ink); font-weight: 500; }
.faq-meta .faq-sep { margin: 0 0.5rem; opacity: 0.5; }

.faq-tldr {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 1.25rem 1.5rem;
  margin: 0 0 2.5rem;
  border-radius: 0 6px 6px 0;
}
.faq-tldr-label {
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin: 0 0 0.4rem;
}
.faq-tldr p:last-child {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
  color: var(--ink);
}

.faq-detail-body h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.375rem, 2.4vw, 1.625rem);
  letter-spacing: -0.005em;
  margin: 2.5rem 0 1rem;
  color: var(--ink);
}
.faq-detail-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.125rem;
  margin: 1.75rem 0 0.5rem;
  color: var(--ink);
}
.faq-detail-body p {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.25rem;
}
.faq-detail-body ul {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  padding-left: 1.25rem;
}
.faq-detail-body li { margin-bottom: 0.5rem; }
.faq-detail-body strong { color: var(--ink); font-weight: 500; }
.faq-detail-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--rule);
  text-underline-offset: 0.2em;
}
.faq-detail-body a:hover { text-decoration-color: var(--accent); }

/* Feedback-widget */
.faq-feedback {
  margin: 4rem 0 3rem;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: 6px;
  text-align: center;
}
.faq-feedback-question {
  font-family: var(--serif);
  font-size: 1.125rem;
  margin: 0 0 1rem;
  color: var(--ink);
}
.faq-feedback-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
.faq-feedback-btn {
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #fff;
  border: 1px solid var(--rule);
  border-radius: 999px;
  padding: 0.6rem 2rem;
  min-width: 6rem;
  cursor: pointer;
  color: var(--ink);
  transition: all 0.15s;
}
.faq-feedback-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.faq-feedback-btn:disabled { opacity: 0.5; cursor: default; transform: none; }
.faq-feedback-thanks p {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
}
.faq-feedback-comment {
  margin-top: 1rem;
  text-align: left;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}
.faq-feedback-comment label {
  display: block;
  font-family: var(--sans);
  font-size: 0.8125rem;
  color: var(--ink-soft);
  margin-bottom: 0.4rem;
}
.faq-feedback-comment .optional { font-style: italic; opacity: 0.7; }
.faq-feedback-comment textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 0.9375rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--rule);
  border-radius: 4px;
  background: #fff;
  resize: vertical;
}
.faq-feedback-send {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--ink);
  color: var(--bg);
  border: 1px solid var(--ink);
  border-radius: 999px;
  padding: 0.55rem 1.25rem;
  cursor: pointer;
  margin-top: 0.75rem;
}

/* Relaterte spørsmål */
.faq-related {
  margin: 3rem 0 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--rule);
}
.faq-related h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 1rem;
}
.faq-related-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.faq-related-list li { margin-bottom: 0.5rem; }
.faq-related-list a {
  font-family: var(--serif);
  font-size: 1.0625rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 0.15s;
}
.faq-related-list a:hover { border-color: var(--accent); color: var(--accent); }
.faq-all-link {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  text-decoration: none;
}
.faq-all-link:hover { color: var(--ink); }

/* === FAQ-modul (embedded på andre sider) === */
.faq-module-list {
  display: grid;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 0 1.5rem;
}
.faq-module-list .faq-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: -0.005em;
  line-height: 1.25;
  margin: 0 0 0.75rem;
}
.faq-module-list .faq-card h3 a {
  color: var(--ink);
  text-decoration: none;
}
.faq-module-list .faq-card h3 a:hover { color: var(--accent); }
.faq-module-empty {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink-soft);
}
.faq-module-all {
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.faq-module-all a {
  color: var(--ink-soft);
  text-decoration: none;
}
.faq-module-all a:hover { color: var(--ink); }

@media (max-width: 40rem) {
  .page { padding: 1.5rem 1.25rem 3rem; }
  header.site { margin-bottom: 5rem; }
  section { margin-bottom: 4.5rem; }
  footer.site { margin-top: 4rem; }
}
