/* ========================================
   Konstantin fliegt — Stylesheet
   Farben: cream #f5f2ed, sand #e8e2d9, 
           fog #c8c0b4, charcoal #2a2520, ink #1a1510
   Fonts: Cormorant Garamond (display), Raleway (body)
   ======================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.6;
  color: #2a2520;
  background-color: #f5f2ed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

::selection {
  background-color: #1a1510;
  color: #f5f2ed;
}

/* ---------- Reduced Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Focus Styles ---------- */
*:focus-visible {
  outline: 2px solid #1a1510;
  outline-offset: 2px;
  border-radius: 2px;
}

/* ---------- Skip Link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  background: #1a1510;
  color: #f5f2ed;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  z-index: 200;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 1rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #1a1510;
  line-height: 1.2;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #4a4038;
  font-weight: 500;
  margin-bottom: 3rem;
  font-family: 'Raleway', sans-serif;
}

.section-heading {
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 2rem;
}

/* ---------- Content Container ---------- */
.content-wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 50;
  transition: all 0.5s ease;
  border-bottom: 1px solid transparent;
  background: rgba(245, 242, 237, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem 0;
}

.site-header.scrolled {
  background: rgba(245, 242, 237, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(200, 192, 180, 0.3);
  padding: 1rem 0;
}

.nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1510;
}

.nav-links {
  display: none;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a4038;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #1a1510;
}

/* ========================================
   HERO
   ======================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 6rem 0 3rem;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 242, 237, 0.3);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(245, 242, 237, 0.6), rgba(245, 242, 237, 0.15) 50%, rgba(245, 242, 237, 0.25));
}

.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-meta {
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #4a4038;
  margin-bottom: 1.5rem;
}

.hero-author {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a3028;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1510;
  line-height: 1.05;
  margin-bottom: 2.5rem;
}

.hero-quote {
  border-left: 1px solid #8a8078;
  padding-left: 1.5rem;
  margin-bottom: 3rem;
  max-width: 28rem;
}

.hero-quote p {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #4a4038;
  line-height: 1.6;
}

.hero-cta {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: #1a1510;
  color: #f5f2ed;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.hero-cta:hover {
  background: #2a2520;
  transform: translateY(-2px);
}

.hero-cover {
  display: none;
  justify-content: center;
  align-items: center;
}

.hero-cover-frame {
  position: relative;
  width: 320px;
  box-shadow: 20px 30px 60px rgba(0, 0, 0, 0.4);
  transition: all 0.5s ease;
}

.hero-cover-frame:hover {
  transform: translateY(-8px) rotate(1deg);
}

.hero-cover-image {
  width: 100%;
  height: auto;
}

/* ========================================
   BOOK SECTION
   ======================================== */
.book-section {
  padding: 7rem 0;
  background: #e8e2d9;
}

.book-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.book-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2a2520;
}

.book-text-highlight {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: #2a2520;
}

.book-details {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.book-detail-item {
  border-top: 1px solid #c8c0b4;
  padding-top: 1rem;
}

.book-detail-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a3028;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.book-detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.125rem;
  color: #1a1510;
}

.book-themes {
  background: #f5f2ed;
  padding: 2.5rem;
  border: 1px solid rgba(200, 192, 180, 0.3);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
}

.book-themes-heading {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.book-themes-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.book-themes-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(200, 192, 180, 0.4);
  color: #2a2520;
  line-height: 1.6;
}

.book-themes-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.book-themes-list li span {
  color: #4a4038;
  margin-top: 0.125rem;
  flex-shrink: 0;
}

/* ========================================
   FANS SECTION
   ======================================== */
.fans-section {
  padding: 7rem 0;
  background: #f5f2ed;
}

.fans-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.fans-intro {
  color: #2a2520;
  font-size: 1.125rem;
  margin-bottom: 4rem;
  max-width: 42rem;
}

.fans-tabs {
  display: flex;
  overflow-x: auto;
  border-bottom: 1px solid #c8c0b4;
  margin-bottom: 3rem;
  gap: 0;
}

.fans-tab {
  padding: 1rem 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: #3a3028;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Raleway', sans-serif;
}

.fans-tab:hover {
  color: #1a1510;
}

.fans-tab.active {
  color: #1a1510;
  font-weight: 600;
  border-bottom-color: #1a1510;
}

.fans-panel {
  min-height: 400px;
  display: none;
}

.fans-panel.active {
  display: block;
}

/* Orte */
.orte-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: #c8c0b4;
  border: 1px solid #c8c0b4;
}

.ort-card {
  background: #f5f2ed;
  padding: 1.5rem;
  transition: background 0.3s ease;
}

.ort-card:hover {
  background: #e8e2d9;
}

