/* ============================================================
   FOTOBOX KIRCHHEIM  –  style.css
   ============================================================

   Inhaltsverzeichnis
   ------------------
   0.  Google Fonts (Lato)
   1.  Design Tokens     (CSS Custom Properties)
   2.  Reset & Base
   3.  Typografie-Helfer
   4.  Buttons
   5.  Navigation
   6.  Hero – Splitscreen
   7.  Hero – Blitz-Animation
   8.  Hero – Badges
   9.  Hero – Vorteils-Checkboxen
   10. Stats-Bar
   11. Features
   12. Pricing Splitscreen
   13. FAQ
   14. Kontakt / Buchung
   15. Footer
   16. Mobile Sticky Bar
   17. Responsive Tablet   (max-width: 1024px)
   18. Responsive Mobile   (max-width: 768px)
   19. Responsive Small    (max-width: 480px)

   ============================================================ */


/* ============================================================
   0. LOKALE SCHRIFTEN – Lato (DSGVO-konform, kein Google-Kontakt)
   ============================================================ */

@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-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  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;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-700i.woff2') format('woff2');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-900.woff2') format('woff2');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Lato';
  src: url('../fonts/lato-900i.woff2') format('woff2');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}


/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */

:root {
  --font-sans:  'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI",
                Helvetica, Arial, sans-serif;
  --font-serif: 'Lato', -apple-system, BlinkMacSystemFont, "Segoe UI",
                Helvetica, Arial, sans-serif;

  --accent:      #E8A87C;
  --accent-mid:  #D4845A;
  --accent-dark: #B5633A;

  --bg:       #FFFFFF;
  --bg-soft:  #FAF8F6;
  --bg-warm:  #F5EDE5;
  --split-bg: #F7F2EE;

  --text:      #1C1410;
  --text-mid:  #5A4A3C;
  --text-muted:#9C8878;

  --border: #EDE5DD;

  --nav-height: 64px;
  --max-width:  1400px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 20px;
}


/* Abschnitts-Beschreibung – versteckt wenn leer, sichtbar wenn befüllt */
p.section-desc-hidden:empty { display: none; }
p.section-desc-hidden { display: block; }

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a   { color: inherit; }


/* ============================================================
   3. TYPOGRAFIE-HELFER
   ============================================================ */

.label {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-mid);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.heading {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.015em;
}

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

/* ── Globale Überschriften-Hierarchie ── */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text);
}

h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.018em;
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h4 {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  line-height: 1.25;
  letter-spacing: -0.005em;
  font-weight: 700;
}

h5 {
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

h6 {
  font-size: 0.925rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* Kursiv in Überschriften = Akzentfarbe */
h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--accent-mid);
}

/* Fließtext */
p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* Lead-Text (größerer Einstiegstext) */
.lead {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--text-mid);
  font-weight: 400;
}

/* Kleine Hinweistexte */
.text-small {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ============================================================
   4. BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--r-sm);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  line-height: 1;
  transition: background 0.2s, transform 0.15s, border-color 0.2s, color 0.2s;
}

.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: #fff;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.btn-block {
  display: block;
  text-align: center;
}


/* ============================================================
   5. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  height: var(--nav-height);
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.93);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-logo {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  margin-right: auto;
}
.nav-logo span { color: var(--accent-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-links .nav-cta {
  background: var(--text);
  color: #fff;
  padding: 0.45rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.nav-links .nav-cta:hover {
  background: var(--accent-dark);
  color: #fff;
}


/* ============================================================
   6. HERO – SPLITSCREEN
   ============================================================ */

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 82vh;
  padding-top: var(--nav-height);
}

/* Linke Texthälfte */
.hero-text {
  padding: 5rem 4rem 5rem 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bg);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-mid);
  font-weight: 700;
  margin-bottom: 1.6rem;
}

.eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.hero-h1 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
  margin-bottom: 0.3rem;
}

.hero-sub {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-mid);
  margin-bottom: 1.5rem;
}

