/* ==========================================================================
   Iris' Coffeeshop — Website-Relaunch
   Design-Richtung: dunkle Basis + warmer Gold-Akzent (aus dem Logo gemessen)
   Typografie: Playfair Display (Überschriften) + Jost (Fließtext/Navigation)
   ========================================================================== */

:root {
  --bg: #17160f;
  --panel: #211f16;
  --text: #f4f1e8;
  --text-secondary: #a39c8c;
  --accent: #a49d59;
  --accent-light: #c7be7e;
  --border: rgba(244, 241, 232, 0.12);

  /* Wärmere Zweitpalette (Atmosphäre/Rhythmus-Update):
     Gold (--accent/--accent-light) bleibt reserviert für Text-Highlights & Eyebrows.
     Amber (--accent-warm) übernimmt Buttons/Hover-Glow.
     Stage (--stage) ist der tiefe Bühnen-Ton für Flächen-Akzente/Verläufe. */
  --accent-warm: #c9843a;
  --accent-warm-light: #e0a165;
  --stage: #3a1f2e;
  --stage-light: #55293d;

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Century Gothic", Futura, sans-serif;
  --font-hand: "Caveat", cursive;

  --container: 1200px;

  --radius-s: 6px;
  --radius-m: 18px;
  --radius-l: 34px;
  --radius-pill: 999px;
}

/* ---------- Reset & base ---------- */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0 0 0.5em 0;
  color: #f8f6ef;
}

h1,
h2 {
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3,
h4 {
  font-weight: 600;
  line-height: 1.2;
}

h2 {
  font-size: clamp(2.1rem, 3.9vw, 3.35rem);
}

.accent-italic {
  font-style: italic;
  color: var(--accent-light);
}

p {
  margin: 0 0 1em 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  margin: 0 0 18px 0;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--accent);
  flex: 0 0 auto;
}

.eyebrow.center {
  justify-content: center;
  text-align: center;
}

h2.center {
  text-align: center;
  margin-bottom: 48px;
}

.angebot-title {
  margin-bottom: 44px;
  max-width: 560px;
}

.angebot-title.center {
  margin-left: auto;
  margin-right: auto;
}

.link-arrow {
  display: inline-block;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  color: var(--text);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 3px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.link-arrow::after {
  content: "→";
  margin-left: 8px;
  color: var(--accent);
  transition: transform 0.2s ease;
  display: inline-block;
}

.link-arrow:hover {
  color: var(--accent-light);
  border-color: var(--accent-light);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent-warm);
  color: var(--bg);
  box-shadow: 0 0 0 rgba(201, 132, 58, 0);
  transition: background-color 0.2s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.btn-accent:hover {
  background: var(--accent-warm-light);
  box-shadow: 0 0 26px 4px rgba(201, 132, 58, 0.45);
}

.btn-outline {
  border-color: var(--text-secondary);
  color: var(--text);
}

.btn-outline:hover {
  border-color: var(--accent-warm-light);
  color: var(--text);
  box-shadow: 0 0 18px 2px rgba(201, 132, 58, 0.22);
}

/* ---------- Atmosphäre & Rhythmus (Sektions-Hintergründe, Wasserzeichen, Reveal) ----------
   Drei alternierende Hintergrund-Behandlungen für Sektionen (nie eine harte,
   flache Kante): (a) Bühnenlicht-Verlauf in --stage, (b) dezente Körnung,
   (c) großes, halbtransparentes Wasserzeichen. Jede Sektion bekommt eine davon. */

.section--tight {
  padding: 72px 0;
}

.section--roomy {
  padding: 120px 0;
}

/* (a) Bühnenlicht von oben, in Stage-Ton, weich auslaufend */
.bg-stage-glow {
  position: relative;
}

.bg-stage-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 55% at 50% -10%, var(--stage) 0%, rgba(58, 21, 46, 0) 65%);
}

.bg-stage-glow > * {
  position: relative;
  z-index: 1;
}

/* (b) Feine Körnung per SVG-Rauschen, sehr dezent */
.has-grain {
  position: relative;
  isolation: isolate;
}

.has-grain::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-repeat: repeat;
  background-size: 220px 220px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.has-grain > * {
  position: relative;
  z-index: 1;
}

/* (c) Großes, halbtransparentes Wasserzeichen (Playfair-Initiale), teils aus dem Viewport ragend */
.watermark {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent-warm);
  opacity: 0.045;
  line-height: 1;
}

