select { color: black; }
.info_text-top  { margin-bottom: 2rem; padding-bottom: 0; }
.info_text-under { margin-top: 0; padding-top: 0; }
.hero .image img { display: none; }

/* ─── EYEBROW ─── */
.eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #484E7C;
  margin-bottom: 1.5rem;
  display: block;
}

/* ─── PROBLEM ─── */
.section-problem {
  padding: 7rem 2rem 5rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}
.big-question {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.15;
  font-weight: 400;
  color: #090012;
  margin-bottom: 2rem;
}
.problem-desc {
  font-size: 1.15rem;
  color: #555;
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto;
}

/* ─── OVERVIEW CARDS (lilla) ─── */
.insights-section {
  background: #484E7C;
  padding: 6rem 2rem;
}
.insights-inner  { max-width: 1100px; margin: 0 auto; }
.insights-header { text-align: center; margin-bottom: 3rem; }
.insights-header .eyebrow { color: rgba(255,255,255,0.5); }
.insights-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: white; font-weight: 400;
}
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.insight-card {
  background: #30355b;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 1.2rem;
  padding: 2rem;
  transition: transform 0.3s ease, background 0.3s ease;
}
.insight-card:hover { transform: translateY(-4px); background: rgba(255,255,255,0.1); }
.card-number {
  font-size: 3rem;
  color: rgba(136,146,212,0.4);
  line-height: 1; margin-bottom: 0.8rem;
}
.card-title { font-size: 1rem; font-weight: 600; color: white; margin-bottom: 0.6rem; }
.card-text  { font-size: 0.95rem; color: rgba(255,255,255,0.55); line-height: 1.7; }


/* ─── CATALOG INTRO ─── */
.catalog-intro-section {
  padding: 7rem 2rem 4rem;
  text-align: center;
}
.catalog-intro-inner { max-width: 700px; margin: 0 auto; }
.catalog-intro-inner h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400; margin-bottom: 1rem;
}
.catalog-intro-inner p {
  font-size: 1.1rem; color: #444;
  line-height: 1.8; margin-bottom: 1.5rem;
}
.catalog-link {
  display: inline-block;
  color: #484E7C;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  font-size: 1rem;
  transition: opacity 0.2s;
}
.catalog-link:hover { opacity: 0.6; }


/* ═══════════════════════════════════════════
   FIRE KAPITLER – stort billedfokus
   ═══════════════════════════════════════════ */
.chapters-section {
  background: #111;
  padding: 2rem 0 4rem;
}
.chapters-inner { max-width: 100%; }

.chapter-block {
  margin-bottom: 0;
}

/* Kapitel-label: nummer + titel over billederne */
.chapter-label-row {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 3rem 2rem 1.2rem;
}
.chapter-num-inline {
  font-size: 2.5rem;
  color: rgba(136,146,212,0.25);
  line-height: 1;
  flex-shrink: 0;
}
.chapter-title {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: white;
  margin-bottom: 0.3rem;
}
.chapter-body {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin: 0;
}

/* ─── SIMPLE HORIZONTAL IMAGE ROW ─── */

.chapter-gallery-large,
.chapter-gallery-large--reverse {
  display: flex;
  gap: 10px;
  padding-left: 2rem;
  padding-right: 2rem;
  padding-bottom: 3rem;
}

.gallery-main,
.gallery-side {
  display: contents;
}

.gallery-main img,
.gallery-side img {
  width: calc(33.333% - 10px);
  height: auto;

  object-fit: cover;
  display: block;

  border-radius: 6px;

  cursor: zoom-in;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-main img:hover,
.gallery-side img:hover {
  transform: scale(1.01);
  opacity: 0.9;
}

/* Skillelinje mellem kapitler */
.chapter-block + .chapter-block {
  border-top: 1px solid rgba(255,255,255,0.06);
}


/* ═══════════════════════════════════════════
   PROJECT 2 – POSTERVERSIONER
   ═══════════════════════════════════════════ */
.poster-section {
  background: #F5F5F5;
  padding: 7rem 2rem;
}
.poster-inner { max-width: 1200px; margin: 0 auto; }
.poster-header { text-align: center; margin-bottom: 3rem; }
.poster-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400; margin-bottom: 0.5rem;
}
.poster-intro {
  color: #666; font-size: 1rem;
  max-width: 540px; margin: 0 auto;
  line-height: 1.7;
}

