/* ============================================================
   Sven Fotography — Stylesheet
   ============================================================ */

/* ------------------------------------------------------------
   1. Lokale Schriften (siehe fonts/README.md)
   ------------------------------------------------------------ */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-v21-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}

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

:root {
  --bg-cream: #f4efe7;
  --bg-cream-dark: #ebe4d7;
  --bg-dark: #0e0d0b;
  --bg-darker: #050504;
  --text-dark: #1a1815;
  --text-light: #f4efe7;
  --text-muted: #8a8378;
  --accent: #b89968;
  --accent-light: #d4b88a;
  --border: rgba(26, 24, 21, 0.1);
  --border-light: rgba(244, 239, 231, 0.15);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* Accessibility helpers */
.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;
}

.skip-link {
  position: absolute; top: -40px; left: 0;
  background: var(--bg-dark); color: var(--text-light);
  padding: 8px 16px; z-index: 1000;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ------------------------------------------------------------
   3. Navigation
   ------------------------------------------------------------ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s ease;
  mix-blend-mode: difference;
}

nav.scrolled {
  padding: 16px 40px;
  background: rgba(244, 239, 231, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  mix-blend-mode: normal;
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--text-light);
  transition: color 0.3s;
}
nav.scrolled .nav-logo { color: var(--text-dark); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-size: 13px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  position: relative;
  transition: color 0.3s;
}
nav.scrolled .nav-links a { color: var(--text-dark); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 0;
  width: 0; height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after { width: 100%; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 32px;
  height: 32px;
}
.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-light);
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
nav.scrolled .menu-toggle span { background: var(--text-dark); }
nav.menu-open .menu-toggle span { background: var(--text-light); }
nav.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
nav.menu-open .menu-toggle span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   4. Hero
   ------------------------------------------------------------ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
}

.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-placeholder {
  position: absolute; inset: 0; z-index: 2;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184, 153, 104, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(120, 90, 60, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, rgba(26,22,18,0.55) 0%, rgba(42,32,26,0.45) 40%, rgba(10,8,7,0.65) 100%);
}
.hero-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255,255,255,0.03) 0%, transparent 2%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.02) 0%, transparent 1.5%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.025) 0%, transparent 2%),
    radial-gradient(circle at 40% 60%, rgba(255,255,255,0.02) 0%, transparent 1%);
  animation: drift 20s ease-in-out infinite;
}
@keyframes drift {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.05) translate(-1%, -1%); }
}

.hero-overlay-old{
  position: absolute;
  inset: 0;
  z-index: 3;

  background:
    radial-gradient(
      circle at center,
      rgba(24,18,14,0.6) 0%,
      rgba(24,18,14,0.5) 38%,
      rgba(24,18,14,0.5) 65%,
      rgba(24,18,14,0.5) 100%
    );
}

.hero-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.7) 100%);
  z-index: 3;
}

.hero-content {
  position: relative; z-index: 4;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-eyebrow {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.3s forwards;
}

.hero-title {
  font-size: clamp(48px, 8vw, 110px);
  font-weight: 300;
  letter-spacing: -0.02em;
  margin-bottom: 30px;
  opacity: 0;
  animation: fadeUp 1.2s ease 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--accent-light);
}

.hero-subtitle {
  font-size: 16px;
  letter-spacing: 0.05em;
  max-width: 540px;
  margin: 0 auto 50px;
  color: rgba(244, 239, 231, 0.85);
  opacity: 0;
  animation: fadeUp 1.2s ease 0.9s forwards;
}

.hero-cta {
  display: inline-block;
  padding: 16px 40px;
  border: 1px solid rgba(244, 239, 231, 0.4);
  color: var(--text-light);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.2s forwards;
}
.hero-cta:hover, .hero-cta:focus-visible {
  background: var(--text-light);
  color: var(--text-dark);
  border-color: var(--text-light);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(244, 239, 231, 0.6);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeIn 2s ease 2s forwards;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 40px;
  background: rgba(244, 239, 231, 0.4);
  margin: 12px auto 0;
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ------------------------------------------------------------
   5. Sections (gemeinsame Stile)
   ------------------------------------------------------------ */
section { padding: 140px 0; position: relative; }

.section-eyebrow {
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: inline-block;
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  margin-bottom: 30px;
}
.section-title em { font-style: italic; }

/* About */
.about { background: var(--bg-cream); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 100px;
  align-items: center;
}
.about-image {
  position: relative;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #c9b48a 0%, #8a7458 50%, #4a3d2e 100%);
  overflow: hidden;
}
.about-image::after {
  content: 'Dein Portrait';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244, 239, 231, 0.5);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  letter-spacing: 0.1em;
}
.about-text p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: #3a3530;
}
.about-text p:first-of-type::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  float: left;
  line-height: 0.9;
  margin: 6px 12px 0 0;
  color: var(--accent);
}
.signature {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--accent);
  margin-top: 30px;
}

