/* =====================================================================
   WaLu Photography – Stylesheet
   Design: Modern Minimal (hell, luftig, Sans-Serif, viel Weißraum)
   ===================================================================== */

/* ---------------------------------------------------------------------
   Schriften (selbst gehostet, DSGVO-konform – keine Google-CDN)
   Überschriften: Playfair Display (elegante, kontrastreiche Display-Serife)
   Text & UI:     Jost (cleane Sans-Serif)
--------------------------------------------------------------------- */
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/playfair-display-500.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: normal; font-weight: 600; font-display: swap; src: url('/fonts/playfair-display-600.woff2') format('woff2'); }
@font-face { font-family: 'Playfair Display'; font-style: italic; font-weight: 500; font-display: swap; src: url('/fonts/playfair-display-500-italic.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 300; font-display: swap; src: url('/fonts/jost-300.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 400; font-display: swap; src: url('/fonts/jost-400.woff2') format('woff2'); }
@font-face { font-family: 'Jost'; font-style: normal; font-weight: 500; font-display: swap; src: url('/fonts/jost-500.woff2') format('woff2'); }

/* ---------------------------------------------------------------------
   Design-Tokens (zentrale Stellschrauben für Farben, Schrift, Abstände)
--------------------------------------------------------------------- */
:root {
  /* Farben – warmes, ruhiges Minimal-Palette */
  --bg:        #fbfaf8;   /* warmes Weiß */
  --bg-alt:    #f3f0ec;   /* zarte Sektionsfläche */
  --text:      #1c1b19;   /* fast Schwarz */
  --muted:     #6f6a63;   /* gedämpfter Text */
  --accent:    #b08d6a;   /* warmes Taupe/Gold */
  --accent-dk: #8a6c4f;
  --line:      #e7e2db;   /* feine Linien */
  --white:     #ffffff;

  /* Typografie */
  --font-sans: 'Jost', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-serif: 'Playfair Display', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  /* Layout */
  --container: 1200px;
  --gap:       clamp(1rem, 2.5vw, 2rem);
  --radius:    4px;
  --section-y: clamp(4rem, 9vw, 8rem);

  --shadow:    0 12px 40px rgba(28, 27, 25, 0.10);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 90px; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.6vw + 0.9rem, 1.0625rem);
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

/* hidden-Attribut immer respektieren (überschreibt display:flex etc.) */
[hidden] { display: none !important; }

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

h1, h2, h3 { font-family: var(--font-serif); line-height: 1.12; font-weight: 500; letter-spacing: 0.01em; }
h2 { font-size: clamp(2.1rem, 4.8vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.65rem); }

::selection { background: var(--accent); color: #fff; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(1.25rem, 5vw, 3rem); }

.section { padding-block: var(--section-y); }

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

.section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-intro { color: var(--muted); margin-top: 1rem; }

/* Reveal-Animation beim Scrollen */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* Skip-Link */
.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 1000;
  background: var(--text); color: #fff; padding: 0.75rem 1.25rem;
}
.skip-link:focus { left: 0; }

/* ---------------------------------------------------------------------
   Buttons
--------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.85rem 1.8rem; font-size: 0.95rem; font-weight: 500;
  letter-spacing: 0.02em; border: 1px solid transparent; border-radius: var(--radius);
  cursor: pointer; transition: var(--transition); text-align: center;
}
.btn-primary { background: var(--text); color: #fff; }
.btn-primary:hover { background: var(--accent-dk); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: currentColor; color: var(--text); }
.btn-ghost:hover { background: var(--text); color: #fff; }
.btn-block { width: 100%; }
.btn-sm { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ---------------------------------------------------------------------
   Header / Navigation
--------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 248, 0.82);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), background var(--transition);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }

.logo { display: inline-flex; align-items: center; font-size: 1.4rem; font-weight: 700; letter-spacing: -0.03em; }
.logo img { height: 48px; width: auto; display: block; }
.logo-dot { color: var(--accent); }

.nav-menu { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-menu a { font-size: 0.95rem; font-weight: 500; position: relative; transition: color var(--transition); }
.nav-menu a:not(.nav-cta)::after {
  content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1.5px;
  background: var(--accent); transition: width var(--transition);
}
.nav-menu a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta { background: var(--text); color: #fff; padding: 0.5rem 1.2rem; border-radius: var(--radius); }
.nav-cta:hover { background: var(--accent-dk); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; width: 30px; height: 24px;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span { display: block; height: 2px; width: 100%; background: var(--text); transition: var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------------------------------------------------
   Hero
--------------------------------------------------------------------- */
.hero { position: relative; min-height: clamp(560px, 92vh, 1000px); display: flex; align-items: center; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,18,16,.30) 0%, rgba(20,18,16,.15) 40%, rgba(20,18,16,.55) 100%);
  display: flex; align-items: center; padding-bottom: 5rem;
}
.hero-content { color: #fff; max-width: 720px; position: relative; z-index: 2; text-align: center; margin-inline: auto; }
.hero-kicker { text-transform: uppercase; letter-spacing: 0.25em; font-size: 0.8rem; opacity: 0.9; margin-bottom: 1.2rem; }
.hero-title { font-size: clamp(1.5rem, 7vw, 3.7rem); font-weight: 500; line-height: 1.08; }
.hero-title span { display: block; white-space: nowrap; }
.hero-title .hero-year { font-size: 0.5em; font-style: italic; font-weight: 500; letter-spacing: 0.03em; margin-top: 0.15em; opacity: 0.95; }
.hero-claim {
  font-size: clamp(1.1rem, 2.4vw, 1.7rem); font-weight: 300; letter-spacing: 0.04em;
  margin-top: 1rem; text-transform: lowercase;
}
.hero-sub { font-size: clamp(1rem, 1.4vw, 1.15rem); max-width: 42ch; margin: 1.5rem auto 0; opacity: 0.95; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; justify-content: center; }
.hero .btn-ghost { color: #fff; }

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2;
  width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 14px;
}
.hero-scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite;
}
@keyframes scrolldot { 0% { opacity: 0; top: 8px; } 40% { opacity: 1; } 80% { opacity: 0; top: 22px; } 100% { opacity: 0; } }