.hero-sub span {
  color: var(--accent-dark);
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 420px;
  margin-bottom: 1.5rem;
}

.hero-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-val {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--text);
  display: block;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.2rem;
}

/* Rechte Bildhälfte */
.hero-image {
  position: relative;
  background: var(--split-bg);
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 60px;
  background: linear-gradient(to right, var(--bg), transparent);
  z-index: 2;
  pointer-events: none;
}


/* ============================================================
   7. HERO – BLITZ-ANIMATION
   ============================================================ */

.flash-layer {
  position: absolute;
  top: 10%; left: 12%;
  width: 73%; height: 43%;
  z-index: 3;
  pointer-events: none;
  border-radius: 6px;
  overflow: hidden;
}

.flash-layer::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 60%,
    rgba(255,255,255,.95) 0%,
    rgba(255,255,255,.6)  25%,
    transparent           70%);
  opacity: 0;
  animation: camFlash 3.5s ease-in-out infinite;
}

.flash-layer::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 55% 60%,
    rgba(255,240,180,.55) 0%,
    rgba(255,220,130,.2)  40%,
    transparent           70%);
  opacity: 0;
  animation: camGlow 3.5s ease-in-out infinite;
}

@keyframes camFlash {
  0%, 37% { opacity: 0; }
  40%      { opacity: 1; }
  43%      { opacity: .15; }
  45%      { opacity: .9; }
  48%      { opacity: 0; }
  100%     { opacity: 0; }
}

@keyframes camGlow {
  0%, 47% { opacity: 0; }
  55%      { opacity: .8; }
  80%      { opacity: .3; }
  100%     { opacity: 0; }
}

.lens-flare {
  position: absolute;
  top:  calc(10% + 43% * 0.56);
  left: calc(12% + 73% * 0.52);
  z-index: 4;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.lf-core {
  width: 18px; height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle,
    #fff 0%, rgba(255,240,150,.8) 50%, transparent 100%);
  opacity: 0;
  animation: lfCore 3.5s ease-in-out infinite;
}

.lf-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.6);
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) scale(0);
  opacity: 0;
}

.lf-ring-1 {
  width: 40px; height: 40px;
  animation: lfRing 3.5s ease-in-out infinite .02s;
}
.lf-ring-2 {
  width: 70px; height: 70px;
  border-color: rgba(255,220,100,.35);
  animation: lfRing 3.5s ease-in-out infinite .06s;
}
.lf-ring-3 {
  width: 110px; height: 110px;
  border-color: rgba(255,200,80,.18);
  animation: lfRing 3.5s ease-in-out infinite .12s;
}

.lf-streak {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 300px; height: 2px;
  background: linear-gradient(to right,
    transparent             0%,
    rgba(255,240,180,.25)   20%,
    rgba(255,255,255,.7)    48%,
    rgba(255,255,255,.7)    52%,
    rgba(255,240,180,.25)   80%,
    transparent             100%);
  opacity: 0;
  animation: lfStreak 3.5s ease-in-out infinite;
}

@keyframes lfCore {
  0%, 37% { opacity: 0; transform: scale(.3); }
  40%      { opacity: 1; transform: scale(1.4); }
  44%      { opacity: .6; transform: scale(.8); }
  46%      { opacity: 1; transform: scale(1.2); }
  50%      { opacity: .4; transform: scale(.6); }
  58%      { opacity: 0; }
  100%     { opacity: 0; }
}

@keyframes lfRing {
  0%, 38% { opacity: 0; transform: translate(-50%,-50%) scale(0); }
  42%      { opacity: .8; transform: translate(-50%,-50%) scale(1); }
  65%      { opacity: 0; transform: translate(-50%,-50%) scale(1.8); }
  100%     { opacity: 0; transform: translate(-50%,-50%) scale(1.8); }
}

@keyframes lfStreak {
  0%, 39% { opacity: 0; }
  42%      { opacity: 1; }
  50%      { opacity: .5; }
  60%      { opacity: 0; }
  100%     { opacity: 0; }
}