/* Portfolio */
.portfolio { background: var(--bg-cream-dark); }
.portfolio-header { text-align: center; margin-bottom: 80px; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.portfolio-item {
  position: relative;
  overflow: hidden;
  background: #2a201a;
  cursor: pointer;
  transition: transform 0.6s ease;
}
.portfolio-item::after {
  content: attr(data-label);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: rgba(244, 239, 231, 0.4);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--placeholder-1, #8a7458) 0%, var(--placeholder-2, #2a201a) 100%);
  transition: opacity 0.4s;
}
.portfolio-item:hover { transform: scale(0.99); }
.portfolio-item:hover::after { opacity: 0.7; }
.portfolio-item .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex; align-items: flex-end;
  padding: 30px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.portfolio-item:hover .overlay,
.portfolio-item:focus-within .overlay { opacity: 1; }
.portfolio-item .overlay span {
  color: var(--text-light);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
}

.item-1 { grid-column: span 7; aspect-ratio: 4/3; --placeholder-1: #b89968; --placeholder-2: #3a2a1f; }
.item-2 { grid-column: span 5; aspect-ratio: 3/4; --placeholder-1: #6a5240; --placeholder-2: #1a1410; }
.item-3 { grid-column: span 4; aspect-ratio: 1/1; --placeholder-1: #8a7458; --placeholder-2: #2a201a; }
.item-4 { grid-column: span 4; aspect-ratio: 1/1; --placeholder-1: #a08560; --placeholder-2: #2a1f15; }
.item-5 { grid-column: span 4; aspect-ratio: 1/1; --placeholder-1: #5a4838; --placeholder-2: #1a1410; }
.item-6 { grid-column: span 5; aspect-ratio: 3/4; --placeholder-1: #c9a876; --placeholder-2: #3a2a1f; }
.item-7 { grid-column: span 7; aspect-ratio: 4/3; --placeholder-1: #7a6048; --placeholder-2: #1f1810; }

/* Services */
.services { background: var(--bg-dark); color: var(--text-light); }
.services .section-eyebrow { color: var(--accent-light); }
.services-header { text-align: center; margin-bottom: 100px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border-light);
  border: 1px solid var(--border-light);
}
.service-card {
  background: var(--bg-dark);
  padding: 60px 40px;
  transition: background 0.4s ease;
}
.service-card:hover { background: var(--bg-darker); }

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
.service-card h3 { font-size: 36px; margin-bottom: 20px; }
.service-card .price {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--accent-light);
  margin-bottom: 30px;
}
.service-card ul { list-style: none; margin-bottom: 30px; }
.service-card ul li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(244, 239, 231, 0.08);
  font-size: 14px;
  color: rgba(244, 239, 231, 0.75);
  display: flex; align-items: center; gap: 12px;
}
.service-card ul li::before { content: '—'; color: var(--accent); }

/* Showreel */
.showreel { background: var(--bg-darker); color: var(--text-light); padding: 100px 0; }
.showreel-header { text-align: center; margin-bottom: 60px; }

.showreel-player {
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1612 0%, #2a201a 100%);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.showreel-player::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(184, 153, 104, 0.15) 0%, transparent 60%);
  z-index: 0;
}
.showreel-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.play-button {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(244, 239, 231, 0.4);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.4s ease;
  background: rgba(0,0,0,0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.play-button::before {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--text-light);
  margin-left: 5px;
}
.play-overlay:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
  background: var(--accent);
  border-color: var(--accent);
}
.showreel-label {
  position: absolute;
  bottom: 30px; left: 30px;
  color: rgba(244, 239, 231, 0.5);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 16px;
}

/* Testimonials */
.testimonials { background: var(--bg-cream); text-align: center; padding: 160px 0; }
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.4;
  font-weight: 300;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 40px;
  color: var(--text-dark);
  border: none;
  padding: 0;
}
.testimonial-quote::before { content: '"'; color: var(--accent); }
.testimonial-quote::after { content: '"'; color: var(--accent); }
.testimonial-author {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.testimonial-author strong { color: var(--accent); font-weight: 500; }

/* Contact */
.contact { background: var(--bg-darker); color: var(--text-light); text-align: center; padding: 160px 0; position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(184, 153, 104, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(120, 90, 60, 0.08) 0%, transparent 50%);
}
.contact-content { position: relative; z-index: 1; }
.contact .section-eyebrow { color: var(--accent-light); }
.contact h2 {
  font-size: clamp(48px, 7vw, 96px);
  margin-bottom: 30px;
  font-weight: 300;
}
.contact h2 em { font-style: italic; color: var(--accent-light); }
.contact p {
  font-size: 18px;
  color: rgba(244, 239, 231, 0.7);
  max-width: 600px;
  margin: 0 auto 60px;
}
.contact-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}
.btn {
  display: inline-block;
  padding: 18px 44px;
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid;
  background: transparent;
  font-family: inherit;
}
.btn-primary { background: var(--accent); color: var(--bg-darker); border-color: var(--accent); }
.btn-primary:hover, .btn-primary:focus-visible { background: var(--accent-light); border-color: var(--accent-light); }
.btn-secondary { color: var(--text-light); border-color: rgba(244, 239, 231, 0.3); }
.btn-secondary:hover, .btn-secondary:focus-visible { background: var(--text-light); color: var(--bg-darker); border-color: var(--text-light); }

.contact-info {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(244, 239, 231, 0.6);
}
.contact-info a:hover { color: var(--accent-light); }
.contact-info span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

/* ------------------------------------------------------------
   6. Footer
   ------------------------------------------------------------ */
footer {
  background: var(--bg-darker);
  color: rgba(244, 239, 231, 0.5);
  padding: 40px 0;
  border-top: 1px solid var(--border-light);
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-content a:hover, .footer-content a:focus-visible { color: var(--accent-light); }
.footer-social { display: flex; gap: 24px; list-style: none; }
.footer-legal { display: flex; gap: 12px; align-items: center; }
.footer-legal a[aria-current="page"] { color: var(--accent-light); }

/* ------------------------------------------------------------
   7. Legal Pages (Impressum + Datenschutz)
   ------------------------------------------------------------ */
.legal-page { padding: 140px 0 100px; background: var(--bg-cream); }
.legal-container { max-width: 820px; }
.legal-heading {
  font-size: clamp(40px, 6vw, 72px);
  margin: 10px 0 60px;
}
.legal-page h2 {
  font-size: 28px;
  margin: 50px 0 16px;
  color: var(--accent);
}
.legal-page h3 {
  font-size: 20px;
  margin: 30px 0 12px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  color: var(--text-dark);
}
.legal-page p { margin-bottom: 18px; font-size: 16px; line-height: 1.8; color: #3a3530; }
.legal-page ul, .legal-page ol { margin: 0 0 18px 22px; }
.legal-page li { margin-bottom: 8px; font-size: 16px; line-height: 1.8; color: #3a3530; }
.legal-page a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.legal-page a:hover { color: var(--text-dark); }
.legal-meta {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
  font-size: 14px !important;
  color: var(--text-muted) !important;
  font-style: italic;
}
.toc {
  position: static;
  z-index: auto;
  display: block;
  mix-blend-mode: normal;
  transition: none;
  background: var(--bg-cream-dark);
  padding: 30px 40px;
  margin-bottom: 60px;
  border-left: 3px solid var(--accent);
}
.toc h2 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--text-dark);
}
.toc ol { margin: 0 0 0 22px; }
.toc li { margin-bottom: 6px; font-size: 15px; }

/* ------------------------------------------------------------
   8. Coming Soon + 404 Page
   ------------------------------------------------------------ */
.coming-soon-body, .error-body {
  background: var(--bg-darker);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.coming-soon, .error-page {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-light);
  padding: 80px 20px;
  overflow: hidden;
}
.coming-soon-bg, .error-bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(184, 153, 104, 0.25) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(120, 90, 60, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, #1a1612 0%, #2a201a 40%, #0a0807 100%);
  animation: drift 20s ease-in-out infinite;
}
.coming-soon-overlay, .error-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 50%, rgba(0,0,0,0.6) 100%);
}
.coming-soon-content, .error-content {
  position: relative; z-index: 2;
  max-width: 700px;
}
.coming-soon-message, .error-message {
  font-size: 17px;
  color: rgba(244, 239, 231, 0.85);
  margin: 30px 0 50px;
  line-height: 1.7;
}
.coming-soon-footnote {
  margin-top: 40px;
  font-size: 13px;
  color: rgba(244, 239, 231, 0.5);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.coming-soon-footer {
  background: transparent;
  border-top: 1px solid var(--border-light);
  padding: 30px 0;
  color: rgba(244, 239, 231, 0.5);
  font-size: 12px;
  letter-spacing: 0.1em;
}

/* ------------------------------------------------------------
   9. Animations (Reveal on Scroll)
   ------------------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ------------------------------------------------------------
   10. Responsive
   ------------------------------------------------------------ */
@media (max-width: 968px) {
  .container { padding: 0 24px; }
  .footer-content { padding: 0 24px; }
  nav { padding: 20px 24px; }
  nav.scrolled { padding: 14px 24px; }
  .nav-links { display: none; }
  .menu-toggle { display: flex; }

  /* Mobiles Menü geöffnet */
  nav.menu-open {
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    mix-blend-mode: normal;
  }
  nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: rgba(14, 13, 11, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 8px 24px 28px;
    gap: 0;
    border-bottom: 1px solid var(--border-light);
  }
  nav.menu-open .nav-links li { border-bottom: 1px solid rgba(244, 239, 231, 0.08); }
  nav.menu-open .nav-links a { display: block; padding: 16px 0; color: var(--text-light); }

  section { padding: 90px 0; }
  .testimonials, .contact { padding: 110px 0; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .services-grid { grid-template-columns: 1fr; }

  /* Portfolio: 2 Spalten auf Tablet */
  .portfolio-grid { gap: 12px; }
  .portfolio-item { grid-column: span 6 !important; aspect-ratio: 4/3 !important; }

  .contact-info { gap: 30px; }

  .legal-page { padding: 110px 0 80px; }
  .toc { padding: 20px 24px; }
}

/* Smartphone (≤ 600px): 1 Spalte, flacheres Bild */
@media (max-width: 600px) {
  .portfolio-item { grid-column: span 12 !important; aspect-ratio: 16/9 !important; }
}

/* ------------------------------------------------------------
   11. Print Styles (für Impressum/Datenschutz)
   ------------------------------------------------------------ */
@media print {
  nav, footer, .scroll-indicator { display: none !important; }
  body { background: white; color: black; }
  .legal-page { padding: 20px 0; }
  .legal-page h2 { color: black; }
  a { color: black; text-decoration: none; }
}

/* ============================================================
   12. About: Portrait kleiner; auf Mobile rechts neben Überschrift
   ============================================================ */
.about-grid {
  grid-template-columns: minmax(0, 340px) 1fr;
  gap: 80px;
  align-items: center;
}
.about-image {
  max-width: 340px;
  width: 100%;
  aspect-ratio: 4/5;
}

@media (max-width: 968px) {
  .about-grid { display: block; }
  .about-image {
    float: right;
    width: 38vw;
    max-width: 170px;
    margin: 8px 0 18px 24px;
    aspect-ratio: 4/5;
    shape-outside: inset(0);
  }
  .about-text .section-eyebrow { display: inline-block; margin-bottom: 14px; }
  .about-text .section-title { margin-bottom: 24px; }
  .about-text p:first-of-type::first-letter {
    font-size: 52px;
    margin: 4px 10px 0 0;
  }
  .about-text .signature { clear: both; margin-top: 32px; }
}
@media (max-width: 600px) {
  .about-image {
    width: 42vw;
    max-width: 140px;
    margin: 6px 0 14px 18px;
  }
  .about-text p:first-of-type::first-letter {
    font-size: 44px;
    margin: 4px 8px 0 0;
  }
}

/* ============================================================
   13. Portfolio Cinema — opt-in, scroll-pinned stage
   Two states:
   - default (collapsed): 1 viewport tall, blurred photo preview
     behind a dark translucent activation card. User can scroll
     past quickly.
   - .is-active: track expands to 420vh, sticky cinema plays
     while user scrolls through the section.
   ============================================================ */
.portfolio-cinema {
  /* Match the About section above — no visible color band at the boundary */
  background: var(--bg-cream);
  position: relative;
}

.eo-cinema-track {
  height: 100vh;                       /* collapsed default */
  position: relative;
  transition: height 0.5s ease;
}
.portfolio-cinema.is-active .eo-cinema-track {
  height: 420vh;                       /* full cinematic length */
}

.eo-cinema-stage {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: block;
  /* No own background — inherits cream from the section so transitions are seamless */
}

/* Vertical scroll-progress bar (right side, only while active) */
.eo-cinema-progress {
  position: absolute;
  right: clamp(14px, 2.4vw, 32px);
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: clamp(160px, 34vh, 300px);
  background: rgba(26, 24, 21, 0.18);
  border-radius: 999px;
  overflow: hidden;
  z-index: 4;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.portfolio-cinema.is-active .eo-cinema-progress {
  opacity: 1;
}
.eo-cinema-progress::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: var(--accent);
  border-radius: inherit;
  transform-origin: top center;
  transform: scaleY(var(--prog, 0));
  transition: transform 0.1s linear;
  box-shadow: 0 0 12px rgba(184, 153, 104, 0.4);
}

/* Activation card — dark translucent panel, photos visible behind */
.eo-cinema-intro {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  z-index: 5;
  pointer-events: none;
  transition: opacity 0.45s ease;
}
.portfolio-cinema.is-active .eo-cinema-intro {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}

.eo-cinema-trigger {
  pointer-events: auto;
  appearance: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: clamp(32px, 5vw, 56px) clamp(40px, 6vw, 72px);
  background: rgba(26, 24, 21, 0.72);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  border: 1px solid var(--accent);
  border-radius: 2px;
  color: var(--bg-cream);
  font-family: inherit;
  text-align: center;
  cursor: pointer;
  box-shadow:
    0 30px 80px -30px rgba(0, 0, 0, 0.5),
    0 8px 20px -8px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.eo-cinema-trigger:hover,
.eo-cinema-trigger:focus-visible {
  background: rgba(26, 24, 21, 0.82);
  border-color: var(--accent-light);
  box-shadow:
    0 40px 100px -30px rgba(0, 0, 0, 0.6),
    0 10px 28px -8px rgba(0, 0, 0, 0.5);
  outline: none;
}
.eo-cinema-trigger:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 4px;
}

.eo-trigger-eyebrow {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent-light);
}
.eo-trigger-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  font-size: clamp(32px, 5.2vw, 56px);
  line-height: 1.1;
  color: var(--bg-cream);
}
.eo-trigger-title em {
  font-style: italic;
  color: var(--accent-light);
}
.eo-trigger-rule {
  display: block;
  width: 56px;
  height: 1px;
  background: var(--accent);
  margin: 4px 0 6px;
}
.eo-trigger-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-cream);
}
.eo-arrow-icon {
  transition: transform 0.3s ease;
}
.eo-cinema-trigger:hover .eo-arrow-icon,
.eo-cinema-trigger:focus-visible .eo-arrow-icon {
  transform: translateX(4px);
}

/* Photo preview (collapsed state): blurred, dimmed scatter
   so the user sees there are pictures behind the card. */
.portfolio-cinema:not(.is-active) .eo-photo {
  filter: blur(6px) saturate(85%);
  opacity: 0.55;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.portfolio-cinema:not(.is-active) .eo-p1 {
  transform: translate(-50%, -50%) translate(-34vw, -22vh) rotate(-5deg) scale(0.62);
}
.portfolio-cinema:not(.is-active) .eo-p2 {
  transform: translate(-50%, -50%) translate( 32vw, -18vh) rotate( 4deg) scale(0.60);
}
.portfolio-cinema:not(.is-active) .eo-p3 {
  transform: translate(-50%, -50%) translate(-28vw,  22vh) rotate( 3deg) scale(0.58);
}
.portfolio-cinema:not(.is-active) .eo-p4 {
  transform: translate(-50%, -50%) translate( 30vw,  20vh) rotate(-6deg) scale(0.64);
}
.portfolio-cinema:not(.is-active) .eo-p5 {
  transform: translate(-50%, -50%) translate(  0vw, -28vh) rotate( 2deg) scale(0.55);
}
.portfolio-cinema:not(.is-active) .eo-p6,
.portfolio-cinema:not(.is-active) .eo-p7,
.portfolio-cinema:not(.is-active) .eo-p8,
.portfolio-cinema:not(.is-active) .eo-p9,
.portfolio-cinema:not(.is-active) .eo-p10 {
  opacity: 0;
}

/* Close pill — visible only when active, top-right */
.eo-cinema-close {
  position: absolute;
  top: clamp(88px, 11vh, 120px);
  right: clamp(16px, 2.6vw, 32px);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px 10px 12px;
  background: rgba(26, 24, 21, 0.72);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  border: 1px solid rgba(184, 153, 104, 0.55);
  border-radius: 999px;
  color: var(--bg-cream);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  z-index: 6;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, border-color 0.2s ease, visibility 0s linear 0.35s;
}
.portfolio-cinema.is-active .eo-cinema-close {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.35s ease 0.15s, transform 0.35s ease 0.15s, background 0.2s ease, border-color 0.2s ease, visibility 0s linear 0s;
}
.eo-cinema-close:hover,
.eo-cinema-close:focus-visible {
  background: rgba(26, 24, 21, 0.86);
  border-color: var(--accent-light);
  outline: none;
}
.eo-cinema-close:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}
.eo-cinema-close svg {
  display: block;
}

/* Scroll hint — chevron + label, appears when active, fades on first scroll */
.eo-scroll-hint {
  position: absolute;
  left: 50%;
  bottom: clamp(140px, 24vh, 260px);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(26, 24, 21, 0.48);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 999px;
  color: var(--bg-cream);
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0s linear 0.2s;
}
.eo-scroll-hint-chevron {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.4));
}
.portfolio-cinema.is-active:not(.has-scrolled) .eo-scroll-hint {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease 0.3s, visibility 0s linear 0s;
}
.eo-scroll-hint-chevron {
  animation: eo-chevron-bounce 1.6s ease-in-out infinite;
}
@keyframes eo-chevron-bounce {
  0%, 100% { transform: translateY(-2px); opacity: 0.6; }
  50%      { transform: translateY(4px);  opacity: 1;   }
}

