:root {
  --gold: #d3a647;
  --gold-light: #f0cf78;
  --night: #0c1b20;
  --forest: #15362d;
  --ivory: #f3ecdc;
  --ink: #151b19;
  --header-height: 112px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html,
body {
    max-width: 100%;
    overflow-x: hidden;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--ivory);
  font-family: Georgia, "Times New Roman", serif;
}

a { color: inherit; }

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 18px clamp(24px, 4vw, 76px);
  color: white;
  background: linear-gradient(to bottom, rgba(5, 14, 17, .82), rgba(5, 14, 17, .22), transparent);
  transition: background .3s ease, min-height .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  min-height: 78px;
  background: rgba(8, 25, 29, .96);
  box-shadow: 0 6px 24px rgba(0,0,0,.22);
}

.brand {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  text-decoration: none;
  color: var(--gold-light);
  flex-shrink: 0;
}

.brand > img:first-child {
  width: 140px;
  height: 140px;
  object-fit: contain;
}
	  
.brand .brand-wordmark {
    width: 420px;
    height: auto;
    object-fit: contain;
	position: relative;
    top: 9px;
}
.brand-copy { display: grid; line-height: 1; }
.brand-name {
  font-size: clamp(2.3rem, 3.6vw, 4.1rem);
  letter-spacing: .055em;
  text-transform: uppercase;
}
.brand-subtitle {
  margin-top: 8px;
  font-size: clamp(.82rem, 1.08vw, 1.15rem);
  letter-spacing: .18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
    align-items: center;
    gap: clamp(18px, 2.5vw, 42px);
    position: relative;
    top: -35px;
}
.main-nav a {
  position: relative;
  padding: 12px 0;
  font-size: clamp(.94rem, 1.2vw, 1.18rem);
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 2px 12px rgba(0,0,0,.8);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transform: translateX(-50%);
  transition: width .25s ease;
}
.main-nav a:hover,
.main-nav a.active { color: var(--gold-light); }
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(240,207,120,.6);
  background: rgba(7,24,27,.72);
}
.menu-toggle span:not(.visually-hidden) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--gold-light);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background-image: url("assets/hero-fjellgard.jpg");
  background-size: cover;
  background-position: center center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(8, 20, 19, .68) 0%,
      rgba(8, 20, 19, .42) 22%,
      rgba(8, 20, 19, .12) 42%,
      transparent 58%);
}

.hero-content {
  width: min(470px, 34vw);
  margin-left: clamp(50px, 8vw, 150px);
  padding-top: calc(var(--header-height) - 50px);
  text-shadow: 0 2px 18px rgba(255,245,213,.25);
}

.hero h1 {
  margin: 0;
  font-weight: 400;
  font-size: clamp(3rem, 4.4vw, 5.4rem);
  line-height: 1.02;
  letter-spacing: -.02em;
  color: #f3ecdc;
  text-shadow: 0 2px 16px rgba(0,0,0,.55);
}

.ornament {
  display: flex;
  align-items: center;
  gap: 0;
  width: min(300px, 100%);
  margin: 0 0 22px;
}
.ornament span { flex: 1; height: 1px; background: rgba(151,108,35,.78); }
.ornament i {
  width: 13px;
  height: 13px;
  border: 1px solid #a8792c;
  transform: rotate(45deg);
}

