/* ============================================================
   Landletterei – Stylesheet
   Farbwelt & Typografie 1:1 aus dem Design-Entwurf übernommen.
   ============================================================ */

:root {
  --bg:        #F5EEE1;
  --cream:     #FBF6EC;
  --cream-2:   #FDFBF5;
  --ink:       #2C2823;
  --terra:     #B45B3A;
  --terra-dk:  #99492C;
  --sage:      #7E8E6C;
  --sage-dk:   #5E6B4E;
  --pink:      #E9D4CE;
  --pink-sec:  #F4E7E2;
  --club-bg:   #EAEEE0;
  --muted:     #6E655A;
  --muted-2:   #938A7D;
  --gold:      #D4A373;
  --line:      rgba(44,40,35,0.08);

  --serif:  'Cormorant Garamond', Georgia, serif;
  --sans:   'Mulish', -apple-system, BlinkMacSystemFont, sans-serif;
  --script: 'Caveat', cursive;
  /* Schriftgrößen-Skalierung pro Rolle (1 = Standard), im Design-Tab einstellbar */
  --serif-scale: 1;
  --sans-scale: 1;
  --script-scale: 1;
}

* { box-sizing: border-box; }
/* Anker-Sprünge (#mailclub etc.) unter der sticky Kopfzeile ausrichten,
   sonst verdeckt der Header den Ziel-Abschnitt. Wert ≈ Header-Höhe im
   gescrollten Zustand (Desktop ~160px, Mobile ~90px). */
html { scroll-behavior: smooth; scroll-padding-top: 172px; }
@media (max-width: 820px) { html { scroll-padding-top: 100px; } }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: calc(16px * var(--sans-scale));
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--terra); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--terra-dk); }
::selection { background: var(--pink); color: var(--ink); }
input, textarea, select, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--terra); outline-offset: 2px; }

