/* ========================================
   Simple Moments -- Styles
   ======================================== */

/* ----------------------------------------
   Local Font Faces (DSGVO-konform)
   ---------------------------------------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-400.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('./fonts/playfair-display-400-italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('./fonts/montserrat-400.woff2') format('woff2');
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Lato';
  src: url('./fonts/lato-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ----------------------------------------
   Custom Properties
   ---------------------------------------- */
:root {
  --bg: #faf5f0;
  --bg-deep: #3a2c24;
  --bg-soft: #f2e7dc;
  --bg-warm: #ede4db;
  --cream: #fef9f3;
  --card: rgba(255, 248, 241, 0.7);
  --card-strong: rgba(255, 248, 241, 0.88);
  --text: #2d241f;
  --text-soft: #7a6b62;
  --accent: #6d5a4d;
  --accent-warm: #b08968;
  --accent-dark: #43342c;
  --accent-light: #ead5c3;
  --heading: #b5704e;
  --line: rgba(45, 36, 31, 0.1);
  --shadow-soft: 0 20px 60px rgba(57, 39, 24, 0.1);
  --shadow-strong: 0 30px 100px rgba(48, 33, 23, 0.16);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --container: 1200px;
  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Lato', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-accent: 'Montserrat', 'Lato', system-ui, sans-serif;
}

/* ----------------------------------------
   Reset & Base
   ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100%;
  padding: 0.75rem 1rem;
  background: var(--bg-soft);
  border-radius: 999px;
  z-index: 200;
}
.skip-link:focus { top: 1rem; }

/* ----------------------------------------
   Layout
   ---------------------------------------- */
.container {
  width: min(calc(100% - 3rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 7rem 0;
}

/* ----------------------------------------
   Typography
   ---------------------------------------- */
.section-kicker {
  font-family: var(--font-accent);
  margin: 0 0 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-warm);
}

h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--heading);
}

h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.05;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.15;
  margin-bottom: 0.8rem;
}

p { margin: 0 0 1rem; }

.section-subtext {
  color: var(--text-soft);
  max-width: 520px;
}

blockquote {
  margin: 2rem 0 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--accent-warm);
  background: rgba(255, 250, 245, 0.6);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  color: var(--text-soft);
  font-style: italic;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.6;
}

/* ----------------------------------------
   Buttons & Links
   ---------------------------------------- */
.button {
  font-family: var(--font-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border: none;
  border-radius: 999px;
  background: var(--bg-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  box-shadow: var(--shadow-soft);
}
.button:hover, .button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 70px rgba(48, 33, 23, 0.22);
  background: #2b211d;
}

.button-small {
  padding: 0.65rem 1.2rem;
  font-size: 0.88rem;
}

.button-hero {
  padding: 1.1rem 2.4rem;
  font-size: 1.05rem;
  background: rgba(255, 250, 245, 0.18);
  border: 1px solid rgba(255, 250, 245, 0.4);
  backdrop-filter: blur(10px);
}
.button-hero:hover {
  background: rgba(255, 250, 245, 0.3);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0;
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.95rem;
  transition: gap 0.25s ease;
}
.text-link:hover { gap: 0.7rem; }

/* ----------------------------------------
   Header
   ---------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 1.2rem 0;
  background: linear-gradient(to bottom, rgba(30, 22, 16, 0.6) 0%, rgba(30, 22, 16, 0.3) 60%, transparent 100%);
  transition: background 0.4s ease, padding 0.4s ease, backdrop-filter 0.4s ease;
}
.site-header.header--scrolled {
  background: rgba(58, 44, 36, 0.92);
  backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  width: 170px;
  flex-shrink: 0;
  position: relative;
  z-index: 51;
}

.desktop-nav {
  font-family: var(--font-accent);
  display: flex;
  align-items: center;
  gap: 1.6rem;
  color: var(--cream);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.desktop-nav a:not(.button) {
  position: relative;
  padding: 0.3rem 0;
  opacity: 1;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  transition: opacity 0.25s ease;
}
.desktop-nav a:not(.button):hover { opacity: 1; }
.desktop-nav a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.desktop-nav a:not(.button):hover::after { transform: scaleX(1); }

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 51;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: rgba(58, 44, 36, 0.97);
  backdrop-filter: blur(24px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.mobile-nav a {
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.6rem;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.mobile-nav a:hover { opacity: 1; }

/* ----------------------------------------
   Hero
   ---------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(42, 32, 25, 0.75) 0%,
    rgba(42, 32, 25, 0.35) 35%,
    rgba(42, 32, 25, 0.08) 60%,
    transparent 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 8vh;
  color: var(--cream);
  max-width: 720px;
}
.hero-content h1 {
  color: var(--cream);
  margin-bottom: 1rem;
  text-shadow: 0 4px 40px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 1.15rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 500px;
  line-height: 1.6;
}

/* ----------------------------------------
   Marquee
   ---------------------------------------- */
.marquee-band {
  position: relative;
  padding: 1.2rem 0;
  overflow: hidden;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.marquee-band::before,
.marquee-band::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 2;
  pointer-events: none;
}
.marquee-band::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-soft), transparent);
}
.marquee-band::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-soft), transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-track span {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1.4rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  white-space: nowrap;
  color: var(--accent);
}
.marquee-sep {
  font-size: 0.55rem !important;
  font-style: normal !important;
  padding: 0.4rem 0.2rem !important;
  opacity: 0.35;
  color: var(--accent-warm) !important;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----------------------------------------
   Intro
   ---------------------------------------- */
.intro-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}
.intro-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-strong);
  width: 100%;
  max-height: 700px;
  object-fit: cover;
}
.intro-text h2 {
  max-width: 18ch;
}

