:root {
  color-scheme: light;
  --ivory: #ffffff;
  --paper: #ffffff;
  --ink: #141414;
  --ink-soft: #454545;
  --muted: #6e6e6e;
  --accent: #141414;
  --accent-soft: #f2f2f0;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.28);
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.06);

  /* Rückwärtskompatible Aliase, damit ältere Regeln weiter funktionieren */
  --sand: var(--accent-soft);
  --linen: var(--ivory);
  --cream: var(--paper);
  --clay: var(--accent);
  --muted: var(--ink-soft);
  --sage: var(--accent);
  --rose: var(--accent);
  --blush: var(--accent-soft);
  --petal: var(--accent-soft);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Karla", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .panel h2, .quote-panel strong {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 56px;
}

.hero {
  min-height: 38vh;
  display: grid;
  grid-template-columns: 0.7fr 2fr 1fr;
  gap: 28px;
  align-items: end;
  padding: 48px 0 36px;
}

.brand-mark {
  width: 104px;
  height: 104px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  color: var(--accent);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.9rem;
  letter-spacing: 0;
}

.eyebrow,
.summary-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.74rem;
  color: var(--accent);
  font-weight: 600;
  font-family: "Karla", sans-serif;
}

.hero h1 {
  margin: 0;
  max-width: 640px;
  font-weight: 500;
  line-height: 1.05;
  font-size: clamp(2.6rem, 5vw, 4.9rem);
}

.hero p {
  max-width: 650px;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.7;
}

.quote-panel,
.summary,
.panel {
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-panel {
  border-radius: 6px;
  padding: 24px;
}

.quote-panel span,
.summary-block span {
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.quote-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.25rem;
}

.quote-panel p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.season-tips {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.season-tip strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 3px;
}

.season-tip p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.checkbox-group-field span {
  display: block;
  margin-bottom: 10px;
}

.checkbox-group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.checkbox-option {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.88rem;
  cursor: pointer;
}

.checkbox-option input {
  accent-color: var(--ink);
}

.checkbox-option:has(input:checked) {
  border-color: var(--ink);
  background: var(--accent-soft);
}

.reveal-field {
  margin-top: 12px;
}

.reveal-field.is-hidden,
[data-general-field].is-hidden {
  display: none;
}

.workspace {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.summary {
  position: sticky;
  top: 20px;
  border-radius: 6px;
  padding: 24px;
}

#totalPrice {
  display: block;
  font-family: Georgia, serif;
  font-size: 3.2rem;
  line-height: 1;
}

.summary-note {
  color: var(--muted);
  line-height: 1.55;
}

.summary-block {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid var(--line);
}

.summary-block strong {
  display: block;
  margin-top: 6px;
}

#riskList {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.5;
}

.calculator {
  display: grid;
  gap: 20px;
}

.panel {
  border-radius: 6px;
  padding: 28px;
}

.panel-heading {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.panel-heading > span {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--clay);
  font-weight: 700;
}

.panel h2 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

.panel-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.choice-card,
.addon-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.46);
  border-radius: 6px;
  padding: 16px;
  cursor: pointer;
  color: var(--ink);
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.choice-card:hover,
.addon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 0, 0, 0.5);
}

.choice-card.is-selected,
.addon-card:has(input:checked) {
  background: var(--accent-soft);
  border-color: var(--clay);
}

.choice-card strong,
.addon-card strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.choice-card span,
.addon-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.field-grid,
.addon-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

label {
  color: var(--muted);
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--ink);
  padding: 13px 14px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--clay);
  box-shadow: 0 0 0 4px rgba(0, 0, 0, 0.16);
}

.wide-label {
  display: block;
  margin-top: 14px;
}

.info-label > span {
  position: relative;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.info-button {
  width: 22px;
  height: 22px;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 6px;
  background: var(--petal);
  color: var(--accent);
  cursor: help;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1;
}

.info-bubble {
  position: absolute;
  z-index: 3;
  left: 0;
  top: calc(100% + 10px);
  width: min(340px, 78vw);
  padding: 14px 15px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 150ms ease, transform 150ms ease;
}

.info-label > span:hover .info-bubble,
.info-button:focus + .info-bubble {
  opacity: 1;
  transform: translateY(0);
}

.timeline-builder {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.42);
}

