/*
  styles.css — INNHOLDSTRO STATUSSIDE
  -----------------------------------------------
  Stiler basert på VIBS merkevareguide og Handoff #31:
  - Fargepalett: navy-sort (#11111f) base, gull (#ffc600) aksenter, hvit tekst.
  - Typografi: Comfortaa (overskrifter), Quicksand (brødtekst, rund fallback).
  - Layout: Mobil-først med skuff, desktop med fast sticky sidebar.
  - Estetikk: Dempet ekte foto, myke flater (glassmorphism), avrundet, god luft.
  - Tilgjengelighet: WCAG AA-kontraster (minst 60% opacity for dempet tekst).
*/

/* 1. Reset og globale stiler */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-bg-navy: #11111f;
  --color-gold: #ffc600;
  --color-text-white: #ffffff;
  --color-text-cream: #f6f0e2;
  
  --font-heading: 'Comfortaa', cursive, sans-serif;
  --font-body: 'Quicksand', system-ui, -apple-system, sans-serif;
  
  --transition-soft: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --sidebar-width: 320px;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-cream);
  background-color: var(--color-bg-navy);
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background-color: var(--color-bg-navy);
}

/* Skip-link for tilgjengelighet (a11y) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-gold);
  color: var(--color-bg-navy);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  z-index: 10000;
  text-decoration: none;
  border-radius: 0 0 12px 0;
  transition: var(--transition-soft);
}

.skip-link:focus-visible {
  left: 0;
  outline: 3px solid var(--color-gold);
}

/* Universelle focus-stiler for tilgjengelighet (a11y) */
:focus-visible {
  outline: 3px solid var(--color-gold);
  outline-offset: 4px;
}

/* 2. Mobil Layout Header & Drawer */
.mobile-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(17, 17, 31, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(246, 240, 226, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  z-index: 1000;
}

.logo-area {
  display: flex;
  align-items: center;
}

.verified-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--color-text-white);
}

.menu-toggle {
  background: transparent;
  border: 1px solid rgba(246, 240, 226, 0.2);
  color: var(--color-text-cream);
  padding: 0.6rem 1rem;
  min-height: 44px;
  min-width: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  font-weight: 600;
  transition: var(--transition-soft);
}

.menu-toggle:hover {
  background: rgba(246, 240, 226, 0.05);
  border-color: var(--color-gold);
}

/* Mobil Menu Drawer */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--sidebar-width);
  background: var(--color-bg-navy);
  border-right: 1px solid rgba(246, 240, 226, 0.08);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body.menu-open .side-menu {
  transform: translateX(0);
}

.side-menu__header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  border-bottom: 1px solid rgba(246, 240, 226, 0.08);
}

.menu-close-btn {
  background: transparent;
  border: none;
  color: var(--color-text-cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.2rem;
  min-height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-soft);
}

.menu-close-btn:hover {
  color: var(--color-gold);
}

.menu-navigation {
  flex: 1;
  overflow-y: auto;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.section-nav a {
  font-family: var(--font-heading);
  color: rgba(246, 240, 226, 0.6); /* 60% opacity for WCAG AA compliance */
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 400;
  transition: var(--transition-soft);
  display: inline-block;
}

.section-nav a:hover,
.section-nav a.active {
  color: var(--color-gold);
  transform: translateX(4px);
}

/* Sidebar Project Metadata (Google Stitch Knowledge Panel style) */
.project-info {
  border-top: 1px solid rgba(246, 240, 226, 0.08);
  padding-top: 1.5rem;
}

.project-info__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(246, 240, 226, 0.6); /* 60% opacity (WCAG AA pass: 6.18:1 contrast) */
  margin-bottom: 0.75rem;
  font-weight: 700;
}