.hero-content p {
  margin: 0 0 60px;
  font-size: clamp(1.35rem, 1.55vw, 1.8rem);
  line-height: 1.45;
  color: #f3ecdc;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}

.hero-actions {
  display: grid;
  width: min(340px, 100%);
  gap: 16px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 11px 18px;
  border: 1px solid var(--gold);
  outline: 1px solid rgba(211,166,71,.3);
  outline-offset: -5px;
  color: var(--gold-light);
  background: linear-gradient(180deg, rgba(20,60,48,.96), rgba(10,38,33,.98));
  box-shadow: 0 8px 22px rgba(0,0,0,.28);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .055em;
  font-size: clamp(.9rem, 1vw, 1.08rem);
  transition: filter .2s ease, transform .2s ease;
}
.button:hover {
  filter: brightness(1.12);
  transform: translateY(-1px);
}


/* Bücher – Prinzessin Liada */
.books-section {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 78px;
  overflow: hidden;
  isolation: isolate;
  color: var(--ivory);
  background:
    #081613 url("assets/buecher-hintergrund.png") center center / cover no-repeat;
}

.books-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(4, 14, 13, .18) 0%,
      rgba(4, 14, 13, .30) 42%,
      rgba(4, 14, 13, .72) 64%,
      rgba(4, 14, 13, .82) 100%),
    linear-gradient(180deg,
      rgba(3, 11, 11, .20) 0%,
      rgba(3, 11, 11, .05) 30%,
      rgba(3, 11, 11, .22) 100%);
}

.books-inner {
  width: min(1600px, calc(100% - 80px));
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(150px, 16vh, 190px) 0 clamp(70px, 8vh, 100px);
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: clamp(50px, 6vw, 110px);
}

.book-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.book-cover-3d {
  display: block;
  width: min(640px, 98%);
  height: auto;
  filter: drop-shadow(0 28px 34px rgba(0, 0, 0, .58));
}

.book-info {
  max-width: 690px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, .72);
}

.book-series {
  margin: 0 0 10px;
  color: var(--gold-light);
  font-size: .92rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.book-info h2 {
  margin: 0;
  color: var(--gold-light);
  font-size: clamp(2.8rem, 4.2vw, 4.8rem);
  line-height: .98;
  font-weight: 400;
  text-transform: uppercase;
}

.book-info h3 {
  margin: 10px 0 30px;
  padding-bottom: 18px;
  color: var(--gold);
  font-size: clamp(1.35rem, 2.1vw, 2.15rem);
  line-height: 1.15;
  font-weight: 400;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(211, 166, 71, .72);
}

.book-info p {
  margin: 0 0 18px;
  font-size: clamp(.94rem, 1vw, 1.08rem);
  line-height: 1.55;
}

.book-lead {
  color: #fff7e8;
  font-size: clamp(1rem, 1.08vw, 1.16rem) !important;
}

.book-quote {
  margin: 26px 0 !important;
  color: var(--gold-light);
  font-style: italic;
}

.book-type {
  margin-top: 28px !important;
  color: var(--gold);
  font-size: clamp(1.05rem, 1.15vw, 1.24rem) !important;
}

.book-extra {
  color: #e7dfcf;
}

.book-order {
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid rgba(211, 166, 71, .58);
}

.book-order-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-light);
  font-size: .9rem;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.book-order p {
  margin: 0;
  color: #e7dfcf;
}

/* Bücher responsive */
@media (max-width: 1100px) {
  .books-inner {
    width: min(100% - 48px, 1040px);
    grid-template-columns: minmax(300px, .8fr) minmax(420px, 1.2fr);
    gap: 42px;
  }

  .book-cover-3d {
    width: min(470px, 100%);
  }
}

@media (max-width: 820px) {
  .books-section {
    background-position: 42% center;
  }

  .books-shade {
    background: rgba(4, 14, 13, .68);
  }

  .books-inner {
    width: min(100% - 40px, 680px);
    min-height: auto;
    padding: 130px 0 70px;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .book-cover-3d {
    width: min(440px, 88vw);
  }

  .book-info {
    max-width: none;
  }
}

@media (max-width: 520px) {
  .books-inner {
    width: calc(100% - 32px);
    padding-top: 112px;
  }

  .book-info h2 {
    font-size: clamp(2.3rem, 12vw, 3.3rem);
  }

  .book-info h3 {
    margin-bottom: 24px;
  }

  .book-info p {
    font-size: 1rem;
  }
}


/* Die Welt – Einstieg */
.world-hero {
  position: relative;
  min-height: 100svh;
  scroll-margin-top: 78px;
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  color: var(--ivory);
  background: #0a1717 url("assets/welt-koenigsfels.webp") center center / cover no-repeat;
}

.world-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg,
      rgba(5,16,15,.72) 0%,
      rgba(5,16,15,.48) 30%,
      rgba(5,16,15,.16) 52%,
      rgba(5,16,15,.04) 68%,
      rgba(5,16,15,.10) 100%),
    linear-gradient(180deg,
      rgba(3,10,11,.28) 0%,
      rgba(3,10,11,.06) 34%,
      rgba(3,10,11,.18) 100%);
}