.wedding-flow {
  margin: 18px 0 12px;
}

.flow-group {
  padding: 16px 18px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.62);
}

.flow-group span {
  display: block;
  color: var(--accent);
  font-weight: 700;
}

.flow-group p {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.important-fields {
  margin-bottom: 18px;
}

.grouped-addons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}

.addon-group {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.34);
}

.addon-group h3 {
  margin: 0 0 12px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.timeline-meter {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
  padding: 13px 15px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.72);
}

.timeline-meter span {
  color: var(--muted);
}

.timeline-meter strong {
  color: var(--ink);
  font-weight: 700;
}

.timeline-meter p {
  margin: 0;
  color: var(--muted);
  line-height: 1.4;
}

.timeline-meter.is-warning {
  border-color: rgba(138, 90, 46, 0.42);
  background: rgba(138, 90, 46, 0.08);
}

.date-warning.is-warning {
  border-color: rgba(138, 90, 46, 0.42);
  background: rgba(138, 90, 46, 0.08);
}

.request-preview {
  margin: 20px 0 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.46);
}

.duration-warning,
.date-warning {
  margin-top: 16px;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--ink);
}

.duration-warning strong,
.date-warning strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.duration-warning p,
.date-warning p {
  margin: 0 0 12px;
  line-height: 1.5;
}

.inline-upgrade {
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
  padding: 10px 14px;
  font-weight: 600;
}

.request-preview h3 {
  margin: 0 0 10px;
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.request-preview pre {
  margin: 0;
  white-space: pre-wrap;
  color: var(--muted);
  font-family: inherit;
  line-height: 1.55;
}

.timeline-heading,
.timeline-row {
  display: grid;
  gap: 12px;
  align-items: end;
}

.timeline-heading {
  grid-template-columns: 1fr;
  margin-bottom: 14px;
}

.timeline-heading h3 {
  margin: 0;
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: 500;
}

.timeline-heading p {
  margin: 4px 0 0;
  color: var(--muted);
}

.add-timeline,
.remove-timeline {
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  background: var(--paper);
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
}

.add-timeline {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.96rem;
  font-weight: 600;
}

.add-timeline-wide {
  width: 100%;
  margin-top: 14px;
}

.timeline-items {
  display: grid;
  gap: 12px;
}

.timeline-row {
  grid-template-columns: 130px 1fr 176px;
}

.timeline-actions {
  display: grid;
  grid-template-columns: repeat(4, 38px);
  gap: 6px;
}

.timeline-actions button {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.28);
  border-radius: 6px;
  background: var(--paper);
  color: var(--accent);
  cursor: pointer;
  font-weight: 800;
}

.is-hidden {
  display: none;
}

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin: 18px 0;
  color: var(--ink);
  line-height: 1.5;
}

.check-row input {
  width: 20px;
  height: 20px;
  margin-top: 2px;
}

.submit-button,
.ghost-button,
.back-link {
  width: 100%;
  border: 0;
  border-radius: 6px;
  padding: 15px 18px;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.96rem;
  font-weight: 600;
}

.secondary-link {
  color: var(--ink);
  background: var(--paper);
  border: 1px solid rgba(0, 0, 0, 0.24);
}

.compact-hero {
  min-height: 24vh;
}

.detail-form {
  max-width: 900px;
  margin: 0 auto;
}

