/* Fonts — self-hosted (no third-party requests, DSGVO-konform) */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/inter-700.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/playfair-500.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-600.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/playfair-700.woff2") format("woff2");
}
@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/playfair-italic-600.woff2") format("woff2");
}

:root {
  --bg: #ffffff;
  --bg-alt: #f7f4f0;
  --surface: #ffffff;
  --border: #e9e3da;
  --text: #2b2926;
  --text-muted: #7a7168;
  --accent: #c3986a;
  --accent-dark: #a97c4f;
  --accent-2: #7c8a6e;
  --radius: 14px;
  --max-width: 1140px;
  --serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
h3 { font-size: 1.3rem; margin-bottom: .5rem; }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: .75rem;
}

.lead { color: var(--text-muted); font-size: 1.08rem; max-width: 52ch; }

.accent { color: var(--accent); font-style: italic; }

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

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,.85);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: -0.01em;
  color: var(--text);
}
.logo em { color: var(--accent); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  font-size: .95rem;
  color: var(--text-muted);
  transition: color .2s;
}
.nav-links a:hover { color: var(--accent); }
.nav-links .btn { padding: .6rem 1.4rem; font-size: .85rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  display: block;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(20,18,15,.78) 0%, rgba(20,18,15,.6) 45%, rgba(20,18,15,.35) 75%),
    linear-gradient(180deg, rgba(20,18,15,.35), rgba(20,18,15,.65)),
    url("../assets/fotos/hero-feld.jpg") center 38% / cover no-repeat;
  z-index: -1;
}
.hero-bg video, .hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content { padding-top: 76px; color: #fdfbf7; }

.hero .eyebrow { color: #dab98c; }

.hero h1 {
  font-size: clamp(2.4rem, 6.5vw, 4.2rem);
  margin: .5rem 0 1.25rem;
  color: #fff;
}

.hero-sub {
  color: #e8e0d3;
  font-size: 1.15rem;
  max-width: 46ch;
  margin-bottom: 2.25rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .9rem 1.9rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  transition: transform .2s, background .2s, border-color .2s, color .2s;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { transform: translateY(-2px); background: var(--accent-dark); }

.btn-ghost {
  border: 1px solid rgba(255,255,255,.4);
  color: #fff;
  background: transparent;
}
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }

/* Ghost button on light backgrounds (outside hero) */
.section .btn-ghost, .legal .btn-ghost {
  border-color: var(--border);
  color: var(--text);
}
.section .btn-ghost:hover, .legal .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: #e8e0d3;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Page header for inner pages (no video hero) */
.page-hero {
  padding: 160px 0 4rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); margin-top: .5rem; }

/* Sections */
.section { padding: 6rem 0; }
.section-alt { background: var(--bg-alt); }

.section-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3.5rem;
  align-items: start;
}

.section-header { max-width: 62ch; margin-bottom: 3rem; }
.section-header.center { margin-left: auto; margin-right: auto; text-align: center; }

.grid { display: grid; gap: 1.75rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--accent); box-shadow: 0 12px 30px rgba(43,39,35,.06); }

.card-icon {
  width: 42px;
  height: 42px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 100%; height: 100%; }
.card p { color: var(--text-muted); font-size: .96rem; }

/* Video */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface);
}
.video-wrap iframe { width: 100%; height: 100%; border: 0; }
.video-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .85rem;
  color: var(--text-muted);
  text-align: center;
  cursor: pointer;
  background:
    linear-gradient(180deg, rgba(43,39,35,.2), rgba(43,39,35,.5)),
    linear-gradient(135deg, #ecdcc2, #c3986a);
}
.video-placeholder span { color: #fff; font-weight: 600; font-size: .95rem; }
.play-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}

.film-card { display: flex; flex-direction: column; gap: 1rem; }
.film-card h3 { margin-bottom: 0; }
.film-meta { color: var(--text-muted); font-size: .9rem; }

/* Portfolio teaser grid */
.portfolio-teaser-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
}

/* Location badges */
.locations {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
}
.location-tag {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 999px;
  padding: .5rem 1.1rem;
  font-size: .88rem;
  color: var(--text-muted);
}

/* Testimonials */
.testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.testimonial p { font-family: var(--serif); font-size: 1.1rem; font-style: italic; margin-bottom: 1.25rem; }
.testimonial cite { font-style: normal; color: var(--text-muted); font-size: .9rem; }