.world-content {
  width: min(640px, 42vw);
  margin-left: clamp(50px, 8vw, 150px);
  padding-top: calc(var(--header-height) + 20px);
  text-shadow: 0 2px 12px rgba(0,0,0,.72);
}

.world-kicker {
  margin: 0 0 12px;
  color: var(--gold-light);
  font-size: .95rem;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.world-content h2 {
  margin: 0 0 26px;
  color: var(--gold-light);
  font-size: clamp(2.6rem, 4.1vw, 4.7rem);
  line-height: 1.02;
  font-weight: 400;
}

.world-content p:not(.world-kicker) {
  margin: 0 0 18px;
  max-width: 620px;
  color: #f3ecdc;
  font-size: clamp(1.05rem, 1.25vw, 1.3rem);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .world-hero { background-position: 64% center; }
  .world-shade {
    background:
      linear-gradient(90deg,
        rgba(5,16,15,.74) 0%,
        rgba(5,16,15,.50) 44%,
        rgba(5,16,15,.12) 72%,
        rgba(5,16,15,.10) 100%);
  }
  .world-content {
    width: min(560px, 72vw);
    margin-left: clamp(24px, 7vw, 70px);
  }
}

@media (max-width: 640px) {
  .world-hero {
    min-height: 100svh;
    align-items: end;
    background-position: 72% center;
  }
  .world-shade {
    background:
      linear-gradient(180deg,
        rgba(4,13,14,.08) 0%,
        rgba(4,13,14,.18) 42%,
        rgba(4,13,14,.82) 68%,
        rgba(4,13,14,.96) 100%);
  }
  .world-content {
    width: auto;
    margin: 0;
    padding: 140px 24px 46px;
  }
  .world-content h2 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }
  .world-content p:not(.world-kicker) {
    font-size: 1rem;
  }
}

.placeholder {
  min-height: 46vh;
  display: grid;
  place-content: center;
  text-align: center;
  padding: 90px 24px;
}
.placeholder.alternate { background: #0e2829; color: var(--ivory); }
.placeholder h2 {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 400;
}
.placeholder p { margin: 0; font-size: 1.2rem; }

footer {
  padding: 44px 24px;
  text-align: center;
  color: #d8d1c2;
  background: #07171a;
}
footer a { color: var(--gold-light); }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 980px) {
  :root { --header-height: 84px; }
  .site-header { min-height: var(--header-height); padding: 10px 22px; }
  .brand img { width: 54px; height: 54px; }
  .brand-name { font-size: 2rem; }
  .brand-subtitle { font-size: .62rem; letter-spacing: .12em; }
  .menu-toggle { display: block; }
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 14px 24px 24px;
    background: rgba(8,25,29,.98);
    border-top: 1px solid rgba(211,166,71,.35);
  }
  .main-nav.open { display: grid; }
  .main-nav a { padding: 10px 0; }
  .hero {
    min-height: 100svh;
    background-position: 62% center;
  }
  .hero-shade {
    background:
      linear-gradient(90deg, rgba(247,232,191,.16), rgba(247,232,191,.04) 55%, transparent),
      linear-gradient(180deg, rgba(5,13,15,.30), transparent 30%, rgba(3,10,11,.25));
  }
  .hero-content {
    width: min(500px, 75vw);
    margin-left: clamp(24px, 7vw, 70px);
  }
}