/* ============================================================
   8. HERO – POLAROID CARD
   ============================================================ */

.polaroid-card {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: calc(100% - 3rem);
  max-width: 340px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 18px;
  box-shadow:
    0 8px 32px rgba(28, 20, 16, 0.18),
    0 2px 8px rgba(28, 20, 16, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.9);
  overflow: hidden;
  animation: polaroidReveal 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) 1.2s both;
}

@keyframes polaroidReveal {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(24px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

/* Shutter-Blenden */
.polaroid-shutter {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.shutter-blade {
  position: absolute;
  background: #1C1410;
}

.sb-top    { top: 0; left: 0; right: 0; height: 50%; transform-origin: top center;    animation: shutterV 0.55s cubic-bezier(0.77,0,0.18,1) 1.2s both; }
.sb-bottom { bottom: 0; left: 0; right: 0; height: 50%; transform-origin: bottom center; animation: shutterV 0.55s cubic-bezier(0.77,0,0.18,1) 1.2s both; }
.sb-left   { top: 0; left: 0; bottom: 0; width: 50%; transform-origin: left center;   animation: shutterH 0.55s cubic-bezier(0.77,0,0.18,1) 1.2s both; }
.sb-right  { top: 0; right: 0; bottom: 0; width: 50%; transform-origin: right center;  animation: shutterH 0.55s cubic-bezier(0.77,0,0.18,1) 1.2s both; }

@keyframes shutterV {
  0%   { transform: scaleY(1); opacity: 1; }
  100% { transform: scaleY(0); opacity: 0; }
}
@keyframes shutterH {
  0%   { transform: scaleX(1); opacity: 1; }
  100% { transform: scaleX(0); opacity: 0; }
}

/* Card-Inhalt */
.polaroid-content {
  padding: 1.1rem 1.4rem 1.2rem;
  position: relative;
  z-index: 1;
}

.polaroid-top {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.polaroid-price {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.03em;
}

.polaroid-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.polaroid-duration {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.polaroid-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 0.6rem;
}

.polaroid-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.polaroid-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.polaroid-tag {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--bg-warm);
  color: var(--accent-dark);
  border: 1px solid rgba(212, 132, 90, 0.2);
  letter-spacing: 0.02em;
}




/* ============================================================
   9. HERO – VORTEILS-CHECKBOXEN
   ============================================================ */

.hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  font-weight: 400;
}

.hero-benefit-check {
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1.5px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-benefit-check::before {
  content: '';
  display: block;
  width: 5px;
  height: 9px;
  border: 2px solid var(--accent-dark);
  border-top: none;
  border-left: none;
  transform: rotate(45deg) translate(-1px, -1px);
}


/* ============================================================
   10. STATS-BAR
   ============================================================ */

.stats-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.stats-item {
  text-align: center;
  padding: 0.5rem 2.5rem;
  border-right: 1px solid var(--border);
}
.stats-item:last-child { border-right: none; }

.stats-num {
  font-family: var(--font-sans);
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-dark);
  display: block;
  line-height: 1;
}

.stats-lbl {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-top: .3rem;
}


/* ============================================================
   11. FEATURES
   ============================================================ */

.features {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: 3rem;
}

.feat-card {
  padding: 2rem 1.75rem;
  border-right: 1px solid var(--border);
  background: var(--bg);
  transition: background .2s;
}
.feat-card:last-child { border-right: none; }
.feat-card:hover      { background: var(--bg-soft); }

.feat-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.feat-card h3 {
  font-size: .93rem;
  font-weight: 700;
  margin-bottom: .45rem;
}

.feat-card p {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.65;
}


/* ============================================================
   12. VORLAGEN / RAHMEN
   ============================================================ */

.vorlagen {
  padding: 5rem 2.5rem;
  background: var(--bg-soft);
}

.vorlagen-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.vorlagen-header {
  max-width: 680px;
  margin-bottom: 3.5rem;
}

.vorlagen-intro {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.vorlagen-note {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent-mid);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.vorlagen-note-icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.vorlagen-note strong { color: var(--text); font-weight: 700; }

.vorlagen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.vorlage-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
}

.vorlage-card:hover {
  box-shadow: 0 12px 40px rgba(60,30,10,.1);
  transform: translateY(-3px);
}

.vorlage-img-wrap {
  position: relative;
  aspect-ratio: 1024 / 724;
  overflow: hidden;
  background: var(--bg-soft);
}

.vorlage-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.vorlage-card:hover .vorlage-img-wrap img {
  transform: scale(1.03);
}

.vorlage-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--text);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.vorlage-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-mid);
  text-align: center;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--border);
}

