/* ═══════════════════════════════════════════════════════════════
   modules.css · Wiederverwendbare UI-Komponenten
   Norwegen langsam lesen · Edition Nordroute 01 · Juni 2026
   ─────────────────────────────────────────────────────────────── */

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem clamp(1.25rem, 4vw, 3rem);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(246, 241, 231, 0.92));
  box-shadow: 0 10px 24px rgba(15, 41, 48, 0.07);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(181, 80, 58, 0.35), transparent);
  pointer-events: none;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  flex-shrink: 0;
}

.brand img {
  width: clamp(160px, 22vw, 220px);
  height: auto;
}

.brand img[src$="kolophon-stempel.svg"] {
  mix-blend-mode: multiply;
}
@media (prefers-color-scheme: dark) {
  .brand img[src$="kolophon-stempel.svg"] {
    mix-blend-mode: screen;
    filter: invert(1) brightness(0.95);
  }
}

.edition {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem 0.5rem;
  border: 1px solid rgba(181, 80, 58, 0.3);
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: clamp(0.7rem, 2vw, 1.6rem);
  align-items: center;
  background: var(--paper);
  padding: 0.2rem;
  border: 1px solid rgba(24, 24, 20, 0.08);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.main-nav__panel {
  display: contents;
}

.main-nav__summary,
.main-nav__section--context,
.main-nav__section--secondary,
.main-nav__section-head,
.main-nav__legal {
  display: none;
}

.main-nav__section--primary,
.main-nav__primary {
  display: contents;
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  padding: 0.6rem 1.1rem;
  line-height: 1.05;
  border-radius: var(--radius-md);
  transition: color 0.25s var(--ease-out), background 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  outline: none;
  min-width: 48px;
  min-height: 48px;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.38rem;
  height: 2px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--rust) 88%, #fff);
  transform: scaleX(0);
  transform-origin: center;
  opacity: 0;
  transition: transform 0.24s var(--ease-out), opacity 0.2s var(--ease-out);
}

.main-nav a[aria-current="page"] {
  color: var(--rust);
  background: color-mix(in srgb, var(--paper-cold) 92%, #fff);
  box-shadow: 0 3px 10px rgba(160, 74, 45, 0.12);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  opacity: 1;
}

.main-nav a:hover {
  color: var(--rust);
  background: color-mix(in srgb, var(--paper-cold) 92%, #fff);
  box-shadow: 0 3px 10px rgba(160, 74, 45, 0.14);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  opacity: 0.85;
}

.main-nav a:focus-visible {
  outline: 2.5px solid var(--rust);
  outline-offset: 2px;
  background: var(--paper-cold);
  color: var(--rust);
  box-shadow: 0 0 0 4px rgba(160,74,45,0.10);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  min-width: 48px;
  min-height: 48px;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--ink);
  z-index: 60;
  border-radius: 50%;
  transition: background 0.2s;
  outline: none;
}

.nav-toggle:focus-visible {
  outline: 2.5px solid var(--rust);
  background: var(--paper-cold);
}

@media (max-width: 1180px) and (min-width: 921px) {
  .site-header {
    gap: 0.5rem;
    padding-inline: clamp(0.75rem, 2vw, 1.25rem);
  }

  .site-header .brand img {
    width: clamp(128px, 16vw, 172px) !important;
  }

  .site-header .main-nav {
    max-width: calc(100% - clamp(150px, 19vw, 215px));
    margin-left: auto;
    gap: clamp(0.3rem, 0.8vw, 0.65rem);
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .site-header .main-nav::-webkit-scrollbar {
    display: none;
  }

  .site-header .main-nav a {
    font-size: 0.82rem !important;
    letter-spacing: 0.08em !important;
    padding: 0.46rem 0.58rem !important;
    min-height: 44px;
  }
}


/* ═══════════════════════════════════════
   HERO
   ═══════════════════════════════════════ */

.hero {
  position: relative;
  min-height: min(85vh, 900px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: clamp(2rem, 5vw, 5rem);
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem) clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero + .scrapbook-strip {
  margin-top: clamp(1rem, 2.5vw, 1.8rem);
}


/* ═══════════════════════════════════════
   COLLECTION PAGES
   ═══════════════════════════════════════ */

.home-page,
.collection-page {
  --collection-accent: var(--rust);
  --collection-secondary: rgba(26, 63, 71, 0.1);
  --collection-paper: rgba(255, 255, 255, 0.9);
}

.home-page .hero,
.collection-page .hero {
  position: relative;
}

.home-page .hero::after,
.collection-page .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url('../assets/textures/summer-fjord-wash.webp') center / 760px auto repeat,
    url('../assets/textures/summer-fabric-scrap.webp') center / 340px auto repeat;
  opacity: 0.07;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.home-page .hero--landing {
  background:
    radial-gradient(circle at 16% 20%, rgba(181, 80, 58, 0.08), transparent 34%),
    radial-gradient(circle at 82% 14%, rgba(26, 63, 71, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(242, 236, 226, 0.96));
}

.home-page .hero-context {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.82), rgba(244, 236, 225, 0.86));
  border-color: rgba(181, 80, 58, 0.16);
}

.home-page .hero-context::after {
  content: "ATLAS";
  position: absolute;
  top: 0.8rem;
  right: 0.9rem;
  padding: 0.18rem 0.5rem;
  border: 1px solid rgba(181, 80, 58, 0.2);
  background: rgba(181, 80, 58, 0.08);
  color: var(--rust);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-page .hero-media {
  transform: rotate(-0.45deg);
  box-shadow: 0 28px 60px rgba(79, 63, 44, 0.14), 0 0 0 1px rgba(181, 80, 58, 0.16);
}

.home-page .hero-media::before {
  border-color: rgba(181, 80, 58, 0.22);
}

.home-page .hero-media--layered {
  overflow: visible;
}

.home-page .hero-media--layered::after {
  width: 52%;
  height: 52%;
  background:
    var(--texture-source-stamps) center / contain no-repeat,
    rgba(255, 255, 255, 0.36);
  opacity: 0.38;
  mix-blend-mode: multiply;
}

.field-layer-note {
  position: absolute;
  right: -1.2rem;
  top: -3.1rem;
  width: clamp(92px, 11vw, 160px);
  aspect-ratio: 1;
  background: var(--texture-field-note) center / contain no-repeat;
  opacity: 0.82;
  transform: rotate(4deg);
  filter: drop-shadow(0 14px 22px rgba(41, 49, 48, 0.12));
  pointer-events: none;
}

.home-page .manifesto__item {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.94), rgba(244, 237, 227, 0.96));
}

.home-page .manifesto {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-page .manifesto__item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 18px;
  width: 36px;
  height: 11px;
  background: rgba(215, 189, 148, 0.68);
  border: 1px solid rgba(122, 118, 102, 0.12);
  transform: rotate(-7deg);
}

.home-page .section--dark {
  background-image:
    radial-gradient(circle at 14% 18%, rgba(159, 217, 232, 0.1), transparent 35%),
    radial-gradient(circle at 84% 80%, rgba(181, 80, 58, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(15, 41, 48, 0.99), rgba(12, 31, 36, 0.99));
}

.home-page .grid--places {
  box-shadow: 0 18px 36px rgba(8, 20, 24, 0.18);
}

.home-page .grid--places .place-card:nth-child(1) { background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(246, 240, 232, 0.98)); }
.home-page .grid--places .place-card:nth-child(2) { background: linear-gradient(180deg, rgba(246, 251, 253, 0.98), rgba(235, 242, 245, 0.98)); }
.home-page .grid--places .place-card:nth-child(3) { background: linear-gradient(180deg, rgba(248, 249, 249, 0.98), rgba(237, 241, 242, 0.98)); }
.home-page .grid--places .place-card:nth-child(4) { background: linear-gradient(180deg, rgba(246, 250, 252, 0.98), rgba(233, 239, 243, 0.98)); }
.home-page .grid--places .place-card:nth-child(5) { background: linear-gradient(180deg, rgba(249, 252, 246, 0.98), rgba(237, 242, 231, 0.98)); }
.home-page .grid--places .place-card:nth-child(6) { background: linear-gradient(180deg, rgba(255, 249, 244, 0.98), rgba(244, 236, 226, 0.98)); }

.collection-page {
  --collection-accent: #3a6675;        /* a11y: deepened from #627f89 → AA on paper (5.69:1) */
  --collection-accent-tint: #627f89;   /* original steel-blue, decorative only (borders/backgrounds) */
  --collection-secondary: rgba(98, 127, 137, 0.12);
  --collection-paper: rgba(248, 250, 249, 0.92);
}

.collection-page .hero {
  background:
    radial-gradient(circle at 78% 16%, rgba(98, 127, 137, 0.09), transparent 31%),
    radial-gradient(circle at 15% 82%, rgba(181, 80, 58, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(248, 250, 249, 0.97), rgba(239, 243, 240, 0.96));
}

.collection-page .hero-copy h1 {
  max-width: 10ch;
}

.collection-page .hero .lede {
  max-width: 60ch;
}

.collection-page .hero-media {
  transform: rotate(-0.35deg);
  box-shadow: 0 28px 58px rgba(20, 43, 56, 0.14), 0 0 0 1px rgba(98, 127, 137, 0.18);
}

.collection-page .hero-media::before {
  border-color: rgba(98, 127, 137, 0.22);
}

.collection-page .section:first-of-type {
  background:
    linear-gradient(180deg, rgba(247, 249, 248, 0.96), rgba(240, 244, 241, 0.96));
}

.collection-page .grid--places {
  position: relative;
  box-shadow: 0 14px 28px rgba(15, 41, 48, 0.08);
}

.collection-page .grid--places::before {
  content: "KOLLEKTION";
  position: absolute;
  top: -0.95rem;
  right: 0;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(98, 127, 137, 0.2);
  background: rgba(98, 127, 137, 0.08);
  color: var(--collection-accent, #3a6675);   /* a11y: AA on paper (5.69:1) */
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.collection-page .grid--places .place-card {
  background: linear-gradient(180deg, rgba(250, 252, 251, 0.98), rgba(241, 245, 242, 0.98));
}

.collection-page .grid--places .place-card:nth-child(2n) {
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.98), rgba(237, 243, 245, 0.98));
}

.collection-page .section--warm {
  background:
    radial-gradient(circle at 14% 18%, rgba(98, 127, 137, 0.07), transparent 30%),
    radial-gradient(circle at 86% 78%, rgba(181, 80, 58, 0.06), transparent 32%),
    linear-gradient(180deg, rgba(246, 247, 243, 0.96), rgba(241, 239, 231, 0.95));
}

.collection-page .decision {
  background: linear-gradient(180deg, rgba(251, 252, 250, 0.88), rgba(242, 244, 238, 0.92));
  border-color: rgba(98, 127, 137, 0.14);
}

.collection-page .decision:first-child::before,
.collection-page .decision:last-child::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 16px;
  width: 34px;
  height: 11px;
  background: rgba(208, 212, 198, 0.68);
  border: 1px solid rgba(122, 118, 102, 0.12);
  transform: rotate(-8deg);
}


/* ═══════════════════════════════════════
   COMPONENT: Atlas Panel / Source Slips / Evidence Strip
   ═══════════════════════════════════════ */

.atlas-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1px;
  margin-top: clamp(1.6rem, 4vw, 2.6rem);
  background: var(--line);
  box-shadow: 0 14px 30px rgba(15, 41, 48, 0.08);
}

.atlas-panel--slim {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: clamp(1.4rem, 3vw, 2rem);
}

.atlas-panel__feature {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(243, 236, 225, 0.96));
  overflow: hidden;
}

.atlas-panel__feature::after {
  content: "ROUTE ATLAS";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.18rem 0.48rem;
  border: 1px solid rgba(181, 80, 58, 0.2);
  background: rgba(181, 80, 58, 0.08);
  color: var(--rust);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.atlas-panel__feature h3 {
  max-width: 14ch;
  margin-bottom: 0.7rem;
  font-size: clamp(1.5rem, 2.2vw, 2.15rem);
}

.atlas-panel__feature p:last-child {
  max-width: 46ch;
  color: var(--ink-soft);
}

.atlas-panel__fragments {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}

.source-slip {
  position: relative;
  padding: 1.2rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, rgba(252, 251, 248, 0.985), rgba(243, 240, 233, 0.985));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.source-slip::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 16px;
  width: 34px;
  height: 11px;
  background: rgba(213, 203, 176, 0.7);
  border: 1px solid rgba(122, 118, 102, 0.14);
  transform: rotate(-8deg);
}

.source-slip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/textures/summer-fabric-scrap.webp') center / 340px auto repeat;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.source-slip--map {
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.96), rgba(235, 242, 244, 0.96));
}

.source-slip--note {
  background: linear-gradient(180deg, rgba(249, 250, 247, 0.96), rgba(238, 242, 234, 0.96));
}

.source-slip__kicker {
  margin: 0 0 0.35rem;
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.source-slip__title {
  margin: 0 0 0.42rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.2;
  color: var(--ink);
}

.source-slip__text {
  margin: 0;
  color: var(--ink-readable);
  font-size: 0.94rem;
  line-height: 1.56;
}

.evidence-strip {
  padding-top: clamp(var(--r-5), 5vw, var(--r-8));
  padding-bottom: clamp(var(--r-5), 5vw, var(--r-8));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 14% 18%, rgba(181, 80, 58, 0.06), transparent 30%),
    linear-gradient(180deg, rgba(247, 243, 236, 0.96), rgba(241, 237, 228, 0.95));
}

.evidence-strip--compact {
  padding-top: clamp(var(--r-3), 4vw, var(--r-5));
  padding-bottom: clamp(var(--r-3), 4vw, var(--r-5));
}

.evidence-strip__head {
  max-width: var(--content-width);
  margin-bottom: clamp(var(--r-2), 3vw, var(--r-3));
}

.evidence-strip__head h2 {
  max-width: 14ch;
}

.evidence-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--content-width);
  background: var(--line);
}

.evidence-strip--compact .evidence-strip__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.evidence-strip__item {
  position: relative;
  padding: 1rem 1rem 1.1rem;
  background: rgba(255, 252, 246, 0.96);
}

.evidence-strip__item:nth-child(2n) {
  background: rgba(246, 249, 249, 0.96);
}

.evidence-strip__label {
  margin: 0 0 0.45rem;
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  font-variant-numeric: oldstyle-nums;
}

.evidence-strip__item h3 {
  margin-bottom: 0.45rem;
  font-size: 1.08rem;
}

.evidence-strip__item p:last-child {
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.55;
}

.home-page .atlas-panel__feature {
  background: linear-gradient(180deg, rgba(255, 251, 245, 0.96), rgba(244, 236, 225, 0.96));
}

.collection-page .atlas-panel__feature,
.collection-page .source-slip,
.collection-page .evidence-strip__item {
  background: linear-gradient(180deg, rgba(249, 252, 250, 0.96), rgba(239, 244, 241, 0.96));
}

.collection-page .atlas-panel__feature::after,
.collection-page .source-slip__kicker,
.collection-page .evidence-strip__label {
  color: var(--collection-accent);          /* a11y: AA on paper (5.69:1) */
}

.collection-page .atlas-panel__feature::after {
  border-color: rgba(98, 127, 137, 0.22);
  background: rgba(98, 127, 137, 0.08);
}

.place-page .evidence-strip {
  background:
    radial-gradient(circle at 14% 18%, color-mix(in srgb, var(--place-accent) 10%, transparent), transparent 30%),
    linear-gradient(180deg, color-mix(in srgb, var(--place-paper) 92%, #fff), rgba(241, 237, 228, 0.95));
  border-top-color: color-mix(in srgb, var(--place-accent) 22%, var(--line));
  border-bottom-color: color-mix(in srgb, var(--place-accent) 22%, var(--line));
}

.place-page .evidence-strip__label,
.place-page .evidence-strip .kicker {
  color: var(--place-accent);
}

.place-page .evidence-strip__item {
  background: color-mix(in srgb, var(--place-paper) 92%, #fff);
}

.place-page .evidence-strip__item:nth-child(2n) {
  background: color-mix(in srgb, var(--place-paper) 86%, rgba(255, 255, 255, 0.96));
}

.place-page .evidence-strip__item::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 14px;
  width: 32px;
  height: 10px;
  background: rgba(213, 203, 176, 0.66);
  border: 1px solid rgba(122, 118, 102, 0.12);
  transform: rotate(-7deg);
}

.place--longyearbyen .evidence-strip {
  background:
    linear-gradient(180deg, rgba(245, 247, 248, 0.96), rgba(233, 237, 239, 0.96)),
    repeating-linear-gradient(0deg, rgba(122, 130, 135, 0.03) 0 2px, transparent 2px 11px);
}

.place--longyearbyen .evidence-strip__item::before {
  background: rgba(201, 206, 210, 0.74);
}

.place--tromso .evidence-strip {
  background:
    radial-gradient(circle at 82% 16%, rgba(83, 127, 154, 0.09), transparent 32%),
    linear-gradient(180deg, rgba(247, 251, 253, 0.96), rgba(235, 242, 245, 0.96));
}

.place--molde .evidence-strip {
  background:
    radial-gradient(circle at 18% 16%, rgba(134, 179, 196, 0.1), transparent 32%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(243, 239, 232, 0.96));
}

.place--molde .evidence-strip__item {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.97), rgba(246, 241, 234, 0.96));
}

.place--molde .evidence-strip__item:nth-child(2n) {
  background: linear-gradient(180deg, rgba(248, 252, 252, 0.97), rgba(239, 246, 248, 0.96));
}

.place--molde .evidence-strip__item::before {
  background: rgba(222, 196, 158, 0.7);
}

.place--nordkap .evidence-strip {
  background:
    linear-gradient(180deg, rgba(246, 250, 252, 0.96), rgba(232, 239, 243, 0.96)),
    repeating-linear-gradient(-3deg, rgba(106, 134, 153, 0.04) 0 16px, transparent 16px 28px);
}

.place--nordkap .evidence-strip__item {
  background: linear-gradient(180deg, rgba(249, 252, 253, 0.97), rgba(238, 244, 247, 0.96));
}

.place--nordkap .evidence-strip__item:nth-child(2n) {
  background: linear-gradient(180deg, rgba(241, 247, 250, 0.97), rgba(232, 239, 243, 0.96));
}

.place--nordkap .evidence-strip__item::before {
  background: rgba(188, 201, 210, 0.76);
  transform: rotate(-4deg);
}

.place--olden .evidence-strip {
  background:
    radial-gradient(circle at 16% 18%, rgba(86, 115, 71, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(249, 252, 247, 0.96), rgba(236, 242, 231, 0.96));
}

.place--olden .evidence-strip__item {
  background: linear-gradient(180deg, rgba(250, 252, 247, 0.97), rgba(241, 246, 236, 0.96));
}

.place--olden .evidence-strip__item:nth-child(2n) {
  background: linear-gradient(180deg, rgba(245, 250, 241, 0.97), rgba(235, 242, 231, 0.96));
}

.place--olden .evidence-strip__item::before {
  background: rgba(196, 205, 151, 0.74);
}

.place--stavanger .evidence-strip {
  background:
    radial-gradient(circle at 14% 18%, rgba(164, 103, 71, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 249, 244, 0.96), rgba(244, 236, 226, 0.96));
}

.place--stavanger .evidence-strip__item::before {
  background: rgba(215, 189, 148, 0.7);
}


/* ═══════════════════════════════════════
   PLACE TEMPERATURES
   ═══════════════════════════════════════ */

.place-page {
  --place-accent: var(--rust);
  --place-secondary: rgba(26, 63, 71, 0.08);
  --place-haze: rgba(196, 221, 227, 0.2);
  --place-paper: rgba(255, 255, 255, 0.88);
  --place-ink: var(--ink);
  --place-grain-opacity: 0.18;
  --place-photo-sat: 0.92;
  --place-photo-contrast: 0.98;
  --hero-fit: cover;
  --scrapbook-fit: cover;
  --figure-fit: contain;
  --frame-bg-top: rgba(255, 252, 247, 0.98);
  --frame-bg-bottom: rgba(239, 232, 222, 0.95);
  --hero-anchor: 50% 18%;
  --scrapbook-anchor: 50% 18%;
  --figure-anchor: 50% 50%;
  --hero-anchor-desktop: var(--hero-anchor);
  --hero-anchor-tablet: var(--hero-anchor);
  --hero-anchor-mobile: 50% 24%;
  --scrapbook-anchor-desktop: var(--scrapbook-anchor);
  --scrapbook-anchor-mobile: 50% 24%;
  --figure-anchor-desktop: var(--figure-anchor);
  --figure-anchor-mobile: 50% 50%;
  --hero-focus: 50% 18%;
  --scrapbook-focus: 50% 18%;
  --card-focus: 50% 22%;
  --type-kicker-tracking: 0.2em;
  --type-lede-leading: 1.55;
  --type-prose-size: 1.06rem;
  --type-prose-leading: 1.7;
  --type-prose-gap: 1.25rem;
  --type-h2-size: clamp(1.6rem, 3vw, 2.4rem);
  --type-h2-top: 4rem;
  --type-h2-bottom: 1rem;
  --type-h3-tracking: 0.12em;
  --type-quote-leading: 1.5;
  /* Latitude gradient defaults — overridden per place */
  --measure: 42ch;
  --leading: 1.45;
  --tracking: -0.003em;
}

.place-page .kicker {
  letter-spacing: var(--type-kicker-tracking);
}

.place-page {
  color: var(--place-ink);
}

.place-page .lede {
  line-height: var(--type-lede-leading);
}

.place-page .prose {
  font-size: var(--type-prose-size);
  line-height: var(--type-prose-leading);
}

.place-page .prose p + p {
  margin-top: var(--type-prose-gap);
}

.place-page .prose h2 {
  margin-top: var(--type-h2-top);
  margin-bottom: var(--type-h2-bottom);
  font-size: var(--type-h2-size);
}

.place-page .prose h3 {
  letter-spacing: var(--type-h3-tracking);
}

.place-page .prose blockquote {
  line-height: var(--type-quote-leading);
}

/* ── Latitude gradient: text loosens as we go north ── */
.place-page .prose > .lede:first-child,
.place-page .second-door__pull,
.place-page .ortsbuch-panel__quote {
  max-width: var(--measure);
  line-height: var(--leading);
  letter-spacing: var(--tracking);
}

.place-page .kicker,
.place-page .scrapbook-strip__card figcaption span {
  color: var(--place-accent);
}

.place-page .marker::before {
  background: var(--place-accent);
}

.place-page .line-accent,
.place-page .scrapbook-strip::before {
  background: linear-gradient(90deg, var(--place-accent), transparent);
}

.place-page .hero::before {
  background: linear-gradient(135deg, transparent 30%, var(--place-haze));
}

.place-page .scrapbook-strip {
  background:
    radial-gradient(circle at 10% 20%, color-mix(in srgb, var(--place-accent) 16%, transparent), transparent 40%),
    radial-gradient(circle at 90% 80%, var(--place-secondary), transparent 42%),
    linear-gradient(180deg, var(--place-paper), rgba(245, 241, 232, 0.96));
}

.place-page .hero--place .hero-media img,
.place-page .scrapbook-strip__card img {
  filter: saturate(var(--place-photo-sat)) contrast(var(--place-photo-contrast));
}

.place-page .reality-cut__head {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--place-accent) 32%, transparent), rgba(181, 80, 58, 0.02)),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.05) 0 8px, transparent 8px 16px);
}

.place-page .reality-cut__card--myth h3 {
  color: color-mix(in srgb, var(--place-accent) 72%, #f7b8a9);
}

/* Molde: hell, luftig, weich */
.place--molde {
  --place-accent: #6f9db0;
  --place-accent-readable: #3f6673;
  --place-secondary: rgba(183, 200, 189, 0.2);
  --place-haze: rgba(197, 226, 236, 0.22);
  --place-paper: color-mix(in srgb, var(--paper-raw) 78%, white);
  --place-ink: #263232;
  --place-grain-opacity: 0.16;
  --place-photo-sat: 0.95;
  --place-photo-contrast: 0.97;
  --hero-focus: 52% 16%;
  --scrapbook-focus: 52% 17%;
  --card-focus: 52% 22%;
  --hero-anchor: 56% 22%;
  --scrapbook-anchor: 55% 20%;
  --figure-anchor: 52% 42%;
  --hero-anchor-tablet: 55% 24%;
  --hero-anchor-mobile: 52% 28%;
  --scrapbook-anchor-mobile: 52% 26%;
  --figure-anchor-mobile: 50% 46%;
  --type-kicker-tracking: 0.21em;
  --type-lede-leading: 1.6;
  --type-prose-size: 1.07rem;
  --type-prose-leading: 1.74;
  --type-prose-gap: 1.28rem;
  --type-h2-top: 4.15rem;
  /* 62°44'N — latitude gradient */
  --measure: 40ch;
  --leading: 1.42;
  --tracking: -0.004em;
}

.place--molde .hero {
  padding-top: clamp(5rem, 12vw, 9rem);
  padding-bottom: clamp(3.5rem, 8vw, 6.8rem);
}

.place--molde .hero-copy h1 {
  max-width: 11ch;
}

.place--molde .hero-media {
  transform: rotate(-0.35deg);
  box-shadow: 0 26px 56px rgba(72, 111, 126, 0.14), 0 0 0 1px rgba(182, 106, 82, 0.14);
}

.place--molde .scrapbook-strip {
  background:
    radial-gradient(circle at 18% 16%, rgba(134, 179, 196, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(243, 239, 232, 0.96));
}

.place--molde .scrapbook-strip::after {
  background:
    url("/public/assets/textures/summer-fjord-wash.webp") center / 720px auto repeat,
    url("/public/assets/textures/summer-lupines.webp") center / 300px auto repeat;
  opacity: 0.08;
}

.place--molde .insight-ribbon {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.95), rgba(243, 239, 232, 0.96));
}

.place--molde .insight-ribbon__head::after {
  content: "PANORAMA";
}

.place--molde .decision,
.place--molde .map-card,
.place--molde .weather-logic,
.place--molde .note-card {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.88), rgba(244, 239, 232, 0.92));
}

.place--molde .second-door {
  background: linear-gradient(180deg, rgba(252, 248, 243, 0.95), rgba(243, 237, 228, 0.96));
}

/* Tromso: urban-arktisch */
.place--tromso {
  --place-accent: #4f7f95;
  --place-accent-readable: #3a5f6e;
  --place-secondary: rgba(95, 100, 100, 0.18);
  --place-haze: rgba(173, 208, 227, 0.22);
  --place-paper: color-mix(in srgb, var(--paper-cold) 70%, white);
  --place-ink: #1c3038;
  --place-grain-opacity: 0.18;
  --place-photo-sat: 0.88;
  --place-photo-contrast: 1.02;
  --hero-focus: 54% 16%;
  --scrapbook-focus: 54% 17%;
  --card-focus: 54% 22%;
  --hero-anchor: 54% 24%;
  --scrapbook-anchor: 53% 22%;
  --figure-anchor: 52% 46%;
  --hero-anchor-tablet: 54% 26%;
  --hero-anchor-mobile: 50% 30%;
  --scrapbook-anchor-mobile: 50% 30%;
  --figure-anchor-mobile: 50% 50%;
  --type-kicker-tracking: 0.19em;
  --type-lede-leading: 1.52;
  --type-prose-size: 1.05rem;
  --type-prose-leading: 1.66;
  --type-prose-gap: 1.2rem;
  --type-h2-size: clamp(1.58rem, 2.8vw, 2.3rem);
  --type-h2-top: 3.85rem;
  /* 69°39'N — latitude gradient */
  --measure: 44ch;
  --leading: 1.48;
  --tracking: -0.002em;
}

.place--tromso .scrapbook-strip__card {
  transform: none;
  border-color: rgba(79, 127, 149, 0.26);
}

.place--tromso .hero-copy h1 {
  max-width: 10.5ch;
}

.place--tromso .hero-media {
  transform: rotate(-0.12deg);
  box-shadow: 0 28px 60px rgba(20, 43, 56, 0.16), 0 0 0 1px rgba(79, 127, 149, 0.18);
}

.place--tromso .scrapbook-strip {
  background:
    radial-gradient(circle at 82% 16%, rgba(83, 127, 154, 0.11), transparent 32%),
    linear-gradient(180deg, rgba(249, 252, 253, 0.95), rgba(236, 243, 246, 0.96));
}

.place--tromso .scrapbook-strip::after {
  background:
    url("/public/assets/textures/summer-rain-wash.webp") center / 780px auto repeat,
    url("/public/assets/textures/summer-fabric-scrap.webp") center / 340px auto repeat;
  opacity: 0.07;
}

.place--tromso .scrapbook-strip__card {
  transform: rotate(0deg);
}

.place--tromso .insight-ribbon {
  background: linear-gradient(180deg, rgba(248, 252, 253, 0.95), rgba(235, 242, 245, 0.96));
}

.place--tromso .insight-ribbon__head::after {
  content: "CITY EDGE";
}

.place--tromso .decision,
.place--tromso .map-card,
.place--tromso .weather-logic,
.place--tromso .note-card {
  background: linear-gradient(180deg, rgba(248, 252, 253, 0.88), rgba(236, 243, 246, 0.92));
  border-color: rgba(79, 127, 149, 0.16);
}

.place--tromso .reality-cut__head {
  background:
    linear-gradient(90deg, rgba(79, 127, 149, 0.34), rgba(79, 127, 149, 0.03)),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.04) 0 8px, transparent 8px 16px);
}