/* ---------------------------------------------------------------------
   Über uns
--------------------------------------------------------------------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.about-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); object-fit: cover; }
.about-text p { margin-top: 1.1rem; color: var(--muted); }
.about-text p:first-of-type { margin-top: 1.4rem; }
.about-text strong { color: var(--text); font-weight: 600; }
.about-signature {
  margin-top: 1.8rem !important; font-size: 1.25rem; font-weight: 500;
  color: var(--text) !important; font-style: italic;
}

/* ---------------------------------------------------------------------
   Portfolio / Galerie (Masonry via CSS columns)
--------------------------------------------------------------------- */
.portfolio { background: var(--bg-alt); }
/* Album-Kacheln (eine Kachel pro Hochzeit, Klick öffnet die Galerie) */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: var(--gap); margin-top: 1rem; }
.album-card {
  position: relative; display: block; width: 100%; padding: 0; border: none; cursor: pointer;
  border-radius: var(--radius); overflow: hidden; background: var(--line); aspect-ratio: 4 / 5;
  font: inherit; color: #fff; text-align: left;
}
.album-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.album-card::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20,18,16,0) 35%, rgba(20,18,16,0.72) 100%);
  transition: background var(--transition);
}
.album-card:hover img { transform: scale(1.06); }
.album-card:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.album-info { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.5rem; display: grid; gap: 0.15rem; }
.album-name { font-family: var(--font-serif); font-size: 1.9rem; font-weight: 600; letter-spacing: 0; line-height: 1.1; }
.album-loc { font-size: 0.9rem; opacity: 0.88; }
.album-count { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-top: 0.6rem; opacity: 0.92; display: inline-flex; align-items: center; gap: 0.5rem; }
.album-count::before { content: ''; width: 20px; height: 1px; background: currentColor; }
.gallery-empty { text-align: center; color: var(--muted); padding: 2rem; grid-column: 1 / -1; }