@keyframes ll-drift { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.wrap { overflow-x: clip; }
.container { max-width: 1240px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }

/* Handgezeichnete Deko-Elemente – schauen hinter Bildern/Karten hervor */
.hero, .intro, .club-inner, .angebot, .ueber { position: relative; }
.deko { position: absolute; pointer-events: none; user-select: none; z-index: 0; }
@media (max-width: 820px) { .deko { display: none; } }
/* Cover-Elemente über die Deko heben, damit sie nur „hervorlugt" */
.club-inner { z-index: 0; }
.club-card { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; border-radius: 40px; cursor: pointer; border: none; transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease; }
.btn-primary { background: var(--terra); color: var(--cream); padding: 16px 30px; font-size: 16px; }
.btn-primary:hover { background: var(--terra-dk); color: var(--cream); transform: translateY(-1px); }
.btn-primary.sm { padding: 13px 22px; }
.btn-outline { background: transparent; color: var(--ink); padding: 15px 28px; font-size: 16px; border: 1.5px solid rgba(44,40,35,0.22); }
.btn-outline:hover { border-color: var(--terra); color: var(--terra); }
.btn-dark { background: var(--ink); color: var(--cream); padding: 13px 24px; }
.btn-dark:hover { background: var(--terra); color: var(--cream); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,240,227,0.68);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 6px 24px rgba(44,40,35,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.35);
}
.nav-note { justify-self: start; margin: 0; font-family: var(--script); font-size: calc(22px * var(--script-scale)); color: var(--sage); font-weight: 600; line-height: 1.1; }
.nav-top { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 24px; padding: 18px 30px 14px; transition: padding .28s ease; }
.nav-logo { display: block; justify-self: center; }
.nav-logo img { height: 152px; width: auto; transition: height .28s ease; }
/* beim Scrollen: Logo auf ursprüngliche Größe + Header kompakter */
.site-header.scrolled .nav-top { padding: 8px 30px 10px; }
.site-header.scrolled .nav-logo img { height: 90px; }
.nav-menu-row { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px; padding: 0 30px 12px; }
.nav-social { justify-self: start; display: flex; align-items: center; gap: 16px; }
.nav-social a { display: inline-flex; color: var(--ink); }
.nav-social a:hover { color: var(--terra); }
.nav-links { display: flex; align-items: center; gap: 3px; flex-wrap: wrap; justify-content: center; }
.nav-link { color: var(--ink); font-weight: 600; font-size: 15px; padding: 5px 11px; border-radius: 6px; }
.nav-link:hover { color: var(--terra); background: rgba(180,91,58,0.07); }
.nav-sep { color: #C7BCA8; }
.nav-dots { height: 11px; background-image: radial-gradient(circle at center, var(--pink) 2.4px, transparent 3px); background-size: 17px 11px; background-repeat: repeat-x; background-position: center bottom; border-top: 1px solid rgba(44,40,35,0.07); }

/* mobile nav */
.nav-mobile { display: none; }
.nav-mobile-bar { display: grid; grid-template-columns: 54px 1fr 54px; align-items: center; padding: 12px 20px; transition: padding .28s ease; }
.nav-mobile-bar .nav-logo-m { justify-self: center; display: flex; }
.nav-mobile-bar img { height: 108px; width: auto; transition: height .28s ease; }
.site-header.scrolled .nav-mobile-bar { padding: 8px 20px; }
.site-header.scrolled .nav-mobile-bar img { height: 60px; }
.nav-burger { justify-self: end; background: transparent; border: 1.5px solid rgba(44,40,35,0.2); border-radius: 12px; padding: 9px 12px; cursor: pointer; color: var(--ink); font-size: 18px; line-height: 1; }
.nav-drawer { display: none; border-top: 1px solid var(--line); padding: 8px 24px 20px; flex-direction: column; gap: 4px; background: var(--bg); }
.nav-drawer.open { display: flex; }
.nav-drawer a { color: var(--ink); font-weight: 600; padding: 12px 0; border-bottom: 1px solid rgba(44,40,35,0.06); }
.nav-drawer .btn { margin-top: 10px; justify-content: center; }
.nav-drawer-social { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 16px; }
.nav-drawer-social a { color: var(--ink); display: inline-flex; }

@media (max-width: 899px) {
  .nav-desktop { display: none; }
  .nav-mobile  { display: block; }
}

/* ---------- Hero ---------- */
.hero { display: flex; flex-wrap: wrap; align-items: center; gap: 56px; padding-top: 64px; padding-bottom: 40px; }
.hero-copy { flex: 1 1 380px; min-width: 300px; }
.eyebrow-script { font-family: var(--script); font-size: calc(30px * var(--script-scale)); color: var(--terra); margin: 0 0 6px; font-weight: 600; }
.hero h1 { font-family: var(--serif); font-weight: 600; font-size: calc(clamp(40px, 6vw, 68px) * var(--serif-scale)); line-height: 1.04; letter-spacing: -0.015em; margin: 0 0 22px; }
.hero h1 em { font-style: italic; color: var(--terra); }
.hero-lead { font-size: calc(18px * var(--sans-scale)); line-height: 1.7; color: var(--muted); max-width: 520px; margin: 0 0 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-fineprint { margin: 28px 0 0; font-size: 14px; color: var(--muted-2); letter-spacing: 0.01em; }
.hero-media { flex: 1 1 380px; min-width: 300px; position: relative; }
.hero-blob { position: absolute; inset: -6% -4% -4% 6%; background: var(--pink); border-radius: 50%; z-index: 0; filter: blur(2px); opacity: .7; }
.hero-frame { position: relative; z-index: 1; border-radius: 16px; overflow: hidden; box-shadow: 0 26px 60px rgba(44,40,35,0.16); border: 6px solid var(--cream); }
.hero-frame img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1/1; }
.hero-badge { position: relative; z-index: 2; margin: -46px 0 0 -8px; width: max-content; background: var(--cream); border: 1px solid var(--line); border-radius: 14px; padding: 14px 18px; box-shadow: 0 14px 34px rgba(44,40,35,0.12); animation: ll-drift 6s ease-in-out infinite; }
.hero-badge p:first-child { margin: 0; font-family: var(--script); font-size: calc(20px * var(--script-scale)); color: var(--sage); font-weight: 600; line-height: 1; }
.hero-badge p:last-child { margin: 4px 0 0; font-size: 14px; color: var(--muted); }

/* ---------- Intro band ---------- */
.intro { max-width: 920px; margin: 0 auto; padding: 46px 24px 60px; text-align: center; }
.intro-script { font-family: var(--script); font-size: calc(26px * var(--script-scale)); color: var(--terra); margin: 0 0 8px; font-weight: 600; }
.intro-text { font-family: var(--serif); font-size: calc(clamp(23px, 3vw, 31px) * var(--serif-scale)); line-height: 1.45; margin: 0; font-weight: 500; }

/* ---------- Section headers ---------- */
.eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 12px; font-weight: 700; margin: 0 0 12px; }
.eyebrow.terra { color: var(--terra); }
.eyebrow.sage { color: var(--sage); }
.eyebrow.rose { color: #C98C86; }
.h2 { font-family: var(--serif); font-weight: 600; font-size: calc(clamp(32px, 4.4vw, 52px) * var(--serif-scale)); line-height: 1.06; letter-spacing: -0.01em; margin: 0; }

/* ---------- Mail Club ---------- */
.club { background: var(--club-bg); }
.club-inner { padding: 76px 24px; }
.club-head { display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
.club-head .lead { flex: 1 1 340px; max-width: 460px; font-size: calc(17px * var(--sans-scale)); line-height: 1.7; color: var(--sage-dk); margin: 0; }
.club-grid { display: flex; flex-wrap: wrap; gap: 40px; align-items: flex-start; }
.card { background: var(--cream); border: 1px solid var(--line); border-radius: 20px; box-shadow: 0 14px 40px rgba(44,40,35,0.07); }
.club-card { flex: 1 1 300px; min-width: 280px; padding: 30px 30px 34px; }
.club-card h3 { font-family: var(--serif); font-size: calc(25px * var(--serif-scale)); font-weight: 600; margin: 0 0 18px; }
.club-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.club-list li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; line-height: 1.5; color: #4A433B; }
.club-check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--pink); color: var(--terra); display: inline-flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; margin-top: 1px; }
.club-months { flex: 1 1 380px; min-width: 300px; }
.club-months-title { font-family: var(--script); font-size: calc(24px * var(--script-scale)); color: var(--sage); font-weight: 600; margin: 0 0 16px; }
.months-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.month figure, .month { margin: 0; }
.month-frame { border-radius: 14px; overflow: hidden; box-shadow: 0 12px 30px rgba(44,40,35,0.12); border: 4px solid var(--cream); background: var(--cream); }
.month-frame img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.month figcaption { text-align: center; margin-top: 8px; font-family: var(--script); font-size: calc(20px * var(--script-scale)); color: var(--muted); font-weight: 600; }
.plans { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 44px; }
.plan { flex: 1 1 300px; min-width: 260px; padding: 30px; display: flex; flex-direction: column; gap: 6px; }
.plan-region { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 700; color: var(--terra); margin: 0; }
.plan-price { font-family: var(--serif); font-size: calc(44px * var(--serif-scale)); font-weight: 600; margin: 4px 0 0; }
.plan-price span { font-family: var(--sans); font-size: 16px; font-weight: 500; color: var(--muted-2); }
.plan-note { font-size: 15px; color: var(--muted); margin: 2px 0 16px; }
.plan .btn { margin-top: auto; justify-content: center; }
.club-stichtag { margin: 22px 0 0; font-size: 14px; color: var(--sage); line-height: 1.6; }