/* Longyearbyen: trocken, kalt, reduziert */
.place--longyearbyen {
  --place-accent: var(--coal-black);
  --place-secondary: rgba(155, 77, 53, 0.18);
  --place-haze: rgba(185, 193, 201, 0.18);
  --place-paper: color-mix(in srgb, var(--paper-cold) 88%, white);
  --place-ink: #15191a;
  --place-grain-opacity: 0.28;
  --place-photo-sat: 0.72;
  --place-photo-contrast: 1.03;
  --hero-focus: 52% 17%;
  --scrapbook-focus: 52% 18%;
  --card-focus: 52% 24%;
  --hero-anchor: 52% 30%;
  --scrapbook-anchor: 52% 28%;
  --figure-anchor: 50% 50%;
  --hero-anchor-tablet: 51% 32%;
  --hero-anchor-mobile: 50% 34%;
  --scrapbook-anchor-mobile: 50% 34%;
  --figure-anchor-mobile: 50% 52%;
  --type-kicker-tracking: 0.205em;
  --type-lede-leading: 1.58;
  --type-prose-size: 1.03rem;
  --type-prose-leading: 1.68;
  --type-prose-gap: 1.18rem;
  --type-h2-size: clamp(1.55rem, 2.7vw, 2.2rem);
  --type-h2-top: 3.95rem;
  --type-quote-leading: 1.46;
  /* 78°13'N — latitude gradient: most open */
  --measure: 48ch;
  --leading: 1.58;
  --tracking: 0.005em;
}

.place--longyearbyen .hero {
  padding-top: clamp(4.8rem, 11vw, 8.2rem);
  padding-bottom: clamp(4rem, 9vw, 7rem);
}

.place--longyearbyen .scrapbook-strip {
  box-shadow: none;
}

.place--longyearbyen .hero-copy h1 {
  max-width: 10ch;
}

.place--longyearbyen .hero-media {
  transform: rotate(-0.18deg);
  box-shadow: 0 26px 54px rgba(12, 18, 22, 0.18), 0 0 0 1px rgba(122, 130, 135, 0.16);
}

.place--longyearbyen .hero-media::before {
  border-color: rgba(122, 130, 135, 0.24);
}

.place--longyearbyen .hero-context,
.place--longyearbyen .decision,
.place--longyearbyen .map-card,
.place--longyearbyen .weather-logic,
.place--longyearbyen .note-card,
.place--longyearbyen .safety {
  background: linear-gradient(180deg, rgba(248, 249, 248, 0.9), rgba(236, 239, 241, 0.92));
  border-color: rgba(122, 130, 135, 0.18);
}

.place--longyearbyen .scrapbook-strip {
  background:
    linear-gradient(180deg, rgba(249, 250, 250, 0.94), rgba(234, 238, 240, 0.96)),
    repeating-linear-gradient(0deg, rgba(122, 130, 135, 0.03) 0 2px, transparent 2px 12px);
}

.place--longyearbyen .scrapbook-strip::after {
  background:
    url("/public/assets/textures/wet-fjord-stones.webp") center / 340px auto repeat,
    url("/public/assets/textures/summer-rain-wash.webp") center / 680px auto repeat;
  opacity: 0.08;
}

.place--longyearbyen .scrapbook-strip__card {
  transform: rotate(0deg);
  background: linear-gradient(180deg, rgba(252, 252, 251, 0.95), rgba(239, 242, 243, 0.95));
  border-color: rgba(122, 130, 135, 0.18);
}

.place--longyearbyen .scrapbook-strip__card::before,
.place--longyearbyen .scrapbook-strip__card::after {
  background: rgba(201, 206, 210, 0.76);
}

.place--longyearbyen .insight-ribbon {
  background: linear-gradient(180deg, rgba(247, 249, 250, 0.94), rgba(234, 238, 241, 0.96));
  border-color: rgba(122, 130, 135, 0.16);
}

.place--longyearbyen .insight-ribbon::after {
  background: url("/public/assets/textures/summer-rain-wash.webp") center / 820px auto repeat;
  opacity: 0.06;
}

.place--longyearbyen .insight-ribbon__head {
  border-bottom-style: solid;
  border-bottom-color: rgba(122, 130, 135, 0.18);
}

.place--longyearbyen .insight-ribbon__head::after {
  content: "FIELD LOG";
  border-color: rgba(122, 130, 135, 0.22);
  background: rgba(122, 130, 135, 0.08);
  color: #5f666b;
}

.place--longyearbyen .reality-cut {
  background: linear-gradient(180deg, rgba(18, 24, 28, 0.98), rgba(10, 14, 17, 0.98));
}

.place--longyearbyen .reality-cut__head {
  background:
    linear-gradient(90deg, rgba(122, 130, 135, 0.34), rgba(122, 130, 135, 0.02)),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.04) 0 7px, transparent 7px 14px);
}

.place--longyearbyen .reality-cut__stamp {
  border-color: rgba(196, 221, 227, 0.24);
  color: rgba(196, 221, 227, 0.9);
}

.place--longyearbyen .second-door {
  background: linear-gradient(180deg, rgba(242, 244, 245, 0.94), rgba(233, 237, 239, 0.96));
  border-left-color: #7a8287;
}

.place--longyearbyen .second-door::before {
  color: #6d757a;
}

.place--longyearbyen .scrapbook-strip__card::before,
.place--longyearbyen .scrapbook-strip__card::after {
  opacity: 0.5;
}

/* Nordkap: windig, rau, horizontal */
.place--nordkap {
  --place-accent: #516a78;
  --place-accent-readable: #3d5260;
  --place-secondary: rgba(94, 78, 67, 0.18);
  --place-haze: rgba(173, 198, 213, 0.2);
  --place-paper: color-mix(in srgb, var(--paper-cold) 72%, var(--wood-white));
  --place-ink: #202827;
  --place-grain-opacity: 0.22;
  --place-photo-sat: 0.84;
  --place-photo-contrast: 1.04;
  --hero-focus: 51% 18%;
  --scrapbook-focus: 51% 18%;
  --card-focus: 51% 24%;
  --hero-anchor: 50% 34%;
  --scrapbook-anchor: 50% 34%;
  --figure-anchor: 50% 48%;
  --hero-anchor-tablet: 50% 36%;
  --hero-anchor-mobile: 50% 38%;
  --scrapbook-anchor-mobile: 50% 36%;
  --figure-anchor-mobile: 50% 52%;
  --type-kicker-tracking: 0.215em;
  --type-lede-leading: 1.57;
  --type-prose-size: 1.04rem;
  --type-prose-leading: 1.67;
  --type-prose-gap: 1.22rem;
  --type-h2-size: clamp(1.62rem, 2.95vw, 2.32rem);
  --type-h2-top: 4.05rem;
  /* 71°10'N — latitude gradient */
  --measure: 46ch;
  --leading: 1.52;
  --tracking: 0em;
}

.place--nordkap .hero-media img {
  aspect-ratio: 4 / 5;
  object-position: var(--hero-focus, 51% 18%);
}

.place--nordkap .hero-copy h1 {
  max-width: 11ch;
}

.place--nordkap .hero-media {
  transform: rotate(-0.08deg);
  box-shadow: 0 28px 56px rgba(18, 34, 40, 0.16), 0 0 0 1px rgba(106, 134, 153, 0.18);
}

.place--nordkap .scrapbook-strip {
  background:
    linear-gradient(180deg, rgba(247, 250, 252, 0.94), rgba(232, 239, 243, 0.96)),
    repeating-linear-gradient(-3deg, rgba(106, 134, 153, 0.04) 0 16px, transparent 16px 28px);
}

.place--nordkap .scrapbook-strip::after {
  background:
    url("/public/assets/textures/wet-fjord-stones.webp") center / 380px auto repeat,
    url("/public/assets/textures/summer-fjord-wash.webp") center / 760px auto repeat;
  opacity: 0.08;
}

.place--nordkap .scrapbook-strip__card:nth-child(1) { transform: rotate(0.2deg); }

.place--nordkap .scrapbook-strip__card:nth-child(2) { transform: rotate(-0.18deg); }

.place--nordkap .insight-ribbon {
  background: linear-gradient(180deg, rgba(246, 250, 252, 0.94), rgba(232, 239, 243, 0.96));
}

.place--nordkap .insight-ribbon__head::after {
  content: "WIND CUT";
}

.place--nordkap .decision,
.place--nordkap .map-card,
.place--nordkap .weather-logic,
.place--nordkap .note-card {
  background: linear-gradient(180deg, rgba(247, 251, 252, 0.88), rgba(233, 239, 243, 0.92));
  border-color: rgba(106, 134, 153, 0.16);
}

.place--nordkap .second-door {
  background: linear-gradient(180deg, rgba(243, 248, 250, 0.95), rgba(232, 239, 243, 0.96));
}

.place--nordkap .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 8% 0;
  height: 42%;
  pointer-events: none;
  background: repeating-linear-gradient(
    -2deg,
    transparent 0 18px,
    rgba(26, 63, 71, 0.05) 18px 20px
  );
}

/* Olden: grun, vertikal, Schonheit mit Widerstand */
.place--olden {
  --place-accent: var(--fjord-green);
  --place-accent-readable: #3e5740;
  --place-secondary: rgba(143, 184, 189, 0.2);
  --place-haze: rgba(167, 210, 186, 0.2);
  --place-paper: #f1efe2;
  --place-ink: #1f2b24;
  --place-grain-opacity: 0.18;
  --place-photo-sat: 0.98;
  --place-photo-contrast: 0.99;
  --hero-focus: 61% 18%;
  --scrapbook-focus: 61% 18%;
  --card-focus: 61% 24%;
  --hero-anchor: 60% 24%;
  --scrapbook-anchor: 60% 22%;
  --figure-anchor: 54% 46%;
  --hero-anchor-tablet: 58% 26%;
  --hero-anchor-mobile: 56% 30%;
  --scrapbook-anchor-mobile: 56% 28%;
  --figure-anchor-mobile: 52% 50%;
  --type-kicker-tracking: 0.205em;
  --type-lede-leading: 1.6;
  --type-prose-size: 1.07rem;
  --type-prose-leading: 1.73;
  --type-prose-gap: 1.3rem;
  --type-h2-top: 4.2rem;
  --type-h2-size: clamp(1.64rem, 3.05vw, 2.36rem);
  /* 61°48'N — latitude gradient */
  --measure: 42ch;
  --leading: 1.45;
  --tracking: -0.003em;
}

.place--olden .scrapbook-strip__card img {
  aspect-ratio: 3 / 4;
  object-position: 62% 28%;
}

.place--olden .hero-copy h1 {
  max-width: 12ch;
}

.place--olden .hero-media {
  transform: rotate(-0.4deg);
  box-shadow: 0 28px 58px rgba(53, 78, 46, 0.16), 0 0 0 1px rgba(86, 115, 71, 0.18);
}

.place--olden .scrapbook-strip {
  background:
    radial-gradient(circle at 16% 18%, rgba(86, 115, 71, 0.1), transparent 34%),
    linear-gradient(180deg, rgba(250, 252, 247, 0.95), rgba(238, 243, 232, 0.96));
}

.place--olden .scrapbook-strip::after {
  background:
    url("/public/assets/textures/summer-lupines.webp") center / 320px auto repeat,
    url("/public/assets/textures/summer-fjord-wash.webp") center / 760px auto repeat;
  opacity: 0.08;
}

.place--olden .scrapbook-strip__card:nth-child(1) { transform: rotate(0.5deg); }

.place--olden .scrapbook-strip__card:nth-child(2) { transform: rotate(-0.45deg); }

.place--olden .insight-ribbon {
  background: linear-gradient(180deg, rgba(249, 252, 247, 0.94), rgba(236, 242, 231, 0.96));
}

.place--olden .insight-ribbon__head::after {
  content: "TAL / HÖHE";
}

.place--olden .decision,
.place--olden .map-card,
.place--olden .weather-logic,
.place--olden .note-card {
  background: linear-gradient(180deg, rgba(250, 252, 247, 0.88), rgba(238, 243, 232, 0.92));
  border-color: rgba(86, 115, 71, 0.16);
}

.place--olden .second-door {
  background: linear-gradient(180deg, rgba(247, 250, 241, 0.95), rgba(237, 243, 232, 0.96));
}

/* Stavanger: warm, holzig, menschlich */
.place--stavanger {
  --place-accent: #a46747;
  --place-accent-readable: #7a3d2a;
  --place-secondary: rgba(180, 154, 99, 0.18);
  --place-haze: rgba(224, 194, 170, 0.16);
  --place-paper: color-mix(in srgb, var(--wood-white) 86%, white);
  --place-ink: #2d2720;
  --place-grain-opacity: 0.14;
  --place-photo-sat: 0.9;
  --place-photo-contrast: 0.97;
  --hero-focus: 58% 16%;
  --scrapbook-focus: 58% 17%;
  --card-focus: 58% 23%;
  --hero-anchor: 58% 30%;
  --scrapbook-anchor: 58% 26%;
  --figure-anchor: 54% 48%;
  --hero-anchor-tablet: 56% 32%;
  --hero-anchor-mobile: 54% 34%;
  --scrapbook-anchor-mobile: 54% 32%;
  --figure-anchor-mobile: 50% 52%;
  --type-kicker-tracking: 0.195em;
  --type-lede-leading: 1.56;
  --type-prose-size: 1.06rem;
  --type-prose-leading: 1.71;
  --type-prose-gap: 1.24rem;
  --type-h2-top: 4rem;
  --type-h2-size: clamp(1.6rem, 2.9vw, 2.3rem);
  /* 58°58'N — latitude gradient: densest */
  --measure: 38ch;
  --leading: 1.40;
  --tracking: -0.005em;
}

.place--stavanger .scrapbook-strip {
  box-shadow: 0 2px 8px rgba(86, 52, 32, 0.08);
}

.place--stavanger .hero-copy h1 {
  max-width: 13ch;
}

.place--stavanger .hero-media {
  transform: rotate(-0.6deg);
  box-shadow: 0 24px 56px rgba(86, 52, 32, 0.16), 0 0 0 1px rgba(164, 103, 71, 0.18);
}

.place--stavanger .hero-media::before {
  border-color: rgba(164, 103, 71, 0.22);
}

.place--stavanger .scrapbook-strip {
  background:
    radial-gradient(circle at 14% 18%, rgba(164, 103, 71, 0.09), transparent 35%),
    linear-gradient(180deg, rgba(255, 250, 245, 0.95), rgba(244, 236, 225, 0.96));
}

.place--stavanger .scrapbook-strip::after {
  background:
    url("/public/assets/textures/summer-driftwood.webp") center / 360px auto repeat,
    url("/public/assets/textures/summer-fabric-scrap.webp") center / 420px auto repeat;
  opacity: 0.1;
}

.place--stavanger .scrapbook-strip__card:nth-child(1) { transform: rotate(0.95deg); }

.place--stavanger .scrapbook-strip__card:nth-child(2) { transform: rotate(-0.75deg); }

.place--stavanger .scrapbook-strip__card::before,
.place--stavanger .scrapbook-strip__card::after,
.place--stavanger .note-card::before,
.place--stavanger .second-door-card::before {
  background: rgba(215, 189, 148, 0.72);
}

.place--stavanger .insight-ribbon {
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.94), rgba(244, 236, 226, 0.96));
}

.place--stavanger .insight-ribbon::after {
  background: url("/public/assets/textures/summer-driftwood.webp") center / 720px auto repeat;
  opacity: 0.07;
}

.place--stavanger .insight-ribbon__head::after {
  content: "HAFENNOTIZ";
  background: rgba(164, 103, 71, 0.09);
}

.place--stavanger .decision,
.place--stavanger .map-card,
.place--stavanger .weather-logic,
.place--stavanger .note-card {
  background: linear-gradient(180deg, rgba(255, 250, 246, 0.88), rgba(246, 239, 231, 0.92));
  border-color: rgba(164, 103, 71, 0.16);
}

.place--stavanger .reality-cut__head {
  background:
    linear-gradient(90deg, rgba(164, 103, 71, 0.34), rgba(164, 103, 71, 0.02)),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.04) 0 8px, transparent 8px 16px);
}

.place--stavanger .second-door {
  background: linear-gradient(180deg, rgba(252, 246, 240, 0.95), rgba(244, 236, 226, 0.96));
  border-left-color: #a46747;
}

.place--stavanger .second-door::before {
  color: #a46747;
}

.place--stavanger .map-link {
  background: rgba(255, 255, 255, 0.7);
}

.place--stavanger .map-link:hover {
  background: rgba(248, 239, 231, 0.96);
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(196, 221, 227, 0.08));
  pointer-events: none;
}

.hero-copy {
  max-width: 780px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  margin-bottom: 1.25rem;
  text-wrap: balance;
}

.hero-media {
  position: relative;
  align-self: center;
  z-index: 1;
  padding: clamp(0.5rem, 1vw, 0.8rem);
  background: linear-gradient(180deg, var(--frame-bg-top), var(--frame-bg-bottom));
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 22%, var(--line));
}

.hero-media img {
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: var(--hero-fit, cover);
  object-position: var(--hero-anchor-desktop, var(--hero-anchor, center center));
  box-shadow: var(--shadow-xl);
}

@media (min-width: 921px) {
  .hero-media img.img--landscape {
    aspect-ratio: 16 / 10;
  }

  .hero-media img.img--portrait {
    aspect-ratio: 3 / 4;
    object-position: var(--hero-focus, 50% 18%);
  }

  .hero-media img.img--square {
    aspect-ratio: 1 / 1;
  }
}

.hero-media--asset {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 35vw, 460px);
  padding: clamp(1rem, 2vw, 1.4rem);
  border: 1px solid color-mix(in srgb, var(--rust) 24%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.88), rgba(239, 234, 224, 0.7));
  box-shadow: var(--shadow-lg);
}

.hero-media--asset img {
  width: min(82%, 430px);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 0;
  box-shadow: none;
  filter: drop-shadow(0 18px 26px rgba(28, 38, 39, 0.14));
}

.hero-media--asset figcaption {
  margin-top: 0.7rem;
  max-width: 42ch;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.42;
}

.hero-media--asset::after {
  opacity: 0.48;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(181, 80, 58, 0.15);
  pointer-events: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--line);
  z-index: -1;
}

.hero--place {
  min-height: min(75vh, 780px);
  align-items: center;
}

.hero--place .hero-media {
  transform: rotate(-0.45deg);
  box-shadow: 0 24px 60px rgba(15, 41, 48, 0.2), 0 0 0 1px rgba(181, 80, 58, 0.18);
}

.hero--place .hero-media img {
  filter: saturate(0.92) contrast(0.98);
}

.hero--place .hero-media::before {
  inset: -10px;
  border-color: rgba(181, 80, 58, 0.22);
}

.hero--place .hero-media::after {
  bottom: -18px;
  right: -20px;
  border-color: rgba(181, 80, 58, 0.22);
}

.hero--landing {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  align-items: center;
  gap: clamp(1.75rem, 4vw, 3rem);
}

.hero--landing::after {
  content: "";
  position: absolute;
  inset: auto clamp(1.25rem, 5vw, 5rem) 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(181, 80, 58, 0.4), rgba(26, 63, 71, 0.16), transparent);
  pointer-events: none;
}

.hero--landing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(26, 63, 71, 0.08), transparent 42%),
    radial-gradient(circle at 14% 86%, rgba(181, 80, 58, 0.08), transparent 38%);
  pointer-events: none;
}

.hero--landing .hero-copy {
  max-width: 760px;
}

.hero-pull {
  margin-top: 1rem;
  max-width: 58ch;
  padding: 0.6rem 0 0.05rem 0.95rem;
  border-left: 2px solid rgba(181, 80, 58, 0.48);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.35vw, 1.2rem);
  font-style: italic;
  line-height: 1.5;
  color: color-mix(in srgb, var(--ink-soft) 86%, var(--deep));
  hanging-punctuation: first last;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.hero-route {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin: 1.25rem 0 0;
  padding: 0.45rem 0;
  color: var(--ink-soft);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.hero-route::before {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, color-mix(in srgb, var(--rust) 52%, transparent), color-mix(in srgb, var(--fjord) 32%, transparent), transparent);
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-route span {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.32rem 0.5rem;
  border: 1px solid rgba(24, 24, 20, 0.11);
  background: rgba(255, 252, 246, 0.92);
  box-shadow: 0 8px 22px rgba(15, 41, 48, 0.05);
}

.hero-route span::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--rust);
  transform: rotate(45deg);
}

.hero-route span:not(:last-child)::after {
  display: none;
}

.hero--place .hero-actions {
  margin-top: 1.1rem;
}

.hero--place .hero-actions .button {
  padding: 0.58rem 0.92rem;
}

.hero--place .hero-actions .button--primary {
  background: color-mix(in srgb, var(--rust) 88%, #fff);
  border-color: color-mix(in srgb, var(--rust) 86%, #000);
}

.hero--place .hero-actions .button:not(.button--primary) {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(24, 24, 20, 0.2);
}

.hero--landing .hero-media {
  padding: 0.8rem;
  border: 1px solid rgba(181, 80, 58, 0.24);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(239, 233, 220, 0.72));
}

.hero--landing .hero-media img {
  aspect-ratio: 16 / 11;
  border: 1px solid rgba(26, 26, 24, 0.08);
}

.hero-proof-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 0.72rem;
  border: 1px solid rgba(26, 26, 24, 0.08);
  background: rgba(26, 26, 24, 0.1);
}

.hero-proof-strip__item {
  position: relative;
  min-width: 0;
  margin: 0;
  background: rgba(255, 252, 246, 0.9);
  overflow: hidden;
}

.hero-proof-strip__item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 40%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(14, 20, 22, 0.28));
}

.hero-proof-strip__item img {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
  border: 0;
  filter: saturate(0.86) contrast(0.98);
}

.hero-proof-strip__item figcaption {
  position: absolute;
  left: 0.45rem;
  bottom: 0.38rem;
  max-width: calc(100% - 0.9rem);
  padding: 0.18rem 0.36rem;
  background: rgba(255, 252, 246, 0.94);
  color: #162d33;
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 850;
  letter-spacing: var(--mono-tracking);
  line-height: 1.24;
  text-transform: uppercase;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.65);
  z-index: 1;
}

.hero--landing .hero-media figcaption {
  margin-top: 0.65rem;
  color: color-mix(in srgb, var(--ink) 86%, #000);
  font-size: 0.8rem;
  line-height: 1.45;
  background: rgba(255, 252, 247, 0.88);
  border: 1px solid rgba(22, 22, 18, 0.1);
  padding: 0.44rem 0.52rem;
}

.hero-context {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem 1.1rem;
  align-items: start;
  max-width: min(760px, 100%);
  padding: 0.95rem 1.05rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(10px) saturate(1.08);
  -webkit-backdrop-filter: blur(10px) saturate(1.08);
}

.hero-context__list li {
  color: color-mix(in srgb, var(--ink) 84%, #000);
}

.hero-context__title {
  color: var(--rust);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0.25rem;
}

.hero-context__list {
  margin: 0;
  padding-left: 1.05rem;
  display: grid;
  gap: 0.35rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.55;
}

.hero-context__list strong {
  color: var(--ink);
}

.marker-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.marker {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.88);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  color: var(--deep);
  transition: border-color 0.3s var(--ease-out);
}

.marker::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--rust);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.marker:hover {
  border-color: var(--rust);
}


/* ═══════════════════════════════════════
   COMPONENT: Chapter Nav
   ═══════════════════════════════════════ */

.chapter-nav {
  position: sticky;
  top: 64px;
  z-index: 34;
  margin: calc(clamp(1.25rem, 3vw, 2.1rem) * -0.35) 0 clamp(1.8rem, 4vw, 2.8rem);
  border-top: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 20%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 20%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(244, 238, 228, 0.92));
  box-shadow: 0 14px 32px rgba(15, 41, 48, 0.08);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
}

.chapter-nav__inner {
  max-width: var(--content-width);
  margin: 0 auto;
  padding: 0.72rem clamp(1rem, 4vw, 3rem);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.chapter-nav__label,
.chapter-nav__progress {
  flex: 0 0 auto;
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 74%, var(--ink));
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  white-space: nowrap;
}

.chapter-nav__label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.chapter-nav__label::before {
  content: "";
  width: 18px;
  height: 1px;
  background: currentColor;
}

.chapter-nav__list {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  min-width: 0;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.chapter-nav__list::-webkit-scrollbar {
  display: none;
}

.chapter-nav__list a {
  flex: 0 0 auto;
  padding: 0.42rem 0.68rem;
  border: 1px solid transparent;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.chapter-nav__list a:hover,
.chapter-nav__list a:focus-visible {
  border-color: color-mix(in srgb, var(--place-accent, var(--rust)) 26%, var(--line));
  color: var(--ink);
  background: rgba(255, 255, 255, 0.54);
  outline: none;
}

.chapter-nav__list a.is-active {
  border-color: color-mix(in srgb, var(--place-accent, var(--rust)) 38%, var(--line));
  background: color-mix(in srgb, var(--place-accent, var(--rust)) 12%, white);
  color: var(--ink);
}

.chapter-nav__progress {
  margin-left: auto;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
}


/* ═══════════════════════════════════════
   COMPONENT: Story Figures
   ═══════════════════════════════════════ */

.story-figure {
  margin: clamp(2rem, 5vw, 3.25rem) 0;
  padding: clamp(0.85rem, 1.6vw, 1rem);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--frame-bg-top), var(--frame-bg-bottom));
  box-shadow: var(--shadow-sm);
  transform-origin: left top;
}

.story-figure--fieldbook { transform: rotate(-0.35deg); }

.story-figure--archive { transform: rotate(0.45deg); }

.story-figure--second-door { transform: rotate(-0.2deg); }

.story-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: var(--figure-fit, contain);
  object-position: var(--figure-anchor-desktop, var(--figure-anchor, center));
  padding: clamp(0.3rem, 0.9vw, 0.55rem);
  border: 1px solid rgba(181, 80, 58, 0.14);
  background: linear-gradient(180deg, rgba(250, 247, 241, 0.98), rgba(236, 229, 214, 0.92));
}

.story-figure--fieldbook img {
  object-position: center top;
}

.story-figure--archive img {
  object-position: 50% 18%;
}

@media (min-width: 921px) {
  .story-figure img {
    aspect-ratio: 5 / 4;
  }

  .story-figure img.img--portrait {
    aspect-ratio: 5 / 4;
    object-position: var(--hero-focus, 50% 18%);
  }

  .story-figure img.img--landscape {
    aspect-ratio: 16 / 11;
  }

  .story-figure img.img--square {
    aspect-ratio: 1 / 1;
  }

  .story-figure--second-door img {
    aspect-ratio: 16 / 11;
    object-position: 50% 20%;
  }
}

.story-figure figcaption {
  margin-top: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
  line-height: 1.55;
}

.story-figure figcaption span {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   COMPONENT: Scrapbook Strip
   ═══════════════════════════════════════ */

.scrapbook-strip {
  position: relative;
  isolation: isolate;
  margin: 0 clamp(1.25rem, 5vw, 5rem) clamp(2.8rem, 7vw, 4.5rem);
  padding: clamp(1rem, 2.6vw, 1.4rem);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 10% 20%, rgba(181, 80, 58, 0.08), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(26, 63, 71, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.94), rgba(244, 238, 228, 0.92));
  box-shadow: var(--shadow-sm);
}

.scrapbook-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("/public/assets/textures/summer-fabric-scrap.webp") center / 340px auto repeat,
    url("/public/assets/textures/summer-rain-wash.webp") center / 620px auto repeat;
  opacity: 0.11;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: -1;
}

.scrapbook-strip::before {
  content: "";
  display: block;
  width: clamp(44px, 10vw, 70px);
  height: 2px;
  margin-bottom: clamp(0.75rem, 1.4vw, 1rem);
  background: linear-gradient(90deg, var(--seam), transparent);
}

.scrapbook-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.1rem);
}