/* Card layout container for metadata */
.project-info dl {
  background: rgba(246, 240, 226, 0.03);
  border: 1px solid rgba(246, 240, 226, 0.06);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.project-info dl dt {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  font-weight: 600;
}

.project-info dl dd {
  font-size: 0.85rem;
  color: rgba(246, 240, 226, 0.85);
  margin-left: 0;
}

/* 3. Main Sections & Scrollytelling */
.main-container {
  margin-top: 64px;
  width: 100%;
}

.story-section {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1.5rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Readability Overlay — kun posisjonering; selve gradienten defineres samlet lenger ned (v2) */
.story-section__readability-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* Content layout wrapper over background overlay */
.hero-content,
.content-box {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 600px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 4. Hero Section */
.hero-content {
  text-align: center;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--color-gold);
  font-weight: 600;
  margin-bottom: 0.7rem;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 1.75rem; /* Comfortaa title size (mobile) */
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.3;
  margin-bottom: 0.9rem;
}

.hero-underline {
  width: 40px;
  height: 3px;
  background-color: var(--color-gold);
  border-radius: 2px;
  margin-bottom: 1.2rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(246, 240, 226, 0.9);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.6;
}

.scroll-prompt {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: scrollPulse 2s infinite ease-in-out;
}

.scroll-prompt__text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(246, 240, 226, 0.72); /* 72% opacity — WCAG AA komfortabel */
  font-weight: 500;
}

.scroll-prompt__arrow {
  font-size: 1.1rem;
  color: var(--color-gold);
}

@keyframes scrollPulse {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50% { transform: translateY(5px); opacity: 1; }
}

/* Respekter prefers-reduced-motion (WCAG 2.3.3): stopp kontinuerlig
   scroll-pulse og myk scroll for brukere som ber om mindre bevegelse. */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .scroll-prompt { animation: none; }
}

/* 5. Section Elements & Content Layouts */
.section-badge {
  align-self: flex-start;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  border: 1px solid rgba(255, 198, 0, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 6px;
  font-weight: 600;
  background: rgba(255, 198, 0, 0.02);
  margin-bottom: 0.7rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.section-paragraph {
  font-size: 1rem;
  color: rgba(246, 240, 226, 0.85);
  font-weight: 400;
  line-height: 1.65;
  max-width: 62ch;
}

.section-paragraph + .section-paragraph {
  margin-top: 0.85rem;
}

/* Google Stitch Card Layout - small fact cards */
.facts-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 0.5rem 0;
}

.fact-card-small {
  background: rgba(246, 240, 226, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(246, 240, 226, 0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: var(--transition-soft);
}

.fact-card-small:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 198, 0, 0.2);
  background: rgba(246, 240, 226, 0.03);
}

.fact-card-small__text {
  font-size: 0.95rem;
  color: var(--color-text-cream);
  line-height: 1.5;
}

.accent-gold-text {
  color: var(--color-gold);
  font-weight: 700;
}

.fact-source {
  font-size: 0.75rem;
  color: rgba(246, 240, 226, 0.72); /* 72% opacity — WCAG AA komfortabel */
  font-style: italic;
}

/* Forbehold under et tall eller en påstand. Skal leses som en del av
   faktaen, ikke som en fotnote man kan hoppe over — derfor gull-strek. */
.section-caveat {
  font-size: 0.85rem;
  line-height: 1.55;
  color: rgba(246, 240, 226, 0.72);
  border-left: 2px solid rgba(255, 198, 0, 0.4);
  padding-left: 0.85rem;
  margin: 0.25rem 0 0.5rem;
}

/* Large Highlight Fact Card */
.fact-card-highlight {
  background: rgba(246, 240, 226, 0.03);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 198, 0, 0.15);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0.5rem 0;
  transition: var(--transition-soft);
}

.fact-card-highlight:hover {
  border-color: var(--color-gold);
}

.fact-card-highlight__text {
  font-size: 1rem;
  color: var(--color-text-white);
  line-height: 1.6;
}

/* Research Questions (Bullet point styling) */
.research-questions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 0.5rem;
}

.research-questions-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: rgba(246, 240, 226, 0.85);
  line-height: 1.6;
}

.research-questions-list li::before {
  content: "";
  position: absolute;
  left: 0.25rem;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background-color: var(--color-gold);
  border-radius: 50%;
}