/* CTA banner */
.cta-banner {
  background: var(--text);
  color: var(--bg);
  border-radius: var(--radius);
  padding: 3.5rem;
  text-align: center;
}
.cta-banner h2 { color: #fff; }
.cta-banner p { color: #d8d2c8; max-width: 50ch; margin: 0 auto 2rem; }

/* Packages */
.package {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.package.featured { border-color: var(--accent); box-shadow: 0 12px 30px rgba(195,152,106,.18); position: relative; }
.package-badge {
  position: absolute;
  top: -14px;
  left: 2.5rem;
  background: var(--accent);
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: .35rem .9rem;
  border-radius: 999px;
}
.package-name { font-family: var(--serif); font-size: 1.4rem; font-style: italic; color: var(--accent); }
.package ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.package li {
  padding-left: 1.6rem;
  position: relative;
  color: var(--text-muted);
  font-size: .95rem;
}
.package li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}
/* Ablauf timeline */
.timeline { display: flex; flex-direction: column; gap: 0; margin-top: 2.5rem; }
.timeline-step {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 2rem;
  position: relative;
  padding-bottom: 3rem;
}
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--accent);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-step:not(:last-child)::before {
  content: "";
  position: absolute;
  top: 70px;
  left: 35px;
  bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-content h3 { margin-bottom: .6rem; }
.timeline-content p { color: var(--text-muted); }

/* Über mich */
.profile-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}
.profile-photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ecdcc2, #c3986a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: .9rem;
  padding: 2rem;
  overflow: hidden;
}
.profile-photo img { width: 100%; height: 100%; object-fit: cover; }
.profile-content p { color: var(--text-muted); margin-bottom: 1.25rem; }
.profile-content h3 { margin-top: 1.75rem; }

/* FAQ accordion */
.faq-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem 2rem;
  background: none;
  border: none;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question .icon { color: var(--accent); font-size: 1.3rem; transition: transform .25s; flex-shrink: 0; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 2rem;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 2rem 1.75rem; }
.faq-answer p { color: var(--text-muted); }

/* Contact */
.contact-info { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.contact-info li { color: var(--text-muted); }
.contact-info a { color: var(--accent); font-weight: 600; }
.trust-note {
  margin-top: 1.5rem;
  font-size: .88rem;
  color: var(--text-muted);
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem;
}
.contact-form label { font-size: .85rem; color: var(--text-muted); margin-top: 1rem; font-weight: 500; }
.contact-form input, .contact-form textarea, .contact-form select {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: .8rem 1rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.checkbox-row { display: flex; align-items: flex-start; gap: .6rem; margin-top: 1.25rem; }
.checkbox-row input { width: auto; margin-top: .2rem; }
.checkbox-row label { margin-top: 0; font-size: .85rem; }
.contact-form button { margin-top: 1.75rem; align-self: flex-start; }

/* Legal pages */
.legal { padding-top: 160px; padding-bottom: 6rem; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.3rem; margin-top: 2.5rem; margin-bottom: .5rem; }
.legal p, .legal address, .legal li { color: var(--text-muted); font-style: normal; }
.legal ul { padding-left: 1.2rem; margin-top: .5rem; }
.legal a { color: var(--accent); }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3.5rem 0 2rem;
  color: var(--text-muted);
  font-size: .9rem;
  background: var(--bg-alt);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand { font-family: var(--serif); font-size: 1.3rem; color: var(--text); margin-bottom: .75rem; }
.footer-brand em { color: var(--accent); font-style: italic; }
.footer-col h4 { font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text); margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
.footer-col a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: .75rem; margin-top: 1rem; }
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: color .2s, border-color .2s;
}
.footer-socials a:hover { color: var(--accent); border-color: var(--accent); }
.footer-socials a svg { width: 17px; height: 17px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a:hover { color: var(--accent); }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  background: var(--text);
  border-top: 1px solid var(--border);
  padding: 1.25rem;
}
.cookie-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-banner p { color: #d8d2c8; font-size: .9rem; max-width: 62ch; margin: 0; }
.cookie-banner-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cookie-banner .btn { padding: .65rem 1.3rem; font-size: .9rem; }
.cookie-banner .btn-ghost { color: #fff; border-color: rgba(255,255,255,.3); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: none; }

/* Responsive */
@media (max-width: 860px) {
  .section-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .profile-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .portfolio-teaser-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .nav-links {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 24px;
    border-bottom: 1px solid var(--border);
    display: none;
    gap: 1.25rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .cta-banner { padding: 2.5rem 1.5rem; }
  .timeline-step { grid-template-columns: 50px 1fr; gap: 1.25rem; }
  .timeline-num { width: 50px; height: 50px; font-size: 1.2rem; }
  .timeline-step:not(:last-child)::before { left: 25px; top: 50px; }
}