.scrapbook-strip__card {
  position: relative;
  padding: 0.55rem;
  border: 1px solid rgba(181, 80, 58, 0.18);
  background: linear-gradient(180deg, var(--frame-bg-top), var(--frame-bg-bottom));
  box-shadow: 0 10px 22px rgba(15, 41, 48, 0.1);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.scrapbook-strip__card:nth-child(1) { transform: rotate(0.65deg); }

.scrapbook-strip__card:nth-child(2) { transform: rotate(-0.55deg); }

.scrapbook-strip__card::before,
.scrapbook-strip__card::after {
  content: "";
  position: absolute;
  width: 44px;
  height: 14px;
  background: rgba(213, 203, 176, 0.72);
  border: 1px solid rgba(122, 118, 102, 0.16);
  transform: rotate(-5deg);
}

.scrapbook-strip__card::before {
  top: -9px;
  left: 16px;
}

.scrapbook-strip__card::after {
  top: -8px;
  right: 16px;
  transform: rotate(7deg);
}

.scrapbook-strip__card img {
  width: 100%;
  height: 100%;
  object-fit: var(--scrapbook-fit, cover);
  object-position: var(--scrapbook-anchor-desktop, var(--scrapbook-anchor, center));
  border: 1px solid var(--line);
  filter: saturate(0.92) contrast(0.98);
  transition: transform 0.45s var(--ease-out), filter 0.45s var(--ease-out);
}

@media (min-width: 921px) {
  .scrapbook-strip__card img {
    aspect-ratio: 3 / 4;
  }

  .scrapbook-strip__card img.img--portrait {
    aspect-ratio: 3 / 4;
    object-position: var(--scrapbook-focus, 50% 18%);
  }

  .scrapbook-strip__card img.img--landscape {
    aspect-ratio: 16 / 11;
  }

  .scrapbook-strip__card img.img--square {
    aspect-ratio: 1 / 1;
  }
}

.scrapbook-strip__card:hover {
  transform: translateY(-3px) rotate(0deg);
  border-color: rgba(181, 80, 58, 0.3);
  box-shadow: 0 16px 30px rgba(15, 41, 48, 0.14);
}

.scrapbook-strip__card:hover img {
  transform: scale(1.02);
  filter: saturate(0.98) contrast(1.02);
}

.scrapbook-strip__card figcaption {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.8rem;
  line-height: 1.35;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(26, 26, 24, 0.18);
  min-height: 3.25rem;
  display: grid;
  align-content: start;
}

.scrapbook-strip__card figcaption span {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

/* Asset passform: collage assets stay fully readable instead of being cropped. */
.scrapbook-strip__card img[src*="/public/assets/curated/places/"][src*="/fieldbook.webp"],
.scrapbook-strip__card img[src*="/public/assets/curated/places/"][src*="/archive.webp"],
.scrapbook-strip__card img[src*="/public/assets/curated/places/"][src*="/history.webp"],
.story-figure img[src*="/public/assets/curated/places/"][src*="/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/"][src*="/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/"][src*="/history.webp"],
.story-figure img[src*="/public/assets/curated/places/"][src*="/second-door.webp"],
.second-door-card__media img[src*="/public/assets/curated/places/"] {
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(181, 80, 58, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 252, 247, 0.98), rgba(240, 234, 223, 0.96));
}

/* Hero framing by place: keeps skyline/horizon in the best visual zone. */
.hero-media img[src*="/public/assets/curated/places/molde/hero.webp"] { object-position: 56% 22%; }
.hero-media img[src*="/public/assets/curated/places/tromso/hero.webp"] { object-position: 54% 24%; }
.hero-media img[src*="/public/assets/curated/places/longyearbyen/hero.webp"] { object-position: 52% 30%; }
.hero-media img[src*="/public/assets/curated/places/nordkap/hero.webp"] { object-position: 50% 34%; }
.hero-media img[src*="/public/assets/curated/places/olden/hero.webp"] { object-position: 60% 24%; }
.hero-media img[src*="/public/assets/curated/places/stavanger/hero.webp"] { object-position: 58% 30%; }

/* Asset-level art direction: exact placement for each collage motif. */
.scrapbook-strip__card img[src*="/public/assets/curated/places/molde/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/molde/fieldbook.webp"] { object-position: 52% 18%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/molde/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/molde/archive.webp"] { object-position: 50% 20%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/tromso/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/tromso/fieldbook.webp"] { object-position: 51% 22%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/tromso/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/tromso/archive.webp"] { object-position: 50% 20%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/longyearbyen/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/longyearbyen/fieldbook.webp"] { object-position: 50% 24%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/longyearbyen/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/longyearbyen/archive.webp"] { object-position: 50% 26%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/nordkap/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/nordkap/fieldbook.webp"] { object-position: 50% 30%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/nordkap/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/nordkap/archive.webp"] { object-position: 50% 32%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/olden/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/olden/fieldbook.webp"] { object-position: 54% 22%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/olden/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/olden/archive.webp"] { object-position: 52% 24%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/stavanger/fieldbook.webp"],
.story-figure img[src*="/public/assets/curated/places/stavanger/fieldbook.webp"] { object-position: 54% 26%; }

.scrapbook-strip__card img[src*="/public/assets/curated/places/stavanger/archive.webp"],
.story-figure img[src*="/public/assets/curated/places/stavanger/archive.webp"] { object-position: 52% 28%; }

.story-figure img[src*="/public/assets/curated/places/molde/second-door.webp"],
.story-figure img[src*="/public/assets/curated/places/tromso/second-door.webp"],
.story-figure img[src*="/public/assets/curated/places/longyearbyen/second-door.webp"],
.story-figure img[src*="/public/assets/curated/places/nordkap/second-door.webp"],
.story-figure img[src*="/public/assets/curated/places/olden/second-door.webp"],
.story-figure img[src*="/public/assets/curated/places/stavanger/second-door.webp"] {
  object-fit: contain;
  object-position: center;
}

@media (max-width: 920px) {
  .hero-media img[src*="/public/assets/curated/places/molde/hero.webp"] { object-position: 52% 28%; }
  .hero-media img[src*="/public/assets/curated/places/tromso/hero.webp"] { object-position: 50% 30%; }
  .hero-media img[src*="/public/assets/curated/places/longyearbyen/hero.webp"] { object-position: 50% 34%; }
  .hero-media img[src*="/public/assets/curated/places/nordkap/hero.webp"] { object-position: 50% 38%; }
  .hero-media img[src*="/public/assets/curated/places/olden/hero.webp"] { object-position: 56% 30%; }
  .hero-media img[src*="/public/assets/curated/places/stavanger/hero.webp"] { object-position: 54% 34%; }

  .scrapbook-strip__card img[src*="/public/assets/curated/places/"][src*="/fieldbook.webp"],
  .scrapbook-strip__card img[src*="/public/assets/curated/places/"][src*="/archive.webp"],
  .story-figure img[src*="/public/assets/curated/places/"][src*="/fieldbook.webp"],
  .story-figure img[src*="/public/assets/curated/places/"][src*="/archive.webp"] {
    max-height: 56vh;
  }
}


/* ═══════════════════════════════════════
   COMPONENT: Insight Ribbon
   ═══════════════════════════════════════ */

.insight-ribbon {
  position: relative;
  overflow: hidden;
  margin: 0 clamp(1.25rem, 5vw, 5rem) clamp(2.4rem, 6vw, 4rem);
  padding: clamp(0.95rem, 2vw, 1.15rem);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(245, 241, 232, 0.96));
  box-shadow: var(--shadow-sm);
}

.insight-ribbon::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/assets/textures/summer-fjord-wash.webp") center / 760px auto repeat;
  opacity: 0.08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.insight-ribbon__head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px dashed rgba(26, 26, 24, 0.18);
}

.insight-ribbon__head::after {
  content: "NOTIZEN";
  position: absolute;
  top: -0.1rem;
  right: 0;
  padding: 0.16rem 0.45rem;
  border: 1px solid rgba(181, 80, 58, 0.22);
  background: rgba(181, 80, 58, 0.08);
  color: var(--rust);
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.insight-ribbon__kicker {
  margin: 0;
  color: var(--place-accent, var(--rust));
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.insight-ribbon__date {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.insight-ribbon__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.insight-ribbon__item {
  padding: 0.7rem 0.75rem;
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 24%, rgba(26, 26, 24, 0.08));
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 6px 16px rgba(15, 41, 48, 0.08);
}

.insight-ribbon__item:nth-child(2n) {
  transform: rotate(0.18deg);
}

.insight-ribbon__item h3 {
  margin: 0 0 0.35rem;
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-ribbon__item p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.insight-ribbon__sources {
  margin-top: 0.75rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(26, 26, 24, 0.1);
  color: var(--ink-soft);
  font-size: 0.76rem;
  line-height: 1.45;
}

.insight-ribbon__sources a {
  color: var(--place-accent, var(--rust));
}


/* ═══════════════════════════════════════
   COMPONENT: Reality Cut
   ═══════════════════════════════════════ */

.reality-cut {
  margin: clamp(2rem, 5vw, 3.4rem) 0;
  border: 1px solid var(--line);
  background: var(--paper-deep);
  color: var(--paper);
  box-shadow: var(--shadow-md);
}

.reality-cut__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid rgba(245, 241, 232, 0.14);
  background:
    linear-gradient(90deg, rgba(181, 80, 58, 0.28), rgba(181, 80, 58, 0.02)),
    repeating-linear-gradient(135deg, rgba(245, 241, 232, 0.05) 0 8px, transparent 8px 16px);
}

.reality-cut__kicker {
  margin: 0;
  color: rgba(245, 241, 232, 0.96);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.reality-cut__stamp {
  padding: 0.2rem 0.45rem;
  border: 1px solid rgba(245, 241, 232, 0.38);
  color: rgba(245, 241, 232, 0.94);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reality-cut__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(245, 241, 232, 0.12);
}

.reality-cut__card {
  padding: 1rem;
  background: rgba(9, 13, 14, 0.96);
}

.reality-cut__card h3 {
  margin-bottom: 0.5rem;
  color: var(--paper);
  font-size: 0.92rem;
  font-family: var(--font-sans);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.reality-cut__card p {
  color: rgba(245, 241, 232, 0.94);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.55;
}

.reality-cut__card--myth h3 { color: #f39c8a; }

.reality-cut__card--edge h3 { color: #9fd9e8; }

.reality-cut__note {
  margin: 0;
  padding: 0.85rem 1rem;
  color: rgba(245, 241, 232, 0.92);
  font-size: 0.86rem;
  line-height: 1.45;
  border-top: 1px solid rgba(245, 241, 232, 0.14);
  background: rgba(15, 41, 48, 0.5);
}


/* ═══════════════════════════════════════
   COMPONENT: 404 Fieldbook
   ═══════════════════════════════════════ */

.not-found {
  min-height: calc(100dvh - 68px);
  padding: clamp(4rem, 10vw, 8rem) clamp(1.25rem, 5vw, 5rem);
  background:
    var(--texture-stones) 86% 82% / clamp(180px, 20vw, 320px) auto no-repeat,
    var(--texture-fjord) 12% 88% / clamp(220px, 24vw, 400px) auto no-repeat,
    linear-gradient(180deg, rgba(249, 246, 238, 0.98), rgba(239, 234, 224, 0.96));
}

.not-found > * {
  max-width: 760px;
}

.not-found h1 {
  max-width: 11ch;
}

.not-found__routes {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1.35rem 0 1.4rem;
}

.not-found__list {
  max-width: 560px;
  padding: 1rem 1.1rem;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.78);
}

.not-found__list ul {
  margin: 0.8rem 0 0;
  padding-left: 1.1rem;
}

.not-found__list a {
  color: var(--ink);
}


/* ═══════════════════════════════════════
   PLACE CARDS
   ═══════════════════════════════════════ */

.place-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.3s var(--ease-out);
}

.place-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color 0.35s var(--ease-out);
}

.section--dark .place-card {
  background: var(--deep-warm);
}

.place-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(15, 41, 48, 0.12);
}

.place-card:hover::before {
  border-color: rgba(181, 80, 58, 0.22);
}

.place-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.place-card__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}

.place-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.02);
  transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.place-card__image img.img--portrait {
  object-position: var(--card-focus, 50% 22%);
}

.place-card__image img.img--landscape {
  object-position: center center;
}

.place-card:hover .place-card__image img {
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.02);
}

.place-card__number {
  position: absolute;
  bottom: 0.75rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  text-shadow: 0 4px 16px rgba(0,0,0,0.6), 0 1px 4px rgba(0,0,0,0.4);
  color: rgba(255, 255, 255, 0.95);
}

.place-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.25rem 1.25rem 1.5rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 244, 237, 0.92));
}

.place-card__marker {
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.place-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.6rem;
  text-wrap: balance;
}

.place-card__subtitle {
  color: color-mix(in srgb, var(--ink) 80%, #000);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 0.75rem;
}

.place-card__sentence {
  margin-top: auto;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.35;
  color: var(--ink-soft);
  font-variation-settings: "opsz" 14;
  hanging-punctuation: first last;
  text-wrap: pretty;
}

.section--dark .place-card__sentence {
  color: rgba(245, 241, 232, 0.94);
}

.place-card__arrow {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}

.place-card:hover .place-card__arrow {
  opacity: 1;
  transform: translateX(0);
}

.place-card__arrow::after {
  content: "→";
  font-size: 0.85rem;
  color: var(--rust);
}


/* ═══════════════════════════════════════
   COMPONENT: Ortsbuch Passage
   ═══════════════════════════════════════ */

.ortsbuch-panel {
  position: relative;
  margin: clamp(2.5rem, 6vw, 4rem) 0;
  padding: clamp(1.35rem, 3.2vw, 2.35rem);
  border-top: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 34%, var(--line));
  border-bottom: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 22%, var(--line));
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--place-accent, var(--rust)) 8%, transparent), transparent 42%),
    color-mix(in srgb, var(--place-paper, var(--paper)) 76%, white);
}

.ortsbuch-panel::before {
  content: "";
  position: absolute;
  top: 0.9rem;
  right: 1rem;
  width: 42px;
  height: 14px;
  border: 1px solid rgba(122, 118, 102, 0.14);
  background: rgba(213, 203, 176, 0.58);
  transform: rotate(4deg);
  pointer-events: none;
}

.ortsbuch-panel__intro {
  max-width: 44rem;
}

.ortsbuch-panel .label {
  color: var(--place-accent, var(--rust));
}

.ortsbuch-panel h2,
.ortsbuch-panel h3 {
  margin-top: 0;
}

.ortsbuch-panel h2::before {
  display: none;
}

.ortsbuch-panel h2 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.ortsbuch-panel h3 {
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 76%, var(--ink));
  font-size: var(--mono-sm);
  letter-spacing: var(--mono-tracking);
}

.ortsbuch-panel__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 1.35rem;
  background: color-mix(in srgb, var(--place-accent, var(--rust)) 20%, var(--line));
}

.ortsbuch-panel__card {
  padding: 1.15rem;
  background: color-mix(in srgb, var(--place-paper, var(--paper)) 88%, white);
}

.ortsbuch-panel__card p,
.ortsbuch-panel__intro p {
  color: var(--ink-soft);
}

.ortsbuch-panel__quote {
  margin: 1.35rem 0 0;
  padding: 1.25rem 0 1.25rem 1.25rem;
  border-left-color: var(--place-accent, var(--rust));
  color: var(--ink);
  font-size: clamp(1.18rem, 2.1vw, 1.45rem);
}

.ortsbuch-panel__sentences {
  display: grid;
  gap: 0.75rem;
  margin: 1.2rem 0 0;
  padding: 0;
}

.ortsbuch-panel__sentences li {
  padding: 0.85rem 0 0 1.1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-style: italic;
  line-height: 1.42;
  color: var(--ink);
}

.ortsbuch-panel__sentences li::before {
  top: 1.45em;
  background: var(--place-accent, var(--rust));
}


/* ═══════════════════════════════════════
   COMPONENT: Place Books
   ═══════════════════════════════════════ */

.place-books {
  max-width: var(--content-width);
  margin: 0 auto clamp(2.8rem, 6vw, 4.6rem);
  padding-inline: clamp(1.25rem, 5vw, 5rem);
}

.place-books__inner {
  position: relative;
  padding: clamp(1.1rem, 2.6vw, 1.8rem);
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 20%, rgba(26, 26, 24, 0.08));
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), color-mix(in srgb, var(--place-paper, var(--paper)) 90%, white)),
    linear-gradient(120deg, color-mix(in srgb, var(--place-accent, var(--rust)) 8%, transparent), transparent 50%);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.place-books__inner::before {
  content: "Zweite Landschaft";
  position: absolute;
  top: 0.85rem;
  right: 0.9rem;
  padding: 0.16rem 0.5rem;
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 22%, rgba(26, 26, 24, 0.12));
  background: color-mix(in srgb, var(--place-accent, var(--rust)) 10%, rgba(255, 255, 255, 0.8));
  color: var(--place-accent, var(--rust));
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-books__head {
  position: relative;
  max-width: 46rem;
  margin-bottom: 1.25rem;
  padding-right: 6.5rem;
}

.place-books__kicker {
  margin: 0 0 0.45rem;
  color: var(--place-accent, var(--rust));
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.place-books__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.04;
  color: var(--ink);
  text-wrap: balance;
}

.place-books__head h2::before {
  display: none;
}

.place-books__head > p:not(.place-books__kicker) {
  margin: 0.8rem 0 0;
  color: var(--ink-readable);
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.45vw, 1.15rem);
  line-height: 1.64;
}

.place-books__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(18rem, 0.92fr);
  gap: clamp(0.95rem, 2vw, 1.25rem);
  align-items: start;
}

.place-books__side {
  display: grid;
  gap: clamp(0.95rem, 2vw, 1.15rem);
}

.place-books__card {
  display: grid;
  grid-template-columns: clamp(7.2rem, 16vw, 9rem) minmax(0, 1fr);
  gap: 1rem;
  padding: clamp(0.95rem, 2vw, 1.2rem);
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 18%, rgba(26, 26, 24, 0.08));
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 24px rgba(15, 41, 48, 0.08);
}

.place-books__card--lead {
  align-self: stretch;
}

.place-books__cover-link {
  text-decoration: none;
  display: block;
  perspective: 600px;
  align-self: start;
  width: 100%;
}

.place-books__cover {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.6rem;
  aspect-ratio: 3 / 4;
  padding: 0.9rem 0.8rem;
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 24%, rgba(26, 26, 24, 0.1));
  background:
    linear-gradient(160deg, color-mix(in srgb, var(--place-accent, var(--rust)) 28%, rgba(255, 255, 255, 0.96)), rgba(255, 255, 255, 0.94)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(243, 237, 228, 0.86));
  box-shadow: 0 14px 28px rgba(15, 41, 48, 0.12);
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s ease;
}

.place-books__cover-link:hover .place-books__cover {
  transform: translateY(-8px) rotateY(-6deg) rotateX(2deg);
  box-shadow: 0 22px 35px rgba(15, 41, 48, 0.22);
}

.place-books__cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 15px;
  background: linear-gradient(90deg, 
    rgba(0, 0, 0, 0.15) 0%, 
    rgba(0, 0, 0, 0.0) 25%, 
    rgba(255, 255, 255, 0.1) 40%, 
    rgba(0, 0, 0, 0.05) 55%, 
    rgba(0, 0, 0, 0.0) 100%
  );
  box-shadow: 1px 0 3px rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 5;
}

.place-books__cover-label {
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 82%, var(--ink));
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.place-books__cover-title {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  font-weight: 600;
  line-height: 1.02;
  color: var(--ink);
  text-wrap: balance;
}

.place-books__cover-author {
  margin-top: auto;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.place-books__eyebrow {
  margin: 0;
  color: var(--place-accent, var(--rust));
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.place-books__body {
  display: flex;
  flex-direction: column;
}

.place-books__body h3 {
  margin: 0.5rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2vw, 1.75rem);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  text-wrap: balance;
}

.place-books__meta {
  margin: 0.65rem 0 0;
  color: var(--ink-soft);
  font-size: 0.84rem;
  line-height: 1.45;
}

.place-books__meta strong {
  display: inline-block;
  margin-right: 0.45rem;
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.place-books__body > p:last-of-type {
  margin-bottom: 0;
}

.place-books__body p {
  color: var(--ink-readable);
  font-size: 0.98rem;
  line-height: 1.62;
}

.place-books__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0.9rem 0 0;
}

.place-books__badges span {
  padding: 0.26rem 0.55rem;
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 18%, rgba(26, 26, 24, 0.08));
  background: color-mix(in srgb, var(--place-accent, var(--rust)) 9%, rgba(255, 255, 255, 0.9));
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 78%, var(--ink));
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.place-books__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: auto;
  padding-top: 1rem;
}

.place-books__links a {
  color: var(--place-accent, var(--rust));
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

@media (max-width: 980px) {
  .place-books__layout {
    grid-template-columns: 1fr;
  }

  .place-books__head {
    padding-right: 0;
  }
}

@media (max-width: 640px) {
  .place-books__inner::before {
    display: none;
  }

  .place-books__card {
    grid-template-columns: 1fr;
  }

  .place-books__cover {
    max-width: 11rem;
  }
}


/* ═══════════════════════════════════════
   COMPONENT: Die zweite Tür
   ═══════════════════════════════════════ */

.second-door {
  position: relative;
  padding: clamp(var(--r-5), 6vw, var(--r-8));
  background: var(--paper-warm);
  border-left: 3px solid var(--rust);
  margin: var(--r-5) 0;
}

.second-door::before {
  content: "Die zweite Tür";
  position: absolute;
  top: -0.6em;
  left: 2rem;
  background: var(--paper-warm);
  padding: 0 0.75rem;
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  color: var(--rust);
}

.second-door__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: var(--r-1);
}

.second-door__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--r-1);
  margin-bottom: var(--r-3);
}

.second-door__tag {
  padding: 0.2rem 0.5rem;
  background: rgba(181, 80, 58, 0.1);
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.second-door__text {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.6;
}

.second-door__text p + p { margin-top: var(--r-2); }

.second-door__pull {
  margin-top: var(--r-3);
  padding-top: var(--r-2);
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  hanging-punctuation: first last;
  text-wrap: pretty;
}

/* Full-width second door showcase */
.second-door--showcase {
  border-left: none;
  padding: 0;
  background: none;
  margin: 0;
}

.second-door--showcase::before { display: none; }

.second-door-intro {
  max-width: var(--prose-width);
  margin-bottom: var(--r-5);
}

.second-door-intro p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.25rem);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-readable-strong);
  font-variation-settings: "opsz" 14;
  hanging-punctuation: first last;
  text-wrap: pretty;
}

.second-door-intro p + p { margin-top: var(--r-2); }

.second-door-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.second-door-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.97), rgba(241, 236, 227, 0.98));
  padding: clamp(1.5rem, 3vw, 2.5rem);
  transition: background 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.second-door-card::before {
  content: "";
  position: absolute;
  top: 0.75rem;
  right: 0.9rem;
  width: 34px;
  height: 12px;
  background: rgba(213, 203, 176, 0.68);
  border: 1px solid rgba(122, 118, 102, 0.15);
  transform: rotate(6deg);
  pointer-events: none;
}

.second-door-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/assets/textures/summer-rain-wash.webp") center / 620px auto repeat;
  opacity: 0.05;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.second-door-card__media {
  margin: calc(clamp(1.5rem, 3vw, 2.5rem) * -1) calc(clamp(1.5rem, 3vw, 2.5rem) * -1) 1.25rem;
  aspect-ratio: 5 / 4;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.86), rgba(235, 229, 214, 0.9));
}

.second-door-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.88) contrast(0.96);
  transition: transform 0.5s var(--ease-out);
}

.second-door-card__media img.img--portrait {
  object-fit: contain;
}

.second-door-card__media img.img--landscape {
  object-fit: contain;
}

.second-door-card:hover .second-door-card__media img {
  transform: scale(1.03);
}

.second-door-card__marker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.4rem;
  min-height: 2.45rem;
  margin: -2.35rem 0 0.7rem;
  padding: 0.34rem 0.72rem;
  border: 1px solid color-mix(in srgb, var(--rust) 42%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.92), rgba(241, 234, 222, 0.86));
  box-shadow: 0 10px 18px rgba(15, 41, 48, 0.14);
  color: color-mix(in srgb, var(--rust) 76%, var(--ink));
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.section--dark .second-door-card__marker {
  background: linear-gradient(180deg, rgba(252, 247, 241, 0.96), rgba(240, 232, 219, 0.92));
  border-color: rgba(224, 166, 146, 0.46);
  color: #8f4b33;
}

.second-door-card__marker::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.42rem;
  background: currentColor;
  transform: rotate(45deg);
}

.section--dark .second-door-card { background: linear-gradient(180deg, rgba(29, 35, 38, 0.98), rgba(21, 27, 30, 0.98)); }

.second-door-card:hover {
  background: var(--paper-warm);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(15, 41, 48, 0.12);
}

.section--dark .second-door-card:hover { background: var(--fjord); }

.second-door-card__place {
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.second-door-card__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.second-door-card__text {
  color: var(--ink-readable-strong);
  font-size: 0.92rem;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.section--dark .second-door-card__text { color: rgba(245, 241, 232, 0.94); }

.second-door-card__pull {
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
  hanging-punctuation: first last;
  text-wrap: pretty;
}

.section--dark .second-door-card__pull { color: var(--paper); }


/* ═══════════════════════════════════════
   COMPONENT: Photo Truth / Family Realism / Index Tables
   ═══════════════════════════════════════ */

.photo-truth,
.family-realism,
.weather-script,
.second-door-index {
  position: relative;
  margin: 3rem 0;
  padding: clamp(1.4rem, 3vw, 2.25rem);
  border: 1px solid color-mix(in srgb, var(--place-accent, var(--rust)) 24%, var(--line));
  background:
    linear-gradient(180deg, rgba(255, 252, 246, 0.95), rgba(241, 236, 227, 0.9)),
    url("/public/assets/textures/summer-rain-wash.webp") center / 720px auto repeat;
  box-shadow: 0 16px 34px rgba(15, 41, 48, 0.08);
}

.photo-truth::before,
.family-realism::before,
.weather-script::before,
.second-door-index::before {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border: 1px solid rgba(24, 24, 20, 0.055);
  pointer-events: none;
}

.photo-truth__head,
.family-realism__head,
.weather-script__head,
.second-door-index__head {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.1rem;
}

.photo-truth__kicker,
.family-realism__kicker,
.weather-script__kicker,
.second-door-index__kicker {
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 76%, var(--ink));
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.photo-truth__stamp,
.family-realism__stamp,
.weather-script__stamp,
.second-door-index__stamp {
  padding: 0.22rem 0.52rem;
  border: 1px solid rgba(181, 80, 58, 0.24);
  background: rgba(255, 255, 255, 0.46);
  color: var(--ink-faint);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.photo-truth h3,
.family-realism h3,
.weather-script h3,
.second-door-index h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 1.3vw, 1.4rem);
  font-weight: 500;
  line-height: 1.18;
}

.photo-truth__grid,
.family-realism__grid,
.weather-script__grid,
.second-door-index__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.photo-truth__item,
.family-realism__item,
.weather-script__item,
.second-door-index__item {
  min-width: 0;
  padding: 1rem;
  background: rgba(255, 252, 246, 0.92);
}

.photo-truth__item strong,
.family-realism__item strong,
.weather-script__item strong,
.second-door-index__item strong {
  display: block;
  margin-bottom: 0.25rem;
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 70%, var(--ink));
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.photo-truth__item span,
.family-realism__item span,
.weather-script__item span,
.second-door-index__item span {
  display: block;
  color: var(--ink-readable-strong);
  font-size: 0.92rem;
  line-height: 1.5;
}

.photo-truth__pull,
.family-realism__pull,
.weather-script__pull,
.second-door-index__pull {
  position: relative;
  z-index: 1;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 1.04rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink);
}

.side-rail .family-realism {
  margin: 0;
  padding: 1.25rem;
}

.side-rail .family-realism::before { display: none; }

.side-rail .family-realism__head {
  display: block;
  margin-bottom: 0.8rem;
}

.side-rail .family-realism h3 {
  font-size: 1.16rem;
  margin-bottom: 0.75rem;
}

.side-rail .family-realism__grid {
  grid-template-columns: 1fr;
}

.side-rail .family-realism__item {
  padding: 0.75rem;
}

.side-rail .family-realism__pull {
  font-size: 0.96rem;
}

.section--dark .photo-truth,
.section--dark .family-realism,
.section--dark .weather-script,
.section--dark .second-door-index {
  background:
    linear-gradient(180deg, rgba(29, 35, 38, 0.94), rgba(21, 27, 30, 0.96)),
    url("/public/assets/textures/summer-rain-wash.webp") center / 720px auto repeat;
  border-color: rgba(245, 241, 232, 0.14);
}

.section--dark .photo-truth__item,
.section--dark .family-realism__item,
.section--dark .weather-script__item,
.section--dark .second-door-index__item {
  background: rgba(255, 255, 255, 0.035);
}

.section--dark .photo-truth h3,
.section--dark .family-realism h3,
.section--dark .weather-script h3,
.section--dark .second-door-index h3,
.section--dark .photo-truth__pull,
.section--dark .family-realism__pull,
.section--dark .weather-script__pull,
.section--dark .second-door-index__pull {
  color: var(--paper);
}

.section--dark .photo-truth__item span,
.section--dark .family-realism__item span,
.section--dark .weather-script__item span,
.section--dark .second-door-index__item span {
  color: rgba(245, 241, 232, 0.94);
}


/* ═══════════════════════════════════════
   COMPONENT: Decision Box
   ═══════════════════════════════════════ */

.decision {
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 0.3s var(--ease-out);
}

.decision::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/assets/textures/summer-fjord-wash.webp") center / 680px auto repeat;
  opacity: 0.04;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.decision:hover {
  border-color: var(--line-strong);
}

.decision h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.6rem;
  text-transform: none;
  letter-spacing: 0;
}

.decision p { color: var(--ink-readable-strong); font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem); }

.decision blockquote {
  margin: 0.5rem 0 0;
  padding: 0 0 0 1rem;
  border-left: 2px solid var(--rust);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  hanging-punctuation: first last;
  text-wrap: pretty;
}


/* ═══════════════════════════════════════
   COMPONENT: Safety Box
   ═══════════════════════════════════════ */

.safety {
  padding: 1.5rem;
  border: 1px solid rgba(181, 80, 58, 0.25);
  background: var(--rust-soft);
  position: relative;
}

.safety::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--rust);
}

.safety .label { color: var(--rust); }

.safety p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.55;
}

.safety img {
  width: 48px;
  height: 48px;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}


/* ═══════════════════════════════════════
   COMPONENT: Source Card
   ═══════════════════════════════════════ */

.source-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.section--dark .source-grid { background: rgba(245, 241, 232, 0.08); }

.source-card {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(249, 246, 239, 0.98), rgba(241, 236, 228, 0.98));
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1fr);
  gap: 1rem;
}

.section--dark .source-card {
  background: linear-gradient(180deg, rgba(30, 36, 39, 0.98), rgba(22, 28, 31, 0.98));
}

.source-card h3 {
  grid-column: 1 / -1;
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.source-card dt {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.source-card dd {
  margin: 0 0 0.6rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

.section--dark .source-card dt { color: rgba(245, 241, 232, 0.8); }
.section--dark .source-card dd { color: rgba(245, 241, 232, 0.8); }


/* ═══════════════════════════════════════
   COMPONENT: Note Card / Field Note
   ═══════════════════════════════════════ */

.note-card {
  isolation: isolate;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.88);
  position: relative;
}

.note-card::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 14px;
  width: 32px;
  height: 11px;
  background: rgba(213, 203, 176, 0.68);
  border: 1px solid rgba(122, 118, 102, 0.14);
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.note-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, transparent 50%, var(--paper-deep) 50%);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.note-card p {
  position: relative;
  z-index: 1;
}

.note-card p {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--ink-readable);
}

.note-card .label {
  font-family: var(--font-sans);
  font-style: normal;
}