@media (max-width: 640px) {
  .brand-subtitle { display: none; }
  .brand img { width: 46px; height: 46px; }
  .brand-name { font-size: 1.55rem; }
  .hero {
    min-height: 100svh;
    background-position: 68% center;
  }
  .hero-shade {
    background:
      linear-gradient(180deg, rgba(5,15,17,.18) 0%, rgba(5,15,17,.08) 24%, rgba(6,19,20,.77) 68%, rgba(4,14,16,.94) 100%);
  }
  .hero-content {
    align-self: end;
    width: auto;
    margin: 0;
    padding: 128px 24px 42px;
    color: var(--ivory);
    text-shadow: 0 2px 12px rgba(0,0,0,.8);
  }
  .hero h1 { font-size: clamp(3.1rem, 15vw, 4.8rem); }
  .ornament { margin: 20px 0 18px; }
  .hero-content p { font-size: 1.18rem; }
  .hero-actions { width: 100%; }
  .button { min-height: 56px; }
}
/* Test FileZilla Bearbeitung 30.08.2026 */
/* Die Welt – Hintergrund */
#welt {
    min-height: 100vh;
    background-image:
        linear-gradient(
            90deg,
            rgba(5, 16, 15, 0.58) 0%,
            rgba(5, 16, 15, 0.22) 38%,
            rgba(5, 16, 15, 0.05) 70%
        ),
        url("assets/welt-koenigsfels.webp");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Die Welt – Aufbau */
#welt {
    position: relative;
    min-height: calc(100vh - 150px);
    scroll-margin-top: 150px;

    display: block;
    place-content: unset;
    text-align: left;

    padding:
        55px
        0
        0
        clamp(50px, 7vw, 110px);

    background-image:
        linear-gradient(
            90deg,
            rgba(5,16,15,.58) 0%,
            rgba(5,16,15,.25) 34%,
            rgba(5,16,15,.05) 62%
        ),
        url("assets/welt-koenigsfels.webp");

    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

#welt h2 {
    margin: 0 0 14px 0;
    max-width: 520px;

    color: var(--gold);
    font-size: clamp(2.8rem, 4vw, 4.4rem);
    font-weight: 400;
    line-height: 1.05;
    text-align: left;
}

#welt > p {
    margin: 0;
    max-width: 470px;

    color: var(--ivory);
    font-size: clamp(1.05rem, 1.3vw, 1.3rem);
    line-height: 1.45;
    text-align: left;
    text-shadow: 0 2px 10px rgba(0,0,0,.7);
}
/* Die Welt – Titel und Orientierung */
#welt h2 {
    max-width: none;
    white-space: nowrap;
    font-size: clamp(2.6rem, 3.6vw, 4rem);
    margin-bottom: 14px;
}