/* ---------------------------------------------------------------------
   Leistungen
--------------------------------------------------------------------- */
.packages { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.package {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2.5rem 2rem; text-align: center; transition: var(--transition);
}
.package:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.package-featured { border-color: var(--accent); border-width: 1.5px; }
.package-badge {
  position: absolute; top: -0.8rem; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff; font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em; padding: 0.35rem 1rem; border-radius: 100px;
}
.package-name { font-size: 1.6rem; margin-bottom: 1.4rem; }
.package-list { list-style: none; display: grid; gap: 0.8rem; }
.package-list li { color: var(--muted); padding-bottom: 0.8rem; border-bottom: 1px solid var(--line); }
.package-list li:last-child { border-bottom: none; padding-bottom: 0; }

.price-note { text-align: center; color: var(--muted); margin-top: 2rem; font-size: 0.98rem; }

.extras { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--gap); margin-top: clamp(3rem, 6vw, 5rem); }
.extra { padding: 1.8rem; border-left: 2px solid var(--accent); background: var(--bg-alt); border-radius: 0 var(--radius) var(--radius) 0; }
.extra h3 { margin-bottom: 0.6rem; }
.extra p { color: var(--muted); font-size: 0.95rem; }

.services-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 4rem); }

/* ---------------------------------------------------------------------
   Instagram
--------------------------------------------------------------------- */
.instagram { text-align: center; }
.instagram .section-head { margin-inline: auto; }
.ig-embed { min-height: 320px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--bg-alt); }
.ig-embed iframe { width: 100%; border: 0; display: block; }
.ig-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 3.5rem 1.5rem; }
.ig-placeholder-title { font-size: 1.3rem; font-weight: 600; }
.ig-placeholder-text { color: var(--muted); max-width: 42ch; font-size: 0.95rem; }
.ig-placeholder-text a { color: var(--accent-dk); text-decoration: underline; }
.ig-remember { font-size: 0.85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.4rem; }
.instagram-cta { margin-top: 2rem; }