.watermark--angebot {
  right: -6vw;
  bottom: -12%;
  font-size: min(34vw, 520px);
}

/* Sanftes Fade-in + leichte Aufwärtsbewegung beim Scrollen (per IntersectionObserver,
   siehe Script am Seitenende). Ohne JS/mit prefers-reduced-motion bleibt alles normal sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  .reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }

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

/* Kaffee-Motiv (dezent, max. drei Stellen sitewide): Eyebrow-Ornament statt Strich */
.eyebrow--coffee::before {
  display: none;
}

.eyebrow-bean {
  flex: 0 0 auto;
}

/* Bandfoto-Sektion: leicht gedrehtes Foto mit versetztem Gold-Rahmen dahinter */
.intro-media--framed::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--accent-warm);
  border-radius: var(--radius-m);
  transform: rotate(2.5deg);
  z-index: 0;
}

.intro-media--framed img {
  position: relative;
  z-index: 1;
  transform: rotate(-2deg);
}

.band-quote {
  font-family: var(--font-hand);
  font-size: 1.9rem;
  line-height: 1.25;
  color: var(--accent-light);
  margin: 26px 0 0 0;
  transform: rotate(-1.5deg);
}

.band-quote span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.76rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 8px;
  transform: rotate(0deg);
}

@media (max-width: 560px) {
  .section--roomy {
    padding: 88px 0;
  }

  .section--tight {
    padding: 56px 0;
  }

  .band-quote {
    font-size: 1.6rem;
  }
}

/* ---------- Atmosphäre-Rollout auf Unterseiten ----------
   Dieselben drei Bausteine wie oben (Bühnenlicht-Verlauf, Körnung,
   Wasserzeichen), diesmal direkt in wiederkehrende Sektions-Klassen gebacken,
   damit alle Unterseiten automatisch mitziehen, ohne dass jede Seite einzeln
   Utility-Klassen tragen muss. Keine Sektion mit diesen Klassen bleibt mehr
   flach. */

.why-section,
.regionen-section,
.legal-section {
  position: relative;
  isolation: isolate;
}

.why-section::before,
.regionen-section::before,
.legal-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.04;
  background-repeat: repeat;
  background-size: 220px 220px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.why-section > *,
.regionen-section > *,
.legal-section > * {
  position: relative;
  z-index: 1;
}

.faq-section {
  position: relative;
  isolation: isolate;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(ellipse 65% 50% at 50% -8%, var(--stage) 0%, rgba(58, 21, 46, 0) 62%);
}

.faq-section > * {
  position: relative;
  z-index: 1;
}

.video-section {
  position: relative;
  isolation: isolate;
}

.video-section::after {
  content: "I";
  position: absolute;
  right: -4vw;
  top: -18%;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent-warm);
  opacity: 0.045;
  line-height: 1;
  font-size: min(26vw, 400px);
}

.video-section > * {
  position: relative;
  z-index: 1;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(23, 22, 15, 0.35);
  border-bottom: 1px solid transparent;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(23, 22, 15, 0.92);
  backdrop-filter: blur(8px);
  border-bottom-color: var(--border);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
}

