@font-face {
  font-family: 'Gothic Factory';
  src: url('../fonts/GothicFactory.woff2') format('woff2'),
       url('../fonts/GothicFactory.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #0e0e0c;
  --fg: #f0ede8;
  --muted: #7a7a75;
  --accent: #c8a96e;
  --line: #272724;
  --max-width: 1100px;
  --transition: 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', 'Gill Sans MT', Calibri, Verdana, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2 { font-weight: 400; letter-spacing: 0.04em; }

.display-name, .logo {
  font-family: 'Gothic Factory', 'UnifrakturCook', serif;
}

/* =====================
   SCROLL REVEAL
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =====================
   HEADER / NAV
   ===================== */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 40px;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--bg);
  backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}

.logo {
  font-size: 20px;
  letter-spacing: 0.06em;
  transition: color var(--transition);
}
.logo:hover { color: var(--accent); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.main-nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
  padding-bottom: 3px;
  transition: color var(--transition);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--fg);
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.ig-link { display: flex; align-items: center; }
.ig-link svg { transition: stroke var(--transition), transform var(--transition); }
.ig-link:hover svg { stroke: var(--accent); transform: scale(1.12); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--fg);
  font-size: 22px;
  cursor: pointer;
}

/* =====================
   HERO
   ===================== */
.hero {
  text-align: center;
  padding: 160px 24px 120px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(200,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.display-name {
  font-size: clamp(48px, 9vw, 110px);
  letter-spacing: 0.05em;
  line-height: 1;
}

.hero-sub {
  margin-top: 22px;
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--muted);
  text-transform: uppercase;
}

.hero-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 30px auto 0;
  opacity: 0.6;
}

/* =====================
   ABOUT
   ===================== */
.about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px 24px;
  border-bottom: 1px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.about-image {
  overflow: hidden;
}

.about-image img {
  width: 100%;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.about-image:hover img {
  filter: grayscale(40%);
  transform: scale(1.025);
}

.about-text h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 28px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 17px;
  line-height: 1.8;
  max-width: 54ch;
  color: #c8c5bf;
}

/* =====================
   GALERIE
   ===================== */
.gallery-section {
  padding: 110px 24px;
  border-bottom: 1px solid var(--line);
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 50px;
  text-align: center;
  font-weight: 400;
}

.full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.img-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.img-item::after {
  content: '↗';
  position: absolute;
  bottom: 16px;
  right: 18px;
  font-size: 18px;
  color: var(--fg);
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.img-item:hover::after {
  opacity: 0.9;
  transform: translate(2px, -2px);
}

.img-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  filter: grayscale(100%);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.img-item:hover img {
  filter: grayscale(20%);
  transform: scale(1.04);
}

/* =====================
   LIGHTBOX
   ===================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,10,9,0.97);
  align-items: center;
  justify-content: center;
  z-index: 999;
  padding: 40px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.open {
  display: flex;
  opacity: 1;
}

.lightbox img {
  max-width: 100%;
  max-height: 88vh;
  object-fit: contain;
  box-shadow: 0 0 80px rgba(0,0,0,0.8);
}

.lightbox-close {
  position: absolute;
  top: 28px;
  right: 40px;
  font-size: 28px;
  cursor: pointer;
  color: var(--muted);
  line-height: 1;
  transition: color var(--transition), transform var(--transition);
}

.lightbox-close:hover {
  color: var(--fg);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--muted);
  cursor: pointer;
  padding: 12px 20px;
  transition: color var(--transition);
  user-select: none;
}

.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--fg); }

/* =====================
   KONTAKT
   ===================== */
.kontakt {
  max-width: 540px;
  margin: 0 auto;
  padding: 110px 24px 150px;
}

.kontakt h2 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}

.kontakt-intro {
  text-align: center;
  color: var(--muted);
  margin-bottom: 48px;
  font-size: 15px;
  line-height: 1.75;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  color: var(--fg);
  font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', 'Gill Sans MT', Calibri, Verdana, sans-serif;
  font-size: 15px;
  padding: 12px 2px;
  transition: border-bottom-color var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-bottom-color: var(--accent);
}

.contact-form button {
  margin-top: 8px;
  align-self: flex-start;
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line);
  padding: 14px 36px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Century Gothic', 'CenturyGothic', 'AppleGothic', 'Gill Sans MT', Calibri, Verdana, sans-serif;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-form button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}

/* =====================
   PRESSE
   ===================== */