/* ---------- Angebot ---------- */
.angebot { padding: 80px 24px; }
.section-head-center { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head-center p:last-child { font-size: calc(17px * var(--sans-scale)); line-height: 1.7; color: var(--muted); margin: 0; }
.section-head-center .h2 { margin: 0 0 14px; }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px; }
.leistung { display: flex; flex-direction: column; overflow: hidden; color: var(--ink); box-shadow: 0 12px 34px rgba(44,40,35,0.06); transition: transform .2s ease, box-shadow .2s ease; }
.leistung:hover { transform: translateY(-4px); box-shadow: 0 22px 48px rgba(44,40,35,0.12); color: var(--ink); }
.leistung-img { overflow: hidden; aspect-ratio: 4/3; background: var(--club-bg); }
.leistung-img img { width: 100%; height: 100%; object-fit: cover; }
.leistung-body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.leistung-body h3 { font-family: var(--serif); font-size: calc(25px * var(--serif-scale)); font-weight: 600; margin: 0; }
.leistung-body p { font-size: calc(15px * var(--sans-scale)); line-height: 1.6; color: var(--muted); margin: 0; flex: 1; }
.leistung-cta { font-weight: 600; font-size: 14px; color: var(--terra); margin-top: 6px; }

/* ---------- Galerie ---------- */
.galerie { background: var(--pink-sec); }
.galerie-inner { padding: 78px 24px; }
.galerie-head { display: flex; flex-wrap: wrap; gap: 16px; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
.galerie-head p.lead { max-width: 420px; font-size: 16px; line-height: 1.7; color: var(--muted); margin: 0; }
.masonry { columns: 3 240px; column-gap: 16px; }
.masonry button { display: block; width: 100%; padding: 0; border: none; background: none; cursor: pointer; margin: 0 0 16px; border-radius: 14px; overflow: hidden; box-shadow: 0 10px 28px rgba(44,40,35,0.10); break-inside: avoid; }
.masonry img { width: 100%; display: block; transition: transform .4s ease; }
.masonry button:hover img { transform: scale(1.04); }

/* ---------- Über mich ---------- */
.ueber { display: flex; flex-wrap: wrap; gap: 56px; align-items: center; padding: 84px 24px; }
.ueber-media { flex: 1 1 320px; min-width: 280px; position: relative; }
.ueber-blob { position: absolute; inset: 8% -5% -6% 8%; background: var(--club-bg); border-radius: 20px; z-index: 0; }
.ueber-media img:not(.deko) { position: relative; z-index: 1; width: 100%; border-radius: 18px; box-shadow: 0 22px 52px rgba(44,40,35,0.16); border: 6px solid var(--cream); }
.ueber-copy { flex: 1 1 380px; min-width: 300px; }
.ueber-copy .eyebrow-script { font-size: calc(32px * var(--script-scale)); margin: 0 0 4px; }
.ueber-copy .h2 { font-size: calc(clamp(30px, 4vw, 46px) * var(--serif-scale)); line-height: 1.08; margin: 0 0 20px; }
.ueber-copy p { font-size: calc(17px * var(--sans-scale)); line-height: 1.75; color: var(--muted); margin: 0 0 16px; }
.ueber-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

/* ---------- Kundenstimmen ---------- */
.stimmen { background: var(--club-bg); }
.stimmen-inner { padding: 76px 24px; }
.stimmen-head { text-align: center; margin-bottom: 42px; }
.stimmen-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.stimme { margin: 0; padding: 30px; display: flex; flex-direction: column; }
.stars { color: var(--gold); font-size: 18px; letter-spacing: 3px; margin-bottom: 14px; }
.stimme blockquote { margin: 0 0 20px; font-family: var(--serif); font-size: calc(21px * var(--serif-scale)); line-height: 1.45; color: var(--ink); font-style: italic; flex: 1; }
.stimme figcaption { font-size: 14px; color: var(--muted); }

/* ---------- Kontakt ---------- */
.kontakt { padding: 84px 24px; }
.kontakt-grid { display: flex; flex-wrap: wrap; gap: 56px; }
.kontakt-info { flex: 1 1 320px; min-width: 280px; }
.kontakt-info .eyebrow-script { margin: 0 0 4px; }
.kontakt-info .h2 { font-size: calc(clamp(30px, 4vw, 48px) * var(--serif-scale)); line-height: 1.08; margin: 0 0 20px; }
.kontakt-info > p { font-size: calc(17px * var(--sans-scale)); line-height: 1.75; color: var(--muted); margin: 0 0 30px; max-width: 440px; }
.kontakt-rows { display: flex; flex-direction: column; gap: 16px; }
.kontakt-row { display: flex; gap: 12px; align-items: flex-start; }
.kontakt-row .ic { flex: none; font-size: 20px; }
.kontakt-label { margin: 0; font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--muted-2); font-weight: 700; }
.kontakt-form-col { flex: 1 1 420px; min-width: 300px; }
.form-card { padding: 30px; display: flex; flex-direction: column; gap: 18px; }
.form-row { display: flex; flex-wrap: wrap; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; font-size: 14px; font-weight: 600; color: var(--ink); }
.form-field.half { flex: 1 1 180px; }
.form-field input[type=text], .form-field input[type=email], .form-field select, .form-field textarea {
  padding: 13px 14px; border: 1px solid rgba(44,40,35,0.18); border-radius: 10px; background: var(--cream-2);
  font-size: 15px; color: var(--ink); font-weight: 400;
}
.form-field textarea { resize: vertical; }
/* Selects in derselben Optik wie die Textfelder (native Browser-Optik aus, eigener Pfeil) */
.form-field select {
  appearance: none; -webkit-appearance: none; -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%232C2823' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; background-size: 12px 8px;
  padding-right: 38px; cursor: pointer;
}
.form-file input { font-size: 14px; color: var(--muted); }
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; color: var(--muted); font-weight: 400; line-height: 1.5; }
.form-consent input { margin-top: 3px; flex: none; width: 17px; height: 17px; accent-color: var(--terra); }
.form-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-error { background: #FBE9E4; border: 1px solid rgba(180,91,58,0.35); color: var(--terra-dk); border-radius: 10px; padding: 12px 14px; font-size: 14px; margin: 0; }
.form-success { background: var(--club-bg); border: 1px solid rgba(126,142,108,0.4); border-radius: 20px; padding: 40px; text-align: center; }
.form-success p.emoji { font-size: 40px; margin: 0 0 10px; }
.form-success h3 { font-family: var(--serif); font-size: calc(28px * var(--serif-scale)); font-weight: 600; margin: 0 0 10px; }
.form-success p { font-size: 16px; color: var(--sage-dk); margin: 0; }
.form-card button[type=submit] { font-size: 16px; padding: 15px 28px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #E8E0D2; }
.footer-inner { padding: 60px 24px 30px; display: flex; flex-wrap: wrap; gap: 40px; justify-content: space-between; }
.footer-brand { flex: 1 1 260px; max-width: 320px; }
.footer-logo-plate { background: var(--bg); border-radius: 14px; padding: 10px 12px; width: max-content; margin-bottom: 16px; }
.footer-logo-plate img { height: 54px; width: auto; }
.footer-brand p { font-size: 15px; line-height: 1.7; color: #B7AE9E; margin: 0; }
.footer-col p.head { text-transform: uppercase; letter-spacing: 0.16em; font-size: 12px; font-weight: 700; color: #8A8172; margin: 0 0 14px; }
.footer-col .links { display: flex; flex-direction: column; gap: 10px; font-size: 15px; }
.footer-link { color: #E8E0D2; }
.footer-link:hover { color: var(--gold); }
.footer-col .links span { color: #B7AE9E; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { padding: 20px 24px; display: flex; flex-wrap: wrap; gap: 8px; justify-content: space-between; font-size: 13px; color: #8A8172; }
.footer-admin { font-size: 12px; opacity: 0.5; }
.footer-admin a { color: inherit; }
.footer-admin a:hover { color: var(--terra); opacity: 1; }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(28,25,20,0.9); backdrop-filter: blur(6px); display: none; align-items: center; justify-content: center; padding: 28px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 86vh; object-fit: contain; border-radius: 10px; box-shadow: 0 30px 80px rgba(0,0,0,0.5); }
.lb-btn { position: absolute; background: rgba(255,255,255,0.12); border: none; color: var(--cream); border-radius: 50%; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.lb-close { top: 20px; right: 24px; width: 46px; height: 46px; font-size: 22px; }
.lb-prev { left: 20px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 24px; }
.lb-next { right: 20px; top: 50%; transform: translateY(-50%); width: 50px; height: 50px; font-size: 24px; }

/* ---------- Legal pages ---------- */
.legal { max-width: 760px; margin: 0 auto; padding: 60px 24px 80px; }
.legal h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(30px,4vw,44px); margin: 0 0 24px; }
.legal h2 { font-family: var(--serif); font-weight: 600; font-size: 24px; margin: 32px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; color: var(--muted); }
.legal a.back { display: inline-block; margin-bottom: 24px; font-weight: 600; }

/* ============ Cookie-/Consent-Hinweis + Consent-Gate für externe Medien ============ */
.cookie-banner{position:fixed;left:16px;right:16px;bottom:16px;z-index:1000;max-width:560px;margin:0 auto;background:var(--cream);border:1px solid rgba(44,40,35,.14);border-radius:18px;box-shadow:0 20px 54px rgba(44,40,35,.24);padding:22px 24px}
.cookie-banner[hidden]{display:none}
.cookie-banner h2{font-family:var(--serif);font-weight:600;font-size:20px;margin:0 0 8px}
.cookie-banner p{color:var(--muted);font-size:14.5px;line-height:1.6;margin:0 0 14px}
.cookie-banner a{font-weight:600}
.cookie-banner .cb-actions{display:flex;gap:10px;flex-wrap:wrap}
.cookie-banner .cb-actions .btn{padding:12px 20px;font-size:15px;justify-content:center;flex:1 1 auto}
.cookie-banner .cb-actions .btn-outline{padding:11px 19px}
@media(max-width:480px){.cookie-banner{padding:18px}.cookie-banner .cb-actions .btn{width:100%;flex:1 1 100%}}

/* Consent-Gate: Platzhalter statt direkt geladenem YouTube/Vimeo/Instagram-Embed */
.ext-media{margin:0 auto}
.ext-media-ph{display:flex;flex-direction:column;align-items:center;justify-content:center;gap:12px;text-align:center;background:var(--club-bg,#F3EDE1);border:1.5px dashed rgba(44,40,35,.22);border-radius:18px;padding:34px 24px;min-height:180px}
.ext-media-ph .em{font-size:32px;line-height:1}
.ext-media-ph p{margin:0;color:var(--muted);font-size:14.5px;line-height:1.55;max-width:420px}
.ext-media-ph strong{color:var(--ink)}
.ext-media-ph label{display:inline-flex;align-items:center;gap:7px;font-size:13px;color:var(--muted-2);cursor:pointer}


/* ---- Video in Bild-Slots (Frontend-Drop): gleiche Optik wie img ---- */
video{max-width:100%;display:block}
.hero-frame video{width:100%;height:100%;object-fit:cover;aspect-ratio:1/1}
.month-frame video{width:100%;aspect-ratio:3/4;object-fit:cover}
.leistung-img video{width:100%;height:100%;object-fit:cover}
.masonry video{width:100%;display:block;transition:transform .4s ease}
.masonry button:hover video{transform:scale(1.04)}
.ueber-media video:not(.deko){position:relative;z-index:1;width:100%;border-radius:18px;box-shadow:0 22px 52px rgba(44,40,35,.16);border:6px solid var(--cream)}