/* ---------------------------------------------------------------------
   Kontakt
--------------------------------------------------------------------- */
.contact { background: var(--bg-alt); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.contact-intro p { color: var(--muted); margin-top: 1rem; }
.contact-direct { list-style: none; margin-top: 2rem; display: grid; gap: 1.2rem; }
.contact-direct li { display: grid; gap: 0.2rem; }
.contact-direct span { text-transform: uppercase; letter-spacing: 0.15em; font-size: 0.72rem; color: var(--accent); font-weight: 600; }
.contact-direct a { font-size: 1.1rem; font-weight: 500; transition: color var(--transition); }
.contact-direct a:hover { color: var(--accent-dk); }

.contact-form { background: var(--white); padding: clamp(1.8rem, 4vw, 2.8rem); border-radius: var(--radius); border: 1px solid var(--line); }
.form-row { margin-bottom: 1.3rem; }
.form-row label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-row input, .form-row textarea {
  width: 100%; padding: 0.85rem 1rem; font: inherit; font-size: 0.95rem; color: var(--text);
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); transition: border-color var(--transition);
}
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--accent); }
.form-row textarea { resize: vertical; }
.form-row-split { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-row-split label { margin-bottom: 0.5rem; }
.form-consent label { display: flex; gap: 0.6rem; align-items: flex-start; font-weight: 400; color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; width: auto; }
.form-consent a { color: var(--accent-dk); text-decoration: underline; }

/* Honeypot – komplett versteckt */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-status { margin-top: 1rem; font-size: 0.95rem; min-height: 1.4em; }
.form-status.success { color: #2f7a3f; }
.form-status.error { color: #b3402f; }
.form-row.invalid input, .form-row.invalid textarea { border-color: #b3402f; }

/* ---------------------------------------------------------------------
   Footer
--------------------------------------------------------------------- */
.site-footer { background: var(--text); color: #cfc9c0; padding-top: clamp(3rem, 6vw, 4.5rem); }
.footer-inner { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1.6rem; padding-bottom: 2.5rem; }
.footer-brand { display: flex; flex-direction: column; align-items: center; gap: 0.7rem; }
.footer-brand .logo { color: #fff; font-size: 1.5rem; }
.footer-brand p { margin: 0; font-size: 1rem; opacity: 0.78; font-style: italic; letter-spacing: 0.03em; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.footer-nav a { font-size: 0.92rem; transition: color var(--transition); }
.footer-nav a:hover { color: #fff; }
.footer-social a { color: #cfc9c0; transition: color var(--transition); display: inline-flex; }
.footer-social a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-block: 1.5rem; text-align: center; font-size: 0.85rem; opacity: 0.6; }

/* ---------------------------------------------------------------------
   Cookie-Banner
--------------------------------------------------------------------- */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 50%; transform: translateX(-50%); z-index: 200;
  width: min(640px, calc(100% - 2rem)); background: var(--white); border: 1px solid var(--line);
  box-shadow: var(--shadow); border-radius: var(--radius); padding: 1.3rem 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; justify-content: space-between;
}
.cookie-banner p { font-size: 0.88rem; color: var(--muted); flex: 1 1 300px; }
.cookie-banner a { color: var(--accent-dk); text-decoration: underline; }
.cookie-actions { display: flex; gap: 0.6rem; }

/* ---------------------------------------------------------------------
   Lightbox
--------------------------------------------------------------------- */
.lightbox {
  position: fixed; inset: 0; z-index: 300; background: rgba(20,18,16,0.94);
  display: flex; align-items: center; justify-content: center; padding: 2rem;
  opacity: 0; animation: fadein 0.3s forwards;
}
@keyframes fadein { to { opacity: 1; } }
.lightbox-figure { max-width: 92vw; max-height: 88vh; text-align: center; }
.lightbox-figure img { max-width: 92vw; max-height: 82vh; width: auto; margin-inline: auto; border-radius: var(--radius); }
.lightbox-figure figcaption { color: #cfc9c0; margin-top: 1rem; font-size: 0.9rem; }
.lightbox-close, .lightbox-nav {
  position: absolute; background: rgba(255,255,255,0.1); color: #fff; border: none; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.8rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,0.22); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

/* ---------------------------------------------------------------------
   Rezensionen
--------------------------------------------------------------------- */
.reviews { text-align: center; }
.reviews .section-head { margin-inline: auto; }

/* Slider zum Durchblättern der Bewertungen */
.review-slider { display: flex; align-items: stretch; gap: 0.75rem; }
.review-track {
  display: flex; gap: var(--gap); flex: 1; min-width: 0; overflow-x: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch; padding: 0.5rem 0.25rem; scrollbar-width: none;
}
.review-track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 100%; scroll-snap-align: center; box-sizing: border-box;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2rem; display: flex; flex-direction: column; gap: 1rem; text-align: left;
  height: clamp(340px, 46vh, 440px);
}
.review-card .stars { color: var(--accent); letter-spacing: 0.15em; font-size: 1.05rem; flex: 0 0 auto; }
.review-card blockquote {
  font-size: 1rem; line-height: 1.6; color: var(--text); font-style: italic;
  white-space: pre-line; overflow-y: auto; flex: 1 1 auto; padding-right: 0.5rem; margin: 0;
}
.review-card blockquote::-webkit-scrollbar { width: 5px; }
.review-card blockquote::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.review-card figcaption { color: var(--muted); font-size: 0.9rem; font-weight: 600; flex: 0 0 auto; }
.review-arrow {
  flex: 0 0 auto; align-self: center; width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--white); color: var(--text); cursor: pointer;
  font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.review-arrow:hover { background: var(--text); color: #fff; }
.review-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 0.5rem; margin-top: 1.5rem; }
.review-dot { width: 9px; height: 9px; padding: 0; border: none; border-radius: 50%; background: rgba(28,27,25,0.2); cursor: pointer; transition: var(--transition); }
.review-dot.active { background: var(--accent); width: 26px; border-radius: 5px; }
.reviews-cta { margin-top: clamp(2rem, 4vw, 3rem); }

@media (min-width: 760px) { .review-card { flex-basis: calc(50% - var(--gap) / 2); } }
@media (max-width: 600px) { .review-arrow { display: none; } }

/* ---------------------------------------------------------------------
   Formular: Trauungsart-Auswahl
--------------------------------------------------------------------- */
.form-trauung { border: 1px solid var(--line); border-radius: var(--radius); padding: 0.9rem 1.1rem 1.1rem; display: flex; flex-wrap: wrap; gap: 0.4rem 1.4rem; }
.form-trauung legend { font-size: 0.9rem; font-weight: 500; padding: 0 0.4rem; }
.form-trauung .check { display: inline-flex; align-items: center; gap: 0.45rem; font-size: 0.92rem; color: var(--muted); cursor: pointer; font-weight: 400; }
.form-trauung .check input { width: auto; margin: 0; }

/* Footer-Logo (Logo ist schwarz -> für dunklen Footer in Weiß umfärben) */
.footer-logo { height: 88px; width: auto; filter: brightness(0) invert(1); opacity: 0.92; }

/* ---------------------------------------------------------------------
   FAQ (Akkordeon)
--------------------------------------------------------------------- */
.faq { background: var(--bg-alt); }
.faq-list { max-width: 780px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 1.4rem 0; gap: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-serif); font-size: clamp(1.1rem, 2vw, 1.35rem); font-weight: 500;
  color: var(--text); transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; flex: 0 0 auto; font-size: 1.7rem; line-height: 1; color: var(--accent);
}
.faq-item[open] summary::after { content: '\2212'; }
.faq-item summary:hover { color: var(--accent-dk); }
.faq-answer { padding: 0 0 1.5rem; }
.faq-answer p { color: var(--muted); max-width: 66ch; margin: 0; }

/* ---------------------------------------------------------------------
   So läuft's ab (Ablauf-Schritte)
--------------------------------------------------------------------- */
.process { background: var(--bg-alt); }
.steps { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--gap); }
.step { flex: 1 1 280px; max-width: 340px; position: relative; padding: 2rem 1.6rem; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); transition: var(--transition); }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.step-num { display: block; font-family: var(--font-serif); font-size: 2.6rem; line-height: 1; color: var(--accent); margin-bottom: 0.9rem; }
.step h3 { margin-bottom: 0.6rem; }
.step p { color: var(--muted); font-size: 0.95rem; }

/* ---------------------------------------------------------------------
   Sticky-„Anfragen"-Button (nur Handy)
--------------------------------------------------------------------- */
.mobile-cta { display: none; }
@media (max-width: 860px) {
  .mobile-cta {
    display: block; position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
    background: var(--text); color: #fff; text-align: center; padding: 0.95rem 1rem;
    border-radius: var(--radius); font-weight: 500; letter-spacing: 0.02em;
    box-shadow: var(--shadow); transition: transform var(--transition), opacity var(--transition);
  }
  .mobile-cta.is-hidden { transform: translateY(160%); opacity: 0; pointer-events: none; }
}

/* ---------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------- */
@media (max-width: 860px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 460px; }
  .packages { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .gallery { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

  .nav-toggle { display: flex; z-index: 110; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto; width: min(78vw, 320px); height: 100dvh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem;
    background: var(--bg); padding: 2rem 2.5rem; transform: translateX(100%);
    transition: transform var(--transition); box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-menu a { font-size: 1.2rem; }
  .form-row-split { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
  .cookie-actions { justify-content: center; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
