/* ==========================================================================
   Dorothea Beekman · Sorgenlöserin
   Design-System – vier Akzentfarben aus dem Logo (Puzzle-Herz)
   ========================================================================== */

:root {
  /* Akzentfarben aus dem Logo */
  --c-orange: #f5a251;
  --c-orange-dark: #d9812c;
  --c-green: #a4cb5a;
  --c-green-dark: #7ba336;
  --c-red: #b72328;
  --c-red-dark: #94171c;
  --c-blue: #46a6c5;
  --c-blue-dark: #2c7f9b;

  /* Neutrale Töne */
  --ink: #2b2b2f;
  --ink-soft: #55565c;
  --ink-mute: #85868d;
  --line: #e6e3de;
  --paper: #ffffff;
  --paper-warm: #fbf8f4;
  --paper-warm-2: #f5f0e9;

  --radius: 18px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 2px 10px rgba(43, 43, 47, .06);
  --shadow: 0 10px 30px rgba(43, 43, 47, .09);
  --shadow-lg: 0 24px 60px rgba(43, 43, 47, .13);

  --font: "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue",
          Arial, "Noto Sans", sans-serif;

  --wrap: 1140px;
  --nav-h: 84px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  background: var(--paper);
  overflow-x: hidden;
}

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

h1, h2, h3, h4 {
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -.015em;
}