/* ═══════════════════════════════════════
   COMPONENT: Family Moments
   ═══════════════════════════════════════ */

.section--family-note {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.34) 0%, rgba(246, 242, 234, 0.45) 100%);
}

.family-moments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.family-moment-card {
  margin: 0;
  padding: 0.6rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 10px 20px rgba(25, 32, 42, 0.08);
}

.family-moment-card--tilt-left {
  transform: rotate(-0.75deg);
}

.family-moment-card--tilt-right {
  transform: rotate(0.7deg);
}

.family-moment-card img {
  display: block;
  width: 100%;
  height: clamp(190px, 28vw, 280px);
  object-fit: cover;
  border: 1px solid rgba(43, 47, 54, 0.15);
}

.family-moment-card figcaption {
  margin-top: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.family-moment-card figcaption span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
}


/* ═══════════════════════════════════════
   COMPONENT: Weather Logic
   ═══════════════════════════════════════ */

.weather-logic {
  padding: 1.5rem;
  background: linear-gradient(180deg, rgba(205, 226, 231, 0.38), rgba(248, 251, 252, 0.94));
  border: 1px solid rgba(196, 221, 227, 0.36);
  position: relative;
}

.weather-logic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--ice);
}

.weather-logic .label { color: var(--fjord); }

.weather-logic p {
  color: var(--ink-readable);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.55;
}


/* ═══════════════════════════════════════
   COMPONENT: Label
   ═══════════════════════════════════════ */

.label {
  margin: 0 0 0.6rem;
  color: var(--rust);
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   BUTTONS & LINKS
   ═══════════════════════════════════════ */

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  padding: 0.65rem 1.1rem;
  background: transparent;
  text-decoration: none;
  font-size: var(--mono-sm);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(24, 24, 20, 0.24);
  border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  transition: color 0.25s var(--ease-out), background-color 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  cursor: pointer;
}

.button::after {
  content: "";
  position: absolute;
  top: -2px;
  bottom: -2px;
  left: -42%;
  width: 30%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transform: skewX(-16deg);
  transition: left 0.6s var(--ease-out);
  pointer-events: none;
}

.button:active {
  transform: translateY(1px);
}

.button:focus-visible,
.main-nav a:focus-visible,
.footer-nav a:focus-visible,
.place-card a:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

.button:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
  box-shadow: 0 8px 20px rgba(15, 41, 48, 0.16);
  transform: translateY(-1px);
}

.button:hover::after {
  left: 120%;
}

.button--primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--rust) 92%, #fff), color-mix(in srgb, var(--rust) 82%, #000));
  border-color: var(--rust);
  color: #fff;
  box-shadow: 0 10px 22px rgba(160, 74, 45, 0.24);
}

.button--primary:hover {
  background: linear-gradient(180deg, color-mix(in srgb, #9a4530 86%, #fff), #9a4530);
  border-color: #9a4530;
  color: #fff;
}

.section--dark .button {
  border-color: rgba(245, 241, 232, 0.25);
  color: var(--paper);
  background: rgba(255, 255, 255, 0.03);
}

.section--dark .button:hover {
  background: var(--paper);
  border-color: var(--paper);
  color: var(--deep);
}

.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 2.5rem;
}


/* ═══════════════════════════════════════
   COMPONENT: FAQ
   ═══════════════════════════════════════ */

.faq details {
  border-top: 1px solid var(--line);
  padding: 1.25rem 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary::before {
  content: "+";
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid var(--line-strong);
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--rust);
  transition: transform 0.3s var(--ease-out);
}

details[open] > summary::before {
  content: "−";
  transform: none;
}

.faq details p {
  margin-top: 0.75rem;
  padding-left: 2.75rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.6;
}

/* 
   COMPONENT: Google Maps Card
    */

.map-card {
  padding: 1.5rem;
  border: 1px solid rgba(26, 63, 71, 0.18);
  background: linear-gradient(180deg, rgba(205, 226, 231, 0.26), rgba(252, 252, 251, 0.94));
  display: grid;
  gap: 0.9rem;
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.25;
}

.map-card p {
  color: var(--ink-soft);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  line-height: 1.55;
}

.map-card__links {
  display: grid;
  gap: 0.75rem;
}

.map-link {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  text-decoration: none;
  transition: transform 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.map-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: var(--paper-warm);
}

.map-link__label {
  color: var(--rust);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
}

.map-link strong {
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.05rem);
  font-weight: 700;
  line-height: 1.35;
}


/* ═══════════════════════════════════════
   COMPONENT: Asset Card
   ═══════════════════════════════════════ */

.asset-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.asset-card {
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.35);
}

.asset-card code {
  word-break: break-all;
  font-size: 0.82rem;
  color: var(--muted);
}


/* ═══════════════════════════════════════
   COMPONENT: Breadcrumb
   ═══════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: fit-content;
  max-width: 100%;
  margin-left: clamp(1.25rem, 5vw, 5rem);
  margin-right: clamp(1.25rem, 5vw, 5rem);
  margin-top: 0.7rem;
  padding: 0.48rem 0.72rem;
  font-size: var(--mono-sm);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border: 1px solid rgba(24, 24, 20, 0.12);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 243, 234, 0.9));
  box-shadow: 0 6px 16px rgba(15, 41, 48, 0.06);
}

.breadcrumb a {
  color: var(--ink-soft);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--ink); }

.breadcrumb span { color: var(--line-strong); }


/* ═══════════════════════════════════════
   COMPONENT: Place Navigation
   ═══════════════════════════════════════ */

.place-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.place-nav__link {
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 5vw, 5rem);
  background: var(--paper);
  text-decoration: none;
  transition: background 0.3s var(--ease-out);
}

.place-nav__link:hover { background: var(--paper-warm); }

.place-nav__label {
  font-size: var(--mono-xs);
  font-weight: 700;
  letter-spacing: var(--mono-tracking);
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.35rem;
}

.place-nav__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.place-nav__link--next { text-align: right; }


/* ═══════════════════════════════════════
   COMPONENT: Manifesto / Feature Block
   ═══════════════════════════════════════ */

.manifesto {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  margin-top: clamp(2rem, 5vw, 4rem);
}

.manifesto__item {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(180deg, rgba(248, 244, 236, 0.98), rgba(242, 237, 228, 0.98));
}

.section--dark .manifesto__item { background: var(--deep-warm); }

.manifesto__icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  opacity: 0.6;
}

.manifesto__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0.5rem;
}

.manifesto__text {
  color: var(--ink-readable);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section--dark .manifesto__text { color: rgba(245, 241, 232, 0.94); }


/* ═══════════════════════════════════════
   STATUS
   ═══════════════════════════════════════ */

.status {
  display: inline-block;
  margin-top: 1rem;
  color: var(--rust);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */

.site-footer {
  padding: 3rem clamp(1.25rem, 5vw, 5rem);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(249, 245, 238, 0.94), rgba(243, 237, 227, 0.96));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: start;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.footer-sub {
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.5;
  max-width: 62ch;
}

.footer-sub--credit {
  margin-top: 0.4rem;
  opacity: 0.9;
  font-size: 0.76rem;
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
}

.footer-nav a {
  color: var(--ink-soft);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
}

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

.footer-colophon {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.footer-legal {
  margin-top: 0.5rem;
  color: var(--ink-soft);
  font-size: var(--mono-xs);
  letter-spacing: 0.05em;
  opacity: 0.7;
}

.footer-legal a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--ink);
  border-bottom-color: currentColor;
}


/* ═══════════════════════════════════════
   IMAGE & INTERACTION MICROPOLISH
   ═══════════════════════════════════════ */

@keyframes fadeInScale {
  from { opacity: 0; transform: scale(0.98); }
  to { opacity: 1; transform: scale(1); }
}

img[data-reveal] {
  animation: fadeInScale 0.4s var(--ease-out) forwards;
}

:target {
  scroll-margin-top: clamp(4rem, 8vh, 5.5rem);
  background: rgba(181, 80, 58, 0.08);
  border-radius: 2px;
  padding: 0.5rem;
  transition: background 0.3s var(--ease-out);
}


/* ═══════════════════════════════════════
   COMPONENT: Foto-Drei
   ═══════════════════════════════════════ */

.foto-drei {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--accent-primary, var(--rust));
  background: color-mix(in srgb, var(--accent-primary, var(--rust)) 4%, var(--paper));
}

.foto-drei__label {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-primary, var(--rust));
  margin-bottom: 0.75rem;
}

