/* =============================================================
   1. Tokens (custom properties)
   ============================================================= */
:root {
  /* Paleta mediterránea nostálgica */
  --bg:          #f5ede0;
  --bg-2:        #ede2d4;
  --bg-dark:     #2c2318;
  --bg-dark-2:   #3a2e20;
  --paper:       #fdfaf5;
  --ink:         #1e1612;
  --ink-soft:    #3a2e20;
  --ink-mute:    #7a6a58;
  --cream:       #f5ede0;
  --cream-soft:  #e8d9c6;

  --accent:      #8b3a2a;   /* terracota profunda */
  --accent-2:    #5a6e3a;   /* oliva mediterráneo */
  --accent-3:    #c9a265;   /* ocre dorado */
  --gold:        #c9a265;
  --sand:        #d4b896;
  --sand-light:  #e8d9c6;

  --line:        rgba(30,22,18,0.1);
  --line-light:  rgba(255,255,255,0.15);

  /* Tipografía */
  --serif:       'Playfair Display', 'Georgia', serif;
  --body:        'Lora', 'Georgia', serif;
  --sans:        'Inter', system-ui, -apple-system, sans-serif;

  /* Espacios */
  --gutter:      clamp(1.25rem, 5vw, 2.5rem);
  --section-gap: clamp(4rem, 10vw, 8rem);

  /* Curvas */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft:   cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Z-index */
  --z-splash: 1000;
  --z-nav:    100;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html {
  -webkit-text-size-adjust: 100%;
  tab-size: 2;
  scroll-behavior: smooth;
}
body {
  font-family: var(--body);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3 { font-family: var(--serif); text-wrap: balance; line-height: 1.1; }
::selection { background: var(--accent); color: var(--cream); }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* =============================================================
   3. Utilities
   ============================================================= */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--accent); color: var(--cream);
  z-index: 9999; border-radius: 8px; font-family: var(--sans); font-size: .875rem;
  font-weight: 500; transition: top .3s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.container {
  width: min(100%, 1160px);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* =============================================================
   4. Typography
   ============================================================= */
.section-eyebrow {
  font-family: var(--sans);
  font-size: clamp(.75rem, 1.2vw, .875rem);
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}

/* =============================================================
   5. Componentes – Botones
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--sans);
  font-size: clamp(.875rem, 1.3vw, 1rem);
  font-weight: 500;
  letter-spacing: .04em;
  padding: .85rem 2rem;
  border-radius: 3px;
  transition: all .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border: 2px solid var(--accent);
}
.btn-primary:hover {
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(245,237,224,0.5);
}
.btn-ghost:hover {
  background: rgba(245,237,224,0.12);
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--cream);
  transform: translateY(-2px);
}

/* =============================================================
   6. SPLASH
   ============================================================= */
.splash {
  position: fixed; inset: 0;
  background: var(--bg-dark);
  z-index: var(--z-splash);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  animation: splashFade 4.5s var(--ease-out) forwards;
}
.splash-inner {
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.splash-monogram {
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  animation: splashMonogram 2s var(--ease-out) forwards;
}
.splash-name {
  font-family: var(--sans);
  font-size: clamp(.75rem, 1.5vw, 1rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sand);
  opacity: 0;
  animation: splashName 1s .8s var(--ease-out) forwards;
}
@keyframes splashFade {
  0%   { opacity: 1; }
  75%  { opacity: 1; }
  100% { opacity: 0; pointer-events: none; }
}
@keyframes splashMonogram {
  from { opacity: 0; transform: scale(.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes splashName {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =============================================================
   7. NAV
   ============================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: var(--z-nav);
  background: rgba(253,250,245,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 24px rgba(30,22,18,.06);
  transition: box-shadow .4s var(--ease-soft);
  padding-block: 1rem;
}
.nav.is-solid {
  box-shadow: 0 2px 32px rgba(30,22,18,.1);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
}
.nav-logo-initial {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-name {
  font-family: var(--serif);
  font-size: clamp(.8rem, 1.2vw, 1rem);
  font-weight: 600;
  color: var(--ink);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: clamp(.6rem, 1.5vw, 1.5rem);
}
.nav-link {
  font-family: var(--sans);
  font-size: clamp(.78rem, 1.1vw, .88rem);
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  transition: color .25s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-link:hover { color: var(--accent); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--sans);
  font-size: .85rem;
  font-weight: 500;
  padding: .55rem 1.4rem;
  background: var(--accent);
  color: var(--cream);
  border-radius: 2px;
  transition: background .25s, transform .25s var(--ease-out);
}
.nav-cta:hover { background: var(--ink); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .3s var(--ease-out);
}

/* =============================================================
   8. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}
.hero-bg-wrap {
  position: absolute; inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.05);
  transition: transform 8s var(--ease-soft);
}
.hero.is-ready .hero-bg-img { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,22,18,.72) 0%,
    rgba(44,35,24,.55) 40%,
    rgba(139,58,42,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  padding-block: clamp(4rem, 10vh, 8rem);
  max-width: 720px;
}
.hero-eyebrow {
  font-family: var(--sans);
  font-size: clamp(.7rem, 1.2vw, .85rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: rgba(245,237,224,.82);
  line-height: 1.7;
  margin-bottom: 2.5rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  animation: scrollPulse 2.5s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: 1; transform: scaleY(1); }
}

/* =============================================================
   9. BAND (ticker)
   ============================================================= */
.band {
  background: var(--accent);
  padding-block: .85rem;
  overflow: hidden;
}
.band-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: bandScroll 32s linear infinite;
  white-space: nowrap;
}
.band-track span {
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--cream);
}
.band-dot {
  opacity: .5;
}
@keyframes bandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================================
   10. ÜBER DEN AUTOR
   ============================================================= */
.autor {
  padding-block: var(--section-gap);
  background: var(--paper);
}
.autor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.autor-bild-wrap {
  position: relative;
}
.autor-bild-wrap img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  filter: sepia(15%) saturate(0.9);
  transition: filter .4s;
}
.autor-bild-wrap:hover img { filter: sepia(0) saturate(1); }
.autor-bild-deco {
  position: absolute;
  bottom: -1.2rem; right: -1.2rem;
  width: 70%; height: 70%;
  border: 2px solid var(--accent);
  border-radius: 4px;
  z-index: -1;
  opacity: .4;
}
.autor-text-col {
  padding-top: clamp(1rem, 3vw, 3rem);
}
.autor-text p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.autor-firma {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 2rem 0;
}
.firma-svg {
  width: 220px;
  height: auto;
}
.firma-svg path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.firma-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink-mute);
}

/* =============================================================
   11. DAS BUCH
   ============================================================= */
.buch {
  padding-block: var(--section-gap);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.buch-bg-deco {
  position: absolute;
  top: -20%; right: -15%;
  width: 55%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,162,101,.12) 0%, transparent 65%);
  pointer-events: none;
}
.buch-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.buch-cover-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.buch-cover-wrap img {
  width: min(320px, 90%);
  border-radius: 6px;
  box-shadow:
    0 4px 12px rgba(30,22,18,.18),
    0 20px 60px rgba(30,22,18,.22),
    0 40px 100px rgba(30,22,18,.12);
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out);
}
.buch-cover-wrap:hover img {
  transform: translateY(-8px) rotate(-1.5deg) scale(1.02);
  box-shadow:
    0 8px 24px rgba(30,22,18,.22),
    0 30px 80px rgba(30,22,18,.28),
    0 50px 120px rgba(30,22,18,.14);
}
.buch-cover-shadow {
  position: absolute;
  bottom: -30px; left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(30,22,18,.3) 0%, transparent 70%);
  filter: blur(8px);
}
.buch-format-note {
  margin-top: 1.25rem;
  text-align: center;
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--ink-mute);
  text-transform: uppercase;
}
.buch-subtitel {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--ink-mute);
  margin-bottom: 1.75rem;
}
.buch-synopsis p {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
}
.buch-vorteile {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin: 2rem 0;
  padding: 1.75rem;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  border-radius: 0 4px 4px 0;
}
.vorteil-item {
  display: flex;
  gap: .75rem;
  align-items: flex-start;
  font-size: clamp(.875rem, 1.4vw, 1rem);
  color: var(--ink-soft);
  line-height: 1.6;
}
.vorteil-icon {
  color: var(--accent);
  font-size: .7rem;
  margin-top: .3rem;
  flex-shrink: 0;
}
.buch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* =============================================================
   12. LESEPROBE
   ============================================================= */