.vorlagen-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  flex-wrap: wrap;
}

.vorlagen-cta p {
  font-size: 0.95rem;
  color: var(--text-mid);
  max-width: 500px;
  margin: 0;
}


/* ============================================================
   13. PRICING SPLITSCREEN
   ============================================================ */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

.pricing-left {
  background: var(--text);
  color: #fff;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pricing-left .label     { color: var(--accent); }
.pricing-left .heading   { color: #fff; margin-bottom: 1.5rem; }
.pricing-left > p {
  font-size: .95rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 340px;
  margin-bottom: 2rem;
}

.pricing-right {
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
}

.price-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 2.5rem 3rem;
  box-shadow: 0 20px 60px rgba(60,30,10,.1);
  width: 100%;
  max-width: 440px;
}

.price-card-name {
  font-size: .75rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
  margin-bottom: 1rem;
}

.price-card-amount {
  font-family: var(--font-sans);
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
}

.price-card-amount sup {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 2px;
}

.price-card-duration {
  font-size: .83rem;
  color: var(--text-muted);
  margin-top: .3rem;
  margin-bottom: 1.5rem;
}

.price-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 1.5rem;
}

.price-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}

.price-list li {
  font-size: .875rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .65rem;
}

.price-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%;
  background: var(--bg-warm);
  color: var(--accent-dark);
  font-size: .62rem;
  font-weight: 700;
}

.price-note {
  font-size: .7rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: .75rem;
  font-style: italic;
}


/* ============================================================
   13. FAQ
   ============================================================ */

.faq {
  padding: 5rem 2.5rem;
  background: var(--bg-soft);
}

.faq-inner {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer;
}

.faq-q {
  padding: 1.4rem 0;
  font-size: .95rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  user-select: none;
}

.faq-toggle {
  width: 28px; height: 28px; min-width: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--text-mid);
  flex-shrink: 0;
  transition: background .2s, border-color .2s, color .2s;
}

.faq-item.open .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.faq-a {
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 1.25rem;
}

.faq-a a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}


/* ============================================================
   14. KONTAKT / BUCHUNG
   ============================================================ */

.contact {
  padding: 5rem 2.5rem;
  background: var(--bg);
}

.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

.contact-top h2   { margin-bottom: 1rem; }
.contact-top > div > p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.contact-chips {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-chip {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--bg-soft);
  font-size: .875rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: border-color .2s, background .2s;
}

.contact-chip:hover {
  border-color: var(--accent);
  background: var(--bg-warm);
}

.contact-chip .icon { font-size: 1.1rem; flex-shrink: 0; }
.contact-chip strong { color: var(--text); font-weight: 700; display: block; }
.contact-chip span   { font-size: .75rem; color: var(--text-muted); }

