/* =========================================================
   meine-fotobox.com – Stylesheet
   Edel & stilvoll: warm-elegantes Champagner-Gold auf Tiefschwarz
   ========================================================= */

:root {
  --color-bg: #ffffff;
  --color-surface: #faf8f5;
  --color-surface-alt: #f3efe9;
  --color-text: #1a1a1a;
  --color-text-muted: #5a5a5a;
  --color-text-soft: #767676;   /* WCAG-AA-konform auf Weiß (4,5:1) */
  --color-border: #e8e3db;

  --color-dark: #0f0f10;
  --color-dark-2: #1d1d1f;

  --color-accent: #b6924c;          /* Champagne Gold */
  --color-accent-dark: #8f6f33;
  --color-accent-soft: #e9dcc0;

  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(15, 15, 16, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 15, 16, 0.08);
  --shadow-lg: 0 30px 60px rgba(15, 15, 16, 0.12);

  --container: 1200px;
  --gutter: 28px;
}

/* --- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--color-accent-dark); }
button { font-family: inherit; cursor: pointer; }
ul, ol { padding-left: 1.2em; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p  { margin: 0 0 1em; color: var(--color-text-muted); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--color-accent);
  vertical-align: middle;
  margin-right: 12px;
}

/* --- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section {
  padding: clamp(60px, 9vw, 120px) 0;
}
.section--dark {
  background: var(--color-dark);
  color: #efe8d8;
}
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #c8c2b6; }
.section--dark .eyebrow { color: var(--color-accent); }

.section--soft { background: var(--color-surface); }

.section-head {
  max-width: 720px;
  margin: 0 auto 60px;
  text-align: center;
}
.section-head p { font-size: 1.08rem; }

/* --- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1.5px solid transparent;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary {
  background: var(--color-accent-dark);   /* WCAG-AA: weißer Text 4,7:1 statt 2,9:1 */
  color: #fff;
  border-color: var(--color-accent-dark);
}
.btn--primary:hover { background: #75592a; border-color: #75592a; color: #fff; }
.btn--ghost {
  background: transparent;
  color: var(--color-text);
  border-color: var(--color-border);
}
.btn--ghost:hover { border-color: var(--color-accent); color: var(--color-accent-dark); }
.btn--light {
  background: #fff;
  color: var(--color-dark);
}
.btn--light:hover { background: var(--color-accent-soft); }
.btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.btn--outline-light:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-arrow { transition: transform .2s ease; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* --- Header / Nav (Milchglas-Menüband) -------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(180%) blur(22px);
  -webkit-backdrop-filter: saturate(180%) blur(22px);
  border-bottom: 1px solid rgba(232,227,219,.55);
  transition: background .35s ease, border-color .35s ease, padding .35s ease, box-shadow .35s ease;
}
/* Goldene Akzentlinie unten am Menüband */
.site-header::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--color-accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  box-shadow: 0 10px 30px rgba(15,15,16,.06);
}
.site-header.is-scrolled::after { opacity: .55; }

/* Schwebender Header über dunklem Hero (nur Startseite) */
body.has-dark-hero .site-header {
  position: fixed;
  left: 0; right: 0; top: 0;
  background: rgba(15,15,16,.18);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.12);
}
body.has-dark-hero .site-header .brand-name,
body.has-dark-hero .site-header .nav-links a,
body.has-dark-hero .site-header .nav-phone,
body.has-dark-hero .site-header .nav-toggle { color: #fff; }
body.has-dark-hero .site-header .brand-sub { color: rgba(255,255,255,.7); }
body.has-dark-hero .site-header .nav-links a::after { background: var(--color-accent); }
/* Wenn gescrollt: zurück auf weißes Glasband */
body.has-dark-hero .site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(232,227,219,.55);
}
body.has-dark-hero .site-header.is-scrolled .brand-name,
body.has-dark-hero .site-header.is-scrolled .nav-links a,
body.has-dark-hero .site-header.is-scrolled .nav-phone,
body.has-dark-hero .site-header.is-scrolled .nav-toggle { color: var(--color-text); }
body.has-dark-hero .site-header.is-scrolled .brand-sub { color: var(--color-text-soft); }