#welt > p {
    max-width: 700px;
    font-size: 1.15rem;
    line-height: 1.6;
}
#welt .world-view {
    font-size: 0.9em;
    font-style: italic;
    opacity: 0.85;
}
/* Die Welt – Schloss Königsfels */
.welt-koenigsfels {
    position: relative;
    min-height: calc(100vh - 150px);

    background:
        linear-gradient(
            90deg,
            rgba(5,16,15,.68) 0%,
            rgba(5,16,15,.30) 32%,
            rgba(5,16,15,0) 58%
        ),
        url("assets/welt-koenigsfels-nah.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.welt-ort-text {
    position: absolute;
    left: clamp(50px, 7vw, 110px);
    top: 12%;
    max-width: 520px;
}

.welt-ort-text h3 {
    margin: 0 0 12px;
    color: var(--gold);
    font-size: clamp(2.6rem, 4vw, 4.2rem);
    font-weight: 400;
}

.welt-ort-text p {
    margin: 0;
    color: var(--ivory);
    font-size: clamp(1.1rem, 1.4vw, 1.35rem);
}
.welt-ort-text {
    max-width: 750px;
}

.welt-ort-text h3 {
    white-space: nowrap;
    font-size: clamp(2.6rem, 3.6vw, 4rem);
}
/* Die Welt – Kronhain */
.welt-kronhain {
    position: relative;
    min-height: calc(100vh - 150px);

    background:
        linear-gradient(
            90deg,
            rgba(5,16,15,.62) 0%,
            rgba(5,16,15,.24) 30%,
            rgba(5,16,15,0) 55%
        ),
        url("assets/welt-kronhain.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
.welt-kronhain .welt-ort-text p {
    margin-top: 8px;
}
/* Die Welt – Beschreibungstexte */
.welt-ort-text .welt-beschreibung {
    margin-top: 24px;
    max-width: 520px;
    font-size: clamp(1rem, 1.15vw, 1.18rem);
    line-height: 1.6;
    color: var(--ivory);
    text-shadow: 0 2px 10px rgba(0,0,0,.8);
}
/* Die Welt – Nordkronenberge */
.welt-nordkronenberge {
    position: relative;
    min-height: calc(100vh - 150px);

    background:
        linear-gradient(
            90deg,
            rgba(5,16,15,.58) 0%,
            rgba(5,16,15,.20) 30%,
            rgba(5,16,15,0) 55%
        ),
        url("assets/nordkronenberge-homepage.webp");

    background-size: cover;
    background-position: center 38%;
    background-repeat: no-repeat;

    align-items: flex-end;
    padding-bottom: 80px;
}
.welt-nordkronenberge .welt-ort-text {
    top: auto;
    bottom: 75px;
}
.welt-nordkronenberge .welt-charakter {
    margin-top: 24px;
    margin-bottom: 0;
    color: var(--ivory);
    font-size: clamp(1.05rem, 1.2vw, 1.25rem);
}
/* Die Welt – Fjallstrom */
.welt-fjallstrom {
    position: relative;
    min-height: calc(100vh - 150px);

    background:
        linear-gradient(
            90deg,
            rgba(5,16,15,.58) 0%,
            rgba(5,16,15,.22) 30%,
            rgba(5,16,15,0) 55%
        ),
        url("assets/fjallstrom-fischerboot.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}


/* Die Welt – Kronvik */
.welt-kronvik {
    position: relative;
    min-height: calc(100vh - 150px);

    background:
        linear-gradient(
            90deg,
            rgba(5,16,15,.58) 0%,
            rgba(5,16,15,.22) 30%,
            rgba(5,16,15,0) 55%
        ),
        url("assets/heuernte-kronvik.webp");

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}
/* Kronvik – Textblock etwas höher */
.welt-kronvik .welt-ort-text {
    transform: translateY(-50px);
}
/* =========================
   FJELLGARD TRAILER
   ========================= */

.trailer-section {
  background: #071b1d;
  padding: 55px 24px 70px;
}

.trailer-inner {
  width: min(1400px, 100%);
  margin: 0 auto;
}

.trailer-heading {
  text-align: center;
  margin-bottom: 22px;
}

.trailer-eyebrow {
  display: block;
  margin-bottom: 10px;

  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;

  color: #c8aa65;
}

.trailer-heading h2 {
  margin: 0;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: normal;

  color: #f1ead8;
}

.trailer-video {
  position: relative;

  width: 100%;
  max-width: 1080px;
  margin: 0 auto;

  overflow: hidden;
  border: 1px solid rgba(200, 170, 101, 0.45);

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.025);
}

.trailer-video video {
  display: block;

  width: 100%;
  height: auto;

  aspect-ratio: 16 / 9;

  background: #000;
}
.trailer-info {
  text-align: center;
  margin-top: 18px;
}

.trailer-music {
  margin: 0 0 5px;
  color: #c8aa65;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.trailer-score {
  margin: 0;
  color: #f1ead8;
  font-size: 0.9rem;
  font-style: italic;
  opacity: 0.82;
}
/* =========================
   KARTE VON FJELLGARD
   ========================= */

.karte-section {
  background: #071b1d;
  padding: 80px 24px 100px;
}

.karte-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.karte-heading {
  text-align: center;
  margin-bottom: 34px;
}

.karte-heading h2 {
  margin: 0 0 10px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: normal;

  color: #f1ead8;
}

.karte-heading p {
  margin: 0;

  color: #c8aa65;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.karte-bild {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;

  padding: 10px;

  background: rgba(241, 234, 216, 0.06);
  border: 1px solid rgba(200, 170, 101, 0.45);

  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.4);
}

.karte-bild img {
  display: block;
  width: 100%;
  height: auto;
}
#karte {
  scroll-margin-top: 150px;
}
/* =========================
   CHRONIKEN
   ========================= */

.chroniken-section {
  background: #071b1d;
  padding: 80px 24px 100px;
}

.chroniken-inner {
  width: min(1100px, 100%);
  margin: 0 auto;
}

.chroniken-heading {
  text-align: center;
  margin-bottom: 55px;
}

.chroniken-heading h2 {
  margin: 0 0 10px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: normal;

  color: #f1ead8;
}

.chroniken-heading p {
  margin: 0;
  color: #c8aa65;
  font-size: 1rem;
}

.chronik-block h3 {
  margin: 0 0 28px;
  text-align: center;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: normal;

  color: #f1ead8;
}

.stammbaum-bild {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;

  padding: 10px;
  border: 1px solid rgba(200, 170, 101, 0.45);
  background: rgba(241, 234, 216, 0.06);

  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.4);
}

.stammbaum-bild img {
  display: block;
  width: 100%;
  height: auto;
}

#chroniken {
  scroll-margin-top: 150px;
}
/* =========================
   DER AUTOR
   ========================= */