/* Tre versioner side om side */
.poster-versions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 5rem;
}



.poster-img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #eee;
  margin-bottom: 0.8rem;
}
.poster-img-wrap img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}
.poster-img-wrap:hover img { transform: scale(1.03); }

.poster-img-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: white;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.5rem 1rem 0.8rem;
}
.poster-img-wrap--final .poster-img-label {
  background: linear-gradient(transparent, rgba(72,78,124,0.85));
}

.poster-version-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.65;
  padding: 0 0.2rem;
}

/* Det endelige poster – bredt og dominerende */
.final-poster-block {
  text-align: center;
  border-top: 1px solid #ddd;
  padding-top: 4rem;
}
.final-poster-block .eyebrow { color: #484E7C; margin-bottom: 1.5rem; }

.final-poster-img {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 1.5rem;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.final-poster-img img {
  width: 100%;
  display: block;
  cursor: zoom-in;
  transition: transform 0.5s ease;
}
.final-poster-img:hover img { transform: scale(1.02); }


/* ─── REFLECTION ─── */
.reflection-section {
  padding: 8rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}
.reflection-section h2 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 400; max-width: 800px;
  margin: 0 auto 1.5rem; line-height: 1.15;
}
.reflection-section > p {
  font-size: 1.1rem; max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.8; color: #444;
}
.reflection-links {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.reflection-links .more-button { text-decoration: none; }
.reflection-links button {
  background: #484E7C; color: white;
  border: none; padding: 0.8rem 2rem;
  border-radius: 0.5rem; font-size: 1rem;
  cursor: pointer; font-family: "Inter", sans-serif;
  transition: opacity 0.2s;
}
.reflection-links button:hover { opacity: 0.7; }


/* ─── LIGHTBOX ─── */
.lightbox-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999; align-items: center; justify-content: center;
  cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img {
  max-width: 90vw; max-height: 90vh;
  object-fit: contain; border-radius: 0.5rem;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  color: white; font-size: 2rem;
  cursor: pointer; opacity: 0.6; line-height: 1;
}
.lightbox-close:hover { opacity: 1; }


/* ─── TABLET ─── */
@media screen and (min-width: 600px) {

  .poster-versions { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
  .final-poster-img { max-width: 480px; }
}

@media screen and (min-width: 785px) {
  .hero { min-height: auto; max-height: 1100px; align-items: flex-start; }
  .skill-tags { margin-top: -1.6rem; }
  .info_text-top  { max-width: 100%; margin-top: 2rem; }
  .info_text-under { max-width: 50%; }

  .hero .image img {
    display: block;
    width: 700px; height: 700px;
    object-fit: cover; object-position: center top;
    position: absolute; right: -3%; top: 380px; z-index: -10;
  }

  .cards-grid { grid-template-columns: 1fr 1fr 1fr; }

  .chapter-label-row { padding: 3.5rem 4rem 1.5rem; gap: 1.5rem; }

  .insights-section { padding: 8rem 3rem; }
  .poster-section   { padding: 9rem 4rem; }
  .reflection-section { padding: 9rem 3rem; margin-bottom: 1rem; }
}


/* ─── DESKTOP ─── */
@media screen and (min-width: 1089px) {
  body   { scroll-snap-type: y proximity; scroll-padding-top: 80px; }
  header { margin: auto; width: 95%; }

  .hero {
    padding: 30px 30px 0 30px;
    min-height: calc(100vh - 80px);
    align-items: center; margin-top: 70px; max-height: none;
  }
  .hero .text { min-height: calc(100vh - 80px); max-width: 100%; }
  .subtitle    { font-size: 3rem; margin-bottom: 3.5rem; }
  .info_text   { font-size: 2rem; max-width: 50%; }
  .info_text-top { max-width: 60%; }
  .skill-tags  { margin-top: -5rem; }

  .hero .image img {
    width: 1400px; height: 700px;
    object-fit: cover; object-position: center top;
    position: absolute; right: -1%; top: 20px; z-index: -1;
  }

  .chapter-label-row {
    padding: 4rem 3.5rem 1.5rem;
  }

  .final-poster-img { max-width: 560px; }

  .insights-section { padding: 10rem 4rem; }
  .poster-section   { padding: 10rem 6rem 3rem 6rem; }
  .reflection-section { padding: 10rem 4rem; margin-bottom: 5rem; }
}