/* ----------------------------------------
   Services
   ---------------------------------------- */
.services .section-heading {
  max-width: 700px;
  margin-bottom: 3rem;
}
.service-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  padding: 3rem 0;
}
.service-row + .service-row {
  border-top: 1px solid var(--line);
}
.service-row-reverse {
  grid-template-columns: 0.9fr 1.1fr;
}
.service-row-reverse .service-image { order: 2; }
.service-row-reverse .service-text { order: 1; }

.service-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.service-image:hover img {
  transform: scale(1.02);
  box-shadow: var(--shadow-strong);
}

.service-number {
  font-family: var(--font-accent);
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-warm);
}
.service-text h3 { font-family: var(--font-display); }
.service-text p {
  color: var(--text-soft);
  max-width: 480px;
}

/* ----------------------------------------
   Gallery
   ---------------------------------------- */
.gallery .section-heading {
  max-width: 600px;
  margin-bottom: 3rem;
}
.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin: 0 0 1rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(42, 32, 25, 0);
  transition: background 0.3s ease;
  pointer-events: none;
}
.gallery-item:hover::after {
  background: rgba(42, 32, 25, 0.08);
}

/* ----------------------------------------
   About
   ---------------------------------------- */
.about { background: var(--bg-soft); }
.about-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.about-feature {
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-strong);
  backdrop-filter: blur(16px);
  text-align: center;
}
.about-feature-icon {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 0.8rem;
  color: var(--accent-warm);
}
.about-feature h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
}
.about-feature p {
  font-size: 0.92rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}

/* ----------------------------------------
   Process
   ---------------------------------------- */