.leseprobe {
  padding-block: var(--section-gap);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.leseprobe::before {
  content: '\201C';
  position: absolute;
  top: -1rem;
  left: clamp(1rem, 5vw, 3rem);
  font-family: var(--serif);
  font-size: clamp(10rem, 20vw, 18rem);
  color: rgba(201,162,101,.06);
  line-height: 1;
  pointer-events: none;
}
.leseprobe-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.leseprobe-inner .section-title {
  color: var(--cream);
}
.leseprobe-inner .section-eyebrow {
  color: var(--gold);
}
.leseprobe-text {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  padding: 2.5rem;
  border: 1px solid rgba(201,162,101,.25);
  border-radius: 4px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(4px);
}
.leseprobe-text p + p {
  margin-top: 1.1rem;
}
.leseprobe-p2 {
  margin-top: 1.1rem;
}
.leseprobe-text p {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  line-height: 1.9;
  color: var(--cream-soft);
}
.leseprobe-quelle {
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--gold);
}
.leseprobe-quelle cite { font-style: normal; }

/* =============================================================
   13. ATMOSPHÄRE
   ============================================================= */
.atmosphaere {
  padding-block: var(--section-gap);
  background: var(--paper);
}
.atm-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.atm-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), border-color .35s;
}
.atm-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(30,22,18,.1);
  border-color: var(--sand);
}
.atm-card-icon {
  margin-bottom: 1rem;
  display: block;
  line-height: 1;
}
.atm-card-icon i {
  font-size: 1.75rem;
  color: var(--accent);
}
.atm-card h3 {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .75rem;
}
.atm-card p {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  line-height: 1.75;
  color: var(--ink-mute);
}