/* Hero rückt unter den schwebenden Header */
body.has-dark-hero .hero { margin-top: 0; }
body.has-dark-hero .hero-inner { padding-top: 180px; padding-bottom: 120px; }
@media (max-width: 700px) {
  body.has-dark-hero .hero-inner { padding-top: 140px; padding-bottom: 80px; }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 30px;
}

/* === Brand / Logo === */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--color-dark);
  transition: opacity .2s ease;
}
.brand:hover { opacity: .82; color: var(--color-dark); }
.brand-mark {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 1px rgba(15,15,16,.08));
}
.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.brand-dot { color: var(--color-accent); }
.brand-sub {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-top: 5px;
}
@media (max-width: 560px) {
  .brand-mark { width: 44px; height: 44px; }
  .brand-name { font-size: 1.2rem; }
  .brand-sub { font-size: 0.58rem; letter-spacing: 0.2em; }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -6px;
  height: 1px;
  background: var(--color-accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-phone {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.nav-phone span { color: var(--color-accent-dark); margin-right: 6px; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 8px;
  color: var(--color-dark);
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 960px) {
  .nav-links, .nav-phone { display: none; }
  .nav-toggle { display: inline-flex; }
}
/* Auf kleinen Phones: Header-CTA ausblenden (steht im Burger-Menü) */
@media (max-width: 600px) {
  .nav-cta .btn--primary { display: none; }
  .nav { padding: 12px 0; gap: 16px; }
}

/* Mobile menu (off-canvas) */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-dark);
  color: #fff;
  padding: 90px 30px 40px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.65,.05,.35,1);
  z-index: 60;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 30px; }
.mobile-menu li { border-bottom: 1px solid rgba(255,255,255,.1); }
.mobile-menu a {
  display: block;
  padding: 18px 0;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
}
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }
.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: 0;
  color: #fff;
  padding: 10px;
}
.mobile-close svg { width: 26px; height: 26px; }

body.menu-open { overflow: hidden; }

/* --- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(105deg, rgba(15,15,16,.78) 0%, rgba(15,15,16,.45) 55%, rgba(15,15,16,.25) 100%),
    url("../images/hero.jpg");
  background-image:
    linear-gradient(105deg, rgba(15,15,16,.78) 0%, rgba(15,15,16,.45) 55%, rgba(15,15,16,.25) 100%),
    image-set(url("../images/hero.webp") type("image/webp"), url("../images/hero.jpg") type("image/jpeg"));
  background-size: cover;
  background-position: center;
  z-index: -1;
  transform: scale(1.03);
}
.hero-inner { padding: 120px 0; max-width: 760px; }
.hero h1 { color: #fff; margin-bottom: 0.4em; }
.hero h1 em {
  font-style: italic;
  color: var(--color-accent);
  font-weight: 400;
}
.hero p {
  color: rgba(255,255,255,.85);
  font-size: 1.18rem;
  max-width: 560px;
  margin-bottom: 2rem;
}
.hero .eyebrow { color: var(--color-accent); }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  display: flex;
  gap: 40px;
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,.18);
  flex-wrap: wrap;
}
.hero-meta-item .num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-accent);
  line-height: 1;
}
.hero-meta-item .lbl {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-top: 6px;
  display: block;
}

/* --- Marquee/Logos --------------------------------------- */
.trust {
  padding: 28px 0;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
}
.trust-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}
.trust-inner strong { color: var(--color-text); font-weight: 600; }
.stars { color: var(--color-accent); letter-spacing: 0.1em; }