.autor-section {
  background: #eee5d2;
  padding: 90px 24px 100px;
  color: #17292a;
}

.autor-inner {
  width: min(1120px, 100%);
  margin: 0 auto;

  display: grid;
  grid-template-columns: minmax(300px, 420px) 1fr;
  gap: 70px;

  align-items: center;
}

.autor-foto {
  width: 100%;
  overflow: hidden;

  border: 1px solid rgba(154, 116, 41, 0.55);

  box-shadow:
    0 18px 45px rgba(0, 0, 0, 0.22);
}

.autor-foto img {
  display: block;

  width: 100%;
  height: auto;
}

.autor-kicker {
  display: block;
  margin-bottom: 12px;

  color: #a87c2b;

  font-size: 0.8rem;
  letter-spacing: 0.18em;
}

.autor-text h2 {
  margin: 0 0 8px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: normal;

  color: #b88a32;
}

.autor-text h3 {
  margin: 0 0 28px;

  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
  font-weight: normal;

  color: #17292a;
}

.autor-text p {
  margin: 0 0 17px;

  font-size: 1rem;
  line-height: 1.72;

  color: #263839;
}

.autor-text em {
  font-family: Georgia, "Times New Roman", serif;
}


/* Smartphone / Tablet */

@media (max-width: 820px) {

  .autor-section {
    padding: 65px 22px 75px;
  }

  .autor-inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .autor-foto {
    max-width: 430px;
    margin: 0 auto;
  }

  .autor-text {
    text-align: left;
  }
}

#autor {
  scroll-margin-top: 150px;
}
/* =========================================
   MOBILE – Smartphones
   ========================================= */

@media (max-width: 768px) {

    /* ---------- Header ---------- */

    .site-header {
        width: 100%;
        min-height: 94px;
        padding: 8px 10px;
        gap: 6px;
        box-sizing: border-box;
    }

    .brand {
        flex: 1 1 auto;
    min-width: 0;
    gap: 7px;
    align-items: center;
    overflow: hidden;
    padding-right: 50px;
}

    .brand > img:first-child {
        width: 78px;
        height: 78px;
        flex: 0 0 78px;
        object-fit: contain;
    }

    .brand .brand-wordmark {
        width: min(205px, 54vw);
        max-width: 100%;
        height: auto;
        top: 0;
    }

    .menu-toggle {
    display: block;
    position: absolute;
    right: 10px;
    top: 26px;
    width: 44px;
    height: 42px;
}

    .menu-toggle span:not(.visually-hidden) {
        width: 28px;
        height: 2px;
        background: var(--gold-light);
    }

    /* ---------- Hero ---------- */

    .hero {
        min-height: 100svh;
        background-position: center center;
    }

    .hero-content {
        width: auto;
        max-width: none;
        margin-left: 0;
        padding: 150px 18px 46px;
    }

  
.hero-welcome {
    margin-bottom: 42px;
    font-size: 1.18rem;
    line-height: 1.45;
    transform: translateY(-18px);
}

.hero-motto {
    margin: 0 0 48px;
    font-size: 1.42rem;
    line-height: 1.45;
    color: var(--gold-light) !important;
}

    .hero-actions {
        width: 100%;
        gap: 12px;
    }

    .hero-actions .button {
        width: 100%;
        max-width: none;
        min-height: 56px;
        text-align: center;
    }
}
/* ---------- Kontakt ---------- */