/* =============================================================
   14. GALERIE
   ============================================================= */
.galerie {
  padding-block: var(--section-gap);
  background: var(--bg-2);
}
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 280px;
  gap: 1rem;
  margin-top: 2.5rem;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.galerie-item--wide {
  grid-column: span 2;
}
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out), filter .4s;
  filter: sepia(20%) saturate(0.85);
}
.galerie-item:hover img {
  transform: scale(1.08);
  filter: sepia(0) saturate(1);
}
.galerie-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem .75rem;
  background: linear-gradient(to top, rgba(30,22,18,.7), transparent);
  color: var(--cream);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translateY(100%);
  transition: transform .35s var(--ease-out);
}
.galerie-item:hover .galerie-caption { transform: translateY(0); }

/* =============================================================
   15. TESTIMONIOS
   ============================================================= */
.testimonios {
  padding-block: var(--section-gap);
  background: var(--paper);
}
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.test-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2.25rem 2rem;
  position: relative;
}
.test-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem; left: 1.5rem;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(139,58,42,.12);
  line-height: 1;
}
.test-stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: .1em;
  margin-bottom: 1rem;
}
.test-card p {
  font-style: italic;
  font-size: clamp(.875rem, 1.3vw, 1rem);
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
}
.test-card footer {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .04em;
  color: var(--ink-mute);
  font-style: normal;
}

/* =============================================================
   16. NEWSLETTER
   ============================================================= */
.newsletter {
  padding-block: var(--section-gap);
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
.newsletter-bg-deco {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 20% 50%, rgba(139,58,42,.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 80% 30%, rgba(90,110,58,.12) 0%, transparent 55%);
  pointer-events: none;
}
.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.newsletter-inner .section-title {
  color: var(--cream);
}
.nl-deco-line {
  width: 60px; height: 2px;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}
.nl-sub {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  line-height: 1.8;
  color: var(--cream-soft);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-inline: auto;
}
.nl-form {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  max-width: 560px;
  margin: 0 auto 1.25rem;
}
.nl-field-wrap {
  flex: 1 1 220px;
}
.nl-form input {
  width: 100%;
  padding: .9rem 1.25rem;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink);
  background: rgba(245,237,224,.95);
  border: 1px solid transparent;
  border-radius: 3px;
  transition: border-color .25s, box-shadow .25s;
}
.nl-form input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,101,.2);
}
.nl-form input::placeholder { color: var(--ink-mute); }
.nl-disclaimer {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .04em;
  color: rgba(245,237,224,.4);
}

/* =============================================================
   17. WEITERE BÜCHER
   ============================================================= */