.submit-button {
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.submit-button:hover {
  background: #000000;
}

.ghost-button {
  margin-top: 20px;
  background: #ffffff86;
  color: var(--ink);
  border: 1px solid var(--line);
}

.back-link {
  display: inline-block;
  width: auto;
  margin-top: 18px;
  color: var(--paper);
  text-decoration: none;
  background: var(--ink);
}

.thanks-hero {
  min-height: 78vh;
  align-items: center;
}

.consent-panel > p {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 920px) {
  .hero,
  .workspace {
    grid-template-columns: 1fr;
  }

  .summary {
    position: static;
    order: 2;
  }

  .choice-grid,
  .field-grid,
  .addon-list,
  .timeline-row,
  .timeline-meter {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 560px) {
  .app-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 14px;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .panel,
  .summary,
  .quote-panel {
    border-radius: 6px;
    padding: 20px;
  }
}

/* ==========================================================================
   SITE NAVIGATION - Hamburger-Menü (Vollbild-Overlay), editorialer Look
   ========================================================================== */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px max(24px, calc((100% - 1180px) / 2));
  background: rgba(250, 248, 243, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.site-nav-brand {
  color: var(--ink);
  text-decoration: none;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
}

.nav-toggle {
  position: relative;
  width: 34px;
  height: 22px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform 240ms ease, opacity 240ms ease, top 240ms ease;
}

.nav-toggle span:nth-child(1) { top: 0; }
.nav-toggle span:nth-child(2) { top: 50%; }
.nav-toggle span:nth-child(3) { top: 100%; }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { top: 50%; transform: rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  background: var(--ivory);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 300ms ease, transform 300ms ease, visibility 0s linear 300ms;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 300ms ease, transform 300ms ease;
}

.nav-overlay-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.nav-overlay-links a {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  color: var(--ink);
  text-decoration: none;
  transition: color 160ms ease;
}

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

.nav-overlay-close {
  position: absolute;
  top: 26px;
  right: max(24px, calc((100% - 1180px) / 2));
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
}

.nav-overlay-footer {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.nav-overlay-footer .cta-button {
  margin-bottom: 14px;
}

.site-footer {
  margin-top: 60px;
  padding: 40px max(24px, calc((100% - 1180px) / 2)) 32px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--muted);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--ink);
}

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

/* ==========================================================================
   HEADER-SLIDER (3 Bilder, Startseite)
   ========================================================================== */

.hero-slider {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  min-height: 84vh;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1100ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero-slide .photo-frame {
  position: absolute;
  inset: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  min-height: 0;
}

.hero-slide .photo-frame::before,
.hero-slide .photo-frame::after {
  display: none;
}

.hero-slide .photo-frame span {
  position: absolute;
  top: 28px;
  left: max(24px, calc((100% - 1180px) / 2));
  bottom: auto;
  right: auto;
  margin: 0;
  max-width: 320px;
}

.hero-slider-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.42) 35%, rgba(0, 0, 0, 0.05) 70%, rgba(0, 0, 0, 0) 85%);
  pointer-events: none;
}

.hero-slider-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  max-width: 640px;
  margin-left: max(24px, calc((100% - 1180px) / 2));
  padding: 0 24px 64px 0;
}

.hero-slider-copy .eyebrow {
  color: #ffffff;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.hero-slider-copy h1 {
  color: #ffffff;
  margin: 0 0 14px;
  font-weight: 400;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-slider-copy p {
  color: rgba(255, 255, 255, 0.95);
  margin: 0 0 26px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}

.hero-slider-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  opacity: 0.7;
}

.hero-slider-nav.thin-arrow:hover {
  opacity: 1;
}

.hero-slider-prev { left: max(16px, calc((100% - 1180px) / 2)); }
.hero-slider-next { right: max(16px, calc((100% - 1180px) / 2)); }

.hero-slider-dots {
  position: absolute;
  z-index: 4;
  right: max(24px, calc((100% - 1180px) / 2));
  bottom: 28px;
  display: flex;
  gap: 10px;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 200ms ease, transform 200ms ease;
}

.hero-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.2);
}

@media (max-width: 720px) {
  .hero-slider {
    min-height: 68vh;
  }

  .hero-slider-nav {
    display: none;
  }
}

/* ==========================================================================
   FILMSTRIP-GALERIE MIT FEINEN PFEILEN
   ========================================================================== */

.filmstrip-section {
  padding: 24px 0 76px;
}

.filmstrip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
}

.filmstrip-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 4px 2px 14px;
}

.filmstrip-track::-webkit-scrollbar {
  display: none;
}

.filmstrip-item {
  flex: 0 0 auto;
  width: min(420px, 68vw);
  scroll-snap-align: start;
}

.filmstrip-item .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: none;
  box-shadow: none;
  background: linear-gradient(135deg, #f8f8f7, #ececea);
}

.thin-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--ink);
  opacity: 0.5;
  transition: opacity 200ms ease, transform 200ms ease;
}

.thin-arrow svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

.thin-arrow:hover {
  opacity: 1;
}

.thin-arrow.thin-arrow-prev:hover {
  transform: translateX(-2px);
}

.thin-arrow.thin-arrow-next:hover {
  transform: translateX(2px);
}