.kontakt-section {
    background: #f3ecd9;
    color: #151b19;
    padding: 90px clamp(30px, 8vw, 130px);
}

.kontakt-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.kontakt-kicker {
    display: block;
    margin-bottom: 18px;
    color: #9b7627;
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.kontakt-section h2 {
    margin: 0 0 24px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: normal;
    color: #15362d;
}

.kontakt-section p {
    margin: 0 auto 28px;
    max-width: 650px;
    font-size: 1.12rem;
    line-height: 1.7;
}

.kontakt-mail {
    display: inline-block;
    padding: 15px 30px;
    border: 1px solid #9b7627;
    color: #9b7627;
    text-decoration: none;
    font-size: 1.05rem;
    letter-spacing: 0.04em;
}

.kontakt-mail:hover {
    background: #15362d;
    color: #f3ecd9;
}
/* =========================================
   RECHTLICHE SEITEN – Impressum / Datenschutz
   ========================================= */

.recht-seite {
    margin: 0;
    min-height: 100vh;
    background: #071b1d;
    color: #f3ecdc;
    font-family: Georgia, "Times New Roman", serif;
}

.recht-main {
    min-height: 100vh;
    padding: 70px 24px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.recht-inner {
    width: min(820px, 100%);
    padding: 55px clamp(28px, 6vw, 70px) 65px;

    background: #f3ecdc;
    color: #17292a;

    border: 1px solid rgba(200, 170, 101, .55);

    box-shadow:
        0 22px 60px rgba(0, 0, 0, .38);
}

.recht-zurueck {
    display: inline-block;
    margin-bottom: 42px;

    color: #9b7627;
    text-decoration: none;
    font-size: .95rem;
    letter-spacing: .04em;
}

.recht-zurueck:hover {
    color: #15362d;
}

.recht-inner h1 {
    margin: 0 0 42px;

    color: #15362d;
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: normal;
}

.recht-inner h2 {
    margin: 34px 0 12px;

    color: #a87c2b;
    font-size: 1.35rem;
    font-weight: normal;
}

.recht-inner p {
    margin: 0 0 18px;

    font-size: 1.05rem;
    line-height: 1.7;
}

.recht-inner a {
    color: #9b7627;
}

@media (max-width: 640px) {

    .recht-main {
        padding: 24px 14px;
    }

    .recht-inner {
        padding: 38px 22px 48px;
    }

    .recht-inner h1 {
        font-size: 2.6rem;
    }
}
/* =========================================
   DIE WELT – MOBILE
   ========================================= */

@media (max-width: 768px) {

 .welt-ort {
        min-height: 100svh;
        background-size: cover;
        background-repeat: no-repeat;
    }

    .welt-ort-text {
        left: 18px;
        right: 18px;
        max-width: none;
    }

   .welt-ort-text h3 {
    white-space: normal;
    font-size: 2.25rem;
    line-height: 1.08;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
}

    #welt {
        padding-left: 24px;
        padding-right: 24px;
    }

    #welt h2 {
        font-size: 2.8rem;
        line-height: 1.05;
        white-space: normal;
    }

    #welt p {
        font-size: 1.35rem;
        line-height: 1.5;
    }

}
/* =========================================
   FJELLGARD BONUSSEITE
   ========================================= */