/* Photos — base. JS drives --tx, --ty, --rot, --sc, --bl, --op. */
.eo-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ph-1, #8a7458) 0%, var(--ph-2, #1a1410) 100%);
  box-shadow:
    0 40px 80px -30px rgba(14, 13, 11, 0.6),
    0 8px 22px -6px rgba(14, 13, 11, 0.35);
  transform-origin: 50% 50%;
  transform:
    translate(-50%, -50%)
    translate(var(--tx, 0px), var(--ty, 0px))
    rotate(var(--rot, 0deg))
    scale(var(--sc, 1));
  filter: blur(var(--bl, 0px));
  opacity: var(--op, 0);
  will-change: transform, filter, opacity;
}

.eo-photo > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Aspect ratios — Höhe wird per --scl pro Foto leicht skaliert (±10 %). */
.eo-photo[data-ar="4/5"] { aspect-ratio: 4/5; height: calc(clamp(420px, 78vh, 760px) * var(--scl, 1)); }
.eo-photo[data-ar="3/4"] { aspect-ratio: 3/4; height: calc(clamp(460px, 82vh, 800px) * var(--scl, 1)); }
.eo-photo[data-ar="1/1"] { aspect-ratio: 1/1; height: calc(clamp(360px, 64vh, 620px) * var(--scl, 1)); }
.eo-photo[data-ar="5/4"] { aspect-ratio: 5/4; height: calc(clamp(340px, 62vh, 580px) * var(--scl, 1)); }