.ort-flag {
  font-size: 1.875rem;
  margin-bottom: 0.75rem;
  display: block;
}

.ort-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 300;
  color: #1a1510;
  margin-bottom: 0.25rem;
}

.ort-note {
  font-size: 0.875rem;
  color: #3a3028;
}

/* Menschen */
.menschen-list {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(200, 192, 180, 0.4);
  background: rgba(255, 255, 255, 0.5);
}

.mensch-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(200, 192, 180, 0.4);
  transition: background 0.3s ease;
}

.mensch-card:last-child {
  border-bottom: none;
}

.mensch-card:hover {
  background: #f5f2ed;
}

.mensch-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #1a1510;
  margin-bottom: 0.25rem;
}

.mensch-role {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3a3028;
  font-weight: 500;
}

.mensch-desc {
  color: #2a2520;
  line-height: 1.6;
}

/* Bücher */
.buecher-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.buch-card {
  background: white;
  padding: 2rem;
  border: 1px solid rgba(200, 192, 180, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.buch-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.buch-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: #1a1510;
  margin-bottom: 0.5rem;
}

.buch-card-author {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3a3028;
  font-weight: 500;
}

/* Musik */
.musik-content {
  max-width: 48rem;
}

.musik-text {
  color: #2a2520;
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
}

.spotify-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #1DB954;
  color: white;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 3rem;
  transition: all 0.3s ease;
}

.spotify-button:hover {
  background: #17a349;
  box-shadow: 0 8px 20px rgba(29, 185, 84, 0.3);
  transform: translateY(-2px);
}

.spotify-embed {
  background: #e8e2d9;
  padding: 0.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(200, 192, 180, 0.3);
}

.spotify-embed iframe {
  border-radius: 0.5rem;
  display: block;
}

/* ========================================
   QUOTE SECTION
   ======================================== */
.quote-section {
  padding: 8rem 0;
  background: #1a1510;
  color: #f5f2ed;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-background {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.quote-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.quote-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  max-width: 56rem;
  margin: 0 auto 2.5rem;
  color: #f5f2ed;
}

.quote-attribution {
  font-size: 0.875rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #c8c0b4;
}

/* ========================================
   AUTHOR SECTION
   ======================================== */
.author-section {
  padding: 7rem 0;
  background: #e8e2d9;
}

.author-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: start;
}

.author-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2a2520;
}

.author-book-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #1a1510;
}

.author-photo-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 3rem;
}

.author-photo-shadow {
  position: absolute;
  inset: 0;
  background: #c8c0b4;
  transform: translate(1rem, 1rem);
  transition: transform 0.3s ease;
}

.author-photo-wrapper:hover .author-photo-shadow {
  transform: translate(1.5rem, 1.5rem);
}

.author-photo {
  position: relative;
  z-index: 10;
  width: 240px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(20%);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.author-facts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 320px;
}

.author-fact {
  border-left: 2px solid #4a4038;
  padding-left: 1.25rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.author-fact-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3a3028;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.author-fact-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #1a1510;
}

/* ========================================
   BUY SECTION
   ======================================== */
.buy-section {
  padding: 8rem 0;
  background: #f5f2ed;
  text-align: center;
  border-bottom: 1px solid rgba(200, 192, 180, 0.3);
}

.buy-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.buy-intro {
  color: #2a2520;
  font-size: 1.125rem;
  margin-bottom: 4rem;
}

.btn-secondary {
  display: inline-block; padding: 1rem 2.5rem;
  background: transparent; color: #1a1510;
  font-size: 0.875rem; letter-spacing: 0.2em;
  text-transform: uppercase; border: 1px solid #1a1510;
  transition: all 0.3s ease; margin-top: 2rem;
}
.btn-secondary:hover {
  background: #1a1510; color: #f5f2ed;
}

.buy-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.buy-button {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  background: #1a1510;
  color: #f5f2ed;
  border: 1px solid #1a1510;
  min-width: 280px;
  transition: all 0.3s ease;
}

.buy-button:hover {
  background: #2a2520;
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.15);
}