/* --- Feature grid ---------------------------------------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 900px) { .features { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .features { grid-template-columns: 1fr; } }

.feature {
  padding: 36px 30px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent-soft);
}
.feature-icon {
  width: 52px; height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  border-radius: 50%;
  margin-bottom: 18px;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-bottom: 0.4em; }
.feature p { margin: 0; font-size: 0.97rem; }

/* --- Booth cards ----------------------------------------- */
.booths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
@media (max-width: 960px) { .booths { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .booths { grid-template-columns: 1fr; } }

.booth {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.booth:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.booth-media {
  aspect-ratio: 4 / 3;
  background: var(--color-surface-alt);
  overflow: hidden;
  position: relative;
}
.booth-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.booth:hover .booth-media img { transform: scale(1.05); }
.booth-badge {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(15,15,16,.86);
  color: var(--color-accent);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
}
.booth-body { padding: 28px; display: flex; flex-direction: column; flex: 1; }
.booth-body h3 { margin: 0 0 6px; font-size: 1.5rem; }
.booth-tag {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent-dark);
  margin-bottom: 14px;
}
.booth-body p { font-size: 0.96rem; margin-bottom: 18px; }
.booth-list {
  list-style: none;
  padding: 0; margin: 0 0 22px;
  display: grid;
  gap: 6px;
}
.booth-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.booth-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 12px; height: 1px;
  background: var(--color-accent);
}
.booth-price {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}
.booth-price .from {
  font-size: 0.78rem;
  color: var(--color-text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.booth-price .amount {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--color-text);
  display: block;
}
.booth-price .amount small {
  font-size: 0.6em;
  color: var(--color-text-muted);
  font-family: var(--font-body);
}

/* --- Split sections -------------------------------------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .split { grid-template-columns: minmax(0, 1fr); gap: 40px; }
  .split--reverse .split-media { order: -1; }
}
.split-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
  background: var(--color-surface-alt);
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }

/* Farb-Varianten (z. B. Fotobox grau & weiß nebeneinander) */
.variant-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.variant { margin: 0; }
.variant picture { display: block; }
.variant img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.variant figcaption,
.video-variant figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-accent-dark);
}

/* Medien-Showcase (Videos zusätzlich zu den Produktfotos) */
.media-showcase { margin-top: clamp(40px, 6vw, 70px); }
.media-showcase-head { text-align: center; max-width: 620px; margin: 0 auto 28px; }
.media-showcase-head p { margin: 0; }

/* Video-Varianten (Fotobox grau & weiß als Loop-Videos) */
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 720px) { .video-grid { grid-template-columns: 1fr; gap: 18px; } }
.video-variant { margin: 0; }
.video-variant video,
.video-variant img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  background: var(--color-dark);
}
.split-text h2 { margin-bottom: 0.4em; }
.split-text p { font-size: 1.05rem; }
.split-list {
  list-style: none;
  padding: 0;
  margin: 25px 0 30px;
  display: grid;
  gap: 12px;
}
.split-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  color: var(--color-text);
}
.split-list li::before {
  content: "✓";
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  margin-top: 2px;
}

/* --- Process steps --------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  counter-reset: step;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }

.step {
  position: relative;
  padding: 30px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  counter-increment: step;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--color-accent);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}
.step h3 { color: #fff; font-size: 1.25rem; margin-bottom: 0.4em; }
.step p { color: rgba(255,255,255,.7); font-size: 0.95rem; margin: 0; }

/* --- Occasion tiles -------------------------------------- */
.occasions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .occasions { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .occasions { grid-template-columns: 1fr; } }
.occasion {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  display: flex;
  align-items: flex-end;
  padding: 28px;
  background-size: cover;
  background-position: center;
}
.occasion::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,16,.88) 0%, rgba(15,15,16,.1) 60%);
  z-index: -1;
  transition: opacity .3s ease;
}
.occasion:hover::after { opacity: .65; }
.occasion h3 {
  color: #fff;
  font-size: 1.6rem;
  margin: 0;
  position: relative;
}
.occasion span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 8px;
}