.research-questions-list li strong {
  color: var(--color-text-white);
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

/* Research Context Box (discreet highlight) */
.research-context-box {
  background: rgba(255, 198, 0, 0.03);
  border-left: 3px solid var(--color-gold);
  padding: 1.25rem;
  border-radius: 0 12px 12px 0;
}

.context-box-tag {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.context-box-text {
  font-size: 0.95rem;
  color: rgba(246, 240, 226, 0.85);
  line-height: 1.6;
}

.context-box-text + .context-box-text {
  margin-top: 0.85rem;
}
/* CTA Area (Go to top button) */
.cta-area {
  margin-top: 1rem;
}

.cta-button {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--color-gold);
  color: var(--color-gold);
  padding: 0.75rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: var(--transition-soft);
}

.cta-button:hover {
  background: var(--color-gold);
  color: var(--color-bg-navy);
}

/* CTA Area: multi-button layout */
.cta-area--multi {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-button--primary {
  background: var(--color-gold);
  color: var(--color-bg-navy);
  border-color: var(--color-gold);
}

.cta-button--primary:hover {
  background: transparent;
  color: var(--color-gold);
}

@media (min-width: 1024px) {
  html {
    scroll-snap-type: y mandatory;
  }

  body {
    display: grid;
    grid-template-columns: var(--sidebar-width) 1fr;
    min-height: 100vh;
  }
  
  .mobile-header {
    display: none;
  }
  
  .side-menu {
    position: sticky;
    top: 0;
    left: 0;
    width: var(--sidebar-width);
    height: 100vh;
    transform: translateX(0);
    border-right: 1px solid rgba(246, 240, 226, 0.08);
    display: flex;
    flex-direction: column;
  }
  
  .side-menu__header {
    padding-top: 2rem;
    height: auto;
    border-bottom: none;
  }
  
  .menu-close-btn {
    display: none;
  }
  
  .menu-navigation {
    padding: 2.5rem 2rem;
  }
  
  .main-container {
    margin-top: 0;
  }
  
  .story-section {
    min-height: 100vh;
    padding: 4rem 6rem;
    justify-content: flex-start; /* Left-aligned for scrollytelling next to sidebar */
    scroll-snap-align: start;
  }

  .hero-content {
    text-align: left;
    align-items: flex-start;
    max-width: 700px;
  }
  
  .hero-title {
    font-size: 2.5rem; /* Comfortaa hero title desktop */
  }
  
  .content-box {
    max-width: 700px;
    gap: 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .facts-grid {
    grid-template-columns: 1fr 1fr; /* Two-column grid on desktop */
    gap: 1.25rem;
  }
}

/* =========================================================
   v2-LØFT (Claude, 2026-06-28)
   Konsortium-liste, mykere faktakort, fakta-viz (vet/vet-ikke),
   konsistent dempet bildetone, subtil reveal (CSS scroll-driven).
   ========================================================= */

/* Av-"dashboard": faktakort fra bokser til myke, venstre-aksentuerte tekstblokker */
.fact-card-small {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-left: 2px solid rgba(255, 198, 0, 0.30);
  border-radius: 0;
  padding: 0.1rem 0 0.1rem 1rem;
}
.fact-card-small:hover {
  transform: none;
  background: transparent;
  border-color: var(--color-gold);
}

/* Fakta-viz 2: vet / vet-ikke-kontrast via badge-behandling */
#sec-what-we-know .section-badge {
  background: var(--color-gold);
  color: var(--color-bg-navy);
  border-color: var(--color-gold);
}
#sec-what-we-know .section-badge::before { content: "\2713\00a0"; }
#sec-what-we-dont-know .section-badge {
  border-style: dashed;
  border-color: rgba(255, 198, 0, 0.55);
}
#sec-what-we-dont-know .section-badge::before { content: "?\00a0"; }

/* Samme grunnbehandling for alle hovedbilder: naturlige, lett dempede farger.
   Gradientene brukes bare for lesbarhet og kan følge tekstplasseringen. */
.story-section {
  background-color: transparent;
  background-blend-mode: normal;
}
.story-section__readability-overlay {
  background:
    linear-gradient(180deg, rgba(17, 17, 31, 0.65) 0%, rgba(17, 17, 31, 0.85) 100%),
    radial-gradient(circle at 70% 28%, rgba(255, 198, 0, 0.06) 0%, rgba(255, 198, 0, 0) 55%);
}

#sec-what-we-know {
  background-position: center;
}

#sec-what-verified-will-find-out {
  background-position: center;
}

@media (max-width: 768px) {
  #sec-what-we-know {
    background-position: 60% center;
  }
  #sec-what-verified-will-find-out {
    background-position: 40% center;
  }
}