.bonus-seite {
    margin: 0;
    background:
        radial-gradient(circle at top, rgba(27, 73, 74, .32), transparent 42%),
        #071b1d;
    color: #f2ead8;
    font-family: Georgia, "Times New Roman", serif;
}

.bonus-main {
    min-height: 100vh;
}

.bonus-kopf {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 24px clamp(22px, 5vw, 70px);
    border-bottom: 1px solid rgba(215, 181, 101, .28);
}

.bonus-logo img {
    width: 170px;
    height: 170px;
    object-fit: contain;
}

.bonus-wortmarke {
    width: 500px;
    max-width: 55vw;
    height: auto;
}

.bonus-einstieg,
.bonus-bereich {
    width: min(920px, calc(100% - 40px));
    margin: 0 auto;
}

.bonus-einstieg {
    padding: 110px 0 95px;
    text-align: center;
}

.bonus-kicker {
    display: block;
    margin-bottom: 20px;
    color: #cda85a;
    font-size: .88rem;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.bonus-einstieg h1 {
    margin: 0 0 24px;
    color: #f4eddc;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: normal;
    line-height: 1.05;
}

.bonus-lead {
    margin: 0;
    color: #d8c798;
    font-size: 1.3rem;
    line-height: 1.6;
}

.bonus-linie {
    width: 90px;
    height: 1px;
    margin: 34px auto;
    background: #b99345;
}

.bonus-text {
    max-width: 670px;
    margin: 0 auto;
    color: #e6dfcf;
    font-size: 1.12rem;
    line-height: 1.8;
}

.bonus-bereich {
    margin-bottom: 100px;
    padding: 70px clamp(26px, 5vw, 70px);
    box-sizing: border-box;
    background: #f2ead8;
    color: #172b2a;
    border: 1px solid rgba(205, 168, 90, .55);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.bonus-bereich h2 {
    margin: 0 0 24px;
    color: #15362d;
    font-size: clamp(2.3rem, 5vw, 3.6rem);
    font-weight: normal;
}

.bonus-bereich p {
    max-width: 720px;
    margin: 0 0 38px;
    font-size: 1.08rem;
    line-height: 1.75;
}

.bonus-musik-platzhalter {
    padding: 28px;
    border-top: 1px solid rgba(155, 118, 39, .45);
    border-bottom: 1px solid rgba(155, 118, 39, .45);
    color: #8d6c2d;
    text-align: center;
    font-style: italic;
}

.bonus-footer {
    padding: 30px 20px 44px;
    text-align: center;
    color: #b8aa8a;
    border-top: 1px solid rgba(215, 181, 101, .22);
}

.bonus-footer p {
    margin: 0 0 10px;
}

.bonus-footer a {
    color: #cda85a;
    text-decoration: none;
}

.bonus-footer a:hover {
    text-decoration: underline;
}
.bonus-home {
    margin-left: auto;
    padding: 13px 24px;
    border: 1px solid #cda85a;
    color: #d8b768;
    text-decoration: none;
    font-size: .95rem;
    letter-spacing: .06em;
    white-space: nowrap;
    transition: background .2s ease, color .2s ease;
}

.bonus-home:hover {
    background: #cda85a;
    color: #071b1d;
}

@media (max-width: 640px) {

    .bonus-kopf {
        padding: 14px 16px;
        gap: 10px;
    }

 .bonus-logo img {
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.bonus-wortmarke {
    width: 245px;
    max-width: calc(100vw - 120px);
    height: auto;
}

    .bonus-einstieg {
        padding: 70px 0 65px;
    }

    .bonus-einstieg h1 {
        font-size: 2.8rem;
    }

    .bonus-lead {
        font-size: 1.12rem;
    }

    .bonus-bereich {
        width: calc(100% - 28px);
        margin-bottom: 60px;
        padding: 42px 22px;
    }
.bonus-home {
     display: none;
}
}