/* --- Testimonials ---------------------------------------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 900px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}
.testimonial .stars { font-size: 1rem; margin-bottom: 12px; display: block; }
.testimonial p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-text);
  margin-bottom: 22px;
}
.testimonial cite {
  font-style: normal;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.testimonial cite span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

/* --- FAQ ------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-q {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 24px 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.faq-q::after {
  content: "+";
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--color-accent-dark);
  transition: transform .25s ease;
  width: 22px;
  text-align: center;
}
.faq-item.is-open .faq-q::after { content: "−"; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner { padding: 0 0 24px; color: var(--color-text-muted); }

/* --- CTA banner ------------------------------------------ */
.cta-banner {
  background: linear-gradient(120deg, #14140f 0%, #2b2316 60%, #463612 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  align-items: center;
  gap: 40px;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 800px) { .cta-banner { grid-template-columns: 1fr; } }
.cta-banner h2 { color: #fff; margin: 0 0 0.4em; }
.cta-banner p { color: rgba(255,255,255,.78); margin: 0; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: flex-end; }
@media (max-width: 800px) { .cta-banner-actions { justify-content: flex-start; } }

/* --- Forms ----------------------------------------------- */
.form {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  color: var(--color-text);
}
.form-field input,
.form-field select,
.form-field textarea {
  font: inherit;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--color-text);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(182,146,76,.12);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}
.form-check input { margin-top: 4px; accent-color: var(--color-accent); }
.form-check a { color: var(--color-accent-dark); text-decoration: underline; }
.form-submit { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.form-note {
  font-size: 0.88rem;
  color: var(--color-text-soft);
}

.form-status {
  display: none;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
}
.form-status.is-success {
  display: block;
  background: #ecf6ee; color: #285c2f; border: 1px solid #cae5d0;
}
.form-status.is-error {
  display: block;
  background: #fbecec; color: #7a2b2b; border: 1px solid #f0c8c8;
}

/* Visuelle Erfolgs-Bestätigung nach dem Absenden */
.form-success {
  text-align: center;
  padding: clamp(32px, 5vw, 48px) 24px;
  background: #f1f8f2;
  border: 1px solid #cfe6cf;
  border-radius: var(--radius-md);
  animation: fs-in .4s ease both;
}
.form-success-icon { width: 72px; height: 72px; margin: 0 auto 18px; }
.form-success-icon svg { width: 100%; height: 100%; }
.form-success-icon .fs-c { fill: none; stroke: #2e7d32; stroke-width: 3; stroke-dasharray: 151; stroke-dashoffset: 151; animation: fs-circle .5s ease forwards; }
.form-success-icon .fs-k { fill: none; stroke: #2e7d32; stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 40; stroke-dashoffset: 40; animation: fs-check .35s .45s ease forwards; }
.form-success h3 { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 1.8rem); color: var(--color-dark); margin: 0 0 .35em; }
.form-success p { color: var(--color-text); margin: 0 0 .4em; }
.form-success-sub { color: var(--color-text-soft); font-size: 0.9rem; }
@keyframes fs-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes fs-circle { to { stroke-dashoffset: 0; } }
@keyframes fs-check { to { stroke-dashoffset: 0; } }

/* --- Two-col contact ------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 36px;
  border: 1px solid var(--color-border);
}
.contact-info h3 { margin-top: 0; }
.contact-info dl { margin: 0; display: grid; gap: 18px; }
.contact-info dt {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 4px;
}
.contact-info dd { margin: 0; font-size: 1.05rem; }
.contact-info a:hover { color: var(--color-accent-dark); }

/* --- Pricing table --------------------------------------- */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .price-grid { grid-template-columns: 1fr; } }
.price-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--color-dark);
  color: #fff;
  border-color: var(--color-dark);
}
.price-card--featured h3, .price-card--featured .amount { color: #fff; }
.price-card--featured p { color: rgba(255,255,255,.7); }
.price-card--featured .price-features li { color: rgba(255,255,255,.85); }
.price-card--featured .price-features li::before { background: var(--color-accent); }
.price-card--featured .ribbon {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--color-accent);
  color: var(--color-dark);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.price-card h3 { font-size: 1.6rem; margin-bottom: 6px; }
.price-card .subline { color: var(--color-text-muted); font-size: 0.95rem; margin-bottom: 24px; }
.price-card--featured .subline { color: rgba(255,255,255,.65); }
.price-card .amount {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 6px;
}
.price-card .amount small {
  font-size: 0.4em;
  font-family: var(--font-body);
  color: var(--color-text-muted);
  font-weight: 400;
}
.price-card--featured .amount small { color: rgba(255,255,255,.6); }
.price-card .from {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 26px;
}
.price-card--featured .from { color: var(--color-accent); }
.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 10px;
}
.price-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 12px; height: 1px;
  background: var(--color-accent);
}
.price-card .btn { margin-top: auto; justify-content: center; }