.brand-logo {
  width: 72px;
  height: 72px;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.65rem;
  color: var(--text);
  white-space: nowrap;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.9rem;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.main-nav a:hover {
  color: var(--text);
}

.main-nav a.active {
  color: var(--text);
  border-bottom-color: var(--accent);
}

.header-social {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.header-social a {
  display: flex;
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.header-social a:hover {
  color: var(--accent-light);
}

.header-cta {
  padding: 12px 26px;
  font-size: 0.85rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-overlay-diag {
  background: linear-gradient(
    100deg,
    rgba(23, 22, 15, 0.95) 0%,
    rgba(23, 22, 15, 0.78) 30%,
    rgba(23, 22, 15, 0.3) 62%,
    rgba(23, 22, 15, 0.55) 100%
  );
}

.hero-overlay-bottom {
  background: linear-gradient(
    0deg,
    rgba(23, 22, 15, 0.92) 0%,
    rgba(23, 22, 15, 0.15) 30%,
    rgba(23, 22, 15, 0) 55%
  );
}

.hero-content {
  position: relative;
  max-width: 620px;
  padding: 0 24px 120px 24px;
  margin: 0 auto 0 0;
}

@media (min-width: 640px) {
  .hero-content {
    padding: 0 56px 110px 56px;
  }
}

.hero-content h1 {
  font-size: clamp(2.6rem, 6.8vw, 4.5rem);
  margin-bottom: 24px;
}

.hero-sub {
  color: var(--text-secondary);
  font-size: 1rem;
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

/* ---------- Sections ---------- */

.section {
  padding: 96px 0;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  align-items: center;
  gap: 64px;
}

.intro-media {
  position: relative;
}

.intro-media img {
  width: 100%;
  border-radius: var(--radius-m);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, 0.7);
}

.intro-copy {
  max-width: 520px;
}

.intro-text {
  color: var(--text-secondary);
  font-size: 1.08rem;
}

/* ---------- Stats bar ---------- */

.stats-bar {
  margin-top: 72px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding: 44px 32px;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 12% 15%, rgba(58, 31, 46, 0.55) 0%, rgba(58, 31, 46, 0) 60%),
    var(--panel);
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--accent-light);
  line-height: 1;
}

.stat-label {
  font-size: 0.82rem;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
}

.angebot {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    var(--bg) 0%,
    var(--panel) 14%,
    var(--panel) 86%,
    var(--bg) 100%
  );
}

.angebot > .container {
  position: relative;
  z-index: 1;
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
}

.angebot-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.angebot-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.75);
}

/* Rhythmus-Bruch: eine Karte bricht am Desktop bewusst aus dem 1200px-Container aus */
@media (min-width: 1300px) {
  .angebot-card--bleed {
    margin-right: -96px;
  }
}

.angebot-media {
  position: relative;
  overflow: hidden;
}

.angebot-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.angebot-card:hover .angebot-media img {
  transform: scale(1.03);
}

.card-icon {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(23, 22, 15, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid var(--line-light, rgba(244, 241, 232, 0.25));
  color: var(--accent-light);
}

.angebot-card-body {
  padding: 32px;
}

.angebot-card-body h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.angebot-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.hoerproben-panel {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 64px;
  border-radius: var(--radius-l);
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 88% 12%, rgba(58, 31, 46, 0.65) 0%, rgba(58, 31, 46, 0) 58%),
    var(--panel);
  overflow: hidden;
}

.hoerproben-copy {
  max-width: 560px;
}

.staff-motif {
  display: block;
  margin-bottom: 18px;
}

.hoerproben-copy p:last-child {
  color: var(--text-secondary);
  margin-bottom: 0;
}

.hoerproben-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

/* ---------- Interior page intro ----------
   Für Unterseiten ohne eigenen Full-Bleed-Hero (Platzhalterseiten, einfache
   Content-Seiten): schafft Abstand zum fixen Header und gibt der ersten
   Section eine Eyebrow+H1-Struktur wie auf der Startseite. */

.page-intro {
  padding: 176px 0 64px 0;
}

.page-intro h1 {
  max-width: 720px;
}

.page-intro-lead {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 620px;
}

@media (max-width: 560px) {
  .page-intro {
    padding: 140px 0 48px 0;
  }
}

/* ---------- Band ---------- */

.band-intro-text {
  max-width: 680px;
  margin-bottom: 56px;
}

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

.band-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: 0 24px 50px -30px rgba(0, 0, 0, 0.65);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.band-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px -26px rgba(0, 0, 0, 0.75);
}

.band-media {
  position: relative;
  overflow: hidden;
}

.band-media img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}

.band-card:hover .band-media img {
  transform: scale(1.03);
}

.band-card-body {
  padding: 28px 28px 32px 28px;
}

.band-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.band-role {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent-light);
  font-weight: 600;
  margin-bottom: 14px;
}

.band-card-body p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

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

@media (max-width: 560px) {
  .band-grid {
    grid-template-columns: 1fr;
  }

  .band-media img {
    height: 300px;
  }
}

/* ---------- Hochzeit ---------- */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.services-grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.services-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(23, 22, 15, 0.55);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  color: var(--accent-light);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}

.services-note {
  color: var(--text-secondary);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0;
}