.weiteres {
  padding-block: var(--section-gap);
  background: var(--bg);
}
.weiteres-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: var(--ink-soft);
  line-height: 1.8;
}
.weiteres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}
.weiteres-card {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: transform .35s var(--ease-out), box-shadow .35s;
}
.weiteres-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(30,22,18,.09);
}
.weiteres-card-icon {
  display: block;
  margin-bottom: .75rem;
}
.roman-num {
  width: 42px;
  height: 42px;
  border: 1.5px solid var(--accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: .8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: .06em;
}
.weiteres-card h3 {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .6rem;
}
.weiteres-card p {
  font-size: clamp(.875rem, 1.3vw, 1rem);
  line-height: 1.75;
  color: var(--ink-mute);
}
.weiteres-badge {
  display: inline-block;
  margin-top: 1rem;
  padding: .3rem .85rem;
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--bg-2);
  color: var(--accent);
  border: 1px solid rgba(139,58,42,.2);
  border-radius: 20px;
}
.weiteres-cta-text {
  text-align: center;
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.weiteres .btn-outline {
  display: block;
  width: fit-content;
  margin-inline: auto;
}


/* =============================================================
   11b. SEGUNDO LIBRO — variante oscura invertida
   ============================================================= */
.buch-2 {
  background: var(--bg-dark);
}
.buch-2 .section-title {
  color: var(--cream);
}
.buch-2 .section-eyebrow {
  color: var(--gold);
}
.buch-2 .buch-subtitel {
  color: var(--cream-soft);
  opacity: .75;
}
.buch-2 .buch-synopsis p {
  color: var(--cream-soft);
  opacity: .8;
}
.buch-2 .buch-vorteile {
  background: rgba(255,255,255,.04);
  border-left-color: var(--gold);
}
.buch-2 .vorteil-item {
  color: var(--cream-soft);
}
.buch-2 .vorteil-icon {
  color: var(--gold);
}
.buch-bg-deco--2 {
  background: radial-gradient(ellipse 55% 75% at 15% 60%, rgba(201,162,101,.1) 0%, transparent 60%);
}
.buch-badge-row {
  margin: 1.25rem 0 .5rem;
}
.buch-badge-coming {
  display: inline-block;
  padding: .45rem 1.25rem;
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  background: rgba(201,162,101,.12);
  color: var(--gold);
  border: 1px solid rgba(201,162,101,.35);
  border-radius: 3px;
}
.buch-2 .btn-outline {
  color: var(--cream-soft);
  border-color: rgba(245,237,224,.35);
}
.buch-2 .btn-outline:hover {
  background: rgba(245,237,224,.1);
  color: var(--cream);
  border-color: var(--cream);
}
/* =============================================================
   18. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-dark);
  padding-block: 3.5rem;
  border-top: 1px solid rgba(245,237,224,.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
}
.footer-brand { grid-column: 1; }
.footer-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .35rem;
}
.footer-tagline {
  font-family: var(--sans);
  font-size: .78rem;
  letter-spacing: .06em;
  color: rgba(245,237,224,.4);
}
.footer-nav {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem 1.75rem;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--sans);
  font-size: .82rem;
  color: rgba(245,237,224,.55);
  letter-spacing: .04em;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }
.footer-copy {
  grid-column: 3;
  text-align: right;
  font-family: var(--sans);
  font-size: .78rem;
  color: rgba(245,237,224,.3);
}

/* =============================================================
   19. REVEAL ANIMATIONS
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
/* Safety timeout: force visible after 6s */
.reveal[data-split] {
  opacity: 1 !important;
  transform: none !important;
}
html.is-ready .reveal {
  /* Progressive reveal via IntersectionObserver */
}

/* =============================================================
   20. Responsive
   ============================================================= */
@media (max-width: 960px) {
  .nav-menu {
    display: none;
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 80vw);
    height: 100svh;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 5rem 2rem 2rem;
    box-shadow: -8px 0 40px rgba(30,22,18,.15);
    overflow-y: auto;
  }
  .nav-menu.is-open { display: flex; }
  .nav-link {
    width: 100%;
    padding: .85rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.1rem;
  }
  .nav-cta {
    margin-top: 1.5rem;
    align-self: flex-start;
  }
  .nav-toggle { display: flex; z-index: calc(var(--z-nav) + 1); }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .autor-grid { grid-template-columns: 1fr; }
  .autor-bild-col { max-width: 380px; margin: 0 auto; }

  .buch-grid { grid-template-columns: 1fr; }
  .buch-cover-col { display: flex; flex-direction: column; align-items: center; }

  .atm-grid { grid-template-columns: repeat(2, 1fr); }
  .test-grid { grid-template-columns: repeat(2, 1fr); }
  .weiteres-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand, .footer-nav, .footer-copy { grid-column: 1; }
  .footer-nav { justify-content: center; }
  .footer-copy { text-align: center; }
}

@media (max-width: 540px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .atm-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .weiteres-grid { grid-template-columns: 1fr; }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 200px;
  }
  .galerie-item--wide { grid-column: span 2; }

  .nl-form { flex-direction: column; }
  .nl-field-wrap { flex: unset; width: 100%; }
  .nl-form .btn { width: 100%; justify-content: center; }

  .buch-actions { flex-direction: column; }
  .buch-actions .btn { width: 100%; justify-content: center; }
}

/* =============================================================
   21. Reduced motion (solo efectos intrusivos)
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .splash { animation: none; opacity: 0; pointer-events: none; }
  .scroll-line { animation: none; }
  .band-track { animation: none; }
  /* NO se desactivan: hovers, tilts, reveals */
}