.process .section-heading {
  max-width: 600px;
  margin-bottom: 3rem;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.process-step {
  padding: 2rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card);
  backdrop-filter: blur(12px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-strong);
}
.process-number {
  font-family: var(--font-accent);
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 2rem;
  font-family: var(--font-display);
  color: var(--accent-warm);
  opacity: 0.5;
}
.process-step h3 { font-family: var(--font-display); }
.process-step p {
  color: var(--text-soft);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ----------------------------------------
   Testimonials
   ---------------------------------------- */
.testimonials {
  background: var(--bg-deep);
  color: var(--cream);
}
.testimonials .section-kicker { color: var(--accent-warm); }

.testimonial-carousel {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-track {
  position: relative;
  min-height: 280px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
.testimonial-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-warm);
  opacity: 0.3;
  margin-bottom: -1rem;
}
.testimonial-slide p {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  line-height: 1.6;
  color: rgba(254, 249, 243, 0.9);
  max-width: 580px;
}
.testimonial-slide footer {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.testimonial-slide footer span {
  display: block;
  margin-top: 0.3rem;
  font-weight: 400;
  font-size: 0.82rem;
  color: var(--accent-warm);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.testimonial-prev,
.testimonial-next {
  background: none;
  border: 1px solid rgba(254, 249, 243, 0.2);
  color: var(--cream);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.testimonial-prev:hover,
.testimonial-next:hover {
  background: rgba(254, 249, 243, 0.1);
  border-color: rgba(254, 249, 243, 0.4);
}
.testimonial-dots {
  display: flex;
  gap: 0.5rem;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(254, 249, 243, 0.25);
  cursor: pointer;
  padding: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonial-dot.active {
  background: var(--accent-warm);
  transform: scale(1.3);
}

/* ----------------------------------------
   FAQ
   ---------------------------------------- */
.faq .section-heading {
  max-width: 600px;
  margin-bottom: 2.5rem;
}
.faq-list {
  display: grid;
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}
.faq-list details {
  padding: 1.5rem 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--card);
  backdrop-filter: blur(10px);
  transition: box-shadow 0.3s ease;
}
.faq-list details[open] { box-shadow: var(--shadow-soft); }
.faq-list summary {
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::marker { display: none; content: ""; }
.faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-list details p {
  margin: 1.2rem 0 0;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ----------------------------------------
   Contact
   ---------------------------------------- */
.contact { background: var(--bg-soft); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-text h2 { max-width: 14ch; }
.contact-text p {
  color: var(--text-soft);
  max-width: 440px;
}
.contact-info { margin-top: 2rem; }
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: baseline;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}
.contact-info-item strong {
  min-width: 90px;
  color: var(--text);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.contact-info-item span {
  color: var(--text-soft);
}

.contact-form {
  display: grid;
  gap: 1.2rem;
  padding: 2.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: var(--card-strong);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
}
.form-label {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  display: block;
  margin-bottom: 0.4rem;
}
.contact-form label {
  display: block;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-warm);
  box-shadow: 0 0 0 3px rgba(176, 137, 104, 0.15);
}

.checkbox-label {
  display: flex !important;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 0.25rem;
  accent-color: var(--accent-warm);
}
.checkbox-label a {
  text-decoration: underline;
  color: var(--accent);
}

/* Honeypot -- versteckt fuer Menschen */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-required {
  color: var(--accent-warm);
  font-weight: 400;
}

.form-feedback {
  padding: 1rem 1.2rem;
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  line-height: 1.5;
  display: none;
}
.form-feedback--success {
  display: block;
  background: rgba(76, 140, 74, 0.12);
  border: 1px solid rgba(76, 140, 74, 0.3);
  color: #3a6e38;
}
.form-feedback--error {
  display: block;
  background: rgba(180, 60, 50, 0.1);
  border: 1px solid rgba(180, 60, 50, 0.25);
  color: #9a3a32;
}
.button--loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ----------------------------------------
   Footer
   ---------------------------------------- */
.site-footer {
  background: var(--bg-deep);
  color: rgba(254, 249, 243, 0.8);
  padding: 4rem 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(254, 249, 243, 0.1);
}
.footer-brand img {
  width: 140px;
  margin-bottom: 0.8rem;
}
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(254, 249, 243, 0.5);
}
.footer-nav,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-nav strong,
.footer-legal strong {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(254, 249, 243, 0.4);
  margin-bottom: 0.3rem;
}
.footer-nav a,
.footer-legal a {
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.footer-nav a:hover,
.footer-legal a:hover { opacity: 1; }

.footer-bottom { padding: 1.5rem 0; }
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(254, 249, 243, 0.35);
  margin: 0;
}

/* ----------------------------------------
   Lightbox
   ---------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 15, 12, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  opacity: 1;
  pointer-events: auto;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.2s ease, color 0.2s ease;
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.lightbox-close {
  top: 1.5rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev,
.lightbox-next {
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ----------------------------------------
   Legal Pages (Impressum / Datenschutz)
   ---------------------------------------- */
.legal-page {
  padding: 8rem 0 5rem;
  min-height: 80vh;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
}
.legal-page h2 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-page p,
.legal-page li {
  color: var(--text-soft);
  max-width: 700px;
}
.legal-page ul {
  padding-left: 1.2rem;
}
.legal-page a {
  color: var(--accent);
  text-decoration: underline;
}

/* ----------------------------------------
   Scroll Reveal
   ---------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  transform: translateX(-50px) translateY(0);
}
.reveal-left.visible {
  transform: translateX(0) translateY(0);
}
.reveal-right {
  transform: translateX(50px) translateY(0);
}
.reveal-right.visible {
  transform: translateX(0) translateY(0);
}

/* ----------------------------------------
   Reduced Motion
   ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ----------------------------------------
   Responsive -- Tablet
   ---------------------------------------- */
@media (max-width: 980px) {
  .section { padding: 5rem 0; }
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .hero-content { max-width: 100%; }

  .intro-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about-features {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-row,
  .service-row-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .service-row-reverse .service-image,
  .service-row-reverse .service-text { order: 0; }

  .service-text p,
  .about-text p,
  .contact-text p { max-width: 100%; }

  .gallery-grid { columns: 2; }
  .process-grid { grid-template-columns: 1fr 1fr; }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .footer-brand { grid-column: 1 / -1; }
}

/* ----------------------------------------
   Responsive -- Mobile
   ---------------------------------------- */
@media (max-width: 640px) {
  .container { width: min(calc(100% - 1.5rem), var(--container)); }
  .section { padding: 4rem 0; }

  h1 { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  h2 { font-size: clamp(1.7rem, 6vw, 2.5rem); }

  .hero { min-height: 500px; }
  .hero-bg { object-position: center 40%; }
  .hero-content { padding-bottom: 5vh; }
  .hero-subtitle { font-size: 1rem; }

  .intro-grid { gap: 2rem; }
  .intro-image img { max-height: 450px; }
  .service-image img { aspect-ratio: 3 / 2; }

  .about-features { grid-template-columns: 1fr; }
  .gallery-grid { columns: 2; gap: 0.5rem; }
  .process-grid { grid-template-columns: 1fr; }
  .testimonial-track { min-height: 340px; }

  .contact-form { padding: 1.5rem; }

  .marquee-band::before,
  .marquee-band::after { width: 3rem; }
  .marquee-track span { font-size: 1rem; padding: 0.4rem 1rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 0.8rem; right: 0.8rem; }
  .lightbox-prev,
  .lightbox-next { width: 40px; height: 40px; }
}