.section-heading.is-light .eyebrow {
  font-weight: 400;
  letter-spacing: 0.26em;
}

.section-heading.is-light h2 {
  font-weight: 400;
  letter-spacing: 0.01em;
}

@media (max-width: 720px) {
  .thin-arrow {
    display: none;
  }
}

/* ==========================================================================
   FOTO-PLATZHALTER
   --------------------------------------------------------------------------
   Solange noch keine echten Fotos eingebunden sind. Sobald Bilder da sind,
   einfach <div class="photo-frame"> durch <img class="photo-frame" src="..."> 
   ersetzen (gleiche Klasse, dann greifen Radius/Schatten automatisch).
   ========================================================================== */

.photo-frame {
  position: relative;
  border-radius: 6px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(0, 0, 0, 0.05), transparent 60%),
    radial-gradient(circle at 75% 80%, rgba(0, 0, 0, 0.08), transparent 55%),
    linear-gradient(135deg, #f4f4f3, #e6e6e4);
  display: flex;
  align-items: flex-end;
  min-height: 260px;
}

/* Sobald ein Platzhalter-<div> durch ein echtes <img class="photo-frame">
   ersetzt wird, greift automatisch diese Darstellung inkl. dezentem
   Schwarz-Weiß-Look - so bleiben alle echten Fotos im Studio-Look einheitlich. */
img.photo-frame {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.01);
}

/* Im Portfolio: Farbe erscheint sanft beim Hover, sonst Schwarz-Weiß */
.filmstrip-item img.photo-frame {
  transition: filter 500ms ease;
}

.filmstrip-item:hover img.photo-frame {
  filter: grayscale(0) contrast(1.02) brightness(1);
}

.photo-frame::before,
.photo-frame::after {
  content: "";
  position: absolute;
  top: 14px;
  bottom: 14px;
  width: 1px;
  background: repeating-linear-gradient(to bottom, rgba(49, 40, 32, 0.22) 0 6px, transparent 6px 14px);
}

.photo-frame::before {
  left: 14px;
}

.photo-frame::after {
  right: 14px;
}

.photo-frame span {
  display: block;
  margin: 0 30px 20px;
  padding: 10px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 0.82rem;
  font-style: italic;
  line-height: 1.4;
}

.photo-frame.portrait {
  min-height: 420px;
}

.photo-frame.square {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

/* ==========================================================================
   STARTSEITE
   ========================================================================== */

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px 0 64px;
}

.home-hero-copy h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
  font-size: clamp(2.6rem, 4.6vw, 4.2rem);
}

.home-hero-copy p {
  max-width: 480px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.home-hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.cta-primary {
  color: #ffffff;
  background: var(--ink);
  border: 1px solid var(--ink);
}

.cta-primary:hover {
  background: #000000;
}

.cta-secondary {
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
}

.cta-secondary:hover {
  border-color: var(--ink);
}

.section-heading {
  max-width: 640px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading h2 {
  margin: 8px 0 0;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.section-heading p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.about-teaser {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 48px 0 60px;
}

.about-teaser .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.about-teaser-copy h2 {
  margin: 6px 0 18px;
  font-weight: 400;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
}

.about-teaser-copy p {
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 16px;
}

.category-blocks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 8px 0 60px;
}

.category-block {
  text-align: center;
}

.category-image {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 18px;
}

.category-image .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 0;
  transition: filter 500ms ease;
}

.category-block:hover .category-image .photo-frame {
  filter: grayscale(0) contrast(1.02) brightness(1);
}

.category-block h3 {
  margin: 0 0 16px;
  font-weight: 400;
  font-size: 1.5rem;
}

.process-strip {

  padding: 40px 0 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.process-step {
  padding: 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.process-step span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: var(--sand);
  color: var(--clay);
  font-weight: 700;
  margin-bottom: 14px;
}

.process-step h3 {
  margin: 0 0 8px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.25rem;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.quote-strip {
  margin: 0 0 60px;
  padding: 48px;
  border-radius: 6px;
  text-align: center;
  background: var(--accent-soft);
  border: 1px solid var(--line);
}

.quote-strip blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.5;
  color: var(--ink);
}

.quote-strip cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing-cta {
  text-align: center;
  padding: 20px 0 70px;
}

.closing-cta h2 {
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  margin: 0 0 14px;
}

.closing-cta p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

/* ==========================================================================
   ÜBER MICH
   ========================================================================== */

.about-hero {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 44px;
  align-items: center;
  padding: 48px 0 60px;
}

.about-copy h1 {
  margin: 0 0 18px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1.12;
}

.about-copy p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 60px;
}

.value-card {
  padding: 24px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.42);
}