.buy-button-format {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.buy-button:hover .buy-button-format {
  opacity: 1;
}

.buy-button-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.buy-button-price {
  font-size: 1rem;
  opacity: 0.8;
}

.buy-isbn {
  font-size: 0.875rem;
  color: #3a3028;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ========================================
   CONTACT SECTION
   ======================================== */
.contact-section {
  padding: 7rem 0;
  background: #e8e2d9;
}

.contact-content {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}

.contact-intro {
  color: #2a2520;
  font-size: 1.125rem;
  line-height: 1.9;
  margin-bottom: 3rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.contact-box {
  background: #f5f2ed;
  padding: 3rem;
  border: 1px solid rgba(200, 192, 180, 0.4);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  display: inline-block;
  text-align: left;
  width: 100%;
  max-width: 872px;
  margin: 0 auto;
}

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

.contact-sub-heading {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item-label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #1a1510;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.contact-item-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: #1a1510;
  transition: color 0.3s ease;
}

.contact-item-link:hover {
  color: #4a4038;
}

.contact-press-text {
  color: #2a2520;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.contact-press-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #1a1510;
  font-weight: 500;
  border-bottom: 1px solid #1a1510;
  padding-bottom: 0.25rem;
  transition: all 0.3s ease;
}

.contact-press-link:hover {
  color: #4a4038;
  border-bottom-color: #4a4038;
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: #1a1510;
  color: #d0c8bc;
  padding: 4rem 0;
  border-top: 4px solid #e8e2d9;
}

.footer-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #e8e2d9;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #e8e2d9;
}

.footer-legal {
  width: 100%;
  max-width: 1600px;
  margin: 3rem auto 0;
  padding: 2rem 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: #b0a89c;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.footer-legal span {
  margin: 0 0.75rem;
}

.footer-legal a {
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #e8e2d9;
}

/* ========================================
   FADE-IN ANIMATION
   ======================================== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========================================
   LEGAL PAGES (Impressum / Datenschutz)
   ======================================== */
.legal-nav {
  background: #f5f2ed;
  border-bottom: 1px solid rgba(200, 192, 180, 0.3);
  padding: 1.25rem 0;
}

.legal-nav-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.legal-back-link {
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #4a4038;
  transition: color 0.3s ease;
}

.legal-back-link:hover {
  color: #1a1510;
}

.legal-main {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.legal-content {
  max-width: 48rem;
}

.legal-content h1 {
  font-size: 2.25rem;
  letter-spacing: 0.08em;
  margin-bottom: 4rem;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content h3 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-body {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2a2520;
}

.legal-body section {
  display: flex;
  flex-direction: column;
}

.legal-body p + p {
  margin-top: 1rem;
}

.legal-body address {
  font-style: normal;
}

.legal-body a {
  color: #1a1510;
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.3s ease;
}

.legal-body a:hover {
  color: #4a4038;
}

.legal-body ul {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1rem;
}

.legal-footer {
  background: #1a1510;
  color: #d0c8bc;
  padding: 2rem 0;
  border-top: 4px solid #e8e2d9;
}

.legal-footer-inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #b0a89c;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

.legal-footer-inner span {
  margin: 0 0.75rem;
}

.legal-footer-inner a {
  color: #b0a89c;
  transition: color 0.3s ease;
}

.legal-footer-inner a:hover {
  color: #e8e2d9;
}

.legal-footer-inner .current-page {
  color: #d0c8bc;
}

/* ========================================
   RESPONSIVE — Tablet (768px+)
   ======================================== */
@media (min-width: 768px) {
  .nav-inner,
  .hero-content,
  .book-content,
  .fans-content,
  .quote-content,
  .author-content,
  .buy-content,
  .contact-content,
  .footer-main,
  .footer-legal,
  .legal-nav-inner,
  .legal-main {
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .nav-links {
    display: flex;
  }

  .hero-title {
    font-size: 4.5rem;
  }

  .hero-author {
    font-size: 1.5rem;
  }

  .hero-meta {
    font-size: 0.875rem;
  }

  .section-heading {
    font-size: 3rem;
  }

  .book-text,
  .author-text {
    font-size: 1.125rem;
  }

  .book-themes {
    padding: 4rem;
  }

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

  .mensch-card {
    grid-template-columns: 250px 1fr;
    gap: 2rem;
    padding: 1.5rem 2rem;
  }

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

  .buy-buttons {
    flex-direction: row;
  }

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

  .contact-press {
    border-left: 1px solid rgba(200, 192, 180, 0.4);
    padding-left: 3rem;
  }

  .contact-box {
    padding: 4rem;
  }

  .quote-text {
    font-size: 2.25rem;
  }

  .author-photo {
    width: 320px;
  }

  .footer-main {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-links {
    gap: 2.5rem;
  }

  .legal-content h1 {
    font-size: 3rem;
  }

  .legal-content h2 {
    font-size: 1.5rem;
  }
}

/* ========================================
   RESPONSIVE — Desktop (1024px+)
   ======================================== */
@media (min-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-text {
    padding-right: 4rem;
  }

  .hero-title {
    font-size: 5.5rem;
  }

  .hero-cover {
    display: flex;
  }

  .book-content {
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
  }

  .orte-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .buecher-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .author-content {
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
  }

  .author-sidebar {
    margin-top: 6rem;
  }

  .quote-text {
    font-size: 3rem;
  }
}