/* Mini-Preisbox */
.mini-price {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

.mini-price-amount {
  font-family: var(--font-sans);
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  color: var(--text);
  margin-bottom: .25rem;
}

.mini-price-duration {
  font-size: .83rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.mini-price ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.mini-price ul li {
  font-size: .85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: .5rem;
}

.mini-price ul li::before {
  content: '✓';
  color: var(--accent-dark);
  font-weight: 700;
  font-size: .8rem;
}

.mini-price-note {
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: 1rem;
  font-style: italic;
}

/* iFrame */
.iframe-wrap {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(60,30,10,.07);
}

.iframe-header {
  padding: 1.1rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: .75rem;
}

.iframe-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
}

.iframe-title {
  font-size: .875rem;
  font-weight: 700;
  color: var(--text);
}

.iframe-sub {
  font-size: .8rem;
  color: var(--text-muted);
  margin-left: auto;
}

.iframe-wrap iframe {
  display: block;
  width: 100%;
  border: none;
}


/* ============================================================
   15. FOOTER
   ============================================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  background: var(--bg);
}

.footer p { font-size: .8rem; color: var(--text-muted); }

.footer-links { display: flex; gap: 1.5rem; }

.footer-links a {
  font-size: .8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color .2s;
}
.footer-links a:hover { color: var(--text); }


/* ============================================================
   16. MODAL
   ============================================================ */

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(20, 10, 5, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-box {
  background: var(--bg);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(20,10,5,.3);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.25s ease;
  overflow: hidden;
}

.modal-overlay.open .modal-box {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 1.75rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.modal-title {
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.01em;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-mid);
  font-size: 0.85rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  font-family: var(--font-sans);
}

.modal-close:hover {
  background: var(--bg-warm);
  border-color: var(--accent);
  color: var(--text);
}

.modal-body {
  padding: 1.75rem;
  overflow-y: auto;
  flex: 1;
  scroll-behavior: smooth;
}

.modal-body h3 {
  font-size: 0.95rem;
  font-weight: 900;
  color: var(--text);
  margin-top: 1.75rem;
  margin-bottom: 0.4rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}

.modal-body h3:first-child {
  margin-top: 0;
}

.modal-body h4 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-mid);
  margin-top: 1rem;
  margin-bottom: 0.3rem;
}

.modal-body p {
  font-size: 0.845rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.modal-body a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.modal-body strong {
  color: var(--text);
  font-weight: 700;
}

@media (max-width: 768px) {
  .modal-overlay { padding: 0; align-items: flex-end; }
  .modal-box {
    max-height: 90vh;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    transform: translateY(40px);
  }
  .modal-overlay.open .modal-box { transform: translateY(0); }
}


/* ============================================================
   17. COOKIE BANNER & IFRAME PLACEHOLDER
   ============================================================ */

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 500;
  width: calc(100% - 3rem);
  max-width: 780px;
  background: var(--text);
  color: #fff;
  border-radius: var(--r-md);
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  opacity: 0;
}

.cookie-banner.visible {
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
  opacity: 1;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  flex-wrap: wrap;
}

.cookie-banner-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

.cookie-banner-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  flex: 1;
  min-width: 200px;
  margin: 0;
}

.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-banner-btn {
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--r-sm);
  padding: 0.55rem 1.25rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.cookie-banner-btn:hover {
  background: var(--accent-dark);
}

/* iFrame Placeholder */
.iframe-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
  background: var(--bg-soft);
  gap: 0.85rem;
}

.iframe-placeholder-icon {
  font-size: 2.5rem;
  margin-bottom: 0.25rem;
}

.iframe-placeholder-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.iframe-placeholder-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 440px;
  line-height: 1.7;
  margin: 0;
}

.iframe-placeholder-text a {
  color: var(--accent-dark);
  text-decoration: underline;
}

.iframe-placeholder-text strong {
  color: var(--text-mid);
  font-weight: 700;
}


/* ============================================================
   17. MOBILE STICKY BAR
   ============================================================ */

.mobile-bar { display: none; }


/* ============================================================
   17. RESPONSIVE – TABLET (max-width: 1024px)
   ============================================================ */

@media (max-width: 1024px) {

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

  .feat-card:nth-child(2) { border-right: none; }
  .feat-card:nth-child(1),
  .feat-card:nth-child(2) { border-bottom: 1px solid var(--border); }

  .price-card { max-width: 380px; padding: 2rem; }
}