/* --- Hinweis-Kasten (wichtige Infos) --------------------- */
.hinweis {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--color-accent-soft);
  border: 1px solid var(--color-accent);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin: 22px 0 0;
  color: #5f4a1d;
  font-size: 0.96rem;
  line-height: 1.55;
}
.hinweis svg { flex-shrink: 0; width: 22px; height: 22px; color: var(--color-accent-dark); margin-top: 1px; }
.hinweis strong { color: var(--color-accent-dark); }
.hinweis--center { max-width: 820px; margin-left: auto; margin-right: auto; }

/* --- Paket-Liste je Produkt (Preise-Seite) --------------- */
.pkg-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.pkg-row {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.pkg-row:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.pkg-row--featured {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 1px var(--color-accent);
}
.pkg-row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
}
.pkg-row-head h3 { margin: 0; font-size: 1.35rem; }
.pkg-badge {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--color-accent-dark);
  background: var(--color-accent-soft);
  padding: 4px 9px;
  border-radius: 999px;
  margin-left: 10px;
  vertical-align: middle;
}
.pkg-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--color-accent-dark);
  white-space: nowrap;
  line-height: 1;
}
.pkg-feat {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 7px;
}
.pkg-feat li {
  position: relative;
  padding-left: 24px;
  font-size: 0.96rem;
  color: var(--color-text-muted);
}
.pkg-feat li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 0;
  color: var(--color-accent-dark);
  font-weight: 700;
}
.pkg-note {
  max-width: 860px;
  margin: 18px auto 0;
  font-size: 0.92rem;
  color: var(--color-text-soft);
}
@media (max-width: 540px) {
  .pkg-row { padding: 20px 20px; }
  .pkg-row-head { flex-direction: column; gap: 4px; }
  .pkg-price { font-size: 1.5rem; }
}

/* --- Page header (subpages) ------------------------------ */
.page-header {
  padding: 80px 0 60px;
  background: var(--color-surface);
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.page-header h1 { margin-bottom: 0.4em; }
.page-header p { max-width: 640px; margin: 0 auto; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  margin-bottom: 18px;
}
.breadcrumb a { color: var(--color-text-soft); }
.breadcrumb span { color: var(--color-accent-dark); }

/* --- Legal pages ----------------------------------------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 { margin-top: 2em; font-size: 1.7rem; }
.legal h3 { margin-top: 1.6em; font-size: 1.25rem; }
.legal p, .legal li { color: var(--color-text-muted); font-size: 1rem; }
/* Lange URLs in Rechtstexten dürfen umbrechen (kein horizontales Scrollen auf Mobile) */
.legal p, .legal li, .legal a { overflow-wrap: break-word; word-break: break-word; }
.legal a { color: var(--color-accent-dark); text-decoration: underline; }

/* --- Footer ---------------------------------------------- */
.site-footer {
  background: var(--color-dark);
  color: #c8c2b6;
  padding: 80px 0 30px;
  font-size: 0.94rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer-grid a { color: #c8c2b6; }
.footer-grid a:hover { color: var(--color-accent); }
.footer-brand .brand { color: #fff; }
.footer-brand .brand:hover { color: #fff; opacity: .85; }
.footer-brand .brand-name { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-sub { color: rgba(255,255,255,.55); }
.footer-brand .brand-mark { filter: drop-shadow(0 2px 4px rgba(0,0,0,.3)); }
.footer-brand p { color: #9c968a; margin: 18px 0 0; max-width: 320px; }
.footer-bottom {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  color: #888178;
  font-size: 0.85rem;
}
.footer-bottom-links { display: flex; gap: 22px; flex-wrap: wrap; }

/* --- Cookie banner --------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 24px; right: 24px; bottom: 24px;
  background: var(--color-dark);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 24px 28px;
  box-shadow: var(--shadow-lg);
  display: none;
  align-items: center;
  gap: 24px;
  z-index: 80;
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid rgba(255,255,255,.08);
}
.cookie-banner.is-visible { display: flex; }
.cookie-banner p { color: rgba(255,255,255,.78); margin: 0; font-size: 0.92rem; }
.cookie-banner p a { color: var(--color-accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 12px 22px; font-size: 0.82rem; }
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions .btn { flex: 1; justify-content: center; }
}

/* --- Utilities ------------------------------------------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-desktop { display: none; }
@media (max-width: 700px) { .hide-mobile { display: none; } .hide-desktop { display: initial; } }

/* Reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .claudi-cam-bob, .claudi-cam-eyes { animation: none; }
  .form-success { animation: none; }
  .form-success-icon .fs-c, .form-success-icon .fs-k { animation: none; stroke-dashoffset: 0; }
}

/* =========================================================
   Claudi – Chatbot Widget
   ========================================================= */
#claudi-root { position: fixed; z-index: 90; inset: auto; }

.claudi-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #75592a 100%);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(143, 111, 51, .35), 0 2px 6px rgba(15,15,16,.15);
  transition: transform .2s ease, box-shadow .2s ease;
  animation: claudi-pulse 2.4s ease-in-out 3s 2;
}
.claudi-fab:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 36px rgba(143, 111, 51, .45), 0 4px 10px rgba(15,15,16,.2);
}
.claudi-fab svg { width: 30px; height: 30px; }

/* Claudi-Maskottchen (animierte Kamera-Figur) */
.claudi-cam { width: 100%; height: 100%; display: block; overflow: visible; }
.claudi-cam-bob { transform-box: fill-box; transform-origin: 50% 100%; animation: claudi-cam-bob 1.9s ease-in-out infinite; }
.claudi-cam-eyes { transform-box: fill-box; transform-origin: center; animation: claudi-cam-blink 4.6s ease-in-out infinite; }
@keyframes claudi-cam-bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-3px) rotate(-3deg); }
}
@keyframes claudi-cam-blink {
  0%, 88%, 100% { transform: scaleY(1); }
  94%           { transform: scaleY(0.12); }
}
.claudi-fab.is-open .claudi-fab-label { display: none; }
@media (max-width: 600px) {
  .claudi-fab { right: 16px; bottom: 16px; padding: 12px 18px 12px 14px; }
  .claudi-fab-label { display: none; }
}
@keyframes claudi-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(143, 111, 51, .35), 0 0 0 0 rgba(182, 146, 76, .5); }
  50% { box-shadow: 0 10px 30px rgba(143, 111, 51, .35), 0 0 0 14px rgba(182, 146, 76, 0); }
}