.link-arrow-inline {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.link-arrow-inline:hover {
  color: var(--accent);
}

.faq-section {
  background: var(--panel);
}

.faq-list {
  max-width: 820px;
}

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

.faq-item:first-of-type {
  border-top: 1px solid var(--border);
}

.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer p {
  color: var(--text-secondary);
  font-size: 0.98rem;
  padding: 0 4px 26px 4px;
  max-width: 700px;
  margin: 0;
}

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

.testimonial-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-quote {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.testimonial-quote::before {
  content: "\201E";
  color: var(--accent-light);
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-right: 2px;
}

.testimonial-attribution {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent-light);
  font-size: 0.95rem;
  margin: 0;
}

.regionen-section {
  background: var(--panel);
}

.region-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
  background: var(--bg);
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.region-pill:hover {
  border-color: var(--accent-warm);
  background: rgba(201, 132, 58, 0.14);
  color: var(--accent-warm-light);
}

@media (max-width: 900px) {
  .services-grid,
  .services-grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .services-grid,
  .services-grid-4,
  .services-grid-2 {
    grid-template-columns: 1fr;
  }

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

  .faq-question {
    font-size: 1rem;
    gap: 16px;
  }

  .region-pill {
    padding: 12px 22px;
    font-size: 0.9rem;
  }
}

.why-section {
  background: var(--panel);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  margin-top: 8px;
}

.why-item h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--accent-light);
}

.why-item p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 8px;
  margin-bottom: 28px;
}

.video-card h3 {
  font-size: 1.05rem;
  margin-bottom: 14px;
  color: var(--text);
}

.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-m);
  overflow: hidden;
  background: var(--bg);
  border: 1px solid var(--border);
}

.yt-facade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.yt-facade img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.yt-play-icon {
  position: relative;
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(23, 22, 15, 0.65);
  border: 1px solid var(--accent-light);
  color: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.yt-facade:hover .yt-play-icon {
  background: rgba(201, 132, 58, 0.5);
  transform: scale(1.06);
}

.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.section.video-section {
  padding-top: 48px;
}

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

  .video-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Kontakt / Formular ---------- */

.section.kontakt-section {
  padding-top: 24px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.kontakt-form-wrap {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 48px;
}

.kontakt-form-wrap h3 {
  font-size: 1.2rem;
  margin-bottom: 28px;
}

.form-notice {
  padding: 20px 24px;
  border-radius: var(--radius-m);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.form-notice p {
  margin: 0 0 6px 0;
}

.form-notice ul {
  margin: 8px 0 0 0;
  padding-left: 20px;
  color: var(--text-secondary);
}

.form-notice-success {
  background: rgba(164, 157, 89, 0.14);
  border: 1px solid rgba(164, 157, 89, 0.4);
}

.form-notice-error {
  background: rgba(196, 92, 70, 0.1);
  border: 1px solid rgba(196, 92, 70, 0.4);
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 0.82rem;
  letter-spacing: 0.4px;
  color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-s);
  padding: 13px 16px;
  transition: border-color 0.2s ease;
}

.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9'%3E%3Cpath d='M1 1l6 6 6-6' stroke='%23a39c8c' stroke-width='1.5' fill='none' fill-rule='evenodd'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-field textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-secondary);
  opacity: 0.7;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.kontakt-form .btn {
  align-self: flex-start;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.kontakt-info {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 40px;
}

.kontakt-info h3 {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.kontakt-info p {
  margin-bottom: 14px;
}

.kontakt-info-note {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-top: 20px;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 560px) {
  .section.kontakt-section {
    padding-top: 16px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kontakt-form-wrap {
    padding: 28px;
  }

  .kontakt-info {
    padding: 28px;
  }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--panel);
  border-top: 1px solid var(--border);
}

.footer-grid {
  padding: 72px 24px 48px 24px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
  gap: 40px;
}

.footer-brand {
  grid-column: span 1;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.footer-social a {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.footer-social a:hover {
  color: var(--accent);
}

.footer-nav h4,
.footer-contact h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-weight: 500;
  margin-bottom: 18px;
}

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

.footer-nav a,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--text);
}

.footer-nav a:hover,
.footer-contact a:hover {
  color: var(--accent-light);
}

.footer-contact p {
  margin: 0 0 12px 0;
  font-size: 0.9rem;
}

.footer-bottom {
  position: relative;
  border-top: 1px solid var(--border);
}

/* Kaffee-Motiv (2/3 Stellen): kleines Tassen-Icon auf der Footer-Trennlinie */
.footer-bottom::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--panel);
  border: 1px solid var(--border);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9843a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 8h13v5a5 5 0 0 1-5 5H9a5 5 0 0 1-5-5V8z'/%3E%3Cpath d='M17 9.5h1.6a2.5 2.5 0 0 1 0 5H17'/%3E%3Cpath d='M7.5 4c.6 1 .6 1.6 0 2.6M11.5 4c.6 1 .6 1.6 0 2.6'/%3E%3C/svg%3E");
}

.footer-bottom-inner {
  padding: 20px 24px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-secondary);
}

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--panel);
    border-left: 1px solid var(--border);
    padding: 96px 32px 32px 32px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
  }

  .main-nav.is-open {
    transform: translateX(0);
  }

  .main-nav ul {
    flex-direction: column;
    gap: 22px;
  }

  .header-cta {
    display: none;
  }

  .header-social {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

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

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .intro-copy {
    max-width: none;
  }

  .stats-bar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 20px;
    padding: 32px 24px;
    margin-top: 48px;
  }

  .hoerproben-panel {
    padding: 48px 40px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .section {
    padding: 64px 0;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 1.3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    padding: 56px 24px 32px 24px;
  }

  .hoerproben-panel {
    padding: 40px 24px;
  }

  .hoerproben-actions {
    align-items: stretch;
    width: 100%;
  }

  .hoerproben-actions .btn {
    text-align: center;
  }

  .stats-bar {
    padding: 28px 18px;
    gap: 24px 12px;
  }
}