h1 { font-size: clamp(2rem, 1.35rem + 2.8vw, 3.4rem); }
h2 { font-size: clamp(1.55rem, 1.2rem + 1.6vw, 2.35rem); }
h3 { font-size: clamp(1.15rem, 1.05rem + .5vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

a { color: var(--c-blue-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

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

:focus-visible {
  outline: 3px solid var(--c-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ------------------------------------------------------------- Layout --- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 22px; }
.wrap--narrow { max-width: 820px; }

.section { padding: clamp(56px, 7vw, 104px) 0; }
.section--warm { background: var(--paper-warm); }
.section--warm2 { background: var(--paper-warm-2); }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: 12px 20px; z-index: 200;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ------------------------------------------------------------ Eyebrow --- */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--c-red);
  margin-bottom: .9em;
}
.eyebrow--blue { color: var(--c-blue-dark); }
.eyebrow--green { color: var(--c-green-dark); }
.eyebrow--orange { color: var(--c-orange-dark); }

.lead { font-size: clamp(1.05rem, 1rem + .35vw, 1.25rem); color: var(--ink-soft); }

.section-head { max-width: 760px; margin-bottom: clamp(32px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }

/* ------------------------------------------------------------ Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none !important;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary { background: var(--c-red); color: #fff; box-shadow: 0 8px 20px rgba(183, 35, 40, .28); }
.btn--primary:hover { background: var(--c-red-dark); box-shadow: 0 12px 26px rgba(183, 35, 40, .34); }

.btn--blue { background: var(--c-blue); color: #fff; box-shadow: 0 8px 20px rgba(70, 166, 197, .3); }
.btn--blue:hover { background: var(--c-blue-dark); }

.btn--ghost { border-color: var(--line); color: var(--ink); background: #fff; }
.btn--ghost:hover { border-color: var(--c-blue); color: var(--c-blue-dark); }

.btn--light { background: #fff; color: var(--c-red); }
.btn--light:hover { background: var(--paper-warm); }

.btn--sm { padding: 10px 20px; font-size: .92rem; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.btn-row--center { justify-content: center; }

/* ------------------------------------------------------------- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header::after {
  content: ""; display: block; height: 3px;
  background: linear-gradient(90deg,
    var(--c-orange) 0 25%, var(--c-green) 25% 50%,
    var(--c-red) 50% 75%, var(--c-blue) 75% 100%);
}

.nav {
  display: flex; align-items: center; gap: 20px;
  min-height: var(--nav-h);
}

.brand { display: inline-flex; align-items: center; margin-right: auto; padding: 8px 0; }
.brand:hover { text-decoration: none; }
.brand img { height: 52px; width: auto; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line); border-radius: 12px;
  background: #fff; cursor: pointer;
  padding: 0; align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; position: relative;
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: background .2s;
}
.nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 20px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

.nav-menu {
  display: flex; align-items: center; gap: 4px;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a {
  display: block;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: .96rem;
  white-space: nowrap;
}
.nav-menu a:hover { background: var(--paper-warm-2); text-decoration: none; }
.nav-menu a[aria-current="page"] { color: var(--c-red); background: rgba(183, 35, 40, .08); }

.nav-cta { margin-left: 10px; }

/* --------------------------------------------------------------- Hero --- */
.hero {
  position: relative;
  padding: clamp(56px, 7vw, 104px) 0 clamp(60px, 8vw, 116px);
  background: linear-gradient(180deg, var(--paper-warm) 0%, #fff 100%);
  overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .3;
  pointer-events: none;
}
.hero::before { width: 420px; height: 420px; background: var(--c-orange); top: -140px; right: -110px; }
.hero::after  { width: 380px; height: 380px; background: var(--c-blue);   bottom: -180px; left: -130px; }

.hero .wrap { position: relative; z-index: 1; }

.hero-grid {
  display: grid; gap: clamp(32px, 5vw, 64px);
  grid-template-columns: 1.15fr .85fr; align-items: center;
}
.hero h1 { margin-bottom: .45em; }
.hero h1 .hl { color: var(--c-red); }

.hero-portrait {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: #fff;
}
.hero-portrait::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 6px;
  background: linear-gradient(90deg,
    var(--c-orange) 0 25%, var(--c-green) 25% 50%,
    var(--c-red) 50% 75%, var(--c-blue) 75% 100%);
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line);
  font-size: .93rem; color: var(--ink-mute);
}
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust .dot { width: 9px; height: 9px; border-radius: 50%; flex: none; }

/* -------------------------------------------------------------- Cards --- */
.grid { display: grid; gap: 22px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px;
  background: var(--accent, var(--c-blue));
}
.card h3 { margin-bottom: .5em; }
.card p:last-child { margin-bottom: 0; }

a.card { color: inherit; display: block; }
a.card:hover { text-decoration: none; transform: translateY(-4px); box-shadow: var(--shadow); }

.card-more {
  display: inline-flex; align-items: center; gap: .45em;
  margin-top: 18px; font-weight: 700; font-size: .95rem;
  color: var(--accent, var(--c-blue-dark));
}
.card-more::after { content: "→"; transition: transform .2s ease; }
a.card:hover .card-more::after { transform: translateX(4px); }

.card-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, #fff);
  color: var(--accent); font-weight: 800; font-size: 1rem;
  margin-bottom: 16px;
}

.a-orange { --accent: var(--c-orange-dark); }
.a-green  { --accent: var(--c-green-dark); }
.a-red    { --accent: var(--c-red); }
.a-blue   { --accent: var(--c-blue-dark); }

/* ---------------------------------------------------------- Pakete ------ */
.pack {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
}
.pack::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 5px; background: var(--accent);
}
.pack--featured { border-color: var(--accent); box-shadow: var(--shadow); }
.pack-badge {
  position: absolute; top: 18px; right: 18px;
  background: var(--accent); color: #fff;
  font-size: .68rem; letter-spacing: .1em; text-transform: uppercase;
  font-weight: 800; padding: 5px 11px; border-radius: 999px;
}
.pack-name { font-size: 1.35rem; color: var(--accent); margin-bottom: .25em; }
.pack-dur { font-size: .9rem; color: var(--ink-mute); font-weight: 600; margin-bottom: 20px; }

.check { list-style: none; margin: 0 0 24px; padding: 0; font-size: .97rem; }
.check li { position: relative; padding-left: 30px; margin-bottom: 12px; }
.check li::before {
  content: ""; position: absolute; left: 0; top: .38em;
  width: 17px; height: 17px; border-radius: 50%;
  background: var(--accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/15px no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M20 6 9 17l-5-5' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/15px no-repeat;
}
.pack .btn { margin-top: auto; align-self: flex-start; }

/* ---------------------------------------------------------- Prose ------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose h3 { margin-top: 1.6em; }
.prose > :first-child { margin-top: 0; }
.prose ul, .prose ol { margin: 0 0 1.2em; padding-left: 1.3em; }
.prose li { margin-bottom: .5em; }
.prose dl { margin: 0 0 1.4em; }
.prose dt { font-weight: 700; color: var(--ink); margin-top: 1em; }
.prose dd { margin: 0 0 .2em; }
.prose address { font-style: normal; }

.pullquote {
  border-left: 5px solid var(--c-orange);
  background: var(--paper-warm);
  padding: 22px 26px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 30px 0;
  font-size: 1.08rem;
  color: var(--ink);
}

.note {
  background: color-mix(in srgb, var(--c-blue) 9%, #fff);
  border: 1px solid color-mix(in srgb, var(--c-blue) 30%, #fff);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  margin: 26px 0;
  font-size: .97rem;
}

/* --------------------------------------------------------- Testimonial -- */
.quote {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 28px 26px; box-shadow: var(--shadow-sm);
}
/* Das Anführungszeichen steht als eigener Block im Textfluss – NICHT absolut
   positioniert. Sonst hängt seine Lage von den Metriken der jeweiligen
   Systemschrift ab und es rutscht auf manchen Geräten in den Text.
   Ein SVG statt eines Schriftzeichens macht die Grösse schriftunabhängig. */
.quote::before {
  content: "";
  display: block;
  width: 34px; height: 26px;
  margin-bottom: 14px;
  background-color: var(--accent, var(--c-orange));
  opacity: .55;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 26'%3E%3Cpath d='M0 26V14.3C0 6.4 4.6 1 12.6 0l1.2 3.9C9.4 5.2 7 8 6.9 11.6H14V26H0zm20 0V14.3C20 6.4 24.6 1 32.6 0l1.2 3.9c-4.4 1.3-6.8 4.1-6.9 7.7H34V26H20z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 34 26'%3E%3Cpath d='M0 26V14.3C0 6.4 4.6 1 12.6 0l1.2 3.9C9.4 5.2 7 8 6.9 11.6H14V26H0zm20 0V14.3C20 6.4 24.6 1 32.6 0l1.2 3.9c-4.4 1.3-6.8 4.1-6.9 7.7H34V26H20z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.quote blockquote { margin: 0 0 18px; font-size: 1rem; }
.quote figcaption { font-weight: 700; color: var(--ink); font-size: .94rem; }
.quote figcaption span { display: block; font-weight: 500; color: var(--ink-mute); font-size: .86rem; }

/* -------------------------------------------------------------- Steps --- */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); counter-reset: s; }
.steps li { position: relative; padding-left: 62px; }
.steps li::before {
  counter-increment: s; content: counter(s);
  position: absolute; left: 0; top: 0;
  width: 46px; height: 46px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem; color: #fff;
  background: var(--accent, var(--c-blue));
}
.steps li:nth-child(1) { --accent: var(--c-orange); }
.steps li:nth-child(2) { --accent: var(--c-green-dark); }
.steps li:nth-child(3) { --accent: var(--c-blue); }
.steps h3 { margin-bottom: .3em; }

/* ----------------------------------------------------------- CTA-Band --- */
.cta-band {
  background: linear-gradient(120deg, var(--c-red) 0%, #c8452a 55%, var(--c-orange-dark) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: clamp(34px, 5vw, 60px);
  box-shadow: var(--shadow);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255, 255, 255, .93); max-width: 620px; margin-inline: auto; }
.cta-band a:not(.btn) { color: #fff; text-decoration: underline; }

/* ------------------------------------------------------------- Footer --- */
.site-footer {
  background: #26262a; color: #b8b8bd;
  padding: clamp(46px, 6vw, 74px) 0 0;
  font-size: .95rem;
}
.site-footer::before {
  content: ""; display: block; height: 4px; margin-bottom: clamp(46px, 6vw, 74px);
  background: linear-gradient(90deg,
    var(--c-orange) 0 25%, var(--c-green) 25% 50%,
    var(--c-red) 50% 75%, var(--c-blue) 75% 100%);
}
.footer-grid { display: grid; gap: 34px; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; }
.site-footer h4 {
  color: #fff; font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1em;
}
.site-footer a { color: #d8d8dc; }
.site-footer a:hover { color: #fff; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: .6em; }
.site-footer address { font-style: normal; line-height: 1.9; }
.footer-logo { height: 58px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .92; }
.footer-bottom {
  margin-top: clamp(34px, 4vw, 52px);
  border-top: 1px solid #3a3a40;
  padding: 22px 0 26px;
  display: flex; flex-wrap: wrap; gap: 8px 24px; justify-content: space-between;
  font-size: .87rem; color: #8b8b92;
}

/* --------------------------------------------------------- Page-Header -- */
.page-head {
  background: linear-gradient(180deg, var(--paper-warm) 0%, #fff 100%);
  padding: clamp(44px, 6vw, 78px) 0 clamp(34px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
}
.page-head h1 { margin-bottom: .35em; }
.page-head .lead { max-width: 720px; }

.breadcrumb { font-size: .87rem; color: var(--ink-mute); margin-bottom: 1.2em; }
.breadcrumb a { color: var(--ink-mute); }

/* ------------------------------------------------------------ Pagenav --- */
.pagenav {
  display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between;
  margin-top: 48px; padding-top: 26px; border-top: 1px solid var(--line);
}

/* --------------------------------------------------------- Zertifikate -- */
.cert-grid { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); }
.cert {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 18px; box-shadow: var(--shadow-sm); text-align: center;
}
.cert img { margin: 0 auto 14px; max-height: 190px; width: auto; object-fit: contain; }
.cert p { font-size: .9rem; color: var(--ink-mute); margin: 0; }

/* --------------------------------------------------------- Timeline ----- */
.tl { list-style: none; margin: 0; padding: 0 0 0 30px; border-left: 3px solid var(--line); }
.tl li { position: relative; padding: 0 0 26px 22px; }
.tl li::before {
  content: ""; position: absolute; left: -33px; top: .45em;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--accent, var(--c-green-dark)); border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--accent, var(--c-green-dark));
}
.tl li:nth-child(4n+1) { --accent: var(--c-orange); }
.tl li:nth-child(4n+2) { --accent: var(--c-green-dark); }
.tl li:nth-child(4n+3) { --accent: var(--c-red); }
.tl li:nth-child(4n+4) { --accent: var(--c-blue); }

/* ------------------------------------------------------------ Details --- */
.acc { border: 1px solid var(--line); border-radius: var(--radius-sm); background: #fff; margin-bottom: 14px; box-shadow: var(--shadow-sm); }
.acc summary {
  cursor: pointer; padding: 18px 22px; font-weight: 700; color: var(--ink);
  list-style: none; display: flex; justify-content: space-between; gap: 16px; align-items: center;
}
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-size: 1.4rem; color: var(--c-blue-dark); line-height: 1; }
.acc[open] summary::after { content: "–"; }
.acc .acc-body { padding: 0 22px 22px; }
.acc .acc-body > :first-child { margin-top: 0; }

.tag {
  display: inline-block; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase;
  font-weight: 800; padding: 4px 10px; border-radius: 999px;
  background: var(--paper-warm-2); color: var(--ink-mute); margin-left: 8px;
}

/* ------------------------------------------------------------ Contact --- */
.contact-grid { display: grid; gap: 22px; grid-template-columns: repeat(3, 1fr); }
.contact-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.contact-item h3 { font-size: 1.05rem; margin-bottom: .35em; }
.contact-item a { font-weight: 700; }

/* -------------------------------------------------------- Responsive ---- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-portrait { max-width: 460px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .nav { flex-wrap: wrap; }
  .nav-menu {
    display: none;
    flex-direction: column; align-items: stretch;
    width: 100%; gap: 2px;
    padding: 8px 0 20px;
    border-top: 1px solid var(--line);
  }
  .nav-menu.is-open { display: flex; }
  .nav-menu a { padding: 13px 14px; border-radius: var(--radius-sm); font-size: 1.02rem; }
  .nav-cta { margin: 12px 0 0; justify-content: center; }
  .brand img { height: 44px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .card, .pack { padding: 26px 22px; }
  .btn { width: 100%; justify-content: center; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .nav-cta { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media print {
  .site-header, .site-footer, .cta-band, .pagenav { display: none; }
  body { color: #000; font-size: 12pt; }
}

/* --------------------------------------------------- Utility-Klassen ------ */
/* Ersetzen die früheren style="…"-Attribute, damit eine strenge
   Content-Security-Policy ohne 'unsafe-inline' funktioniert.               */
.m-flush { margin: 0; }
.mb-0    { margin-bottom: 0; }
.mt-2    { margin-top: 18px; }
.mt-3    { margin-top: 23px; }
.mt-4    { margin-top: 27px; }
.mt-5    { margin-top: 34px; }
.mt-6    { margin-top: 48px; }
.mt-xl   { margin-top: 1.8em; }
.mb-4    { margin-bottom: 32px; }
.fs-sm   { font-size: .97rem; }

.dot--orange { background: var(--c-orange); }
.dot--green  { background: var(--c-green); }
.dot--blue   { background: var(--c-blue); }

/* ------------------------------------------------------------- Videos ----- */
.vid {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.vid video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-sm);
  background: #1c1c20;
  aspect-ratio: 9 / 16;
  object-fit: cover;
}
.vid figcaption {
  margin-top: 14px;
  padding-inline: 4px;
  font-weight: 700;
  color: var(--ink);
  font-size: .94rem;
}
.vid figcaption span {
  display: block;
  font-weight: 500;
  color: var(--ink-mute);
  font-size: .86rem;
}

/* Hochkant-Videos nicht übergross werden lassen */
.vid-grid { max-width: 940px; margin-inline: auto; }
.vid video { max-width: 270px; margin-inline: auto; }
@media (max-width: 620px) {
  .vid video { max-width: 320px; }
}