.claudi-panel {
  position: fixed;
  right: 24px;
  bottom: 96px;
  width: 380px;
  max-width: calc(100vw - 32px);
  height: 580px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(15,15,16,.25), 0 8px 20px rgba(15,15,16,.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  z-index: 91;
  opacity: 0;
  transform: translateY(20px) scale(.96);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1);
  border: 1px solid rgba(232, 227, 219, .8);
}
.claudi-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
@media (max-width: 600px) {
  .claudi-panel {
    right: 12px; left: 12px; bottom: 84px;
    width: auto; height: calc(100vh - 110px); max-height: none;
  }
}

.claudi-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg, #1d1d1f 0%, #0f0f10 100%);
  color: #fff;
  border-bottom: 1px solid rgba(182, 146, 76, .2);
}
.claudi-avatar {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(135deg, #1d1d1f 0%, #0f0f10 100%);
  box-shadow: 0 4px 12px rgba(0,0,0,.3);
}
.claudi-avatar svg { width: 100%; height: 100%; display: block; }
.claudi-headline { flex: 1; display: flex; flex-direction: column; line-height: 1.2; min-width: 0; }
.claudi-headline strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: #fff; }
.claudi-status { font-size: 0.72rem; color: var(--color-accent); letter-spacing: 0.06em; margin-top: 2px; }
.claudi-close {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,.7);
  padding: 6px;
  cursor: pointer;
  border-radius: 8px;
  transition: background .15s ease, color .15s ease;
}
.claudi-close:hover { color: #fff; background: rgba(255,255,255,.1); }
.claudi-close svg { width: 22px; height: 22px; }

.claudi-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 20px 18px;
  background: #faf8f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scroll-behavior: smooth;
}
.claudi-body::-webkit-scrollbar { width: 6px; }
.claudi-body::-webkit-scrollbar-thumb { background: rgba(15,15,16,.18); border-radius: 3px; }