/* ---------- Rechtstexte (Impressum/Datenschutz) ---------- */

.legal-content {
  max-width: 760px;
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: 48px;
  margin-bottom: 14px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--text-secondary);
  font-size: 0.98rem;
}

.legal-content ul {
  padding-left: 20px;
  margin: 0 0 1em 0;
}

.legal-content li {
  margin-bottom: 8px;
}

.legal-content a {
  color: var(--accent-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a:hover {
  color: var(--accent);
}

.legal-todo {
  background: rgba(196, 92, 70, 0.1);
  border: 1px solid rgba(196, 92, 70, 0.4);
  border-radius: var(--radius-m);
  padding: 20px 24px;
  margin-bottom: 12px;
}

.legal-todo p {
  color: var(--text);
  margin: 0;
}

.legal-address {
  font-style: normal;
}

.legal-link-btn {
  padding: 0;
}

/* ---------- Cookie Consent ---------- */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: -100%;
  z-index: 500;
  background: rgba(23, 22, 15, 0.97);
  backdrop-filter: blur(6px);
  border-top: 1px solid var(--border);
  transition: bottom 0.35s ease;
}

.cookie-banner.is-visible {
  bottom: 0;
}

.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 28px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cookie-banner-text {
  max-width: 620px;
}

.cookie-banner-title {
  font-family: var(--font-display);
  color: var(--accent-light);
  font-size: 1.05rem;
  margin: 0 0 6px 0;
}

.cookie-banner-text p:last-child {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin: 0;
}

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

.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner-actions .btn {
  padding: 12px 22px;
  font-size: 0.85rem;
  cursor: pointer;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(10, 9, 6, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.cookie-modal.is-visible {
  display: flex;
}

.cookie-modal-panel {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: 88vh;
  overflow-y: auto;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-l);
  padding: 44px;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
}

.cookie-modal-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  padding-right: 40px;
}

.cookie-modal-intro {
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.cookie-category {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 8px;
}

.cookie-category p {
  color: var(--text-secondary);
  font-size: 0.88rem;
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
  flex: 0 0 auto;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch-track {
  position: absolute;
  inset: 0;
  background: rgba(244, 241, 232, 0.18);
  border-radius: var(--radius-pill);
  transition: background-color 0.2s ease;
  cursor: pointer;
}

.cookie-switch-track::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--text);
  transition: transform 0.2s ease;
}

.cookie-switch input:checked + .cookie-switch-track {
  background: var(--accent);
}

.cookie-switch input:checked + .cookie-switch-track::before {
  transform: translateX(18px);
  background: var(--bg);
}

.cookie-switch-disabled .cookie-switch-track {
  cursor: not-allowed;
  opacity: 0.7;
}

.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.cookie-modal-actions .btn {
  cursor: pointer;
  font-size: 0.85rem;
  padding: 13px 22px;
}

body.cookie-modal-open {
  overflow: hidden;
}

@media (max-width: 560px) {
  .cookie-banner-inner {
    padding: 24px 20px;
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner-actions {
    flex-direction: column;
  }

  .cookie-banner-actions .btn {
    text-align: center;
  }

  .cookie-modal-panel {
    padding: 32px 24px;
  }
}