@media (max-width: 968px) {
  .eo-photo[data-ar="4/5"] { height: calc(clamp(340px, 70vh, 540px) * var(--scl, 1)); }
  .eo-photo[data-ar="3/4"] { height: calc(clamp(360px, 74vh, 580px) * var(--scl, 1)); }
  .eo-photo[data-ar="1/1"] { height: calc(clamp(280px, 58vh, 440px) * var(--scl, 1)); }
  .eo-photo[data-ar="5/4"] { height: calc(clamp(260px, 54vh, 420px) * var(--scl, 1)); }
}
@media (max-width: 600px) {
  .eo-photo[data-ar="4/5"] { height: calc(clamp(320px, 68vh, 500px) * var(--scl, 1)); }
  .eo-photo[data-ar="3/4"] { height: calc(clamp(340px, 72vh, 520px) * var(--scl, 1)); }
  .eo-photo[data-ar="1/1"] { height: calc(clamp(260px, 56vh, 380px) * var(--scl, 1)); }
  .eo-photo[data-ar="5/4"] { height: calc(clamp(240px, 52vh, 360px) * var(--scl, 1)); }
}

/* Pro-Bild Platzhalter-Gradient + Größen-Variation (--scl). */
.eo-p1  { --ph-1: #b89968; --ph-2: #3a2a1f; --scl: 1.00; }
.eo-p2  { --ph-1: #6a5240; --ph-2: #1a1410; --scl: 0.92; }
.eo-p3  { --ph-1: #c9a876; --ph-2: #3a2a1f; --scl: 1.05; }
.eo-p4  { --ph-1: #5a4838; --ph-2: #1a1410; --scl: 1.08; }
.eo-p5  { --ph-1: #a08560; --ph-2: #2a1f15; --scl: 0.95; }
.eo-p6  { --ph-1: #7a6048; --ph-2: #1f1810; --scl: 1.00; }
.eo-p7  { --ph-1: #c9a876; --ph-2: #2a201a; --scl: 0.90; }
.eo-p8  { --ph-1: #8a7458; --ph-2: #1a1410; --scl: 1.10; }
.eo-p9  { --ph-1: #b89968; --ph-2: #3a2a1f; --scl: 1.05; }
.eo-p10 { --ph-1: #5a4838; --ph-2: #1f1810; --scl: 0.95; }

/* Reduced-motion fallback: zeige alle Bilder einfach gestapelt */
@media (prefers-reduced-motion: reduce) {
  .eo-cinema-track,
  .portfolio-cinema.is-active .eo-cinema-track { height: auto; padding: 60px 0; }
  .eo-cinema-stage {
    position: static;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  .eo-cinema-progress,
  .eo-cinema-intro,
  .eo-cinema-close,
  .eo-scroll-hint { display: none; }
  .eo-photo,
  .portfolio-cinema:not(.is-active) .eo-photo {
    position: relative;
    top: auto;
    left: auto;
    transform: rotate(var(--rot-static, 0deg));
    filter: none;
    opacity: 1;
    height: clamp(280px, 48vh, 480px);
    margin: 0;
  }
  .eo-photo:nth-child(odd) { --rot-static: -2deg; }
  .eo-photo:nth-child(even) { --rot-static: 2deg; }
}

/* Vermeidet doppelte Reveal-Animationen */
.portfolio-cinema .reveal { opacity: 1; transform: none; }

/* ============================================================
   14. Tipps Page (Long-form article: tipps.html)
   ============================================================ */
.tipps-page {
  padding: 140px 0 100px;
  background: var(--bg-cream);
}
.tipps-container {
  max-width: 820px;
}

.tipps-header {
  margin-bottom: 70px;
}
.tipps-heading {
  font-size: clamp(40px, 6vw, 72px);
  margin: 14px 0 24px;
  line-height: 1.1;
}
.tipps-heading em {
  font-style: italic;
  color: var(--accent);
}
.tipps-meta {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.tipps-lede {
  font-size: 19px;
  line-height: 1.8;
  color: #3a3530;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  margin-bottom: 20px;
}

.tipps-faq {
  margin-top: 40px;
}
.faq-item {
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.faq-item:last-of-type {
  border-bottom: none;
}
.faq-item h2 {
  font-size: clamp(24px, 3.2vw, 32px);
  margin-bottom: 20px;
  color: var(--text-dark);
}
.faq-item p {
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #3a3530;
}
.faq-item ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.faq-item ul li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 16px;
  line-height: 1.7;
  color: #3a3530;
}
.faq-item ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.tipps-cta {
  margin-top: 80px;
  padding: 60px 40px;
  background: var(--bg-cream-dark);
  border-left: 3px solid var(--accent);
  text-align: center;
}
.tipps-cta h2 {
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 18px;
}
.tipps-cta p {
  font-size: 17px;
  margin-bottom: 24px;
  color: #3a3530;
}
.tipps-cta .btn-primary {
  display: inline-block;
  background: var(--accent);
  color: var(--bg-darker);
  border-color: var(--accent);
}
.tipps-cta .btn-primary:hover,
.tipps-cta .btn-primary:focus-visible {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

@media (max-width: 968px) {
  .tipps-page { padding: 110px 0 80px; }
  .tipps-lede { padding-left: 20px; font-size: 17px; }
  .tipps-cta { padding: 40px 24px; }
  .faq-item { padding: 32px 0; }
}