.claudi-msg {
  max-width: 88%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.94rem;
  line-height: 1.5;
  word-wrap: break-word;
  animation: claudi-in .25s ease;
}
@keyframes claudi-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
.claudi-msg--bot {
  align-self: flex-start;
  background: #fff;
  color: var(--color-text);
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(15,15,16,.06);
}
.claudi-msg--bot strong { color: var(--color-dark); }
.claudi-msg--bot em { color: var(--color-text-muted); font-style: italic; }
.claudi-msg--bot a { color: var(--color-accent-dark); text-decoration: underline; font-weight: 600; }
.claudi-msg--user {
  align-self: flex-end;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #75592a 100%);
  color: #fff;
  border-bottom-right-radius: 4px;
  box-shadow: 0 2px 6px rgba(143, 111, 51, .25);
}

.claudi-typing {
  align-self: flex-start;
  display: inline-flex;
  gap: 4px;
  padding: 14px 16px;
  background: #fff;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 3px rgba(15,15,16,.06);
}
.claudi-typing span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-text-soft);
  animation: claudi-dot 1.2s infinite ease-in-out;
}
.claudi-typing span:nth-child(2) { animation-delay: .15s; }
.claudi-typing span:nth-child(3) { animation-delay: .3s; }
@keyframes claudi-dot {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30% { transform: translateY(-4px); opacity: 1; }
}

.claudi-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-self: stretch;
  margin-top: 2px;
  margin-bottom: 6px;
}
.claudi-opt {
  display: block;
  width: 100%;
  padding: 11px 16px;
  text-align: left;
  background: #fff;
  color: var(--color-dark);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease, transform .15s ease;
}
.claudi-opt:hover {
  border-color: var(--color-accent);
  background: var(--color-accent-soft);
  color: var(--color-accent-dark);
  transform: translateX(2px);
}

.claudi-input {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--color-border);
  background: #fff;
}
.claudi-input input {
  flex: 1;
  font: inherit;
  font-size: 0.92rem;
  padding: 11px 14px;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-text);
  outline: 0;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.claudi-input input:focus {
  border-color: var(--color-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(182, 146, 76, .12);
}
.claudi-input button {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-dark) 0%, #75592a 100%);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform .15s ease, box-shadow .15s ease;
}
.claudi-input button:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(143, 111, 51, .35);
}
.claudi-input button svg { width: 18px; height: 18px; }

.claudi-legal {
  font-size: 0.72rem;
  color: var(--color-text-soft);
  text-align: center;
  padding: 6px 14px 10px;
  background: #fff;
  line-height: 1.4;
}
.claudi-legal a { color: var(--color-accent-dark); text-decoration: underline; }

@media (prefers-reduced-motion: reduce) {
  .claudi-fab, .claudi-msg, .claudi-panel, .claudi-typing span { animation: none !important; transition: none !important; }
}

/* ============================================================
   Ratgeber / Blog  (Hub-Kacheln + Artikel-Prosa)
   ============================================================ */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 14px);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.post-card-media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--color-surface-alt); }
.post-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card-media img { transform: scale(1.05); }
.post-card-body { display: flex; flex-direction: column; flex: 1; padding: 24px; }
.post-cat {
  font-size: 0.72rem; letter-spacing: .12em; text-transform: uppercase;
  font-weight: 600; color: var(--color-accent-dark); margin-bottom: 10px;
}
.post-card-body h3 { font-size: 1.25rem; margin: 0 0 10px; line-height: 1.3; }
.post-card-body h3 a { color: inherit; text-decoration: none; }
.post-card-body h3 a:hover { color: var(--color-accent-dark); }
.post-excerpt { font-size: 0.95rem; color: var(--color-text-muted); margin: 0 0 18px; }
.post-meta {
  margin-top: auto; display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; color: var(--color-text-soft);
}
.post-readmore { color: var(--color-accent-dark); font-weight: 600; text-decoration: none; }
.post-readmore:hover { text-decoration: underline; }