.presse-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 90px 24px 130px;
}

.presse-page h1 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 60px;
}

.presse-list { list-style: none; }

.presse-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  transition: background var(--transition);
}

.presse-list li:hover .presse-title {
  color: var(--fg);
}

.presse-date {
  font-size: 12px;
  color: var(--accent);
  width: 44px;
  letter-spacing: 0.05em;
}

.presse-title {
  flex: 1;
  font-size: 16px;
  color: #c8c5bf;
  transition: color var(--transition);
}

.text-link {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.text-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

.presse-note {
  margin-top: 44px;
  font-size: 13px;
  color: var(--muted);
}

/* =====================
   LEGAL SEITEN
   ===================== */
.legal-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 90px 24px 150px;
}

.legal-page h1 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 70px;
}

.legal-block {
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 44px;
}

.legal-block:last-child { border-bottom: none; }

.legal-block h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--fg);
  margin-bottom: 22px;
}

.legal-block h3 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin: 26px 0 10px;
  font-weight: 400;
}

.legal-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 14px;
}

.legal-block a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition);
}

.legal-block a:hover { border-color: var(--accent); }

/* =====================
   FOOTER
   ===================== */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 28px 40px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.footer-links {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.footer-links a {
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-links a.active { color: var(--accent); }

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 800px) {
  .site-header { padding: 20px 24px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .full-grid { grid-template-columns: repeat(2, 1fr); }

  .nav-toggle { display: block; }

  .main-nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    position: absolute;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 28px 24px;
    border-bottom: 1px solid var(--line);
    z-index: 100;
  }

  .main-nav.open { display: flex; }
}

@media (max-width: 480px) {
  .full-grid { grid-template-columns: 1fr; }
  .site-footer { flex-direction: column; align-items: flex-start; gap: 16px; }
  .hero { padding: 100px 24px 80px; }
}

/* =====================
   ROTER NAVIGATOR-PFEIL
   ===================== */
.nav-arrow {
  position: fixed;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 300;
  background: none;
  border: none;
  padding: 14px 6px;
  cursor: pointer;
  color: #d32020;
  line-height: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.nav-arrow svg {
  display: block;
  animation: arrowNudge 2.2s ease-in-out infinite;
}

.nav-arrow:hover svg { animation-play-state: paused; }
.nav-arrow:hover { transform: translateY(-50%) translateX(6px); }

/* Am Seitenende ausblenden */
.nav-arrow.hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes arrowNudge {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(7px); }
}

/* =====================
   BUCH
   ===================== */
.buch-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 110px 24px;
  border-bottom: 1px solid var(--line);
}

.buch-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.buch-cover {
  overflow: hidden;
}

.buch-cover img {
  width: 100%;
  display: block;
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  transition: transform 0.6s ease;
}

.buch-cover:hover img { transform: scale(1.03); }

.buch-text h3 {
  font-family: 'Gothic Factory', 'UnifrakturCook', serif;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 14px;
}

.buch-meta {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 24px;
}

.buch-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #c8c5bf;
  max-width: 48ch;
}

/* Shop-Link direkt unter dem Buch */
.buch-links {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.shop-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #d32020;
  color: #d32020;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 40px;
  transition: background var(--transition), color var(--transition);
}

.shop-link::after {
  content: '→';
  font-size: 15px;
  transition: transform var(--transition);
}

.shop-link:hover {
  background: #d32020;
  color: #fff;
}

.shop-link:hover::after { transform: translateX(5px); }

/* =====================
   KONTAKT — nur Mail-Link
   ===================== */
.kontakt {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 100px 24px 140px;
  text-align: center;
}

.mail-link {
  display: inline-block;
  font-size: clamp(20px, 3.6vw, 38px);
  letter-spacing: 0.02em;
  color: var(--fg);
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  transition: color var(--transition), border-color var(--transition);
}

.mail-link:hover {
  color: #d32020;
  border-bottom-color: #d32020;
}

/* =====================
   RESPONSIVE — Ergänzungen
   ===================== */
@media (max-width: 800px) {
  .buch-grid { grid-template-columns: 1fr; gap: 36px; }
  .buch-cover { max-width: 300px; margin: 0 auto; }
  .buch-text { text-align: center; }
  .buch-text p { margin: 0 auto; }

  .nav-arrow { right: 12px; }
  .nav-arrow svg { width: 36px; height: 18px; }
}

.book-author {
    margin-top: 20px;
    font-style: italic;
    color: #bbb;
}