.value-card strong {
  display: block;
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.value-card span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ==========================================================================
   PREISE
   ========================================================================== */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding: 8px 0 40px;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
}

.pricing-card h3 {
  margin: 0 0 4px;
  font-family: Georgia, serif;
  font-weight: 500;
  font-size: 1.4rem;
}

.pricing-card .price {
  font-family: Georgia, serif;
  font-size: 1.9rem;
  color: var(--accent);
  margin: 6px 0 12px;
}

.pricing-card p {
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin: 0 0 18px;
}

.pricing-card a {
  align-self: flex-start;
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
}

.pricing-card a:hover {
  text-decoration: underline;
}

.pricing-note {
  max-width: 640px;
  margin: 0 auto 50px;
  text-align: center;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 920px) {
  .home-hero,
  .about-hero,
  .about-teaser {
    grid-template-columns: 1fr;
  }

  .category-blocks,
  .process-strip,
  .values-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   SCROLL-REVEAL
   --------------------------------------------------------------------------
   Elemente mit class="reveal" starten unsichtbar/leicht verschoben und
   blenden sich ein, sobald sie beim Scrollen in den sichtbaren Bereich
   kommen (siehe site-effects.js). Wer "reduzierte Bewegung" eingestellt hat,
   sieht alles sofort ohne Animation.
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > * {
  transition-delay: calc(var(--stagger-index, 0) * 90ms);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none;
    opacity: 1;
    transform: none;
  }
}

.category-blocks .category-block:nth-child(2) { transition-delay: 90ms; }
.category-blocks .category-block:nth-child(3) { transition-delay: 180ms; }
.process-strip .process-step:nth-child(2) { transition-delay: 90ms; }
.process-strip .process-step:nth-child(3) { transition-delay: 180ms; }
.pricing-grid .pricing-card:nth-child(2) { transition-delay: 60ms; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 120ms; }
.pricing-grid .pricing-card:nth-child(4) { transition-delay: 180ms; }
.pricing-grid .pricing-card:nth-child(5) { transition-delay: 240ms; }
.pricing-grid .pricing-card:nth-child(6) { transition-delay: 300ms; }
.pricing-grid .pricing-card:nth-child(7) { transition-delay: 360ms; }
.values-grid .value-card:nth-child(2) { transition-delay: 90ms; }
.values-grid .value-card:nth-child(3) { transition-delay: 180ms; }

/* ==========================================================================
   GALERIE (Startseite) - Masonry-Look per CSS-Columns, funktioniert ohne JS,
   fällt auf Mobile automatisch auf eine Spalte zurück.
   ========================================================================== */

.gallery-section {
  padding: 12px 0 56px;
}

.gallery-masonry {
  columns: 3;
  column-gap: 16px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 6px;
  overflow: hidden;
  cursor: zoom-in;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 220ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item .photo-frame {
  border-radius: 0;
  border: none;
  box-shadow: none;
  min-height: 0;
}

.gallery-item:nth-child(3n+1) .photo-frame { aspect-ratio: 3 / 4; }
.gallery-item:nth-child(3n+2) .photo-frame { aspect-ratio: 1 / 1; }
.gallery-item:nth-child(3n) .photo-frame { aspect-ratio: 4 / 5; }

@media (max-width: 920px) {
  .gallery-masonry {
    columns: 2;
  }
}

@media (max-width: 560px) {
  .gallery-masonry {
    columns: 1;
  }
}

/* ==========================================================================
   LIGHTBOX
   ========================================================================== */

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(30, 25, 20, 0.72);
}

.lightbox-overlay.is-open {
  display: flex;
}

.lightbox-frame {
  position: relative;
  width: min(720px, 100%);
}

.lightbox-frame .photo-frame {
  min-height: 320px;
  border-radius: 6px;
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: var(--shadow);
}

@media (max-width: 560px) {
  .lightbox-close {
    top: -46px;
    right: 0;
  }
}