/* Artikel-Prosa */
.article { max-width: 760px; margin: 0 auto; }
.article-lead { font-size: 1.2rem; line-height: 1.6; color: var(--color-text); margin-bottom: 1.6em; }
.article h2 { margin-top: 1.8em; font-size: 1.7rem; }
.article h3 { margin-top: 1.5em; font-size: 1.22rem; }
.article p, .article li { color: var(--color-text-muted); font-size: 1.05rem; line-height: 1.75; }
.article ul, .article ol { margin: 1em 0 1.4em; padding-left: 1.2em; }
.article li { margin-bottom: 0.5em; }
.article a:not(.btn) { color: var(--color-accent-dark); text-decoration: underline; }
.article figure { margin: 2em 0; }
.article figure img { width: 100%; height: auto; border-radius: var(--radius, 14px); display: block; }
.article figcaption { font-size: 0.85rem; color: var(--color-text-soft); text-align: center; margin-top: 10px; }
.article-meta {
  display: flex; flex-wrap: wrap; gap: 10px 18px; align-items: center;
  font-size: 0.85rem; color: var(--color-text-soft); margin-bottom: 2em;
  padding-bottom: 1.4em; border-bottom: 1px solid var(--color-border);
}
.article-meta .post-cat { margin: 0; }
.article-related { margin-top: 60px; }

/* Schmale Phones: lange Button-Labels dürfen umbrechen statt das Layout zu sprengen */
@media (max-width: 480px) {
  .btn { white-space: normal; text-align: center; }
}

/* ============================================================
   Sticky Mobil-CTA-Leiste (nur Phone ≤600px)
   ============================================================ */
.cta-bar { display: none; }
@media (max-width: 600px) {
  .cta-bar {
    display: flex;
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 70;
    gap: 8px;
    padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,.97);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    backdrop-filter: saturate(180%) blur(14px);
    border-top: 1px solid var(--color-border);
    box-shadow: 0 -6px 24px rgba(15,15,16,.10);
  }
  .cta-bar-item {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 3px;
    padding: 8px 4px;
    border-radius: 12px;
    font-size: 0.72rem; font-weight: 600; letter-spacing: .01em;
    color: var(--color-text); text-decoration: none;
    background: #fff; border: 1px solid var(--color-border);
  }
  .cta-bar-item svg { width: 20px; height: 20px; flex-shrink: 0; }
  .cta-bar-item--wa svg { color: #25D366; }
  .cta-bar-item--primary {
    color: #fff; background: var(--color-accent-dark); border-color: var(--color-accent-dark);
  }
  /* Platz schaffen, damit nichts hinter der Leiste verschwindet */
  body { padding-bottom: 74px; }
  /* Claudi-Button über die Leiste heben (überschreibt die ≤600px-Regel weiter oben) */
  .claudi-fab { bottom: 86px; }
}

/* ============================================================
   Accessibility-Feinschliff (Tastatur-Fokus + Reduced Motion)
   ============================================================ */
/* Klar sichtbarer Fokus-Ring – nur bei Tastaturnavigation (nicht bei Maus-Klick) */
:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 2px;
  border-radius: 3px;
}
.btn:focus-visible,
.cta-bar-item:focus-visible {
  outline: 2px solid var(--color-accent-dark);
  outline-offset: 3px;
}
/* Reduced Motion: alle Animationen & Übergänge global zurücknehmen */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Google-Bewertungen / Kundenstimmen
   ============================================================ */
.reviews-head { text-align: center; max-width: 720px; margin: 0 auto 44px; }
.reviews-rating {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 8px; font-size: 1.05rem; color: var(--color-text);
}
.reviews-stars, .review-card-stars { color: #f5a623; letter-spacing: 2px; }
.reviews-stars { font-size: 1.15rem; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 26px;
}
.review-card {
  margin: 0;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius, 14px);
  padding: 28px;
  display: flex; flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.review-card-stars { font-size: 1.05rem; letter-spacing: 3px; margin-bottom: 14px; }
.review-card blockquote {
  margin: 0 0 18px; padding: 0; border: 0;
  font-size: 1.02rem; line-height: 1.65; color: var(--color-text);
}
.review-card figcaption {
  margin-top: auto; display: flex; flex-direction: column; gap: 2px;
}
.review-author { font-weight: 600; color: var(--color-text); }
.review-source {
  font-size: 0.82rem; color: var(--color-text-soft);
  display: inline-flex; align-items: center; gap: 6px;
}