.foto-drei__list {
  margin: 0;
  padding-left: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.foto-drei__list li {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.foto-drei__list li::marker {
  color: var(--accent-primary, var(--rust));
  font-weight: 700;
}

@media print {
  .site-header, .site-footer, .skip-link,
  .hero-media::before, .hero-media::after,
  .place-card__arrow, .button { display: none; }

  body { background: #fff; color: #000; }
  .section--dark { background: #f5f5f5; color: #000; }

  a { text-decoration: underline; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 0.8em; }
}



/* Final mobile hero readability lock */
@media (max-width: 920px) {
  .hero,
  .hero--landing {
    background: #f1ede4 !important;
  }

  .hero:not(.hero--place) .hero-copy {
    position: relative !important;
    z-index: 3 !important;
    background: rgba(247, 242, 233, 0.985) !important;
    border: 1px solid rgba(20, 20, 18, 0.18) !important;
    box-shadow: 0 12px 32px rgba(15, 41, 48, 0.14) !important;
  }

  .hero:not(.hero--place) .kicker,
  .hero:not(.hero--place) h1,
  .hero:not(.hero--place) .lede,
  .hero:not(.hero--place) .hero-pull,
  .hero:not(.hero--place) .hero-route,
  .hero:not(.hero--place) .hero-route span {
    color: #161614 !important;
    opacity: 1 !important;
    text-shadow: none !important;
  }

  .hero:not(.hero--place) h1 {
    font-weight: 600 !important;
  }

  .hero:not(.hero--place) .hero-copy .lede {
    line-height: 1.66 !important;
  }

  .hero:not(.hero--place) .marker {
    background: #fffdf8 !important;
    color: #171715 !important;
    border-color: rgba(20, 20, 18, 0.16) !important;
  }

  .hero:not(.hero--place) .button:not(.button--primary) {
    color: #161614 !important;
    border-color: rgba(20, 20, 18, 0.18) !important;
    background: rgba(255, 253, 248, 0.92) !important;
  }
}

/* Place-hero and shared containers: solid on mobile */
@media (max-width: 920px) {
  .hero--place .hero-actions .button:not(.button--primary) {
    background: rgba(255, 255, 255, 0.96) !important;
    border-color: rgba(24, 24, 20, 0.24) !important;
  }

  .hero-context {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .marker {
    background: rgba(255, 255, 255, 0.96);
  }

  .reality-cut__kicker {
    color: var(--paper);
  }

  .reality-cut__stamp {
    color: rgba(245, 241, 232, 0.98);
    border-color: rgba(245, 241, 232, 0.48);
  }

  .hero-context__list li {
    color: var(--ink);
  }
}

/* Restore dark bg on hero-context in mobile dark mode
   (the block above forces white which breaks dark mode) */
@media (max-width: 920px) and (prefers-color-scheme: dark) {
  .hero-context {
    background: rgba(18, 20, 18, 0.92) !important;
    border-color: rgba(232, 230, 225, 0.14) !important;
  }

  .hero-context__list li,
  .hero-context__list strong {
    color: rgba(232, 230, 225, 0.94) !important;
  }
}

@media (max-width: 560px) {
  .hero:not(.hero--place) .hero-copy h1 {
    font-size: clamp(2.08rem, 10.6vw, 2.9rem) !important;
    line-height: 1.02 !important;
  }

  .hero:not(.hero--place) .lede {
    font-size: 1rem !important;
    line-height: 1.7 !important;
  }
}

/* Broader mobile readability pass for dense modules */
@media (max-width: 920px) {
  .insight-ribbon__item p,
  .insight-ribbon__sources,
  .second-door-card__text,
  .source-card dd,
  .map-card p,
  .faq details p,
  .footer-sub,
  .footer-colophon {
    font-size: 1rem;
    line-height: 1.62;
    color: var(--ink-soft);
  }

  .scrapbook-strip__card figcaption {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .family-moment-card figcaption {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .family-moment-card figcaption span {
    font-size: 0.76rem;
    letter-spacing: 0.08em;
  }

  .reality-cut__card p {
    font-size: 0.98rem;
    line-height: 1.62;
    color: rgba(245, 241, 232, 0.97);
  }

  .reality-cut__note {
    font-size: 0.92rem;
    line-height: 1.58;
    color: rgba(245, 241, 232, 0.95);
  }

  .insight-ribbon__date,
  .map-link strong {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .insight-ribbon__kicker,
  .source-card dt,
  .map-link__label,
  .place-nav__label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .footer-nav a {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
  }

  .section--dark .kicker { color: var(--rust-warm-strong); }       /* a11y: 8.0+:1 on --deep (was 2.85:1) */
  .section--dark .lede { color: rgba(245, 241, 232, 0.98); }

  .section--dark .manifesto__text,
  .section--dark .second-door-card__text,
  .section--dark .source-card dd {
    color: rgba(245, 241, 232, 0.95);
  }

  .section--dark .source-card dt {
    color: rgba(245, 241, 232, 0.88);
  }

  .ortsbuch-panel__grid {
    grid-template-columns: 1fr;
  }

  .home-page .manifesto {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .insight-ribbon__item p,
  .insight-ribbon__sources,
  .second-door-card__text,
  .source-card dd,
  .map-card p,
  .faq details p {
    font-size: 0.98rem;
    line-height: 1.6;
  }

  .insight-ribbon__kicker,
  .source-card dt,
  .map-link__label,
  .place-nav__label {
    font-size: 0.7rem;
    letter-spacing: 0.11em;
  }

  .reality-cut__card p {
    font-size: 0.96rem;
  }

  .reality-cut__note {
    font-size: 0.9rem;
  }

  .ortsbuch-panel {
    padding: 1.2rem;
  }

  .ortsbuch-panel__quote {
    font-size: 1.14rem;
  }

  .home-page .manifesto {
    grid-template-columns: 1fr;
  }

  .photo-truth,
  .family-realism,
  .weather-script,
  .second-door-index {
    padding: 1.1rem;
  }

  .photo-truth__head,
  .family-realism__head,
  .weather-script__head,
  .second-door-index__head {
    display: block;
  }

  .photo-truth__stamp,
  .family-realism__stamp,
  .weather-script__stamp,
  .second-door-index__stamp {
    display: inline-flex;
    margin-top: 0.55rem;
  }

  .photo-truth__grid,
  .family-realism__grid,
  .weather-script__grid,
  .second-door-index__grid {
    grid-template-columns: 1fr;
  }

  .site-footer {
    background: linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(244, 238, 228, 0.99));
    border-top-color: rgba(24, 24, 20, 0.12);
  }

  .site-footer .footer-brand {
    color: #171612;
  }

  .site-footer .footer-sub,
  .site-footer .footer-nav a,
  .site-footer .footer-legal,
  .site-footer .footer-legal a {
    color: rgba(20, 20, 18, 0.88);
  }

  .site-footer .footer-legal {
    opacity: 1;
  }
}

@media (max-width: 560px) and (prefers-color-scheme: dark) {
  .site-footer {
    background: linear-gradient(180deg, rgba(20, 22, 20, 0.98), rgba(14, 16, 14, 0.99));
    border-top-color: rgba(232, 230, 225, 0.12);
  }

  .site-footer .footer-brand,
  .site-footer .footer-sub,
  .site-footer .footer-nav a,
  .site-footer .footer-legal,
  .site-footer .footer-legal a {
    color: rgba(232, 230, 225, 0.92);
  }
}

/* Final contrast pass: dense reading modules */
@media (max-width: 920px) {
  .section-header p,
  .manifesto__text,
  .source-slip__text,
  .evidence-strip__item p:last-child,
  .weather-script__item span,
  .second-door-index__item span,
  .decision p,
  .hero-context__list {
    color: var(--ink-readable-strong);
  }

  .manifesto__item,
  .source-slip,
  .decision,
  .evidence-strip__item,
  .weather-script__item,
  .second-door-index__item,
  .hero-context {
    background: color-mix(in srgb, #fff 94%, var(--paper));
  }
}

@media (max-width: 920px) and (prefers-color-scheme: dark) {
  .section-header p,
  .manifesto__text,
  .source-slip__text,
  .evidence-strip__item p:last-child,
  .weather-script__item span,
  .second-door-index__item span,
  .decision p,
  .hero-context__list {
    color: rgba(232, 230, 225, 0.96);
  }

  .manifesto__item,
  .source-slip,
  .decision,
  .evidence-strip__item,
  .weather-script__item,
  .second-door-index__item,
  .hero-context {
    background: rgba(24, 27, 26, 0.94);
    border-color: rgba(232, 230, 225, 0.16);
  }
}


/* ═══════════════════════════════════════
   SHARE BAR
   ═══════════════════════════════════════ */

.share-bar {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  padding: 2rem 1rem;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
}

.share-btn:hover {
  color: var(--ink);
  border-color: var(--line-strong);
}

.share-btn.is-copied {
  color: var(--fjord-green);
  border-color: var(--fjord-green);
}

.share-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  flex-shrink: 0;
}

@media (prefers-color-scheme: dark) {
  .share-btn {
    color: var(--fog);
    border-color: rgba(255,255,255,0.15);
  }
  .share-btn:hover {
    color: var(--chalk-white);
    border-color: rgba(255,255,255,0.3);
  }
}


/* ═══════════════════════════════════════
   CROSS-LINKS (thematic related places)
   ═══════════════════════════════════════ */

.cross-links {
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  margin: 0 auto;
  max-width: var(--content-width);
}

.cross-links__title {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 0.75rem;
}

.cross-links__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cross-links__list a {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--fjord);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: color 0.2s var(--ease-out), border-color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.cross-links__list a:hover {
  color: var(--ink);
  border-color: var(--fjord);
  background: var(--rust-soft);
}

@media (prefers-color-scheme: dark) {
  .cross-links__title { color: var(--fog); }
  .cross-links__list a {
    color: var(--glacier-water);
    border-color: rgba(255,255,255,0.15);
  }
  .cross-links__list a:hover {
    color: var(--chalk-white);
    border-color: var(--glacier-water);
    background: rgba(255,255,255,0.06);
  }
}


/* ═══════════════════════════════════════
   NLU ACTION SYSTEM
   Functional buttons, icon buttons and
   small symbolic controls for the brand.
   Icons are inline SVG using
   /public/assets/icons/nlu-action-icons.svg.
   ═══════════════════════════════════════ */

.nlu-icon {
  width: 1.15em;
  height: 1.15em;
  display: inline-block;
  flex: 0 0 auto;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nlu-icon--stamp {
  width: 1.35em;
  height: 1.35em;
}

.button .nlu-icon {
  margin-left: -0.12rem;
}

.button[data-icon-pos="end"] .nlu-icon {
  margin-left: 0;
  margin-right: -0.12rem;
}

.button--quiet {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(248, 243, 234, 0.72));
  border: 1px solid var(--line-strong, rgba(24,24,20,.20));
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.button--quiet:hover {
  background: var(--paper);
  color: var(--rust);
  border-color: color-mix(in srgb, var(--rust) 50%, var(--line-strong));
  box-shadow: var(--shadow-md);
}

.button--field {
  background:
    repeating-linear-gradient(0deg, rgba(24,24,20,.028) 0 1px, transparent 1px 7px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 243, 234, 0.98));
  border: 1px dashed color-mix(in srgb, var(--rust) 58%, var(--line-strong));
  color: var(--ink);
}

.button--field .nlu-icon {
  color: var(--rust);
}

.button--field:hover {
  background:
    repeating-linear-gradient(0deg, rgba(24,24,20,.026) 0 1px, transparent 1px 7px),
    var(--paper);
  color: var(--rust);
  border-style: solid;
}

.button--source {
  background:
    linear-gradient(180deg, rgba(23, 61, 68, 0.08), rgba(255, 255, 255, 0.58));
  border: 1px solid color-mix(in srgb, var(--fjord) 36%, var(--line-strong));
  color: var(--fjord);
}

.button--source:hover {
  background: var(--fjord);
  border-color: var(--fjord);
  color: var(--paper);
}

.button--weather {
  background:
    linear-gradient(180deg, rgba(143, 184, 189, 0.18), rgba(255, 255, 255, 0.56));
  border: 1px solid rgba(26, 70, 80, 0.24);
  color: var(--fjord);
}

.button--weather:hover {
  background: color-mix(in srgb, var(--fjord) 92%, #fff);
  border-color: var(--fjord);
  color: var(--paper);
}

.button--danger,
.button--safety {
  background:
    linear-gradient(180deg, rgba(160, 74, 45, 0.10), rgba(255, 255, 255, 0.58));
  border: 1px solid rgba(160, 74, 45, 0.42);
  color: var(--rust);
}

.button--danger:hover,
.button--safety:hover {
  background: var(--rust);
  border-color: var(--rust);
  color: var(--paper);
}

.nlu-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
}

.nlu-icon-button {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-strong, rgba(24,24,20,.20));
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(248,243,234,.82));
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition:
    color 0.22s var(--ease-out),
    background 0.22s var(--ease-out),
    border-color 0.22s var(--ease-out),
    box-shadow 0.22s var(--ease-out),
    transform 0.22s var(--ease-out);
}

.nlu-icon-button::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 9px;
  width: 22px;
  height: 7px;
  background: rgba(215, 189, 148, 0.72);
  border: 1px solid rgba(122, 118, 102, 0.12);
  transform: rotate(-5deg);
  opacity: 0;
  transition: opacity 0.2s var(--ease-out);
}

.nlu-icon-button:hover {
  color: var(--rust);
  border-color: color-mix(in srgb, var(--rust) 44%, var(--line-strong));
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.nlu-icon-button:hover::before {
  opacity: 1;
}

.nlu-icon-button:active {
  transform: translateY(0);
}

.nlu-icon-button:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 2px;
}

.nlu-icon-button--dark {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.nlu-icon-button--dark:hover {
  background: var(--fjord);
  color: var(--paper);
  border-color: var(--fjord);
}

.nlu-icon-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  min-height: 34px;
  padding: 0.38rem 0.68rem;
  border: 1px solid var(--line, rgba(24,24,20,.11));
  background:
    linear-gradient(180deg, rgba(255,255,255,.58), rgba(248,243,234,.72));
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.nlu-icon-chip .nlu-icon {
  color: var(--place-accent, var(--rust));
}

.nlu-icon-chip--source .nlu-icon { color: var(--fjord); }
.nlu-icon-chip--weather .nlu-icon { color: #547a84; }
.nlu-icon-chip--safety .nlu-icon { color: var(--rust); }

.nlu-stamp-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.65rem 0.95rem;
  border: 2px solid currentColor;
  color: var(--rust);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
  text-decoration: none;
  transform: rotate(-0.5deg);
  transition: transform 0.22s var(--ease-out), background 0.22s var(--ease-out), color 0.22s var(--ease-out);
}

.nlu-stamp-button:hover {
  background: var(--rust);
  color: var(--paper);
  transform: rotate(0deg) translateY(-1px);
}

.nlu-stamp-button:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

.nlu-button-card {
  display: grid;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid var(--line, rgba(24,24,20,.11));
  background:
    linear-gradient(180deg, rgba(255,255,255,.68), rgba(248,243,234,.86));
  box-shadow: var(--shadow-md);
}

.nlu-button-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--rust);
  font-family: var(--font-sans);
  font-size: var(--mono-xs);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section--dark .nlu-icon-button,
.section--dark .nlu-icon-chip,
.section--dark .nlu-button-card {
  background: rgba(255,255,255,.04);
  border-color: rgba(245,241,232,.18);
  color: var(--paper);
}

.section--dark .nlu-icon-button:hover,
.section--dark .nlu-icon-chip:hover {
  color: var(--rust-warm, #e3a08b);
  border-color: rgba(227,160,139,.5);
}

@media (max-width: 560px) {
  .nlu-action-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .nlu-action-row .button,
  .nlu-stamp-button {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    text-align: center;
    white-space: normal;
  }

  .nlu-icon-button {
    width: 48px;
    height: 48px;
  }
}


/* === ARCHIVSPUR POSTER (from extensions) === */
/* ─── Archivspur poster (extension of scrapbook-strip aesthetic) ─── */
.nlu-archivspur {
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  padding: clamp(4rem, 12vw, 6.5rem) 0;
  background: linear-gradient(180deg,
    rgba(208,200,184,0.16),
    rgba(208,200,184,0.04) 30%,
    transparent);
}
.nlu-archivspur__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 4rem;
  align-items: start;
}
.nlu-archivspur__figure {
  position: relative;
  transform: rotate(-0.95deg);
  filter: drop-shadow(0 24px 64px rgba(15,41,48,.14));
}
.nlu-archivspur__figure img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  display: block;
  filter: saturate(0.78) contrast(1.02) sepia(0.06);
}
.nlu-archivspur__figure::before,
.nlu-archivspur__figure::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 22px;
  background: rgba(176,138,87,0.6);
  box-shadow: 0 2px 8px rgba(15,41,48,.06);
}
.nlu-archivspur__figure::before { top: -12px; left: 12%; transform: rotate(-5deg); }
.nlu-archivspur__figure::after  { bottom: -10px; right: 10%; transform: rotate(4deg); }
.nlu-archivspur__stamp {
  position: absolute;
  bottom: 1rem; right: 1rem;
  padding: .45rem .75rem;
  border: 2px solid var(--rust, #a04a2d);
  color: var(--rust, #a04a2d);
  background: rgba(248,243,234,.88);
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  transform: rotate(-4deg);
}
.nlu-archivspur__body { display: grid; gap: 1.5rem; }
.nlu-archivspur__body h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-archivspur__body p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-readable, rgba(23,22,18,.92));
  max-width: 68ch;
  font-variation-settings: "opsz" 16;
  margin: 0;
}
.nlu-archivspur__chain {
  counter-reset: stepcount;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-archivspur__chain .step {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(23,22,18,.94));
  padding-left: 1.4rem;
  position: relative;
}
.nlu-archivspur__chain .step::before {
  counter-increment: stepcount;
  content: counter(stepcount, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  color: var(--rust, #a04a2d);
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-weight: 700;
}


/* === UNDERCOVER CROSS-SELL PROMO (from extensions) === */
/* ═══════════════════════════════════════════════════════════════
   UNDERCOVER · cross-page modules
   ─────────────────────────────────────────────────────────────
   • .nlu-undercover-cta  → Promo block on the main Ortsseite
   • .uc-page-*           → Layout of the standalone Undercover page
   • .uc-series-banner    → Dark series intro at top of Undercover
   • .uc-case-rail        → Sticky six-tab case selector
   ─────────────────────────────────────────────────────────────── */

/* ─── Promo CTA on the main place page (Cross-Sell) ─── */
.nlu-undercover-cta {
  max-width: 1320px;
  margin: clamp(2rem, 6vw, 3rem) auto;
  padding: 0 1.5rem;
}
.nlu-undercover-cta__inner {
  background: #0c1416;
  color: #fbf7ee;
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  align-items: stretch;
  position: relative;
  overflow: hidden;
}
.nlu-undercover-cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(228,167,76,.10), transparent 35%),
    radial-gradient(circle at 88% 82%, rgba(143,184,189,.10), transparent 40%);
  pointer-events: none;
}
.nlu-undercover-cta__media { position: relative; }
.nlu-undercover-cta__media img {
  width: 100%; height: 100%;
  min-height: 240px;
  object-fit: cover;
  display: block;
  filter: saturate(.85) contrast(1.05);
}
.nlu-undercover-cta__stamp {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--rust, #a04a2d);
  color: #fbf7ee;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .24em;
  padding: .4rem .7rem;
}
.nlu-undercover-cta__body {
  padding: clamp(1.5rem, 4vw, 2.5rem);
  display: grid;
  gap: 1rem;
  align-content: center;
  position: relative;
}
.nlu-undercover-cta__edition {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #f3d7a1;
}
.nlu-undercover-cta__title {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -.015em;
  line-height: 1.05;
  color: #fbf7ee;
  margin: 0;
}
.nlu-undercover-cta__lede {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.02rem;
  line-height: 1.55;
  color: rgba(251,247,238,.86);
  margin: 0;
  max-width: 56ch;
}
.nlu-undercover-cta__body .button--primary {
  justify-self: start;
  background: var(--rust, #a04a2d);
  color: #fbf7ee;
  border-color: var(--rust, #a04a2d);
}
.nlu-undercover-cta__body .button--primary:hover { background: #b35a3a; }


/* === BUCHVORSCHAU (from extensions) === */
/* ─── Buchvorschau auf der Startseite (dezent) ─── */
.nlu-book-preview {
  max-width: 1320px;
  margin: clamp(.4rem, 2vw, 1rem) auto clamp(2.2rem, 5vw, 3.3rem);
  padding: 0 1.5rem;
}
.nlu-book-preview__inner {
  padding: clamp(1rem, 2.4vw, 1.4rem) clamp(1rem, 2.8vw, 1.6rem);
  border: 1px solid var(--line, rgba(24,24,20,.12));
  background:
    linear-gradient(180deg, rgba(255,255,255,.62), rgba(248,243,234,.72));
  display: grid;
  gap: .65rem;
}
.nlu-book-preview__kicker {
  margin: 0;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(23,22,18,.74));
}
.nlu-book-preview__title {
  margin: 0;
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.1vw, 1.55rem);
  line-height: 1.12;
  letter-spacing: -.012em;
  color: var(--ink, #171612);
}
.nlu-book-preview__lede {
  margin: 0;
  max-width: 68ch;
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .99rem;
  line-height: 1.55;
  color: var(--ink-readable, rgba(23,22,18,.9));
}
.nlu-book-preview__notice {
  justify-self: start;
  margin: 0;
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
}


/* === PLACE SWITCHER (from extensions) === */
/* ─── Floating place switcher (preview only) ─── */
.nlu-switcher {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  /* Hidden when mobile nav is open so it doesn't overlap the nav panel */
  z-index: 80;
  display: flex;
  gap: .4rem;
  padding: .5rem;
  background: rgba(248,243,234,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(24,24,20,.20);
  box-shadow: 0 24px 64px rgba(15,41,48,.14);
  max-width: 90vw;
  flex-wrap: wrap;
}
.nlu-switcher__hint {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft, rgba(23,22,18,.94));
  align-self: center;
  padding: 0 .5rem;
}
.nlu-switcher button {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  background: transparent;
  color: var(--ink-soft, rgba(23,22,18,.94));
  border: 1px solid rgba(24,24,20,.11);
  padding: .55rem .7rem;
  cursor: pointer;
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: all .2s cubic-bezier(.25,.46,.45,.94);
}
.nlu-switcher button:hover { border-color: var(--ink, #171612); color: var(--ink, #171612); }
.nlu-switcher button.is-current {
  background: var(--ink, #171612);
  color: var(--paper, #f8f3ea);
  border-color: var(--ink, #171612);
}
.nlu-switcher button .swatch {
  width: 10px; height: 10px;
  display: inline-block;
  border-radius: 50%;
}
.nlu-switcher button[data-target="molde"] .swatch        { background: #6f9db0; }
.nlu-switcher button[data-target="tromso"] .swatch       { background: #4f7f95; }
.nlu-switcher button[data-target="longyearbyen"] .swatch { background: #1e2324; }
.nlu-switcher button[data-target="nordkap"] .swatch      { background: #516a78; }
.nlu-switcher button[data-target="olden"] .swatch        { background: #4e6a50; }
.nlu-switcher button[data-target="stavanger"] .swatch    { background: #a46747; }


/* === CINEMATIC BANNER (from extensions) ===
   ORTSSEITE · NEUE MODULE (Banner · Chapter · Pillars · Pullquote · Quellen)
   ─────────────────────────────────────────────────────────────── */

/* ─── Cinematic Banner: 21:9 Header oben über Hero ─── */
.nlu-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  max-height: 72vh;
  overflow: hidden;
  background: var(--ink, #171612);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}
.nlu-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92) contrast(1.02);
}
.nlu-banner__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
    rgba(12,20,22,.78) 0%,
    rgba(12,20,22,.55) 24%,
    rgba(12,20,22,.18) 50%,
    rgba(12,20,22,0) 75%);
  pointer-events: none;
}
.nlu-banner__veil::after {
  content: "";
  position: absolute;
  inset: 70% 0 0 0;
  background: linear-gradient(180deg,
    transparent,
    rgba(12,20,22,.5));
  pointer-events: none;
}
.nlu-banner__content {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.5rem, 4vw, 3rem) clamp(2rem, 5vw, 3rem);
  max-width: 1320px;
  margin: 0 auto;
  color: #fbf7ee;
}
.nlu-banner__kicker {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #f3d7a1;
  margin: 0 0 .8rem;
}
.nlu-banner__title {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 7vw, 5.4rem);
  letter-spacing: -.025em;
  line-height: .92;
  color: #fbf7ee;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "opsz" 72;
  max-width: 16ch;
}
.nlu-banner__sub {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.4;
  color: rgba(251,247,238,.92);
  margin: .8rem 0 0;
  max-width: 36ch;
  font-variation-settings: "opsz" 18;
}
.nlu-banner__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 1.2rem;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(251,247,238,.7);
  padding-top: .8rem;
  border-top: 1px dashed rgba(243,215,161,.2);
  max-width: 720px;
}
.nlu-banner__meta span { white-space: nowrap; font-variant-numeric: tabular-nums; }
.nlu-banner__meta strong { color: #f3d7a1; font-weight: 700; margin-right: .35rem; }


/* === CHAPTER PROSE (from extensions) === */
/* ─── Chapter Prose: 3 Absätze mit Drop-Cap-Kapitälchen-Anfang ─── */
.nlu-chapter {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(2rem, 5vw, 3rem);
}
.nlu-chapter__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}
.nlu-chapter__kicker {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin: 0 0 1.5rem;
}
.nlu-chapter__kicker::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--rust, #a04a2d);
  border-radius: 50%;
}
.nlu-chapter__prose p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  line-height: 1.7;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0 0 1.4rem;
  font-variation-settings: "opsz" 18;
  text-wrap: pretty;
}
.nlu-chapter__prose h3 {
  margin: clamp(1.7rem, 4vw, 2.35rem) 0 .55rem;
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  line-height: 1.35;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--place-accent-readable, var(--rust, #a04a2d));
}
.nlu-chapter__prose p:first-of-type::first-line {
  font-variant-caps: all-small-caps;
  letter-spacing: 0.10em;
  font-weight: 600;
  color: var(--ink, #171612);
}
.nlu-chapter__prose p + p {
  text-indent: 1.5em;
}
.nlu-chapter__divider {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  color: var(--rust, #a04a2d);
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  letter-spacing: .5em;
  font-size: .8rem;
}
.nlu-chapter__divider::before { content: "· · ·"; }


/* === PILLAR SÄTZE (from extensions) === */
/* ─── Fünf Pillar-Sätze: Widerhaken · Humor · Recherche · Entscheidung · Hängensatz ─── */
.nlu-pillars {
  background:
    linear-gradient(180deg, rgba(208,200,184,.14), transparent 40%),
    var(--place-paper, var(--paper, #f8f3ea));
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-pillars__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.nlu-pillars__head {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  display: grid;
  gap: .8rem;
  justify-items: center;
}
.nlu-pillars__head .kicker {
  margin-bottom: 0;
}
.nlu-pillars__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.018em;
  line-height: 1.05;
  margin: 0;
  text-wrap: balance;
  font-variation-settings: "opsz" 36;
}
.nlu-pillars__head h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-pillars__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
  font-variation-settings: "opsz" 14;
}
.nlu-pillars__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}
.nlu-pillar {
  background: rgba(255,255,255,.4);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.5rem 1.3rem 1.4rem;
  position: relative;
  display: grid;
  gap: .8rem;
  align-content: start;
}
.nlu-pillar__no {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--rust, #a04a2d);
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -.02em;
}
.nlu-pillar__label {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nlu-pillar__text {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.02rem;
  line-height: 1.45;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 16;
  text-wrap: pretty;
}


/* === PULL QUOTE (from extensions) === */
/* ─── Pull-Quote: standalone Newsreader-Display, sehr groß ─── */
.nlu-pullquote {
  background: var(--ink, #171612);
  color: var(--paper, #f8f3ea);
  padding: clamp(3rem, 8vw, 5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}
.nlu-pullquote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(228,167,76,.06), transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(143,184,189,.08), transparent 40%);
  pointer-events: none;
}
.nlu-pullquote__inner {
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  text-align: center;
  display: grid;
  gap: 1.2rem;
  justify-items: center;
}
.nlu-pullquote__mark {
  width: 12px; height: 12px;
  background: var(--rust, #a04a2d);
  border-radius: 50%;
}
.nlu-pullquote blockquote {
  margin: 0;
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  color: var(--paper, #f8f3ea);
  text-wrap: balance;
  font-variation-settings: "opsz" 40;
  max-width: 32ch;
}
.nlu-pullquote cite {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-style: normal;
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: rgba(248,243,234,.7);
}


/* === QUELLEN MODELL (from extensions) === */
/* ─── Quellen-Modell: 4-5 Quellen mit Vertrauen-Rating + Einsatz-Tag ─── */
.nlu-quellen {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
}
.nlu-quellen__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 720px;
}
.nlu-quellen__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -.018em;
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "opsz" 32;
}
.nlu-quellen__head h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-quellen__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
  font-variation-settings: "opsz" 14;
}
.nlu-quellen__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-quelle {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem 1.5rem;
  align-items: start;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  position: relative;
}
.nlu-quelle__no {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--rust, #a04a2d);
  font-variant-numeric: tabular-nums;
  line-height: 1;
  padding-top: .3rem;
  min-width: 2.4ch;
}
.nlu-quelle__body { display: grid; gap: .35rem; }
.nlu-quelle__name {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.12rem;
  line-height: 1.2;
  color: var(--ink, #171612);
  font-variation-settings: "opsz" 24;
}
.nlu-quelle__name a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(160,74,45,.4);
  text-underline-offset: 3px;
}
.nlu-quelle__name a:hover { text-decoration-color: var(--rust, #a04a2d); }
.nlu-quelle__statement {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .98rem;
  line-height: 1.5;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  max-width: 72ch;
  font-variation-settings: "opsz" 16;
}
.nlu-quelle__einsatz {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .12em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.nlu-quelle__einsatz::before { content: "↳ "; color: var(--rust, #a04a2d); }
.nlu-quelle__vertrauen {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  padding: .3rem .55rem;
  border: 1.5px solid currentColor;
  align-self: start;
  white-space: nowrap;
}
.nlu-quelle__vertrauen[data-rating="offiziell"]    { color: #2f5641; }
.nlu-quelle__vertrauen[data-rating="hoch"]         { color: #4f7f95; }
.nlu-quelle__vertrauen[data-rating="verifiziert"]  { color: #876829; }
.nlu-quelle__vertrauen[data-rating="bestand"]      { color: #4e493f; }

@media (max-width: 720px) {
  .nlu-banner { aspect-ratio: 4 / 5; max-height: none; }
  .nlu-banner__veil {
    background: linear-gradient(0deg,
      rgba(12,20,22,.85) 0%,
      rgba(12,20,22,.5) 35%,
      rgba(12,20,22,0) 75%);
  }
  .nlu-banner__veil::after { display: none; }
  .nlu-pillars__grid { grid-template-columns: 1fr; }
  .nlu-quelle { grid-template-columns: auto 1fr; }
  .nlu-quelle__vertrauen { grid-column: 2; justify-self: start; margin-top: .3rem; }
}


/* === REISE APPARAT (from extensions) === */
/* ═══════════════════════════════════════════════════════════════
   REISE-APPARAT · FIELD NOTES · DREI SÄTZE
   Brand-Module: Anreise · Wetterjoker · Bessere Entscheidung ·
   Wenn nur wenig Zeit bleibt · Nicht machen.
   ─────────────────────────────────────────────────────────────── */

.nlu-apparat {
  background:
    linear-gradient(180deg, rgba(208,200,184,.16), transparent 30%),
    var(--paper-warm, #f2e9db);
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-apparat__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.nlu-apparat__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(1.6rem, 3vw, 2.2rem);
  max-width: 720px;
}
.nlu-apparat__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -.018em;
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "opsz" 32;
}
.nlu-apparat__head h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-apparat__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin: 0;
  font-variation-settings: "opsz" 14;
}

/* 5-Karten-Grid: 3 oben (Wetterjoker · Besser · Kurzzeit), 2 unten (Anreise · Nicht) */
.nlu-apparat__grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr .9fr;
  gap: 1rem;
}
.nlu-apparat__grid > .ap-wide { grid-column: span 2; }
.nlu-apparat__card {
  background: var(--paper, #f8f3ea);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.5rem 1.3rem 1.4rem;
  position: relative;
  display: grid;
  gap: .8rem;
  align-content: start;
}
.nlu-apparat__card::before {
  /* paper-tab top-left */
  content: attr(data-tag);
  position: absolute;
  top: -10px; left: 1.2rem;
  background: var(--paper-warm, #f2e9db);
  padding: 0 .6rem;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  font-weight: 700;
  border: 1px solid var(--line-strong, rgba(24,24,20,.20));
  border-bottom: 0;
}
.nlu-apparat__card[data-tag="Nicht machen"] {
  background:
    linear-gradient(180deg, rgba(160,74,45,.05), transparent 20%),
    var(--paper, #f8f3ea);
  border-color: rgba(160,74,45,.32);
}
.nlu-apparat__card[data-tag="Nicht machen"]::before {
  color: var(--rust, #a04a2d);
  border-color: var(--rust, #a04a2d);
}
.nlu-apparat__card h3 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.01em;
  font-variation-settings: "opsz" 24;
  text-wrap: balance;
}
.nlu-apparat__card p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .98rem;
  line-height: 1.55;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 16;
}
.nlu-apparat__card p em {
  font-style: italic;
  color: var(--rust, #a04a2d);
}

/* Wetterjoker innen */
.nlu-apparat__why {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: .92rem;
  line-height: 1.45;
  color: var(--ink-soft);
  margin: 0;
  padding-top: .8rem;
  border-top: 1px dashed var(--line, rgba(24,24,20,.11));
}

/* Bessere Entscheidung: X statt Y rows */
.nlu-besser-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding: .8rem 0;
  border-bottom: 1px dashed var(--line, rgba(24,24,20,.11));
}
.nlu-besser-row:last-of-type { border-bottom: 0; padding-bottom: 0; }
.nlu-besser-row:first-of-type { padding-top: 0; }
.nlu-besser-pair {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.nlu-besser-pair .statt {
  color: var(--muted, #4e493f);
  text-decoration: line-through;
  text-decoration-color: rgba(160,74,45,.5);
}
.nlu-besser-pair .arrow { color: var(--rust, #a04a2d); margin: 0 .35rem; }
.nlu-besser-pair .das {
  color: var(--ink, #171612);
  font-weight: 700;
}
.nlu-besser-row p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .96rem;
  line-height: 1.5;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 14;
}

/* Kurzzeit-Liste mit Zeit-Stempeln */
.nlu-kurzzeit {
  display: grid;
  gap: .6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nlu-kurzzeit li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: .8rem;
  align-items: baseline;
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .96rem;
  line-height: 1.4;
  color: var(--ink-readable, rgba(23,22,18,.92));
  font-variation-settings: "opsz" 14;
}
.nlu-kurzzeit li::before {
  content: attr(data-time);
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--rust, #a04a2d);
  font-variant-numeric: tabular-nums;
}

/* Anreise: data-style mit Label+Wert */
.nlu-anreise {
  display: grid;
  gap: .6rem;
  margin: 0;
}
.nlu-anreise dt {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .66rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  font-weight: 700;
  margin-top: .3rem;
}
.nlu-anreise dt:first-of-type { margin-top: 0; }
.nlu-anreise dd {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .96rem;
  line-height: 1.45;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: .1rem 0 0;
  font-variation-settings: "opsz" 14;
}

/* Nicht-machen Liste */
.nlu-nicht {
  display: grid;
  gap: .55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nlu-nicht li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .7rem;
  align-items: baseline;
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .96rem;
  line-height: 1.45;
  color: var(--ink-readable, rgba(23,22,18,.92));
  font-variation-settings: "opsz" 14;
}
.nlu-nicht li::before {
  content: "✕";
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .9rem;
  color: var(--rust, #a04a2d);
  font-weight: 700;
  line-height: 1;
  padding-top: .2rem;
}


/* === FIELD NOTES (from extensions) === */
/* ─── Field Notes ─── */
.nlu-fieldnotes {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  display: grid;
  gap: 2rem;
}
.nlu-fieldnotes__head {
  display: grid;
  gap: .4rem;
  max-width: 720px;
}
.nlu-fieldnotes__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -.018em;
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "opsz" 32;
}
.nlu-fieldnotes__head h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-fieldnotes__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
}
.nlu-fieldnote {
  background: var(--chalk-white, #fbf7ee);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.5rem 1.3rem 1.4rem;
  position: relative;
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.55;
  color: var(--ink-readable, rgba(23,22,18,.92));
  transform: rotate(-0.6deg);
  box-shadow: 0 8px 24px rgba(15,41,48,.06);
  font-variation-settings: "opsz" 16;
  text-wrap: pretty;
}
.nlu-fieldnote:nth-child(2n) { transform: rotate(.5deg); }
.nlu-fieldnote:nth-child(3n) { transform: rotate(-.3deg); }

@media (max-width: 1200px) {
  .nlu-fieldnotes__grid {
    width: 100%;
    max-width: 100%;
  }

  .nlu-fieldnote,
  .nlu-fieldnote:nth-child(2n),
  .nlu-fieldnote:nth-child(3n) {
    transform: none;
  }
}

.nlu-fieldnote::before {
  /* tape strip on top */
  content: "";
  position: absolute;
  top: -10px; right: 14%;
  width: 84px; height: 16px;
  background: rgba(176,138,87,.55);
  transform: rotate(2deg);
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.nlu-fieldnote__meta {
  display: block;
  margin-top: 1rem;
  padding-top: .6rem;
  border-top: 1px dashed var(--line, rgba(24,24,20,.11));
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  font-weight: 700;
}


/* === DREI SÄTZE (from extensions) === */
/* ─── Drei Sätze: finale Extraktion ─── */
.nlu-dreisaetze {
  background:
    linear-gradient(180deg, rgba(208,200,184,.18), transparent 35%),
    var(--paper-deep, #e8decd);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-dreisaetze__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 2rem;
}
.nlu-dreisaetze__head {
  text-align: center;
  display: grid;
  gap: .5rem;
  justify-items: center;
}
.nlu-dreisaetze__head .kicker { margin: 0; }
.nlu-dreisaetze__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  letter-spacing: -.018em;
  line-height: 1.1;
  margin: 0;
  font-variation-settings: "opsz" 32;
  text-wrap: balance;
}
.nlu-dreisaetze__head h2 em {
  color: var(--place-accent, var(--rust, #a04a2d));
  font-style: italic;
}
.nlu-dreisaetze__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  counter-reset: satz;
}
.nlu-satz {
  background: var(--chalk-white, #fbf7ee);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.5rem 1.3rem 1.4rem;
  position: relative;
  display: grid;
  gap: 1rem;
  counter-increment: satz;
}
.nlu-satz::before {
  content: counter(satz, decimal-leading-zero);
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--rust, #a04a2d);
  font-variant-numeric: tabular-nums;
  font-variation-settings: "opsz" 48;
}
.nlu-satz p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink, #171612);
  margin: 0;
  font-variation-settings: "opsz" 18;
  text-wrap: pretty;
  font-style: italic;
}

@media (max-width: 1023px) {
  .nlu-apparat__grid { grid-template-columns: 1fr 1fr; }
  .nlu-apparat__grid > .ap-wide { grid-column: 1 / -1; }
  .nlu-dreisaetze__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nlu-apparat__grid { grid-template-columns: 1fr; }
  .nlu-apparat__grid > .ap-wide { grid-column: 1; }
  .nlu-kurzzeit li { grid-template-columns: 3rem 1fr; }
}


/* === VISUAL FINETUNING V2 (from extensions) === */
/* ═══════════════════════════════════════════════════════════════
   VISUAL FINETUNING · V2
   Drop-Cap · Reading-Progress · Pull-Quote · Pillars-Hover ·
   Field-Notes-Textur · Drei-Sätze-Typografie
   ─────────────────────────────────────────────────────────────── */

/* Reading-Progress-Bar — produktives Element .reading-progress wird aktiv */
.reading-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--rust, #a04a2d), #ecb39c);
  z-index: 100;
  transition: width .12s linear;
  pointer-events: none;
}

/* Drop-Cap auf der ersten Chapter-Absatzes — Versalie als Initiale */
.nlu-chapter__prose p:first-of-type::first-letter {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(3.4rem, 6vw, 4.8rem);
  line-height: 0.86;
  float: left;
  margin: .15rem .55rem -.15rem 0;
  color: var(--rust, #a04a2d);
  font-variation-settings: "opsz" 72;
}
/* Drop-Cap und Kapitälchen-Erste-Linie kollidieren — Drop-Cap gewinnt */
.nlu-chapter__prose p:first-of-type::first-line {
  font-variant-caps: normal;
  letter-spacing: 0;
  font-weight: 500;
  color: inherit;
}
/* Optisch ruhigeres Einrücken nach P1 */
.nlu-chapter__prose p:first-of-type { text-indent: 0; }
.nlu-chapter__prose p + p { text-indent: 1.8em; }

/* Chapter-Divider organischer */
.nlu-chapter__divider {
  margin: 2.5rem 0 1.5rem;
  letter-spacing: .8em;
  opacity: .85;
}

/* Pillars: Hover-Lift + Marginal-Akzent */
.nlu-pillar {
  transition: transform .22s var(--ease-out, ease),
              border-color .22s var(--ease-out, ease),
              box-shadow .22s var(--ease-out, ease);
  background: linear-gradient(180deg, rgba(255,255,255,.5), rgba(255,255,255,.35));
}
.nlu-pillar:hover {
  transform: translateY(-3px);
  border-color: var(--ink-soft, rgba(23,22,18,.94));
  box-shadow: 0 12px 28px rgba(15,41,48,.08);
}
.nlu-pillar__no {
  font-size: 2.8rem;
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--rust, #a04a2d);
  font-variation-settings: "opsz" 48;
}
.nlu-pillar__text {
  font-size: 1.08rem;
  line-height: 1.5;
}

/* Field-Notes: dezente Papier-Textur + minimale Rand-Variation */
.nlu-fieldnote {
  background:
    repeating-linear-gradient(35deg, transparent 0 80px, rgba(176,138,87,.025) 80px 81px),
    repeating-linear-gradient(125deg, transparent 0 120px, rgba(95,90,80,.02) 120px 121px),
    var(--chalk-white, #fbf7ee);
  font-size: 1.08rem;
  line-height: 1.55;
}
.nlu-fieldnote::after {
  /* gezackter unterer Rand wie abgerissen */
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 5px;
  background: repeating-linear-gradient(
    90deg,
    var(--chalk-white, #fbf7ee) 0 5px,
    transparent 5px 6px,
    var(--chalk-white, #fbf7ee) 6px 11px,
    transparent 11px 13px
  );
  pointer-events: none;
}

/* Pull-Quote: deutlich größer, mit Papier-Rahmen-Linien */
.nlu-pullquote__inner {
  position: relative;
  padding: 2rem 1rem;
}
.nlu-pullquote__inner::before,
.nlu-pullquote__inner::after {
  /* Eckwinkel statt voller Rahmen — wie eine Markierung in der Druckvorlage */
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: rgba(248,243,234,.32);
  border-style: solid;
}
.nlu-pullquote__inner::before {
  top: 0; left: 0;
  border-width: 1px 0 0 1px;
}
.nlu-pullquote__inner::after {
  bottom: 0; right: 0;
  border-width: 0 1px 1px 0;
}
.nlu-pullquote blockquote {
  font-size: clamp(1.7rem, 4.4vw, 3.2rem);
  line-height: 1.16;
  max-width: 30ch;
  font-variation-settings: "opsz" 48;
}

/* Drei-Sätze: typografisch dramatischer */
.nlu-satz {
  padding: 2rem 1.5rem 1.8rem;
  position: relative;
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease);
}
.nlu-satz:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(15,41,48,.08);
}
.nlu-satz::before {
  font-size: 3.4rem;
  margin-bottom: .3rem;
  letter-spacing: -.03em;
  font-variation-settings: "opsz" 60;
}
.nlu-satz p {
  font-size: 1.18rem;
  line-height: 1.4;
}
/* Mark unter der Nummer wie Ornament */
.nlu-satz::after {
  content: "";
  position: absolute;
  top: 4.2rem; left: 1.5rem;
  width: 28px;
  height: 1px;
  background: var(--rust, #a04a2d);
  opacity: .55;
}

/* Quellen-Vertrauen-Chip mit subtiler Hintergrund-Akzentfarbe */
.nlu-quelle__vertrauen[data-rating="offiziell"]   { background: rgba(47,86,65,.06); }
.nlu-quelle__vertrauen[data-rating="hoch"]        { background: rgba(79,127,149,.06); }
.nlu-quelle__vertrauen[data-rating="verifiziert"] { background: rgba(135,104,41,.06); }
.nlu-quelle__vertrauen[data-rating="bestand"]     { background: rgba(95,90,80,.06); }

/* Pillars-Grid: subtiler Hintergrund-Wechsel pro Karte */
.nlu-pillar:nth-child(2n) { background: linear-gradient(180deg, rgba(255,255,255,.42), rgba(255,255,255,.28)); }

/* Banner-Titel: bessere Lesbarkeit via Text-Shadow */
.nlu-banner__title {
  text-shadow: 0 4px 24px rgba(0,0,0,.6), 0 1px 4px rgba(0,0,0,.4);
}
.nlu-banner__sub {
  text-shadow: 0 2px 12px rgba(0,0,0,.5), 0 1px 3px rgba(0,0,0,.4);
}

/* Section-Anchor scrollMargin damit Sticky-Header nicht überdeckt */
.nlu-chapter, .nlu-pillars, .nlu-apparat, .nlu-fieldnotes, .nlu-quellen, .nlu-dreisaetze, .nlu-archivspur {
  scroll-margin-top: 80px;
}

@media (max-width: 720px) {
  .nlu-chapter__prose p:first-of-type::first-letter {
    font-size: clamp(2.8rem, 11vw, 3.6rem);
  }
  .nlu-satz::after { display: none; }
}


/* === STARTSEITE EDITORIAL BANNER & STILGESETZ (from extensions) === */
/* ═══════════════════════════════════════════════════════════════
   LANDINGPAGE · Editorial Banner · Stilgesetz · Leselinie-Frame
   Speziell für die Startseite — der Header ist eine vollständige
   editoriale Komposition als Bild; die Sektionen unten geben
   Lese-Rhythmus + klare Hierarchie.
   ─────────────────────────────────────────────────────────────── */

/* Editorial Banner: das ganze Landingpage-PNG als Hero */
.nlu-editorial-banner {
  position: relative;
  width: 100%;
  background: var(--paper, #f8f3ea);
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  overflow: hidden;
}
.nlu-editorial-banner__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 9;
  max-height: 92vh;
  filter: saturate(1.03) contrast(1.02);
}
.nlu-editorial-banner--landing .nlu-editorial-banner__image {
  clip-path: url(#torn-edge-bottom);
  mix-blend-mode: multiply;
}
@media (prefers-color-scheme: dark) {
  .nlu-editorial-banner--landing .nlu-editorial-banner__image {
    mix-blend-mode: screen;
  }
}
.nlu-editorial-banner__caption {
  position: absolute;
  bottom: 1rem; right: 1.2rem;
  z-index: 3;
  background: rgba(248,243,234,.85);
  padding: .3rem .55rem;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--ink-soft, rgba(23,22,18,.94));
  text-transform: uppercase;
  border: 1px solid var(--line, rgba(24,24,20,.11));
  pointer-events: none;
}

.nlu-editorial-banner--landing::after {
  content: "Wetterlogik ist Plan A.";
  position: absolute;
  right: clamp(1.55rem, 3vw, 3rem);
  bottom: clamp(2.55rem, 3.75vw, 4rem);
  z-index: 2;
  display: grid;
  place-items: center;
  width: clamp(16rem, 21vw, 18.75rem);
  min-height: clamp(3.2rem, 4.55vw, 4.15rem);
  padding: 0.64rem 1rem 0.58rem;
  border: 1px solid rgba(79, 58, 42, 0.18);
  background:
    linear-gradient(180deg, rgb(252, 247, 236), rgb(238, 226, 205));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.62) inset,
    0 10px 22px rgba(37, 27, 18, 0.16);
  color: rgba(40, 35, 28, 0.92);
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.05vw, 1.02rem);
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
  text-align: center;
  transform: rotate(-2.4deg);
  pointer-events: none;
}

/* Sub-Hero — kurze Lede + CTAs direkt unter dem Banner */
.nlu-subhero {
  position: relative;
  overflow: hidden;
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4rem) 1.5rem clamp(1rem, 3vw, 2rem);
  display: grid;
  gap: 1.5rem;
  text-align: center;
  justify-items: center;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  background:
    radial-gradient(circle at 10% 12%, rgba(143, 184, 189, 0.15), transparent 34%),
    radial-gradient(circle at 92% 86%, rgba(160, 74, 45, 0.08), transparent 38%),
    linear-gradient(180deg, rgba(255, 251, 245, 0.86), rgba(248, 243, 234, 0.94));
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.55) inset,
    0 24px 44px rgba(15, 41, 48, 0.08);
}
.nlu-subhero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, transparent 0 42px, rgba(24,24,20,.03) 42px 43px),
    repeating-linear-gradient(0deg, transparent 0 26px, rgba(24,24,20,.022) 26px 27px);
  opacity: .45;
  pointer-events: none;
}
.nlu-subhero > * {
  position: relative;
  z-index: 1;
}
.nlu-subhero h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -.018em;
  margin: 0;
  text-wrap: balance;
  max-width: 22ch;
  font-variation-settings: "opsz" 32;
}
.nlu-subhero h2 em {
  color: var(--rust, #a04a2d);
  font-style: italic;
}
.nlu-subhero p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
  color: var(--ink-readable, rgba(23,22,18,.92));
  max-width: 56ch;
  margin: 0;
  font-variation-settings: "opsz" 18;
}
.nlu-subhero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  margin-top: .5rem;
}

.nlu-visitor-path {
  padding: clamp(2.4rem, 5vw, 4rem) 1.5rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,.46), rgba(248,243,234,.86)),
    var(--paper, #f8f3ea);
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
}

.nlu-visitor-path--compact {
  padding-top: clamp(2rem, 4vw, 3rem);
}

.nlu-visitor-path__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: clamp(1.3rem, 3vw, 2rem);
}

.nlu-visitor-path__head {
  display: grid;
  gap: .55rem;
  max-width: 760px;
}

.nlu-visitor-path__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.85rem, 4vw, 3.1rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: 0;
}

.nlu-visitor-path__head p:not(.kicker) {
  max-width: 62ch;
  color: var(--ink-readable, rgba(23,22,18,.92));
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.55;
}

.nlu-visitor-path__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.nlu-visitor-card {
  min-height: 15.5rem;
  display: grid;
  align-content: start;
  gap: .7rem;
  padding: 1.1rem;
  border: 1px solid rgba(24,24,20,.12);
  border-radius: var(--radius-md, 4px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(248,243,234,.94));
  box-shadow: 0 12px 26px rgba(15,41,48,.07);
  color: var(--ink, #171612);
  text-decoration: none;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), border-color .22s var(--ease-out), background .22s var(--ease-out);
}

.nlu-visitor-card:hover,
.nlu-visitor-card:focus-visible {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--rust, #a04a2d) 48%, rgba(24,24,20,.16));
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,243,234,1));
  box-shadow: 0 18px 34px rgba(15,41,48,.12);
}

.nlu-visitor-card:focus-visible {
  outline: 2px solid var(--rust, #a04a2d);
  outline-offset: 3px;
}

.nlu-visitor-card__label {
  width: fit-content;
  padding: .22rem .45rem;
  border: 1px solid color-mix(in srgb, var(--rust, #a04a2d) 36%, rgba(24,24,20,.14));
  border-radius: var(--radius-sm, 2px);
  color: var(--rust, #a04a2d);
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.nlu-visitor-card strong {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
  font-weight: 620;
  line-height: 1.12;
  letter-spacing: 0;
}

.nlu-visitor-card span:last-child {
  color: var(--ink-readable, rgba(23,22,18,.92));
  font-size: .96rem;
  line-height: 1.55;
}

/* Lesepfad: kleine Orientierung zwischen Hero und Langstrecke */
.nlu-reading-path {
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.74), rgba(242, 233, 219, 0.88)),
    var(--paper-warm, #f2e9db);
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  padding: clamp(2.25rem, 5vw, 3.4rem) 1.5rem;
}
.nlu-reading-path__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(220px, .82fr) 1.18fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.nlu-reading-path__head {
  display: grid;
  gap: .6rem;
}
.nlu-reading-path__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 3.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.018em;
  margin: 0;
  font-variation-settings: "opsz" 36;
  text-wrap: balance;
}
.nlu-reading-path__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1rem, 1.35vw, 1.1rem);
  line-height: 1.58;
  color: var(--ink-soft);
  margin: 0;
  max-width: 48ch;
  font-variation-settings: "opsz" 16;
}
.nlu-reading-path__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(24,24,20,.14);
  border: 1px solid rgba(24,24,20,.14);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nlu-reading-path__step {
  background: color-mix(in srgb, var(--paper, #f8f3ea) 88%, white 12%);
  padding: 1.15rem 1rem 1.05rem;
  display: grid;
  gap: .45rem;
  min-height: 10.2rem;
}
.nlu-reading-path__step span {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
}
.nlu-reading-path__step strong {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.16rem;
  line-height: 1.15;
  font-weight: 600;
  color: var(--ink, #171612);
  font-variation-settings: "opsz" 28;
}
.nlu-reading-path__step p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .95rem;
  line-height: 1.48;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 14;
}

/* Stilgesetz: 3 nummerierte Karten — die Markentenets */
.nlu-tenets {
  background:
    linear-gradient(180deg, rgba(208,200,184,.14), transparent 30%),
    var(--paper-warm, #f2e9db);
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-tenets__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.nlu-tenets__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(1.5rem, 3vw, 2rem);
  max-width: 720px;
}
.nlu-tenets__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.nlu-tenets__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-tenets__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
  font-variation-settings: "opsz" 14;
}
.nlu-tenets__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.nlu-tenet {
  background: var(--paper, #f8f3ea);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.8rem 1.5rem 1.6rem;
  display: grid;
  gap: 1rem;
  position: relative;
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease);
}
.nlu-tenet:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(15,41,48,.08); }
.nlu-tenet__no {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--rust, #a04a2d);
  line-height: 1;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.nlu-tenet__label {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
}
.nlu-tenet h3 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.32rem;
  line-height: 1.2;
  margin: 0;
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 28;
}
.nlu-tenet p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 16;
}

/* Leselinie-Atlas: Karten in 3-Spalten-Grid mit Bild-Hover */
.nlu-leseatlas {
  background: var(--paper, #f8f3ea);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-leseatlas__inner {
  max-width: 1320px;
  margin: 0 auto;
}
.nlu-leseatlas__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.nlu-leseatlas__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.nlu-leseatlas__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-leseatlas__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.nlu-leseatlas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}
.nlu-leseplace {
  background: var(--chalk-white, #fbf7ee);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  border-radius: 0.3rem;
  box-shadow: 0 8px 22px rgba(15, 41, 48, 0.08);
  display: block;
  color: inherit;
  text-decoration: none;
  overflow: hidden;
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease);
}
.nlu-leseplace:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(15,41,48,.10);
}
.nlu-leseplace__cover {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  position: relative;
  background: var(--ink, #171612);
}
.nlu-leseplace__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out, ease);
  filter: saturate(.95);
}
.nlu-leseplace:hover .nlu-leseplace__cover img { transform: scale(1.04); }
.nlu-leseplace__no {
  position: absolute;
  top: .65rem; left: .65rem;
  background: var(--rust, #a04a2d);
  color: #fbf7ee;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.18rem;
  line-height: 1;
  transform: rotate(-4deg);
  box-shadow: 0 4px 10px rgba(0,0,0,.3);
}
.nlu-leseplace__body {
  padding: 1.2rem 1.3rem 1.4rem;
  display: grid;
  gap: .4rem;
}
.nlu-leseplace__marker {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
}
.nlu-leseplace__name {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.05;
  letter-spacing: -.018em;
  color: var(--ink, #171612);
  font-variation-settings: "opsz" 32;
}
.nlu-leseplace__sub {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .85rem;
  letter-spacing: .04em;
  color: var(--ink-soft);
  font-weight: 500;
}
.nlu-leseplace__sentence {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin-top: .4rem;
  font-variation-settings: "opsz" 16;
}

@media (max-width: 900px) {
  .nlu-tenets__grid,
  .nlu-leseatlas__grid,
  .nlu-visitor-path__grid,
  .nlu-reading-path__grid { grid-template-columns: 1fr 1fr; }
  .nlu-reading-path__inner { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nlu-tenets__grid,
  .nlu-leseatlas__grid,
  .nlu-visitor-path__grid,
  .nlu-reading-path__grid { grid-template-columns: 1fr; }
  .nlu-editorial-banner__image { aspect-ratio: 4/3; }
  .nlu-reading-path__step { min-height: 0; }
  .nlu-visitor-card { min-height: 0; }
}


/* === SEKTION HUBS (from extensions) === */
/* ═══════════════════════════════════════════════════════════════
   SEKTION-HUBS · Orte, Kompass, Field Notes
   ─────────────────────────────────────────────────────────────── */

/* Orte-Atlas: große 2-Spalten-Karten mit Charakter-Sortierung */
.nlu-orte-atlas {
  background: var(--paper, #f8f3ea);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-orte-atlas__inner { max-width: 1320px; margin: 0 auto; }
.nlu-orte-atlas__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.nlu-orte-atlas__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.nlu-orte-atlas__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-orte-atlas__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.nlu-ortcard {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  background: var(--chalk-white, #fbf7ee);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  border-radius: 0.3rem;
  box-shadow: 0 8px 22px rgba(15, 41, 48, 0.08);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  transition: transform .22s var(--ease-out, ease), box-shadow .22s var(--ease-out, ease);
}
.nlu-ortcard:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(15,41,48,.10); }
.nlu-ortcard__cover {
  aspect-ratio: 3 / 4;
  background: var(--ink, #171612);
  overflow: hidden;
  position: relative;
}
.nlu-ortcard__cover img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s var(--ease-out, ease);
  filter: saturate(1.03) contrast(1.01);
}
.nlu-ortcard:hover .nlu-ortcard__cover img { transform: scale(1.04); }
.nlu-ortcard__no-tile {
  position: absolute;
  top: .7rem; left: .7rem;
  z-index: 2;
  width: 48px; height: 48px;
  display: grid; place-items: center;
  background: var(--rust, #a04a2d);
  color: #fbf7ee;
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1;
  transform: rotate(-4deg);
  box-shadow: 0 4px 12px rgba(0,0,0,.4);
}
.nlu-ortcard__body {
  padding: 1.6rem 1.4rem 1.5rem;
  display: grid;
  gap: .6rem;
  align-content: start;
}
.nlu-ortcard__marker {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
}
.nlu-ortcard__name {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.5rem, 2.6vw, 1.95rem);
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink, #171612);
  font-variation-settings: "opsz" 32;
}
.nlu-ortcard__sub {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--ink-soft);
  margin: 0;
  font-variation-settings: "opsz" 16;
}
.nlu-ortcard__charakter {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .2rem;
}
.nlu-ortcard__charakter span {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: .25rem .5rem;
  border: 1px solid var(--line-strong, rgba(24,24,20,.20));
  background: color-mix(in srgb, var(--paper-cold) 72%, transparent);
}
.nlu-ortcard__sentence {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .96rem;
  line-height: 1.5;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  padding-top: .6rem;
  border-top: 1px dashed var(--line, rgba(24,24,20,.11));
  font-variation-settings: "opsz" 14;
}
.nlu-ortcard__sentence::before { content: "„"; color: var(--rust, #a04a2d); }
.nlu-ortcard__sentence::after  { content: "\""; color: var(--rust, #a04a2d); }

/* Charakter-Bänder im Header (welch · urban · …) */
.nlu-charakter-band {
  background: var(--paper-warm, #f2e9db);
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-charakter-band__inner {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nlu-charakter-band__inner span {
  display: inline-flex; align-items: center; gap: .6rem;
}
.nlu-charakter-band__inner span::before {
  content: "";
  width: 5px; height: 5px;
  background: var(--rust, #a04a2d);
  border-radius: 50%;
}

/* Kompass-Grid: Wenn/Dann-Decision-Matrix */
.nlu-kompass {
  background: var(--paper, #f8f3ea);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-kompass__inner { max-width: 1320px; margin: 0 auto; }
.nlu-kompass__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.nlu-kompass__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.nlu-kompass__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-kompass__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.nlu-kompass__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.2rem;
}
.nlu-kompass-card {
  background: var(--chalk-white, #fbf7ee);
  border: 1px solid var(--line, rgba(24,24,20,.11));
  padding: 1.5rem 1.4rem 1.4rem;
  position: relative;
  display: grid;
  gap: 1rem;
  align-content: start;
}
.nlu-kompass-card__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: baseline;
}
.nlu-kompass-card__no {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--rust, #a04a2d);
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.nlu-kompass-card__name {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: 1.4rem;
  line-height: 1.1;
  color: var(--ink, #171612);
  letter-spacing: -.015em;
  font-variation-settings: "opsz" 28;
}
.nlu-kompass-card__name span {
  display: block;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  margin-bottom: .25rem;
}
.nlu-kompass-card__decision {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink-readable, rgba(23,22,18,.92));
  margin: 0;
  font-variation-settings: "opsz" 16;
}
.nlu-kompass-card__rules {
  display: grid;
  gap: .5rem;
  padding-top: .8rem;
  border-top: 1px dashed var(--line, rgba(24,24,20,.11));
}
.nlu-kompass-card__rule {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: .8rem;
  align-items: baseline;
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: .94rem;
  line-height: 1.45;
  color: var(--ink-readable, rgba(23,22,18,.92));
  font-variation-settings: "opsz" 14;
}
.nlu-kompass-card__rule strong {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
}
.nlu-kompass-card__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: .6rem;
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--rust, #a04a2d);
  text-decoration: none;
  padding-top: .8rem;
  border-top: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-kompass-card__link:hover { color: var(--ink, #171612); }
.nlu-kompass-card__link::after { content: "↳"; }

/* Wetter-Modul auf Kompass: drei-Spalten-Block */
.nlu-wetterlogic {
  background: #142124;
  color: #fbf7ee;
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
  position: relative;
  overflow: hidden;
}
.nlu-wetterlogic::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(228,167,76,.08), transparent 40%),
    radial-gradient(circle at 88% 80%, rgba(143,184,189,.10), transparent 45%);
  pointer-events: none;
}
.nlu-wetterlogic__inner {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
}
.nlu-wetterlogic__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.nlu-wetterlogic__head .kicker { color: #f3d7a1; }
.nlu-wetterlogic__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  color: #fbf7ee;
  font-variation-settings: "opsz" 36;
}
.nlu-wetterlogic__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-wetterlogic__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1rem;
  color: rgba(251,247,238,.85);
  margin: 0;
  max-width: 60ch;
}
.nlu-wetterlogic__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
}
.nlu-wettercard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(243,215,161,.18);
  padding: 1.4rem;
  display: grid;
  gap: .8rem;
}
.nlu-wettercard h3 {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .8rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #f3d7a1;
  margin: 0;
}
.nlu-wettercard p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  line-height: 1.55;
  color: rgba(251,247,238,.92);
  margin: 0;
  font-variation-settings: "opsz" 16;
}
.nlu-wettercard p strong {
  color: #fbf7ee;
  font-weight: 600;
}

/* Field-Notes-Archive: chronologisches Grid + Tag-Filter-Look */
.nlu-notes-archive {
  background: var(--paper, #f8f3ea);
  padding: clamp(3rem, 7vw, 4.5rem) 1.5rem;
}
.nlu-notes-archive__inner { max-width: 1320px; margin: 0 auto; }
.nlu-notes-archive__head {
  display: grid;
  gap: .6rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
  max-width: 760px;
}
.nlu-notes-archive__head h2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-weight: 600;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: -.02em;
  line-height: 1.05;
  margin: 0;
  font-variation-settings: "opsz" 36;
}
.nlu-notes-archive__head h2 em { color: var(--rust, #a04a2d); font-style: italic; }
.nlu-notes-archive__head p {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--ink-soft);
  margin: 0;
  max-width: 60ch;
}
.nlu-notes-archive__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.nlu-notes-archive .nlu-fieldnote {
  font-size: 1.02rem;
  line-height: 1.55;
}
.nlu-notes-archive .nlu-fieldnote__meta::before {
  content: attr(data-place);
  color: var(--rust, #a04a2d);
  font-weight: 700;
  margin-right: .5rem;
}

/* Sektion-Filter-Bar */
.nlu-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line, rgba(24,24,20,.11));
}
.nlu-filter-bar__label {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 700;
  padding: .5rem .6rem 0 0;
}
.nlu-filter-chip {
  font-family: var(--font-sans, 'Manrope', sans-serif);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .45rem .7rem;
  background: transparent;
  border: 1px solid var(--line-strong, rgba(24,24,20,.20));
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s var(--ease-out, ease);
}
.nlu-filter-chip:hover { color: var(--ink, #171612); border-color: var(--ink, #171612); }
.nlu-filter-chip.is-active {
  background: var(--ink, #171612);
  color: var(--paper, #f8f3ea);
  border-color: var(--ink, #171612);
}

@media (max-width: 900px) {
  .nlu-orte-atlas__grid { grid-template-columns: 1fr; }
  .nlu-ortcard { grid-template-columns: 1fr; }
  .nlu-ortcard__cover { aspect-ratio: 16/9; }
  .nlu-kompass__grid { grid-template-columns: 1fr; }
}


/* === NORDROUTE ROUTE MAP (from extensions) ===
   NORDROUTE MAP · Scroll-triggered illustrated route map
   58°N → 78°N · Die Dramaturgie als Leselinie
   rAF-driven animation · traveling dot · city pulses · sea texture
   ─────────────────────────────────────────────────────────────── */

/* ─── Keyframes — dramatic edition ─── */
@keyframes nr-ring-pulse {
  0%   { r: 6;  opacity: .85; stroke-width: 2.4; }
  60%  { r: 28; opacity: 0;   stroke-width: .8; }
  100% { r: 28; opacity: 0;   stroke-width: .6; }
}
@keyframes nr-ring-pulse-wide {
  0%   { r: 6;  opacity: .55; stroke-width: 1.8; }
  70%  { r: 40; opacity: 0;   stroke-width: .5; }
  100% { r: 40; opacity: 0;   stroke-width: .4; }
}
@keyframes nr-dot-pop {
  /* Stempel-Drop: kommt aus Höhe, prallt ab, setzt sich, vibriert kurz */
  0%   { transform: scale(0) rotate(-12deg); transform-origin: center; opacity: 0; }
  30%  { transform: scale(1.6) rotate(2deg); transform-origin: center; opacity: 1; }
  55%  { transform: scale(.78) rotate(-1deg); transform-origin: center; }
  75%  { transform: scale(1.12) rotate(.5deg); transform-origin: center; }
  100% { transform: scale(1) rotate(0); transform-origin: center; }
}
@keyframes nr-core-flash {
  0%   { opacity: 0; r: 0; }
  35%  { opacity: 1; r: 4; }
  100% { opacity: 1; r: 2.2; }
}
@keyframes nr-travel-pulse {
  0%,100% { opacity: 1; }
  50%     { opacity: .55; }
}
@keyframes nr-halo-breathe {
  0%,100% { opacity: .12; transform: scale(.85); transform-origin: center; }
  50%     { opacity: .28; transform: scale(1.15); transform-origin: center; }
}
@keyframes nr-numeral-rise {
  0%   { opacity: 0; transform: translateY(8px) scale(.85); transform-origin: center; }
  100% { opacity: 1; transform: translateY(0) scale(1); transform-origin: center; }
}
@keyframes nr-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
@keyframes nr-label-in {
  from { opacity: 0; transform: translateY(4px); }
  to   { opacity: 1; transform: none; }
}
/* Subtle continuous shimmer on the route after reveal */
@keyframes nr-route-shimmer {
  0%,100% { filter: drop-shadow(0 0 2px rgba(200, 110, 50, .35)); }
  50%     { filter: drop-shadow(0 0 6px rgba(220, 140, 60, .55)); }
}

/* ─── Section wrapper ─── */
.nordroute {
  position: relative;
  padding: clamp(4rem, 10vw, 7rem) 0;
  background:
    linear-gradient(180deg,
      color-mix(in oklch, var(--fjord, #0b7273) 9%, var(--paper, #f6f1e7)) 0%,
      var(--paper, #f6f1e7) 60%);
  border-top: 1px solid var(--line, rgba(17,21,20,.08));
  border-bottom: 1px solid var(--line, rgba(17,21,20,.08));
  overflow: hidden;
}

/* ─── Layout grid ─── */
.nordroute__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 440px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}
.nordroute__head {
  grid-column: 1 / -1;
  text-align: center;
  max-width: 54ch;
  margin: 0 auto;
}
.nordroute__kicker {
  display: block;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .72rem;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--rust, #a64a3d);
  margin-bottom: .75rem;
}
.nordroute__title {
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: clamp(1.6rem, 3.2vw, 2.4rem);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink, #111514);
  margin: 0 0 .8rem;
  font-variation-settings: "opsz" 30;
  letter-spacing: -.02em;
}
.nordroute__title em { font-style: italic; color: var(--rust, #a64a3d); }
.nordroute__sub {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted, #5a5a52);
  margin: 0;
  font-variation-settings: "opsz" 16;
}

/* ─── Map column ─── */
.nordroute__map-wrap {
  position: sticky;
  top: 4rem;
}
.nordroute__svg {
  width: 100%;
  max-width: 440px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 6px 28px rgba(11,114,115,.12));
}

/* ═══════════════════════════════════════════════════════════════
   MASTER-AQUARELL ARCHITEKTUR
   Norway Map Historic (1024×1536) als Hauptebene,
   minimal-invasive Editorial-Layer (Goldroute, Pins, Cartouche).
   ═══════════════════════════════════════════════════════════════ */

@keyframes nr-sun-breathe {
  0%,100% { opacity: .75; }
  50%     { opacity: 1; }
}

/* ─── Layer 1: MASTER-AQUARELL ─── */
.nr-master-image {
  image-rendering: auto;
  filter: saturate(1.04) contrast(1.03);
}

/* ─── Layer 2: Mitternachtssonnen-Glow ─── */
.nr-midnightsun-glow {
  animation: nr-sun-breathe 11s ease-in-out infinite;
  mix-blend-mode: screen;
}

/* ─── Layer 3: ROUTE (golden mit Schatten, Glow und Trail) ─── */
.nr-route-shadow {
  fill: none;
  stroke: rgba(50,30,10,.22);
  stroke-width: 3.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nr-route {
  fill: none;
  stroke: url(#nr-route-gold);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0;
  stroke-dashoffset: 0;
}
.nordroute.is-done .nr-route {
  animation: nr-route-shimmer 4s ease-in-out infinite;
}

/* Glühender Schweif/Trail HINTER dem Travel-Dot — folgt mit lag */
.nr-route-trail {
  fill: none;
  stroke: rgba(255, 200, 110, .85);
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: blur(2px);
  opacity: 0;
}
.nordroute.is-animating .nr-route-trail {
  opacity: 1;
}
.nordroute.is-done .nr-route-trail { opacity: 0; transition: opacity .8s ease-out; }

/* Traveling dot mit DREIFACHEM Halo (outer/inner/dot) */
.nr-travel-halo {
  fill: var(--rust, #a64a3d);
  opacity: 0;
}
.nr-travel-halo--outer {
  fill: rgba(255, 180, 80, .35);
  opacity: 0;
}
.nr-travel-dot {
  fill: var(--rust, #a64a3d);
  opacity: 0;
}
.nordroute.is-animating .nr-travel-halo--outer {
  opacity: 1;
  animation: nr-halo-breathe 1.4s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.nordroute.is-animating .nr-travel-halo {
  opacity: .42;
  animation: nr-travel-pulse 1.1s ease-in-out infinite;
}
.nordroute.is-animating .nr-travel-dot {
  opacity: 1;
  animation: nr-travel-pulse 1.1s ease-in-out infinite;
}
.nordroute.is-done .nr-travel-dot,
.nordroute.is-done .nr-travel-halo,
.nordroute.is-done .nr-travel-halo--outer { opacity: 0; transition: opacity .6s ease-out; }

/* ─── Layer 4: STADT-PINS — Stempel-Drop + DREIFACHER Pulse-Ring ─── */
.nr-city { opacity: 0; }
.nr-city.is-active { opacity: 1; }

.nr-dot {
  fill: var(--rust, #a04a2d);
  stroke: rgba(252,244,228,.95);
  stroke-width: 1.6;
  transform-box: fill-box;
  transform-origin: center;
}
.nr-dot-core {
  fill: rgba(252,244,228,.95);
  opacity: 0;
}
.nr-city.is-active .nr-dot {
  animation: nr-dot-pop .8s cubic-bezier(.34, 1.6, .5, 1) both;
}
.nr-city.is-active .nr-dot-core {
  animation: nr-core-flash .6s ease-out both .25s;
}

/* Drei staggerte Pulse-Ringe (3 → 2 → 1, vom äußersten zum innersten) */
.nr-ring {
  fill: none;
  stroke: var(--rust, #a04a2d);
  stroke-width: 1.8;
  opacity: 0;
}
.nr-ring--2 {
  stroke-width: 1.2;
  stroke: rgba(196, 110, 50, .85);
}
.nr-ring--3 {
  stroke-width: .9;
  stroke: rgba(196, 110, 50, .55);
}
.nr-city.is-active .nr-ring {
  animation: nr-ring-pulse 2s cubic-bezier(.2, .6, .2, 1) 2 .15s;
}
.nr-city.is-active .nr-ring--2 {
  animation: nr-ring-pulse-wide 2.2s cubic-bezier(.2, .6, .2, 1) 2 .35s;
}
.nr-city.is-active .nr-ring--3 {
  animation: nr-ring-pulse-wide 2.4s cubic-bezier(.2, .6, .2, 1) 2 .55s;
}

.nr-pin-numeral {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 11px;
  font-weight: 600;
  fill: var(--rust, #a04a2d);
  letter-spacing: .08em;
  paint-order: stroke fill;
  stroke: rgba(252,244,228,.92);
  stroke-width: 3.2;
  stroke-linejoin: round;
  font-variation-settings: "opsz" 14;
}
.nr-city.is-active .nr-pin-numeral {
  animation: nr-label-in .4s ease both .15s;
}

/* ─── Layer 5: CARTOUCHE ─── */
.nr-cartouche-frame {
  fill: rgba(252,244,228,.82);
  stroke: rgba(60,38,12,.55);
  stroke-width: .8;
}
.nr-cartouche-line1 {
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: 7px;
  font-weight: 800;
  fill: rgba(17,21,20,.85);
  letter-spacing: .22em;
}
.nr-cartouche-line2 {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: 7px;
  fill: rgba(17,21,20,.65);
  letter-spacing: .04em;
}

/* ─── Layer 6: VIGNETTE ─── */
.nr-vignette-overlay { pointer-events: none; }

/* ─── Cards column ─── */
.nordroute__cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: .25rem;
}

.nr-card {
  position: relative;
  padding: 1rem 1.1rem 1rem 1.4rem;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(17,21,20,.07);
  border-left: 3px solid transparent;
  border-radius: 3px;
  backdrop-filter: blur(4px);
  opacity: 0;
  transform: translateY(12px);
}
.nr-card.is-active {
  animation: nr-card-in .52s cubic-bezier(.4,0,.2,1) both;
  border-left-color: var(--rust, #a64a3d);
}
.nr-card.is-active:hover {
  background: rgba(255,255,255,.78);
  box-shadow: 0 4px 20px rgba(11,114,115,.1);
  transition: background .2s, box-shadow .2s;
}

.nr-card__no {
  position: absolute;
  top: 1rem;
  right: 1.1rem;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .12em;
  color: rgba(17,21,20,.2);
}
.nr-card__marker {
  display: block;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rust, #a64a3d);
  margin-bottom: .35rem;
}
.nr-card__name {
  display: block;
  font-family: var(--font-display, 'Newsreader', serif);
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.22;
  color: var(--ink, #111514);
  margin-bottom: .4rem;
  font-variation-settings: "opsz" 14;
}
.nr-card__sentence {
  font-family: var(--font-display, 'Newsreader', serif);
  font-style: italic;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--muted, #5a5a52);
  margin: 0 0 .6rem;
  font-variation-settings: "opsz" 14;
}
.nr-card__link {
  display: inline-block;
  font-family: var(--font-mono, ui-monospace, Menlo, monospace);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--rust, #a64a3d);
  text-decoration: none;
  border-bottom: 1px solid rgba(166,74,61,.3);
  padding-bottom: 1px;
  transition: border-color .2s, color .2s;
}
.nr-card__link:hover {
  border-bottom-color: var(--rust, #a64a3d);
  color: color-mix(in oklch, var(--rust, #a64a3d) 80%, var(--ink, #111514));
}

/* ─── Mobile: stack ─── */
@media (max-width: 720px) {
  .nordroute__inner {
    grid-template-columns: 1fr;
    gap: 1.5rem 0;
  }
  .nordroute__map-wrap {
    position: static;
    max-width: 340px;
    margin: 0 auto;
  }
}



/* ═══════════════════════════════════════════════════════════════
   GLOBAL & COMPONENT RESPONSIVE MEDIA QUERIES (from site.css & extensions.css)
   ═══════════════════════════════════════════════════════════════ */

/* === site.css: RESPONSIVE === */
/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */

@media (max-width: 1024px) {
  .atlas-panel,
  .atlas-panel--slim {
    grid-template-columns: 1fr;
  }

  .evidence-strip__grid,
  .evidence-strip--compact .evidence-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--places { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .manifesto { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .second-door-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .scrapbook-strip__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .scrapbook-strip__card:last-child {
    grid-column: 1 / -1;
    width: min(100%, 560px);
    justify-self: center;
  }

  .insight-ribbon__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-ribbon__item:last-child {
    grid-column: 1 / -1;
  }

  .reality-cut__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .second-door-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle { display: block; }

  body.nav-open {
    overflow: hidden;
    touch-action: none;
  }

  .site-header {
    flex-wrap: nowrap;
    gap: 0.5rem;
    padding-top: 0.68rem;
    padding-bottom: 0.68rem;
    box-shadow: 0 8px 20px rgba(15, 41, 48, 0.06);
    background: var(--paper-warm);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img {
    width: clamp(148px, 46vw, 204px);
  }

  .main-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100dvh;
    padding: 0;
    background: var(--paper-warm);
    border-left: 1px solid var(--line);
    box-shadow: -8px 0 40px rgba(13, 26, 31, 0.18);
    z-index: 200;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(104%);
    opacity: 0;
    transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out), visibility 0s linear 0.3s;
  }

  .main-nav.is-open {
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
    opacity: 1;
    transition-delay: 0s;
  }

  .main-nav__panel {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    gap: 0;
    padding:
      max(4.5rem, calc(env(safe-area-inset-top) + 3.5rem))
      max(1.25rem, env(safe-area-inset-right))
      max(1.25rem, calc(env(safe-area-inset-bottom) + 0.8rem))
      max(1.25rem, env(safe-area-inset-left));
  }

  .main-nav__summary,
  .main-nav__section,
  .main-nav__legal {
    display: block;
  }

  .main-nav__summary,
  .main-nav__section,
  .main-nav__legal {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .main-nav__summary {
    padding: 0 0 1.25rem;
    border-bottom: 1px solid var(--line);
    margin-bottom: 1rem;
  }

  .main-nav__eyebrow,
  .main-nav__section-label,
  .main-nav__legal a {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .main-nav__eyebrow,
  .main-nav__section-label {
    color: var(--rust);
  }

  .main-nav__title {
    margin-top: 0.5rem;
    font-size: clamp(1.1rem, 3vw, 1.35rem);
    line-height: 1.1;
    color: var(--ink);
  }

  .main-nav__lede {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
  }

  .main-nav__section {
    padding: 0;
    margin-bottom: 0.75rem;
  }

  .main-nav__section-head {
    display: grid;
    gap: 0.15rem;
    margin-bottom: 0.5rem;
  }

  .main-nav__section-title {
    font-size: 0.88rem;
    line-height: 1.1;
    color: var(--ink);
  }

  .main-nav__quicklinks,
  .main-nav__primary,
  .main-nav__secondary,
  .main-nav__legal {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .main-nav__quicklinks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 0.75rem;
  }

  .main-nav__legal {
    padding: 0;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .main-nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 48px;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.3;
    padding: 0.75rem 0;
    border: none;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--ink);
  }

  .main-nav a::after {
    content: "→";
    flex: 0 0 auto;
    margin-left: 0.5rem;
    width: auto;
    height: auto;
    border: none;
    opacity: 0.3;
    transform: none;
    font-size: 0.9rem;
    transition: opacity 0.2s;
  }

  .main-nav a:hover,
  .main-nav a:active {
    color: var(--rust);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a[aria-current="page"]::after {
    opacity: 0.7;
    transform: none;
  }

  .main-nav__quicklinks a {
    min-height: 52px;
    align-items: center;
    padding: 0.65rem 0.75rem;
    font-size: 0.78rem;
    background: var(--paper-warm);
    border: none;
    border-bottom: none;
  }

  .main-nav__primary a[aria-current="page"] {
    color: var(--rust);
    background: transparent;
    border-color: var(--line);
    box-shadow: none;
    font-weight: 800;
  }

  .main-nav__secondary a,
  .main-nav__legal a {
    font-size: 0.78rem;
    color: var(--muted);
    min-height: 40px;
    padding: 0.5rem 0;
  }

  .main-nav__legal a {
    justify-content: flex-start;
    min-height: 36px;
    padding: 0.5rem 0.75rem 0.5rem 0;
    border-bottom: none;
  }

  .nav-toggle {
    grid-auto-flow: column;
    gap: 0.55rem;
    width: auto;
    min-width: 48px;
    padding-inline: 0.8rem;
    z-index: 210;
  }

  .nav-toggle::after {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
  }

  .nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    /* Right edge stops at nav panel boundary — never overlaps nav links */
    right: min(340px, 88vw);
    bottom: 0;
    background: rgba(17, 21, 20, 0.42);
    z-index: 190;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
  }

  .nav-overlay.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 1.45rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-media { order: -1; }
  .hero-media img { aspect-ratio: 16 / 10; }
  .hero-media--asset img { aspect-ratio: 1 / 1; }
  .hero-media img.img--portrait {
    aspect-ratio: 4 / 5;
    object-fit: contain;
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(239, 232, 221, 0.92));
  }
  .hero-media img.img--landscape {
    aspect-ratio: 16 / 10;
  }
  .hero-media img.img--square {
    aspect-ratio: 1 / 1;
  }
  .hero-media::before, .hero-media::after { display: none; }

  .place-page .hero-media {
    width: 100%;
    padding: 0.5rem;
  }

  .place-page .hero-media img {
    width: 100%;
    max-height: min(70vh, 560px);
    object-fit: contain;
    object-position: var(--hero-anchor-mobile, var(--hero-anchor, center top));
    background: linear-gradient(180deg, var(--frame-bg-top), var(--frame-bg-bottom));
  }

  .scrapbook-strip__card,
  .story-figure img,
  .second-door-card__media img {
    object-fit: contain;
    object-position: var(--scrapbook-anchor-mobile, var(--scrapbook-anchor, center));
    background: linear-gradient(180deg, var(--frame-bg-top), var(--frame-bg-bottom));
  }

  .story-figure img {
    object-position: var(--figure-anchor-mobile, var(--figure-anchor, center));
  }

  .hero--landing {
    gap: 1.25rem;
    padding-top: 2.4rem;
    padding-bottom: 2.2rem;
  }

  .hero--landing .hero-media {
    order: 0;
    padding: 0.55rem;
  }

  .field-layer-note {
    right: -0.45rem;
    top: -1.2rem;
    width: 92px;
  }

  .hero--landing .hero-copy {
    order: -1;
  }

  .hero--landing::after {
    inset: auto 1.25rem 1rem;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button {
    flex: 1 1 220px;
    justify-content: center;
  }

  .hero--place .hero-actions .button {
    flex: 1 1 180px;
  }

  .hero-context {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding: 0.85rem 0.9rem;
  }

  .home-page .hero-context::after,
  .collection-page .grid--places::before {
    display: none;
  }

  .hero-pull {
    margin-top: 0.8rem;
    font-size: 1.02rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .hero-route {
    margin-top: 0.85rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .chapter-nav {
    top: 57px;
    margin-top: -0.35rem;
    margin-bottom: 1.4rem;
  }

  .chapter-nav__inner {
    padding: 0.58rem 1rem;
    gap: 0.7rem;
  }

  .chapter-nav__label::before,
  .chapter-nav__progress {
    display: none;
  }

  .chapter-nav__label {
    letter-spacing: 0.12em;
  }

  .chapter-nav__list a {
    padding: 0.38rem 0.58rem;
    font-size: 0.76rem;
  }

  .hero-context__list {
    font-size: 0.92rem;
    color: color-mix(in srgb, var(--ink) 84%, #000);
  }

  .hero-proof-strip {
    gap: 2px;
    border-color: rgba(22, 22, 18, 0.16);
  }

  .hero-proof-strip__item figcaption {
    left: 0.34rem;
    bottom: 0.32rem;
    padding: 0.2rem 0.32rem;
    font-size: 0.58rem;
    letter-spacing: 0.08em;
    background: rgba(255, 252, 246, 0.96);
    border: 1px solid rgba(22, 22, 18, 0.12);
  }

  .section--dark .section-header p,
  .section--dark .place-card__sentence,
  .section--dark .manifesto__text,
  .section--dark .evidence-strip__item p:last-child {
    color: rgba(245, 241, 232, 0.9);
  }

  .hero--place .hero-media {
    transform: none;
    box-shadow: var(--shadow-lg);
  }

  .hero--place .hero-media img {
    aspect-ratio: 4 / 3;
    height: min(72vw, 360px);
    object-fit: cover;
    object-position: var(--hero-focus, 50% 50%);
  }

  .story-figure,
  .story-figure--fieldbook,
  .story-figure--archive,
  .story-figure--second-door {
    transform: none;
  }
  .story-figure img,
  .story-figure img.img--portrait,
  .story-figure img.img--landscape,
  .story-figure img.img--square {
    aspect-ratio: auto;
  }

  .section-header {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: clamp(1.75rem, 5vw, 2.5rem);
  }

  .section-header p {
    max-width: 100%;
  }

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

  .side-rail {
    position: static;
    order: -1;
  }

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

  .source-card { grid-template-columns: 1fr; }

  .asset-list { grid-template-columns: 1fr 1fr; }

  .family-moment-card--tilt-left,
  .family-moment-card--tilt-right {
    transform: none;
  }

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

  .footer-nav { flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .home-page main > .hero--landing + .section {
    background: linear-gradient(180deg, rgba(248, 243, 235, 0.98), rgba(242, 236, 226, 0.98));
  }

  .home-page main > .hero--landing + .section .section-header {
    gap: 0.85rem;
    margin-bottom: 1.2rem;
  }

  .home-page main > .hero--landing + .section .section-header p {
    padding: 0.95rem 1rem;
    border: 1px solid rgba(24, 24, 20, 0.1);
    background: rgba(255, 251, 245, 0.88);
    box-shadow: 0 10px 24px rgba(15, 41, 48, 0.06);
  }

  .home-page .manifesto {
    gap: 0.7rem;
    background: transparent;
  }

  .home-page .manifesto__item {
    border: 1px solid rgba(24, 24, 20, 0.1);
    box-shadow: 0 10px 24px rgba(15, 41, 48, 0.06);
  }

  .home-page .manifesto__text {
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .place-page .evidence-strip__item::before {
    display: none;
  }

  .place-page .scrapbook-strip {
    margin-bottom: 2rem;
    padding: 0.9rem;
  }

  .place-page .insight-ribbon,
  .place-page .evidence-strip {
    padding-top: var(--r-3);
    padding-bottom: var(--r-3);
  }

  .place-page .evidence-strip__head {
    margin-bottom: var(--r-2);
  }

  .place-page .evidence-strip__head h2 {
    max-width: none;
  }

  .place-page .evidence-strip__item {
    padding: 0.9rem 0.9rem 0.95rem;
  }

  .place-page .story-figure {
    margin: 1.6rem 0;
    padding: 0.72rem;
  }

  .place-page .story-figure img,
  .place-page .scrapbook-strip__card img,
  .place-page .second-door-card__media img {
    aspect-ratio: auto;
    max-height: 52vh;
  }

  .place-page .story-figure figcaption {
    margin-top: 0.7rem;
    font-size: 0.88rem;
  }

  .place-page .prose h2 {
    margin-top: 2.8rem;
    margin-bottom: 0.85rem;
  }

  .place-page .prose h2::before {
    margin-bottom: 0.95rem;
  }

  .place-page .second-door {
    margin: 2.2rem 0;
    padding: 1.8rem 1rem 1.25rem;
  }

  .place-page .second-door::before {
    left: 1rem;
    padding-left: 0.55rem;
    padding-right: 0.55rem;
  }

  .evidence-strip__grid,
  .evidence-strip--compact .evidence-strip__grid {
    grid-template-columns: 1fr;
  }

  .grid--places { grid-template-columns: 1fr; }
  .grid--three { grid-template-columns: 1fr; }
  .manifesto { grid-template-columns: 1fr; }
  .second-door-grid { grid-template-columns: 1fr; }
  .asset-list { grid-template-columns: 1fr; }
  .family-moments { grid-template-columns: 1fr; }
  .scrapbook-strip__grid { grid-template-columns: 1fr; }

  .scrapbook-strip__card:last-child {
    grid-column: auto;
    width: 100%;
  }

  .scrapbook-strip__card figcaption {
    min-height: 0;
  }

  .scrapbook-strip__card,
  .scrapbook-strip__card:nth-child(1),
  .scrapbook-strip__card:nth-child(2),
  .scrapbook-strip__card:nth-child(3),
  .insight-ribbon__item:nth-child(2n) {
    transform: none;
  }

  .insight-ribbon__head::after {
    display: none;
  }

  .insight-ribbon__head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .insight-ribbon__grid {
    grid-template-columns: 1fr;
  }

  .insight-ribbon__item:last-child {
    grid-column: auto;
  }

  .place-nav { grid-template-columns: 1fr; }
  .place-nav__link--next { text-align: left; }

  .home-page .manifesto__item::before,
  .collection-page .decision:first-child::before,
  .collection-page .decision:last-child::before {
    display: none;
  }

  .place-card__body {
    padding: 1.05rem 1rem 1.2rem;
  }

  .place-card__title {
    font-size: 1.26rem;
  }

  .place-card__sentence {
    font-size: 0.98rem;
    line-height: 1.38;
  }

  .marker {
    font-size: 0.64rem;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.54rem;
  }

  .internal-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .internal-links .button {
    width: 100%;
    justify-content: center;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }
}

@media (max-width: 560px) {
  .hero-context__list {
    font-size: 0.96rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .source-slip__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .hero-route {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .place-page .scrapbook-strip__card figcaption,
  .scrapbook-strip__card figcaption,
  .story-figure figcaption {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  .hero-pull {
    font-size: 1.06rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .home-page .manifesto__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .source-slip__kicker {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .source-slip__title {
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .source-slip__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .home-page .manifesto__title {
    font-size: 1.06rem;
    line-height: 1.25;
  }

  .button {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--ink);
  }

  /* Tiny chip labels (KOLLEKTION, ROUTE ATLAS, ATLAS, evidence labels) */
  .collection-page .grid--places::before,
  .atlas-panel__feature::after,
  .evidence-strip__label {
    font-size: var(--mono-xs);
    letter-spacing: 0.12em;
  }

  .evidence-strip__item h3 {
    font-size: 1.1rem;
    line-height: 1.22;
  }

  .evidence-strip__item p:last-child {
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  /* Body text on textured paper: lift to full ink for clarity */
  .place-page .prose p,
  .place-page .prose li {
    color: var(--ink);
  }

  /* Alle Titel explizit auf Vollton — OLED-sicher */
  .place-card__title,
  .place-card__subtitle { color: var(--ink); }

  .place-card__body {
    background: var(--paper);
  }

  .manifesto__title { color: var(--ink); }
  .manifesto__text { color: var(--ink); }

  .second-door-card__title { color: var(--ink); }

  .hero-context__list,
  .hero-context__list li { color: var(--ink); }

  .source-slip__title { color: var(--ink); }
  .source-slip__text { color: rgba(24, 24, 20, 0.94); }
}

@media (max-width: 920px) {
  :root {
    --ink-soft: rgba(24, 24, 20, 0.97);
    --ink-faint: rgba(24, 24, 20, 0.88);
  }

  body {
    font-size: 1.02rem;
    line-height: 1.68;
    letter-spacing: 0;
  }

  .kicker {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
  }

  .marker {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    padding: 0.36rem 0.6rem;
  }

  .hero-context__title {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
  }

  .hero-route {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }

  .home-page .hero-context::after {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
  }

  .section-header p {
    font-size: 1rem;
    line-height: 1.62;
    color: var(--ink-soft);
  }

  .lede {
    font-size: clamp(1.04rem, 4.2vw, 1.2rem);
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .place-card__sentence {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .place-page .scrapbook-strip__card figcaption,
  .scrapbook-strip__card figcaption,
  .story-figure figcaption {
    font-size: 0.92rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  .hero-pull {
    font-size: 1.06rem;
    line-height: 1.5;
    color: var(--ink-soft);
  }

  .home-page .manifesto__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .source-slip__kicker {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }

  .source-slip__title {
    font-size: 1.12rem;
    line-height: 1.25;
  }

  .source-slip__text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-soft);
  }

  .home-page .manifesto__title {
    font-size: 1.06rem;
    line-height: 1.25;
  }

  .button {
    font-size: 0.76rem;
    letter-spacing: 0.1em;
  }

  .main-nav a {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--ink);
  }

  /* Tiny chip labels (KOLLEKTION, ROUTE ATLAS, ATLAS, evidence labels) */
  .collection-page .grid--places::before,
  .atlas-panel__feature::after,
  .evidence-strip__label {
    font-size: var(--mono-xs);
    letter-spacing: 0.12em;
  }

  .evidence-strip__item h3 {
    font-size: 1.1rem;
    line-height: 1.22;
  }

  .evidence-strip__item p:last-child {
    font-size: 0.96rem;
    line-height: 1.55;
    color: var(--ink-soft);
  }

  /* Body text on textured paper: lift to full ink for clarity */
  .place-page .prose p,
  .place-page .prose li {
    color: var(--ink);
  }

  /* Alle Titel explizit auf Vollton — OLED-sicher */
  .place-card__title,
  .place-card__subtitle { color: var(--ink); }

  .place-card__body {
    background: var(--paper);
  }

  .manifesto__title { color: var(--ink); }
  .manifesto__text { color: var(--ink); }

  .second-door-card__title { color: var(--ink); }

  .hero-context__list,
  .hero-context__list li { color: var(--ink); }

  .source-slip__title { color: var(--ink); }
  .source-slip__text { color: rgba(24, 24, 20, 0.94); }
}

@media (max-width: 920px) and (prefers-color-scheme: dark) {
  :root {
    --ink-soft: rgba(232, 230, 225, 0.97);
    --ink-faint: rgba(232, 230, 225, 0.88);
  }

  .section--nordkompass .section-header p {
    border-color: rgba(232, 230, 225, 0.14);
    background: rgba(22, 24, 22, 0.84);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
  }

  .photo-truth,
  .family-realism,
  .weather-script,
  .second-door-index,
  .decision {
    border-color: rgba(232, 230, 225, 0.16);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.22);
  }

  .photo-truth,
  .family-realism,
  .weather-script,
  .second-door-index {
    background:
      linear-gradient(180deg, rgba(29, 33, 34, 0.96), rgba(18, 22, 24, 0.98)),
      url("/public/assets/textures/summer-rain-wash.webp") center / 720px auto repeat;
  }

  .photo-truth__item,
  .family-realism__item,
  .weather-script__item,
  .second-door-index__item,
  .decision {
    background: rgba(255, 252, 246, 0.92);
  }

  .photo-truth__kicker,
  .family-realism__kicker,
  .weather-script__kicker,
  .second-door-index__kicker,
  .decision .label {
    color: rgba(216, 146, 114, 0.98);
  }

  .photo-truth__stamp,
  .family-realism__stamp,
  .weather-script__stamp,
  .second-door-index__stamp {
    border-color: rgba(232, 230, 225, 0.14);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(232, 230, 225, 0.9);
  }

  .photo-truth h3,
  .family-realism h3,
  .weather-script h3,
  .second-door-index h3,
  .photo-truth__pull,
  .family-realism__pull,
  .weather-script__pull,
  .second-door-index__pull,
  .decision h3 {
    color: rgba(232, 230, 225, 0.96);
  }

  .photo-truth__item span,
  .family-realism__item span,
  .weather-script__item span,
  .second-door-index__item span,
  .decision p {
    color: rgba(232, 230, 225, 0.92);
  }

  .photo-truth__item strong,
  .family-realism__item strong,
  .weather-script__item strong,
  .second-door-index__item strong {
    color: rgba(216, 146, 114, 0.98);
  }
}


/* === site.css: GLOBAL TEXT CONTRAST HARDENING === */
.note-card p,
.weather-logic p,
.atlas-panel__feature p:last-child,
.source-slip__text,
.second-door__text,
.second-door-intro p,
.second-door-card__text,
.second-door-card__pull,
.second-door-index__pull,
.evidence-strip__item p:last-child,
.manifesto__text,
.photo-truth__item span,
.family-realism__item span,
.weather-script__item span,
.second-door-index__item span {
  color: rgba(20, 20, 18, 0.96);
}

/* === site.css: MOBILE TEXT CONTRAST HARDENING === */
/* ═══════════════════════════════════════
   MOBILE TEXT CONTRAST HARDENING
   Final override: all body text to near-full
   ink on mobile, opaque card backgrounds,
   minimum label sizes. Last in cascade.
   ═══════════════════════════════════════ */

@media (max-width: 920px) {
  .note-card .label,
  .weather-logic .label,
  .label {
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    color: var(--rust);
  }

  .weather-logic .label {
    color: var(--fjord);
  }

  .note-card {
    background: rgba(255, 255, 255, 0.94);
  }

  .weather-logic {
    background: linear-gradient(180deg, rgba(218, 236, 240, 0.52), rgba(250, 252, 253, 0.94));
  }

  .atlas-panel__feature h3,
  .evidence-strip__item h3,
  .note-card .label,
  .second-door-card__title,
  .source-slip__title {
    color: var(--ink);
  }

  .nk-reference h3,
  .nk-reference__mark p,
  .nk-reference__facts strong,
  .nk-reference__insight p {
    color: var(--ink);
  }

  .nk-reference__eyebrow,
  .nk-reference__facts span,
  .nk-reference__source-note span {
    color: rgba(20, 20, 18, 0.88);
  }

  .nk-reference-row__place strong,
  .nk-reference-row__weather,
  .nk-scale-line__value {
    color: rgba(20, 20, 18, 0.94);
  }
}

@media (max-width: 560px) {
  .note-card p,
  .weather-logic p,
  .atlas-panel__feature p:last-child,
  .source-slip__text,
  .second-door-intro p,
  .second-door-card__text {
    font-size: 0.98rem;
    line-height: 1.62;
  }

  .label {
    font-size: 0.72rem;
  }

  .atlas-panel__feature p:last-child {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .note-card p {
    font-size: 1rem;
    line-height: 1.58;
  }
}

@media (prefers-color-scheme: dark) {
  .note-card p,
  .weather-logic p,
  .atlas-panel__feature p:last-child,
  .source-slip__text,
  .second-door__text,
  .second-door-intro p,
  .second-door-card__text,
  .second-door-card__pull,
  .second-door-index__pull,
  .evidence-strip__item p:last-child,
  .manifesto__text {
    color: rgba(232, 230, 225, 0.96);
  }

  .note-card {
    background: rgba(28, 30, 28, 0.96);
  }

  .weather-logic {
    background: linear-gradient(180deg, rgba(22, 42, 48, 0.52), rgba(18, 22, 24, 0.96));
  }

  .note-card .label {
    color: var(--rust);
  }

  .weather-logic .label {
    color: var(--ice);
  }

  .atlas-panel__feature h3,
  .evidence-strip__item h3,
  .second-door-card__title,
  .source-slip__title {
    color: rgba(232, 230, 225, 0.96);
  }

  .nk-reference h3,
  .nk-reference__mark p,
  .nk-reference__facts strong,
  .nk-reference__insight p {
    color: rgba(232, 230, 225, 0.96);
  }
}


/* === site.css: MOBILE ACCENT COLOR CONTRAST === */
/* ═══════════════════════════════════════
   MOBILE ACCENT COLOR CONTRAST
   Small editorial labels (kickers, markers,
   chips, route labels) use accent colors that
   drop below WCAG 4.5:1 on small text.
   Darken via color-mix globally; on place pages
   use dedicated --accent-readable tokens.
   ═══════════════════════════════════════ */

/* === site.css: GLOBAL ACCENT COLOR CONTRAST === */
.kicker,
.source-slip__kicker,
.evidence-strip__label,
.place-card__marker,
.second-door-card__place,
.photo-truth__kicker,
.family-realism__kicker,
.weather-script__kicker,
.second-door-index__kicker,
.hero-route,
.atlas-panel__feature::after {
  color: color-mix(in srgb, var(--place-accent, var(--rust)) 55%, var(--ink));
}

.place-page .kicker,
.place-page .evidence-strip__label,
.place-page .source-slip__kicker,
.place-page .insight-ribbon__kicker,
.place-page .photo-truth__kicker,
.place-page .family-realism__kicker,
.place-page .weather-script__kicker,
.place-page .second-door-index__kicker {
  color: var(--place-accent-readable, color-mix(in srgb, var(--place-accent, var(--rust)) 55%, var(--ink)));
}

.section--dark .kicker,
.section--dark .source-slip__kicker,
.section--dark .evidence-strip__label {
  color: rgba(216, 146, 114, 0.98);
}

.hero-route span {
  color: color-mix(in srgb, var(--rust) 50%, var(--ink));
}

@media (max-width: 920px) {
  .place-card__marker {
    font-size: 0.68rem;
  }

  .scrapbook-strip__card figcaption .label,
  .story-figure figcaption .label {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .kicker {
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .source-slip__kicker,
  .evidence-strip__label,
  .photo-truth__kicker,
  .family-realism__kicker,
  .weather-script__kicker,
  .second-door-index__kicker {
    font-size: 0.68rem;
    letter-spacing: 0.11em;
  }

  .atlas-panel__feature::after {
    font-size: 0.6rem;
    letter-spacing: 0.11em;
  }

  .hero-route {
    font-size: 0.68rem;
  }
}


/* === site.css: DARK MODE HARDENING === */
/* ═══════════════════════════════════════
   DARK MODE HARDENING (matched-specificity overrides)
   ───────────────────────────────────────────────────────────────────
   Im iOS Dark Mode (prefers-color-scheme: dark) wechselt --paper/--ink
   in dunkle Werte. Mehrere Komponenten haben aber hartcodierte HELLE
   Hintergründe mit höherer Specificity als die generischen Dark-Mode-
   Regeln (z.B. .home-page .manifesto__item (0,2,0) schlägt .manifesto__item
   im Dark-Block (0,1,0)). Resultat: cream-Text auf cream-Hintergrund.

   Dieser Block macht die Dark-Mode-Hintergründe mit MATCHED SPECIFICITY,
   sodass jede Komponente in Dark Mode konsequent dunkle Surfaces hat
   und die hellen Texte (aus den existierenden Dark-Mode-Regeln) sauber
   ihren AA-Kontrast erreichen.
   ═══════════════════════════════════════════════════════════════════ */

@media (prefers-color-scheme: dark) {
  /* ── Section-Backgrounds ── */
  .section--warm {
    background:
      radial-gradient(circle at 82% 18%, rgba(212, 104, 78, 0.06), transparent 36%),
      radial-gradient(circle at 12% 86%, rgba(127, 181, 196, 0.05), transparent 34%),
      linear-gradient(180deg, rgba(22, 24, 22, 0.96), rgba(18, 20, 18, 0.97));
  }

  .evidence-strip {
    background:
      radial-gradient(circle at 14% 18%, rgba(212, 104, 78, 0.05), transparent 30%),
      linear-gradient(180deg, rgba(20, 22, 20, 0.96), rgba(16, 18, 16, 0.95));
    border-top-color: rgba(232, 230, 225, 0.1);
    border-bottom-color: rgba(232, 230, 225, 0.1);
  }

  /* ── Home-Page: höhere Specificity (0,2,0) als base (0,1,0) ── */
  .home-page .manifesto__item {
    background: linear-gradient(180deg, rgba(28, 30, 28, 0.96), rgba(22, 24, 22, 0.98));
    border: 1px solid rgba(232, 230, 225, 0.1);
  }

  .home-page .atlas-panel__feature {
    background: linear-gradient(180deg, rgba(28, 30, 28, 0.96), rgba(22, 24, 22, 0.98));
  }

  .home-page .atlas-panel__feature::after {
    background: rgba(232, 230, 225, 0.06);
    border-color: rgba(232, 230, 225, 0.16);
  }

  /* Place-Cards washi-Tape Marker im Dark Mode etwas wärmer */
  .home-page .manifesto__item::before {
    background: rgba(213, 203, 176, 0.36);
    border-color: rgba(232, 230, 225, 0.1);
  }

  /* ── nth-child(2n)-Specificity (0,2,0) explizit überschreiben ── */
  .evidence-strip__item,
  .evidence-strip__item:nth-child(2n) {
    background: rgba(24, 27, 26, 0.94);
    border-color: rgba(232, 230, 225, 0.12);
  }

  .evidence-strip__item:nth-child(2n) {
    background: rgba(28, 31, 30, 0.94); /* leicht versetzt, damit Alternation lesbar bleibt */
  }

  /* ── Collection-Page (0,2,0) ── */
  .collection-page {
    --collection-accent: #8db4c0;          /* a11y: helle Steel-Blue für Dark Mode (7.89:1 auf dark bg) */
    --collection-accent-tint: #6a96a3;     /* sekundär für Borders/Backgrounds */
  }

  .collection-page .atlas-panel__feature,
  .collection-page .source-slip,
  .collection-page .evidence-strip__item {
    background: linear-gradient(180deg, rgba(22, 28, 30, 0.96), rgba(18, 24, 26, 0.97));
    border-color: rgba(232, 230, 225, 0.1);
  }

  .collection-page .atlas-panel__feature::after {
    background: rgba(141, 180, 192, 0.16);
    border-color: rgba(141, 180, 192, 0.32);
  }

  /* ── Place-Page Evidence-Items (0,2,0) ── */
  .place-page .evidence-strip__item,
  .place-page .evidence-strip__item:nth-child(2n) {
    background: linear-gradient(180deg, rgba(24, 27, 26, 0.96), rgba(20, 22, 20, 0.97));
    border-color: rgba(232, 230, 225, 0.1);
  }

  .place-page .evidence-strip__item:nth-child(2n) {
    background: linear-gradient(180deg, rgba(28, 31, 30, 0.96), rgba(22, 24, 22, 0.97));
  }

  /* ── Place-spezifische Varianten (Specificity 0,2,0) ── */
  .place--molde .evidence-strip__item,
  .place--molde .evidence-strip__item:nth-child(2n),
  .place--nordkap .evidence-strip__item,
  .place--nordkap .evidence-strip__item:nth-child(2n),
  .place--olden .evidence-strip__item,
  .place--olden .evidence-strip__item:nth-child(2n) {
    background: linear-gradient(180deg, rgba(24, 27, 26, 0.96), rgba(20, 22, 20, 0.97));
  }

  /* ── Weather-Script auf .section--warm (steht dort drin) ── */
  .weather-script {
    background: linear-gradient(180deg, rgba(28, 30, 28, 0.94), rgba(22, 24, 22, 0.96));
    border-color: rgba(232, 230, 225, 0.12);
  }

  /* ── Text-Token-Klammer: alle Body-Texte in den nun dunklen Surfaces ── */
  .home-page .manifesto__text,
  .home-page .atlas-panel__feature p,
  .home-page .atlas-panel__feature h3,
  .home-page .manifesto__title,
  .evidence-strip__item h3,
  .evidence-strip__item p,
  .collection-page .atlas-panel__feature p,
  .collection-page .atlas-panel__feature h3,
  .collection-page .source-slip p,
  .collection-page .source-slip__title,
  .weather-script h3,
  .weather-script__item strong,
  .weather-script__item span,
  .weather-script__pull {
    color: rgba(232, 230, 225, 0.94);
  }

  /* Sekundärtexte etwas weicher, aber AA-konform (>=4.5:1 auf rgba(24,27,26)) */
  .home-page .manifesto__text,
  .evidence-strip__item p,
  .weather-script__item span {
    color: rgba(232, 230, 225, 0.86);
  }

  /* Kicker/Akzente in den nun dunklen Surfaces auf rust-warm umstellen */
  .home-page .atlas-panel__feature::after,
  .evidence-strip__label,
  .weather-script__item strong {
    color: var(--rust-warm);
  }
}

/* Auch für Mobile-Breakpoint sicherstellen (in case both queries gelten) */
@media (max-width: 920px) and (prefers-color-scheme: dark) {
  .home-page .manifesto__item,
  .home-page .atlas-panel__feature {
    background: linear-gradient(180deg, rgba(28, 30, 28, 0.96), rgba(22, 24, 22, 0.98));
    border: 1px solid rgba(232, 230, 225, 0.1);
  }

  .evidence-strip__item:nth-child(2n) {
    background: rgba(28, 31, 30, 0.94);
  }

  .collection-page .atlas-panel__feature,
  .collection-page .source-slip,
  .collection-page .evidence-strip__item {
    background: linear-gradient(180deg, rgba(22, 28, 30, 0.96), rgba(18, 24, 26, 0.97));
  }
}


/* === site.css: MOBILE SAFARI HARDENING === */
/* ═══════════════════════════════════════
   MOBILE SAFARI HARDENING — global pages
   Final global pass for pages that only load site.css.
   ═══════════════════════════════════════ */

@media (max-width: 920px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip;
    }
  }

  .site-header {
    min-height: 64px;
    padding-top: max(0.64rem, env(safe-area-inset-top));
    padding-bottom: 0.64rem;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.55rem;
    position: relative;
    width: auto;
    min-width: 118px;
    height: 48px;
    padding: 0 0.9rem 0 2.7rem;
    color: var(--ink) !important;
    background: color-mix(in srgb, var(--paper) 86%, transparent);
    border: 1px solid var(--line);
    border-radius: 3px;
    -webkit-tap-highlight-color: transparent;
    overflow: visible;
  }

  .nav-toggle::after {
    content: attr(data-label);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    line-height: 1;
    white-space: nowrap;
  }

  .nav-toggle span {
    position: absolute;
    left: 0.9rem;
    display: inline-block;
    width: 18px;
    height: 2px;
    background: currentColor !important;
    transform-origin: center;
    transition: transform 0.22s var(--ease-out), opacity 0.18s var(--ease-out);
  }

  .nav-toggle span:nth-child(1) {
    top: calc(50% - 6px);
  }

  .nav-toggle span:nth-child(2) {
    top: 50%;
  }

  .nav-toggle span:nth-child(3) {
    top: calc(50% + 6px);
  }

  .nav-toggle.is-active span:nth-child(1) {
    top: 50%;
    transform: rotate(45deg);
  }

  .nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-active span:nth-child(3) {
    top: 50%;
    transform: rotate(-45deg);
  }

  .breadcrumb {
    overflow-x: auto;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 0.55rem;
    padding: 0.86rem max(1rem, env(safe-area-inset-right)) 0.86rem max(1rem, env(safe-area-inset-left));
    font-size: 0.78rem;
    line-height: 1.35;
    letter-spacing: 0.025em;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .breadcrumb::-webkit-scrollbar {
    display: none;
  }

  .breadcrumb a,
  .breadcrumb span,
  .breadcrumb strong {
    flex: 0 0 auto;
  }

  .hero-media--asset figcaption {
    padding: 0.55rem 0.65rem;
    background: color-mix(in srgb, var(--paper) 92%, transparent);
    border: 1px solid var(--line);
    color: var(--ink-readable-strong);
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 0.35rem;
  }

  .brand img {
    width: clamp(144px, 52vw, 188px);
  }

  .nav-toggle {
    min-width: 48px;
    padding: 0;
    justify-content: center;
  }

  .nav-toggle::after {
    display: none;
  }

  .nav-toggle span {
    left: 50%;
    margin-left: -9px;
  }
}

@media (max-width: 920px) and (prefers-color-scheme: dark) {
  .site-header {
    background: rgba(12, 14, 12, 0.94);
    border-bottom-color: rgba(232, 230, 225, 0.12);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.26);
  }

  .nav-toggle {
    color: rgba(245, 241, 232, 0.96) !important;
    background: rgba(245, 241, 232, 0.06);
    border-color: rgba(245, 241, 232, 0.18);
  }

  .main-nav {
    background: rgba(16, 18, 16, 0.98);
    border-left-color: rgba(245, 241, 232, 0.14);
  }

  .main-nav__summary,
  .main-nav__section,
  .main-nav__legal {
    background: transparent;
    border-color: rgba(245, 241, 232, 0.12);
    box-shadow: none;
  }

  .main-nav__eyebrow,
  .main-nav__section-label {
    color: rgba(236, 179, 156, 0.96);
  }

  .main-nav__title,
  .main-nav__section-title,
  .main-nav__lede {
    color: rgba(245, 241, 232, 0.94);
  }

  .main-nav a {
    color: rgba(245, 241, 232, 0.94);
    background: transparent;
    border-color: rgba(245, 241, 232, 0.12);
    box-shadow: none;
  }

  .main-nav__primary a[aria-current="page"] {
    color: rgba(236, 179, 156, 0.98);
    background: transparent;
    border-color: rgba(236, 179, 156, 0.22);
  }

  .breadcrumb {
    background:
      linear-gradient(180deg, rgba(16, 18, 16, 0.98), rgba(12, 14, 12, 0.96));
    border-bottom: 1px solid rgba(245, 241, 232, 0.1);
    color: rgba(245, 241, 232, 0.9);
  }

  .breadcrumb a,
  .breadcrumb strong {
    color: rgba(245, 241, 232, 0.94);
  }

  .breadcrumb span {
    color: rgba(245, 241, 232, 0.32);
  }

  .hero-media {
    background:
      linear-gradient(180deg, rgba(28, 30, 28, 0.96), rgba(18, 20, 18, 0.98));
    border-color: rgba(245, 241, 232, 0.12);
  }

  .hero-media--asset figcaption {
    background: rgba(18, 20, 18, 0.9);
    border-color: rgba(245, 241, 232, 0.14);
    color: rgba(245, 241, 232, 0.94);
  }
}


/* === site.css: MOBILE ELITE PASS === */
/* ═══════════════════════════════════════════════════════════════
   MOBILE ELITE PASS — iPhone 17 Safari bright-mode hardening
   ─────────────────────────────────────────────────────────────
   Problems solved:
   · 44+ elements with font-size < 0.7rem (8-11px) — unreadable
   · Missing touch targets on share/cross-link/filter elements
   · Tight padding at ≤380px causing text crush
   · No readable floor for micro-labels on small screens
   · Body font too light at mobile contrast ratios
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 920px) {
  body {
    font-size: clamp(1rem, 0.3vw + 0.96rem, 1.08rem);
    line-height: 1.72;
    font-weight: 520;
    -webkit-font-smoothing: subpixel-antialiased;
  }

  .home-page .hero-context::after,
  .collection-page .grid--places::before,
  .atlas-panel__feature::after {
    font-size: 0.64rem;
    letter-spacing: 0.12em;
    padding: 0.22rem 0.55rem;
  }

  .source-slip__kicker {
    font-size: 0.72rem;
  }

  .cross-links__title {
    font-size: 0.74rem;
  }

  .cross-links__list a {
    font-size: 0.86rem;
    padding: 0.55rem 1rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .share-btn {
    font-size: 0.78rem;
    padding: 0.6rem 1.15rem;
    min-height: 44px;
  }

  .share-btn svg {
    width: 16px;
    height: 16px;
  }

  .foto-drei__label {
    font-size: 0.7rem;
  }

  .foto-drei__list li {
    font-size: 0.94rem;
    line-height: 1.62;
  }

  .edition {
    font-size: 0.68rem;
  }

  .marker {
    font-size: 0.68rem;
    padding: 0.38rem 0.6rem;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }

  .prose p,
  .prose li {
    font-size: clamp(1rem, 0.3vw + 0.96rem, 1.08rem);
    line-height: 1.72;
  }

  .lede {
    font-size: clamp(1.08rem, 1.8vw, 1.22rem);
    line-height: 1.68;
    text-wrap: balance;
  }

  .hero-copy h1,
  .section-header h2 {
    text-wrap: balance;
  }

  .hero-copy h1 em,
  .lede em,
  h2 em,
  h3 em {
    font-family: var(--font-display);
    font-style: italic;
    font-variation-settings: "opsz" 32;
  }

  .place-card__sentence {
    font-size: 1rem;
    line-height: 1.55;
  }

  .evidence-strip__item p:last-child,
  .manifesto__text,
  .source-slip__text,
  .decision p,
  .note-card p,
  .safety p,
  .map-card p,
  .weather-logic p {
    font-size: 1rem;
    line-height: 1.64;
  }

  .nk-safety {
    font-size: 0.88rem;
    line-height: 1.58;
    padding: 0.85rem 1rem;
  }
}

@media (max-width: 560px) {
  body {
    font-weight: 540;
  }

  .home-page .hero-context::after,
  .collection-page .grid--places::before,
  .atlas-panel__feature::after {
    font-size: 0.62rem;
  }

  .marker {
    font-size: 0.66rem;
    padding: 0.35rem 0.55rem;
  }

  .edition {
    font-size: 0.66rem;
  }

  .share-bar {
    flex-wrap: wrap;
    gap: 0.55rem;
  }

  .share-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .cross-links__list {
    gap: 0.45rem;
  }

  .cross-links__list a {
    font-size: 0.84rem;
    padding: 0.5rem 0.85rem;
  }

  .foto-drei {
    padding: 1rem 1.15rem;
    margin: 1.5rem 0;
  }
}

@media (max-width: 380px) {
  body {
    font-size: 1rem;
  }

  .button {
    min-height: 44px;
    padding-left: 0.95rem;
    padding-right: 0.95rem;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 13vw, 2.5rem);
  }

  .share-bar {
    padding: 1.5rem 0.5rem;
  }

  .share-btn {
    font-size: 0.76rem;
    padding: 0.55rem 0.8rem;
  }

  .cross-links {
    padding: 1.5rem 0;
  }

  .cross-links__title {
    font-size: 0.72rem;
  }

  .cross-links__list a {
    font-size: 0.82rem;
    padding: 0.48rem 0.75rem;
  }
}

@media (max-width: 920px) {
  .place-card,
  .ortsbuch-panel,
  .photo-truth,
  .family-realism,
  .weather-script,
  .second-door-index,
  .reality-cut__card,
  .note-card,
  .decision {
    -webkit-tap-highlight-color: rgba(160, 74, 45, 0.08);
  }

  .place-card__arrow,
  .button,
  a.place-card {
    -webkit-tap-highlight-color: transparent;
  }

  .footer-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .footer-legal a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .breadcrumb {
    font-size: 0.78rem;
    min-height: 44px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .breadcrumb a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0;
  }

  .brand {
    min-height: 44px;
  }
}

/* === site.css: MOBILE READING POLISH === */
/* ═══════════════════════════════════════
   MOBILE READING POLISH
   Better rhythm + contrast for light/dark
   ═══════════════════════════════════════ */
@media (max-width: 920px) {
  :root {
    --mobile-reading-measure: 62ch;
  }

  body {
    font-size: clamp(1rem, 0.4vw + 0.96rem, 1.1rem);
    line-height: 1.74;
  }

  .hero-copy h1 {
    line-height: 1.08;
    letter-spacing: -0.015em;
  }

  .lede,
  .section-header p,
  .prose p,
  .prose li,
  .source-slip__text,
  .evidence-strip__item p:last-child,
  .decision p,
  .note-card p,
  .map-card p,
  .weather-logic p {
    text-wrap: pretty;
    max-width: var(--mobile-reading-measure);
  }

  .place-card__title,
  .source-slip__title,
  .evidence-strip__item h3,
  .decision h3 {
    line-height: 1.26;
  }

  .main-nav a {
    font-size: 1rem;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 560px) {
  body {
    line-height: 1.76;
  }

  .hero-copy h1 {
    font-size: clamp(2.15rem, 10vw, 3rem);
  }

  .lede {
    font-size: clamp(1.06rem, 3.8vw, 1.2rem);
    line-height: 1.72;
  }
}

@media (max-width: 920px) and (prefers-color-scheme: dark) {
  .lede,
  .section-header p,
  .prose p,
  .prose li,
  .source-slip__text,
  .evidence-strip__item p:last-child,
  .decision p,
  .note-card p,
  .map-card p,
  .weather-logic p {
    color: rgba(238, 236, 231, 1);
  }

  .hero-context,
  .source-slip,
  .evidence-strip__item,
  .decision,
  .note-card,
  .map-card,
  .weather-logic {
    background: rgba(14, 16, 15, 0.98);
    border-color: rgba(238, 236, 231, 0.16);
  }

  .main-nav a {
    color: rgba(245, 241, 232, 0.96);
  }
}


/* === extensions.css: RESPONSIVE === */
/* ═══════════════════════════════════════════════════════════════
   Responsive
   ─────────────────────────────────────────────────────────────── */
@media (max-width: 1023px) {
  .nlu-kids__radar { grid-template-columns: 1fr; gap: 1rem; }
  .nlu-archivspur__inner,
  .nlu-kids__splash,
  .nlu-kids__columns { grid-template-columns: 1fr; gap: 2rem; }
  .nlu-archivspur__figure { max-width: 520px; margin: 0 auto; }
  .nlu-kids__splash-figure { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 900px) {
  .nlu-undercover-cta__inner { grid-template-columns: 1fr; }
  .nlu-undercover-cta__media img { min-height: 220px; aspect-ratio: 16/9; }
  .nlu-book-preview__inner { gap: .55rem; }
}
@media (max-width: 720px) {
  .uc-series-banner__progress {
    position: static;
    text-align: left;
    justify-items: start;
    margin-top: .8rem;
  }
  .uc-case-tab { padding: .5rem .6rem; font-size: .68rem; letter-spacing: .1em; }
  .uc-case-tab .place { display: none; }
  .uc-aktenindex__inner { grid-template-columns: 1fr 1fr; }
  .uc-akte__name { font-size: 1.1rem; }
  .uc-akte__no-tile { width: 44px; height: 44px; font-size: 1.2rem; }
  .uc-next-akte__inner { grid-template-columns: 1fr; gap: 1rem; }
  .uc-next-akte__cta { justify-self: start; }

  .nlu-switcher { right: 1rem; bottom: 1rem; padding: .4rem; max-width: 92vw; }
  .nlu-switcher__hint { display: none; }
  .nlu-switcher button {
    width: 44px; height: 44px;
    justify-content: center;
    padding: .5rem;
  }
  .nlu-switcher button span:not(.swatch) { display: none; }
  .nlu-kids__banner { grid-template-columns: 1fr; gap: 1rem; }
  .nlu-kids__case { width: 92px; height: 92px; font-size: 2.6rem; }
  .nlu-kids__dialog .line { grid-template-columns: 32px 1fr; }
  .nlu-kids__dialog .name { width: 32px; height: 32px; font-size: .7rem; }
  .nlu-kids__glossar .term { grid-template-columns: 1fr; gap: .25rem; }
  .nlu-kids__crossref,
  .nlu-kids__dossier { grid-template-columns: 1fr; }
  .nlu-kids__seal { margin: 0 auto; }
  .nlu-kids__reality { grid-template-columns: 1fr; }
  .nlu-archivspur__chain { grid-template-columns: 1fr 1fr; }
  .nlu-kids__verschluss-stamp { width: 72px; height: 72px; font-size: .58rem; }
  .nlu-kids__verschluss { padding: 1.6rem 1rem 1.2rem; }
  .nlu-kids__zeuge { grid-template-columns: 1fr; gap: 1rem; }
  .nlu-kids__zeuge-badge { width: 72px; height: 72px; }
  .nlu-kids__codewort { grid-template-columns: 1fr; gap: .5rem; }
  .nlu-kids__codewort-label { border-right: 0; padding-right: 0; text-align: left; }
  .nlu-kids__quellen-list li { grid-template-columns: auto 1fr; }
  .nlu-kids__quellen-list .domain { grid-column: 2 / -1; margin-top: .15rem; }
  .nlu-kids__radar-row { grid-template-columns: 70px 1fr 24px; gap: .5rem; }
  .nlu-book-preview { margin-top: .6rem; }
  .nlu-book-preview__lede { font-size: .95rem; line-height: 1.58; }
}

@media (prefers-color-scheme: dark) {
  .nlu-book-preview__inner {
    border-color: rgba(245,241,232,.18);
    background: linear-gradient(180deg, rgba(19,22,21,.84), rgba(14,16,15,.9));
  }
  .nlu-book-preview__kicker { color: rgba(245,241,232,.66); }
  .nlu-book-preview__title { color: rgba(251,247,238,.95); }
  .nlu-book-preview__lede { color: rgba(251,247,238,.84); }
  .nlu-book-preview__notice { color: #f0b49c; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}


/* === extensions.css: MOBILE EXPERIENCE HARDENING === */
/* ═══════════════════════════════════════════════════════════════
   MOBILE EXPERIENCE HARDENING — current live nlu modules
   Loaded last, after site.css and place-colors.css.
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 920px) {
  .nlu-editorial-banner {
    background: var(--paper);
  }

  .nlu-editorial-banner__image {
    aspect-ratio: auto;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center;
    background: var(--paper);
  }

  .nlu-editorial-banner__caption {
    left: max(1rem, env(safe-area-inset-left));
    right: max(1rem, env(safe-area-inset-right));
    bottom: 0.8rem;
    width: auto;
    text-align: center;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
    line-height: 1.4;
  }

  .nlu-subhero,
  .nlu-tenets,
  .nlu-leseatlas,
  .nlu-orte-atlas,
  .nlu-kompass,
  .nlu-notes-archive,
  .nlu-wetterlogic {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nlu-subhero {
    text-align: left;
    justify-items: start;
    gap: 1rem;
    padding-top: 2.2rem;
    padding-bottom: 2rem;
  }

  .nlu-subhero h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 10vw, 2.75rem);
    line-height: 1.02;
  }

  .nlu-subhero > .kicker {
    font-family: var(--font-sans, 'Manrope', sans-serif);
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: color-mix(in srgb, var(--rust, #a04a2d) 72%, var(--ink));
    max-width: none;
  }

  .nlu-subhero p {
    max-width: none;
    font-size: 1.08rem;
    line-height: 1.66;
    color: var(--ink-readable-strong, var(--ink));
  }

  .nlu-subhero__actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 0.55rem;
  }

  .nlu-subhero__actions .button {
    width: 100%;
    min-height: 48px;
    justify-content: center;
    text-align: center;
    white-space: normal;
  }

  .nlu-tenets__head,
  .nlu-leseatlas__head,
  .nlu-orte-atlas__head,
  .nlu-kompass__head,
  .nlu-notes-archive__head,
  .nlu-wetterlogic__head {
    max-width: none;
    margin-bottom: 1.4rem;
  }

  .nlu-tenets__head p,
  .nlu-leseatlas__head p,
  .nlu-kompass__head p,
  .nlu-notes-archive__head p,
  .nlu-wetterlogic__head p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.62;
  }

  .nlu-tenet,
  .nlu-leseplace__body,
  .nlu-ortcard__body,
  .nlu-kompass-card,
  .nlu-fieldnote,
  .nlu-wettercard {
    padding: 1.15rem 1rem 1.2rem;
  }

  .nlu-tenet p,
  .nlu-leseplace__sentence,
  .nlu-ortcard__sentence,
  .nlu-kompass-card__decision,
  .nlu-kompass-card__rule,
  .nlu-fieldnote,
  .nlu-wettercard p {
    font-size: 1rem;
    line-height: 1.62;
    color: var(--ink-readable-strong, var(--ink));
  }

  .nlu-leseplace__marker,
  .nlu-ortcard__marker,
  .nlu-kompass-card__name span,
  .nlu-fieldnote__meta,
  .nlu-filter-bar__label,
  .nlu-filter-chip,
  .nlu-charakter-band__inner {
    letter-spacing: 0.11em;
  }

  .nlu-charakter-band {
    padding: 0.95rem max(1rem, env(safe-area-inset-right)) 0.95rem max(1rem, env(safe-area-inset-left));
  }

  .nlu-charakter-band__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-content: stretch;
    gap: 0.8rem 1rem;
    font-size: 0.72rem;
    line-height: 1.35;
  }

  .nlu-kompass-card__head {
    grid-template-columns: minmax(2.8rem, auto) minmax(0, 1fr);
    gap: 0.75rem;
  }

  .nlu-kompass-card__rule {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }

  .nlu-filter-bar {
    gap: 0.45rem;
  }

  .nlu-filter-chip {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .nlu-subhero h2 {
    font-size: clamp(1.92rem, 9.2vw, 2.45rem);
  }

  .nlu-charakter-band__inner {
    grid-template-columns: 1fr;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #141614;
    --paper-warm: #1a1c1a;
    --paper-deep: #111311;
    --paper-raw: #181a18;
    --paper-cold: #151a1a;
    --chalk-white: #1d201d;
    --wood-white: #20221f;
    --ink: #e8e6e1;
    --ink-soft: rgba(232, 230, 225, 0.88);
    --ink-faint: rgba(232, 230, 225, 0.68);
    --ink-readable: rgba(232, 230, 225, 0.94);
    --ink-readable-strong: rgba(245, 241, 232, 0.97);
  }

  .place-page {
    --bg-base: #141614;
    --text-emphasis: rgba(245, 241, 232, 0.94);
    --accent-readable: var(--rust-warm-strong, #f0baa6);
    --place-accent-readable: var(--rust-warm-strong, #f0baa6);
    background: var(--paper);
  }

  .nlu-editorial-banner {
    background: #101210;
    border-bottom-color: rgba(245, 241, 232, 0.12);
  }

  .nlu-editorial-banner__image {
    background: #101210;
  }

  .nlu-editorial-banner__caption {
    background: rgba(14, 16, 14, 0.86);
    border-color: rgba(245, 241, 232, 0.14);
    color: rgba(245, 241, 232, 0.92);
  }

  .nlu-subhero {
    background:
      radial-gradient(circle at 86% 14%, rgba(127, 181, 196, 0.06), transparent 34%),
      linear-gradient(180deg, rgba(12, 14, 12, 0.98), rgba(18, 20, 18, 0.98));
    border-top-color: rgba(245, 241, 232, 0.14);
    border-bottom-color: rgba(245, 241, 232, 0.14);
  }

  .nlu-subhero::before {
    background:
      repeating-linear-gradient(90deg, transparent 0 42px, rgba(245, 241, 232, 0.055) 42px 43px),
      repeating-linear-gradient(0deg, transparent 0 26px, rgba(245, 241, 232, 0.04) 26px 27px);
    opacity: .38;
  }

  .nlu-subhero h2,
  .nlu-visitor-path__head h2,
  .nlu-tenets__head h2,
  .nlu-leseatlas__head h2,
  .nlu-orte-atlas__head h2,
  .nlu-kompass__head h2,
  .nlu-notes-archive__head h2,
  .nlu-tenet h3,
  .nlu-leseplace__name,
  .nlu-ortcard__name,
  .nlu-kompass-card__name,
  .uc-back-to-book h2 {
    color: rgba(245, 241, 232, 0.96);
  }

  .nlu-subhero p,
  .nlu-visitor-path__head p:not(.kicker),
  .nlu-visitor-card span:last-child,
  .nlu-tenets__head p,
  .nlu-leseatlas__head p,
  .nlu-kompass__head p,
  .nlu-notes-archive__head p,
  .nlu-tenet p,
  .nlu-leseplace__sub,
  .nlu-leseplace__sentence,
  .nlu-ortcard__sub,
  .nlu-ortcard__charakter span,
  .nlu-ortcard__sentence,
  .nlu-kompass-card__decision,
  .nlu-kompass-card__rule,
  .nlu-fieldnote,
  .nlu-filter-bar__label,
  .uc-back-to-book p {
    color: rgba(232, 230, 225, 0.94);
  }

  .nlu-subhero > .kicker {
    color: var(--rust-warm-strong, #f0baa6);
  }

  .nlu-tenets,
  .nlu-leseatlas,
  .nlu-visitor-path,
  .nlu-orte-atlas,
  .nlu-kompass,
  .nlu-notes-archive {
    background:
      radial-gradient(circle at 14% 18%, rgba(212, 104, 78, 0.045), transparent 34%),
      linear-gradient(180deg, rgba(18, 20, 18, 0.98), rgba(14, 16, 14, 0.98));
    border-color: rgba(245, 241, 232, 0.1);
  }

  .nlu-tenet,
  .nlu-leseplace,
  .nlu-visitor-card,
  .nlu-ortcard,
  .nlu-kompass-card,
  .nlu-fieldnote,
  .uc-back-to-book {
    background:
      linear-gradient(180deg, rgba(30, 33, 31, 0.97), rgba(22, 24, 22, 0.98));
    border-color: rgba(245, 241, 232, 0.12);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
  }

  .nlu-visitor-card:hover,
  .nlu-visitor-card:focus-visible {
    border-color: rgba(227, 160, 139, 0.52);
    background:
      linear-gradient(180deg, rgba(38, 41, 38, 0.98), rgba(24, 27, 24, 0.98));
  }

  .nlu-visitor-card__label {
    color: var(--rust-warm-strong, #f0baa6);
    border-color: rgba(227, 160, 139, 0.46);
  }

  .nlu-fieldnote {
    background:
      repeating-linear-gradient(35deg, transparent 0 80px, rgba(245, 241, 232, 0.025) 80px 81px),
      repeating-linear-gradient(125deg, transparent 0 120px, rgba(245, 241, 232, 0.018) 120px 121px),
      linear-gradient(180deg, rgba(30, 33, 31, 0.97), rgba(22, 24, 22, 0.98));
  }

  .nlu-fieldnote::after {
    background: repeating-linear-gradient(
      90deg,
      rgba(22, 24, 22, 0.98) 0 5px,
      transparent 5px 6px
    );
  }

  .nlu-charakter-band {
    background: rgba(18, 20, 18, 0.98);
    border-color: rgba(245, 241, 232, 0.12);
  }

  .nlu-charakter-band__inner {
    color: rgba(245, 241, 232, 0.9);
  }

  .nlu-leseplace__marker,
  .nlu-visitor-card__label,
  .nlu-ortcard__marker,
  .nlu-kompass-card__name span,
  .nlu-kompass-card__rule strong,
  .nlu-kompass-card__link,
  .nlu-fieldnote__meta,
  .nlu-notes-archive .nlu-fieldnote__meta::before,
  .nlu-tenet__no,
  .nlu-tenet__label {
    color: var(--rust-warm-strong, #f0baa6);
  }

  .nlu-ortcard__charakter span,
  .nlu-filter-chip {
    border-color: rgba(245, 241, 232, 0.16);
  }

  .nlu-filter-chip {
    color: rgba(245, 241, 232, 0.9);
  }

  .nlu-filter-chip.is-active {
    background: rgba(245, 241, 232, 0.94);
    color: #141614;
    border-color: rgba(245, 241, 232, 0.94);
  }

  .place-page .section--dark,
  .place-page .section--dark .source-card {
    background: linear-gradient(180deg, rgba(24, 27, 26, 0.96), rgba(18, 20, 18, 0.98));
    color: rgba(245, 241, 232, 0.94);
    border-color: rgba(245, 241, 232, 0.12);
  }

  .place-page .section--dark h2,
  .place-page .section--dark .kicker,
  .place-page .section--dark .source-card h3,
  .place-page .section--dark .source-card dt,
  .place-page .section--dark .source-card dd,
  .place-page .section--dark p,
  .place-page .section--dark a {
    color: rgba(245, 241, 232, 0.92);
  }
}


/* === extensions.css: MOBILE ELITE PASS === */
/* ═══════════════════════════════════════════════════════════════
   MOBILE ELITE PASS — extensions module hardening
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 920px) {
  .nlu-banner__meta {
    font-size: 0.7rem;
    gap: 0.85rem;
    letter-spacing: 0.12em;
  }

  .nlu-banner__kicker {
    font-size: 0.74rem;
    letter-spacing: 0.22em;
  }

  .nlu-banner__content {
    padding: clamp(1.2rem, 3.5vw, 2rem) clamp(1rem, 3vw, 2rem) clamp(1.4rem, 4vw, 2.2rem);
  }

  .nlu-chapter__kicker {
    font-size: 0.76rem;
    letter-spacing: 0.16em;
  }

  .nlu-chapter__prose p {
    font-size: clamp(1.04rem, 1.5vw, 1.16rem);
    line-height: 1.72;
  }

  .nlu-chapter {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nlu-pillar__label {
    font-size: 0.7rem;
  }

  .nlu-pillars__grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .nlu-pillar {
    padding: 1.3rem 1.15rem 1.2rem;
  }

  .nlu-pillar__sentence {
    font-size: 1rem;
    line-height: 1.62;
  }

  .nlu-archivspur__inner {
    padding: 0 max(1rem, env(safe-area-inset-left));
  }

  .nlu-archivspur__body p {
    font-size: 1.02rem;
    line-height: 1.68;
  }

  .nlu-archivspur__chain .step {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .nlu-kids__inner {
    padding: 0 max(1rem, env(safe-area-inset-left));
  }

  .nlu-kids h3.nlu-kids__section-label {
    font-size: 0.78rem;
    letter-spacing: 0.18em;
  }

  .nlu-kids__banner-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }

  .nlu-kids__dialog .bubble {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .uc-case-tab {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  .uc-next-akte__cta {
    min-height: 48px;
    padding: 0.7rem 1.4rem;
  }

  .nlu-switcher button {
    min-width: 44px;
    min-height: 44px;
  }

  .nlu-quelle__vertrauen {
    font-size: 0.65rem;
    padding: 0.32rem 0.6rem;
    letter-spacing: 0.18em;
  }

  .nlu-quelle__einsatz {
    font-size: 0.78rem;
    line-height: 1.5;
  }
}

@media (max-width: 560px) {
  .nlu-banner {
    aspect-ratio: 16 / 9;
    min-height: 240px;
  }

  .nlu-banner__title {
    font-size: clamp(1.8rem, 8.5vw, 2.8rem);
  }

  .nlu-banner__sub {
    font-size: clamp(0.98rem, 1.4vw, 1.12rem);
  }

  .nlu-banner__meta {
    font-size: 0.68rem;
    gap: 0.65rem;
  }

  .nlu-pillars {
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .nlu-archivspur__chain {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

@media (max-width: 380px) {
  .nlu-banner__content {
    padding: 0.8rem 0.8rem 1rem;
  }

  .nlu-banner__meta {
    font-size: 0.66rem;
    gap: 0.5rem;
  }

  .nlu-chapter {
    padding-left: 0.8rem;
    padding-right: 0.8rem;
  }

  .nlu-kids__inner {
    padding: 0 0.8rem;
  }

  .nlu-archivspur__inner {
    padding: 0 0.8rem;
  }
}

/* ─── Hide switcher when mobile nav is open (prevents overlap with nav panel) ─── */
@media (max-width: 920px) {
  body.nav-open .nlu-switcher {
    display: none;
  }
}