/* ==========================================================================
   WIZARD (Schritt-für-Schritt-Kalkulator)
   ========================================================================== */

.wizard-step.is-hidden {
  display: none;
}

.wizard-nav {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 28px;
}

.wizard-nav .cta-button {
  margin-left: auto;
}

.wizard-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 22px;
  margin-bottom: 18px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: var(--accent-soft);
}

.wizard-chip.is-hidden {
  display: none;
}

.wizard-chip span {
  display: block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 3px;
}

.wizard-chip strong {
  font-weight: 500;
  color: var(--ink);
}

.wizard-edit {
  flex: 0 0 auto;
  background: none;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--ink);
}

.wizard-edit:hover {
  border-color: var(--ink);
}

/* ==========================================================================
   MIKRO-HINWEISE (kurze Kontext-Tipps statt großer Info-Boxen)
   ========================================================================== */

.micro-hint {
  margin-top: 16px;
  padding: 12px 16px;
  border-radius: 6px;
  background: var(--accent-soft);
  border: 1px solid var(--line);
}

.micro-hint strong {
  display: block;
  font-size: 0.86rem;
  margin-bottom: 3px;
}

.micro-hint p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ==========================================================================
   MOBILE: Assistenten-Box ausblenden, Sidebar auf das Wesentliche reduzieren
   ========================================================================== */

.summary-mobile-toggle {
  display: none;
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 860px) {
  .hero .quote-panel {
    display: none;
  }

  .workspace {
    grid-template-columns: 1fr;
  }

  .summary {
    position: static;
  }

  .summary-mobile-toggle {
    display: block;
  }

  .summary-details {
    display: none;
  }

  .summary-details.is-open {
    display: block;
    margin-top: 14px;
  }
}

/* ==========================================================================
   LEISTUNGSAUSWAHL (Hochzeit): "Was ist bei euch dabei?"
   ========================================================================== */

/* ==========================================================================
   LEISTUNGSAUSWAHL (Hochzeit): Akkordeon-Kacheln zum Auf-/Zuklappen
   ========================================================================== */

.services-selector-label {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.service-accordion-item {
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}

.service-accordion-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  cursor: pointer;
  font-size: 0.98rem;
}

.service-accordion-header input {
  accent-color: var(--ink);
}

.service-accordion-header span {
  flex: 1;
}

.accordion-chevron {
  width: 18px;
  height: 18px;
  stroke: var(--muted);
  stroke-width: 1.5;
  fill: none;
  transition: transform 220ms ease;
}

.service-accordion-header:has(input:checked) .accordion-chevron {
  transform: rotate(90deg);
}

.service-accordion-item:has(input:checked) {
  border-color: var(--ink);
}

.service-accordion-item:has(input:checked) .service-accordion-header {
  background: var(--accent-soft);
  border-bottom: 1px solid var(--line);
}

.service-accordion-body {
  padding: 20px 18px 22px;
}

.service-accordion-body.is-hidden {
  display: none;
}

.flow-group-text {
  color: var(--ink-soft);
  font-size: 0.9rem;
  margin: 0 0 14px;
}

.step-error {
  margin: 12px 0 0;
  color: #8a3a3a;
  font-size: 0.88rem;
}

.step-excluded {
  display: none;
}

.signature {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-size: 1.2rem;
  margin: 20px 0;
  color: var(--ink);
}

/* ==========================================================================
   ÜBER MICH: Bild-Trio und "Was euch erwartet"
   ========================================================================== */

.about-trio {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  padding: 8px 0 48px;
}

.about-trio .photo-frame {
  aspect-ratio: 3 / 4;
  min-height: 0;
  border: none;
  box-shadow: none;
  border-radius: 6px;
}

.expect-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
  padding: 8px 0 60px;
}

.expect-section .photo-frame {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: none;
  box-shadow: none;
  border-radius: 6px;
}

.expect-copy h2 {
  font-weight: 400;
  margin: 0 0 18px;
}

.expect-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expect-list li {
  color: var(--ink-soft);
  font-size: 1rem;
}

.expect-list li::before {
  content: "✔";
  color: var(--ink);
  margin-right: 10px;
}

@media (max-width: 820px) {
  .about-trio {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .expect-section {
    grid-template-columns: 1fr;
  }
}