/* ============================================================
   18. RESPONSIVE – MOBILE (max-width: 768px)
   ============================================================ */

@media (max-width: 768px) {

  /* Nav */
  .nav { padding: 0 1.25rem; }
  .nav-links { display: none; }

  /* Hero gestapelt */
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-text  { order: 2; padding: 2.5rem 1.25rem 2rem; }
  .hero-image { order: 1; height: 55vw; min-height: 260px; }
  .hero-image::before { width: 0; }

  .hero-h1   { font-size: 2.2rem; }
  .hero-desc { font-size: .95rem; max-width: 100%; }

  .hero-btns .btn { padding: .75rem 1.4rem; font-size: .875rem; }

  .hero-stats { gap: 1.25rem; }
  .stat-val   { font-size: 1.2rem; }

  /* Polaroid Card */
  .polaroid-card { bottom: 1.25rem; max-width: 260px; }
  .polaroid-price { font-size: 1.5rem; }

  /* Benefits */
  .hero-benefits { margin-bottom: 1.5rem; }

  /* Badges kleiner */
  .badge-price { bottom: 1rem; left: 1rem; padding: .75rem 1rem; min-width: 110px; }
  .badge-price-val { font-size: 1.8rem; }
  .badge-events { bottom: 1rem; left: calc(1rem + 110px + 0.6rem); padding: .7rem .9rem; }
  .badge-chips { flex-direction: column; gap: 0.3rem; }

  /* Stats: 2×2 Raster */
  .stats-item {
    padding: .75rem 1.25rem;
    border-right: none;
    border-bottom: 1px solid var(--border);
    width: 50%;
  }
  .stats-item:nth-child(odd)  { border-right: 1px solid var(--border); }
  .stats-item:nth-child(3),
  .stats-item:nth-child(4)    { border-bottom: none; }

  /* Vorlagen */
  .vorlagen { padding: 3rem 1.25rem; }
  .vorlagen-grid { grid-template-columns: 1fr; gap: 1rem; }
  .vorlagen-cta { flex-direction: column; align-items: flex-start; padding: 1.5rem; }

  /* Features: 1 Spalte */
  .features { padding: 3rem 1.25rem; }
  .features-grid { grid-template-columns: 1fr; border-radius: var(--r-md); }
  .feat-card { border-right: none; border-bottom: 1px solid var(--border); }
  .feat-card:last-child { border-bottom: none; }

  /* Pricing: gestapelt */
  .pricing { grid-template-columns: 1fr; }
  .pricing-left  { padding: 3rem 1.25rem; }
  .pricing-right { padding: 2.5rem 1.25rem; }
  .price-card    { max-width: 100%; padding: 2rem 1.5rem; }

  /* FAQ */
  .faq { padding: 3rem 1.25rem; }

  /* Kontakt */
  .contact { padding: 3rem 1.25rem; }
  .contact-top { grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }

  .iframe-wrap iframe { height: 600px; }
  .iframe-sub { display: none; }

  /* Footer */
  .footer {
    flex-direction: column;
    text-align: center;
    padding-bottom: calc(1.5rem + 74px + env(safe-area-inset-bottom));
  }

  /* Mobile Sticky Bar */
  .mobile-bar {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 400;
    padding: .9rem 1.25rem;
    padding-bottom: calc(.9rem + env(safe-area-inset-bottom));
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border);
    box-shadow: 0 -6px 24px rgba(60,30,10,.1);
  }

  .mobile-bar a {
    display: block;
    width: 100%;
    text-align: center;
    background: var(--text);
    color: #fff;
    padding: 1rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .01em;
    transition: background .2s;
  }
  .mobile-bar a:active { background: var(--accent-dark); }
}


/* ============================================================
   19. RESPONSIVE – SMALL MOBILE (max-width: 480px)
   ============================================================ */

@media (max-width: 480px) {
  .hero-h1    { font-size: 1.9rem; }
  .stats-item { padding: .75rem; }
  .stats-num  { font-size: 1.5rem; }
}