@media (min-width: 1024px) {
  .story-section__readability-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 31, 0.88) 0%, rgba(17, 17, 31, 0.45) 55%, rgba(17, 17, 31, 0.68) 100%),
      radial-gradient(circle at 75% 25%, rgba(255, 198, 0, 0.07) 0%, rgba(255, 198, 0, 0) 50%);
  }

  /* Seksjon 3: Venstrestilt med mørk gradient fra venstre */
  #sec-what-we-know {
    justify-content: flex-start;
  }
  #sec-what-we-know .story-section__readability-overlay {
    background:
      linear-gradient(90deg, rgba(17, 17, 31, 0.92) 0%, rgba(17, 17, 31, 0.55) 55%, rgba(17, 17, 31, 0.25) 100%),
      radial-gradient(circle at 75% 25%, rgba(255, 198, 0, 0.07) 0%, rgba(255, 198, 0, 0) 50%);
  }

  /* Seksjon 5: Høyrestilt med mørk gradient fra høyre */
  #sec-what-verified-will-find-out {
    justify-content: flex-end;
  }
  #sec-what-verified-will-find-out .story-section__readability-overlay {
    background:
      linear-gradient(270deg, rgba(17, 17, 31, 0.92) 0%, rgba(17, 17, 31, 0.55) 55%, rgba(17, 17, 31, 0.25) 100%),
      radial-gradient(circle at 25% 25%, rgba(255, 198, 0, 0.07) 0%, rgba(255, 198, 0, 0) 50%);
  }
}

/* Subtil reveal ved scroll — CSS scroll-driven (ingen JS).
   Av ved prefers-reduced-motion; degraderer trygt der view()-timeline mangler. */
@media (prefers-reduced-motion: no-preference) {
  @supports (animation-timeline: view()) {
    .content-box,
    .hero-content {
      animation: v2RevealUp linear both;
      animation-timeline: view();
      animation-range: entry 5% entry 45%;
    }
    @keyframes v2RevealUp {
      from { opacity: 0; transform: translateY(28px); }
      to   { opacity: 1; transform: translateY(0); }
    }
  }
}

/* =========================================================
   v3 — UI/UX-løft (grilling-utfall 2026-08-07)
   Ticket 03 ankertall · 04 vet/vet-ikke-ramme · 05 listeformer · 08 teamblokk.
   Gull-budsjett: full 100 %-gull KUN på ankertallet; alt annet dempet register.
   ========================================================= */

/* --- Ticket 03: ett framhevet ankertall (erstatter tre like faktakort) --- */
.fact-anchor {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 1.5rem 0 0;
}
.fact-anchor__support {
  font-size: 0.95rem;
  color: rgba(246, 240, 226, 0.8);
  line-height: 1.5;
}
.fact-anchor__support strong { color: var(--color-text-white); font-weight: 700; }
.fact-anchor__value {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);            /* full gull — reservert til ankeret */
  font-size: clamp(1.9rem, 5vw, 2.4rem);
  line-height: 1;
  margin-top: 0.1rem;
}
.fact-anchor__label {
  font-size: 1rem;
  color: var(--color-text-cream);
  line-height: 1.5;
  max-width: 34ch;
}
.fact-anchor .section-caveat { margin-top: 0.5rem; }   /* beholder egen gull-strek */
.fact-anchor__source {
  font-size: 0.75rem;
  color: rgba(246, 240, 226, 0.55);
  font-style: italic;
}

/* Ticket 03: dra highlight-kortet mot samme borderless språk som fact-card-small.
   (v2 av-bokset fact-card-small, men glemte dette kortet → to «viktig»-behandlinger.) */
.fact-card-highlight {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  border-left: 2px solid rgba(255, 198, 0, 0.30);
  border-radius: 0;
  padding: 0.1rem 0 0.1rem 1rem;
}
.fact-card-highlight:hover { border-color: rgba(255, 198, 0, 0.30); }

/* --- Ticket 04: vet/vet-ikke som omsluttende ramme — lik tyngde, motsatt form --- */
/* Fjern den fylte gull-badgen på «vet» (eneste flate-gull utenom skip-link) */
#sec-what-we-know .section-badge {
  background: rgba(255, 198, 0, 0.02);
  color: var(--color-gold);
  border-color: rgba(255, 198, 0, 0.3);
}
#sec-what-we-know .content-box,
#sec-what-we-dont-know .content-box {
  padding: 1.5rem 1.5rem 1.6rem;
  border-radius: 14px;
  background: rgba(17, 17, 31, 0.28);
}
#sec-what-we-know .content-box {
  border: 1.5px solid rgba(255, 198, 0, 0.45);     /* lukket = kunnskap som ligger fast */
}
#sec-what-we-dont-know .content-box {
  border: 1.5px dashed rgba(255, 198, 0, 0.45);    /* åpen = fortsatt åpent (ikke svakhet) */
}

/* --- Ticket 05: tre lister, tre former --- */
/* Seksjon 4 beholder research-questions-list (eies av 04). Demp gull-prikkene. */
.research-questions-list li::before { background-color: rgba(255, 198, 0, 0.55); }

/* Seksjon 6: nummererte steg (implisitt rekkefølge), dempet gull-tall, høyde-nøytralt */
.method-steps {
  list-style: none;
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 0.5rem;
}
.method-steps li {
  position: relative;
  padding-left: 2.4rem;
  font-size: 0.95rem;
  color: rgba(246, 240, 226, 0.85);
  line-height: 1.6;
}
.method-steps li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.7rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255, 198, 0, 0.85);
  border: 1px solid rgba(255, 198, 0, 0.35);
  border-radius: 50%;
}
.method-steps li strong {
  color: var(--color-text-white);
  display: block;
  margin-bottom: 0.2rem;
  font-weight: 600;
}

/* Seksjon 7: tynt linjeregister, ingen markør (avkryssingsboks ville lest som status) */
.remaining-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  margin-top: 0.5rem;
}
.remaining-list li {
  font-size: 0.95rem;
  color: rgba(246, 240, 226, 0.82);
  line-height: 1.5;
  padding: 0.7rem 0;
  border-top: 1px solid rgba(246, 240, 226, 0.12);
}
.remaining-list li:last-child { border-bottom: 1px solid rgba(246, 240, 226, 0.12); }

/* --- Ticket 08: teamblokk — rolig navy avslutning, ansikter vist rent --- */
.team-block {
  background-color: var(--color-bg-navy);
  padding: 4rem 1.5rem 5rem;
  scroll-snap-align: start;
  border-top: 1px solid rgba(246, 240, 226, 0.08);
}
.team-block__inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
}
.team-block__figure {
  margin: 0;
  width: 100%;
  max-width: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(246, 240, 226, 0.12);
  transition: border-color 0.25s ease;
}
.team-block__figure:hover,
.team-block__figure:focus-within { border-color: var(--color-gold); }
.team-block__img {
  display: block;
  width: 100%;
  height: auto;
  filter: saturate(0.9);          /* mild avmetning så himmelen ikke over-saturerer paletten */
}
.team-block__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.6rem;
}
.team-block__lead {
  font-size: 1rem;
  color: rgba(246, 240, 226, 0.85);
  line-height: 1.6;
  margin-bottom: 1.3rem;
  max-width: 40ch;
}

@media (min-width: 1024px) {
  .team-block { padding: 5rem 6rem 6rem; }
  .team-block__inner {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 3rem;
  }
  .team-block__figure { flex: 0 0 360px; max-width: 360px; }
  .team-block__text { flex: 1; }
}

/* Page Footer & Team Photo (Lister Kapitaldag) */
.image-disclosure {
  background: var(--color-bg-navy);
  padding: 3rem 1.5rem 0;
  border-top: 1px solid rgba(246, 240, 226, 0.12);
}

.image-disclosure p {
  max-width: 70ch;
  margin: 0 auto;
  color: rgba(246, 240, 226, 0.72);
  font-size: 0.9rem;
  line-height: 1.65;
  text-align: center;
}

.page-footer {
  background-color: var(--color-bg-navy);
  padding: 3.5rem 1.5rem 4.5rem;
  border-top: 1px solid rgba(246, 240, 226, 0.12);
  text-align: center;
  scroll-snap-align: start;
}

.footer-photo {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-photo__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--color-gold);
  margin-bottom: 0.8rem;
}

.footer-photo__link {
  display: block;
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 198, 0, 0.4);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.footer-photo__link:hover,
.footer-photo__link:focus-within {
  transform: translateY(-2px);
  border-color: var(--color-gold);
  box-shadow: 0 12px 32px rgba(255, 198, 0, 0.25);
}

.footer-photo__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

@media (min-width: 1024px) {
  .image-disclosure {
    grid-column: 2;
    padding: 4rem 6rem 0;
  }

  .page-footer {
    grid-column: 2;
    padding: 5rem 6rem 6rem;
  }
}

.footer-photo__caption {
  margin-top: 0.9rem;
  font-size: 0.85rem;
  color: rgba(246, 240, 226, 0.85);
  line-height: 1.5;
  max-width: 48ch;
}

.footer-photo__credit {
  display: block;
  margin-top: 0.3rem;
  font-size: 0.75rem;
  color: rgba(246, 240, 226, 0.55);
}

.footer-photo__credit a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

