/* ============================================================================
   headbased Theme – Design-System
   ============================================================================
   Aufbau orientiert an alber-marketing/style.css, eigene Markenfarben:
   - Tiefes Anthrazit/Navy für Souveränität (dunkler Hintergrund)
   - Warmes Gold/Kupfer als Akzent (Premium-Beratung, nicht "schrill")
   - Warmes Off-White / Sand für Sektionsalternation
   - Schriften: Cormorant Garamond (Headlines, ruhig & beratungsnah) +
     Inter (Body, klar & gut lesbar)
   ============================================================================ */

:root {
  /* Brand: tiefes Anthrazit/Navy */
  --brand-50:  #f6f7f9;
  --brand-100: #e8eaee;
  --brand-200: #c8ccd5;
  --brand-300: #94a0b1;
  --brand-400: #5b6878;
  --brand-500: #2f3a4a;
  --brand-600: #1c2533;
  --brand-700: #141b27;
  --brand-800: #0f141d;
  --brand-900: #0a0e15;

  /* Akzent: warmes Gold/Kupfer */
  --accent-100: #fbf1dc;
  --accent-200: #f4dca4;
  --accent-300: #e9c074;
  --accent-400: #d4a04e;
  --accent-500: #b58136;   /* primärer Akzent */
  --accent-600: #936729;
  --accent-700: #71511f;

  /* Sand / Off-White Sektionen */
  --sand-50:  #faf7f2;
  --sand-100: #f3ede3;
  --sand-200: #e8dfcf;

  --grey-900: #111827;
  --grey-800: #1f2937;
  --grey-700: #374151;
  --grey-600: #4b5563;
  --grey-500: #6b7280;
  --grey-400: #9ca3af;
  --grey-300: #d1d5db;
  --grey-200: #e5e7eb;
  --grey-100: #f3f4f6;
  --grey-50:  #f9fafb;

  --white: #ffffff;
  --black: #000000;

  --text-primary:   var(--brand-700);
  --text-secondary: var(--grey-600);
  --text-muted:     var(--grey-500);
  --text-on-dark:   #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);

  --bg-primary:    var(--white);
  --bg-secondary:  var(--sand-50);
  --bg-tertiary:   var(--sand-100);
  --bg-dark:       var(--brand-700);
  --bg-darker:     var(--brand-900);

  --cta-bg:        var(--accent-500);
  --cta-hover:     var(--accent-600);
  --cta-text:      #1a140a;

  --font-sans:    "Inter", "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  --font-heading: "Cormorant Garamond", "Georgia", "Times New Roman", serif;

  --fs-xs:   clamp(0.75rem,   0.7rem  + 0.2vw, 0.8125rem);
  --fs-sm:   clamp(0.8125rem, 0.75rem + 0.3vw, 0.9375rem);
  --fs-base: clamp(0.9375rem, 0.875rem + 0.3vw, 1.0625rem);
  --fs-lg:   clamp(1.0625rem, 1rem    + 0.4vw, 1.1875rem);
  --fs-xl:   clamp(1.125rem,  1.05rem + 0.4vw, 1.25rem);
  --fs-2xl:  clamp(1.25rem,   1.15rem + 0.5vw, 1.5rem);
  --fs-3xl:  clamp(1.5rem,    1.3rem  + 1vw,   1.875rem);
  --fs-4xl:  clamp(1.875rem,  1.55rem + 1.5vw, 2.5rem);
  --fs-5xl:  clamp(2.5rem,    1.9rem  + 2.6vw, 4rem);

  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;

  --lh-tight:   1.12;
  --lh-snug:    1.25;
  --lh-normal:  1.55;
  --lh-relaxed: 1.7;

  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-5xl: 8rem;

  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  --container-2xl: 1320px;
  --container-narrow: 820px;

  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-pill: 9999px;

  --shadow-sm: 0 1px 3px rgba(20, 27, 39, 0.08);
  --shadow-md: 0 6px 18px rgba(20, 27, 39, 0.10);
  --shadow-lg: 0 12px 36px rgba(20, 27, 39, 0.14);
  --shadow-xl: 0 24px 60px rgba(20, 27, 39, 0.20);

  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  --header-height: 80px;
  --top-bar-height: 38px;
  --container-header: 1280px;
}

/* ============================================================================
   RESET / BASE
   ============================================================================ */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: calc(var(--header-height) + var(--top-bar-height) + 1rem);
}

body {
  font-family: var(--font-sans);
  font-size: var(--fs-base);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, video, picture { max-width: 100%; height: auto; display: block; }

a {
  color: var(--brand-700);
  text-decoration: none;
  transition: color var(--transition-fast);
}
a:hover { color: var(--accent-500); }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  color: var(--brand-800);
  letter-spacing: -0.01em;
}

button {
  font: inherit;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: inherit;
}

::selection {
  background: var(--accent-300);
  color: var(--brand-900);
}

.screen-reader-text {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--brand-900);
  color: #fff;
  padding: 0.5rem 1rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ============================================================================
   CONTAINER, GRID, UTILITIES
   ============================================================================ */

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide   { max-width: var(--container-2xl); }

.text-center { text-align: center; }

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  animation: hb-fade-in 700ms 80ms ease forwards;
}
@keyframes hb-fade-in {
  to { opacity: 1; transform: none; }
}

/* ============================================================================
   TOP BAR
   ============================================================================ */

.top-bar {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.875rem;
  height: var(--top-bar-height);
  display: flex;
  align-items: center;
}
.top-bar__inner {
  width: 100%;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar__tagline {
  font-weight: var(--fw-medium);
  letter-spacing: 0.02em;
}
.top-bar__contact {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.top-bar a { color: rgba(255, 255, 255, 0.78); }
.top-bar a:hover { color: var(--accent-300); }
.top-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.top-bar__icon { display: inline-flex; }
.top-bar__icon svg { width: 14px; height: 14px; }

@media (max-width: 720px) {
  .top-bar__tagline { display: none; }
  .top-bar__inner { justify-content: center; }
}

/* ============================================================================
   HEADER / NAVIGATION
   ============================================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: saturate(180%) blur(8px);
  border-bottom: 1px solid var(--grey-200);
}
.header__inner {
  width: 100%;
  max-width: var(--container-header);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-height);
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 1.4rem;
  color: var(--brand-800);
  text-decoration: none;
  flex-shrink: 0;
}
.header__logo:hover { color: var(--brand-800); }
.header__logo-img { max-height: 44px; width: auto; }
.header__logo-mark {
  display: inline-flex;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: var(--brand-800);
  color: #fff;
  border-radius: 8px;
  font-size: 1rem;
  font-family: var(--font-sans);
  font-weight: var(--fw-bold);
  letter-spacing: 0.02em;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1.5rem;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: var(--fw-medium);
  color: var(--brand-700);
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent-500);
  transition: width var(--transition-fast);
}
.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}
.nav__link svg { width: 14px; height: 14px; }

.nav__item { position: relative; }
.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  min-width: 240px;
  display: none;
}
.nav__item:hover .nav__dropdown { display: block; }
.nav__dropdown-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: var(--fw-medium);
  color: var(--brand-700);
}
.nav__dropdown-link:hover { background: var(--sand-100); color: var(--brand-900); }

.header__cta { flex-shrink: 0; }

.mobile-toggle {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.mobile-toggle span {
  width: 22px;
  height: 2px;
  background: var(--brand-800);
  transition: var(--transition-fast);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 980px) {
  .nav { display: none; }
  .header__cta { display: none; }
  .mobile-toggle { display: inline-flex; margin-left: auto; }
}

.mobile-nav {
  position: fixed;
  inset: calc(var(--header-height) + var(--top-bar-height)) 0 0 0;
  background: #fff;
  z-index: 90;
  padding: 1.5rem;
  overflow: auto;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base), transform var(--transition-base);
}
.mobile-nav[data-open="true"] {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.mobile-nav__list { list-style: none; }
.mobile-nav__item + .mobile-nav__item { border-top: 1px solid var(--grey-200); }
.mobile-nav__link {
  display: block;
  padding: 1rem 0;
  font-size: 1.05rem;
  font-weight: var(--fw-medium);
  color: var(--brand-800);
}
.mobile-nav__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav__toggle {
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 8px;
  color: var(--brand-700);
}
.mobile-nav__sub { list-style: none; padding-left: 1rem; padding-bottom: 0.75rem; display: none; }
.mobile-nav__item--has-children[data-open="true"] .mobile-nav__sub { display: block; }
.mobile-nav__cta { margin-top: 1.5rem; }

/* ============================================================================
   BUTTONS
   ============================================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  font-family: var(--font-sans);
  text-decoration: none;
  border: 1px solid transparent;
  transition: background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn:focus-visible { outline: 3px solid var(--accent-300); outline-offset: 2px; }
.btn--sm  { padding: 0.55rem 1rem;    font-size: 0.875rem; }
.btn--lg  { padding: 0.95rem 1.6rem;  font-size: 1rem; }
.btn--full { width: 100%; }

.btn--primary {
  background: var(--brand-800);
  color: #fff;
  border-color: var(--brand-800);
}
.btn--primary:hover { background: var(--brand-900); color: #fff; }

.btn--accent {
  background: var(--accent-500);
  color: var(--cta-text);
  border-color: var(--accent-500);
  box-shadow: 0 6px 24px rgba(181, 129, 54, 0.30);
}
.btn--accent:hover { background: var(--accent-600); color: var(--cta-text); }

.btn--outline {
  background: transparent;
  color: var(--brand-800);
  border-color: var(--brand-300);
}
.btn--outline:hover {
  background: var(--brand-800);
  color: #fff;
  border-color: var(--brand-800);
}

.btn--outline-white {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-white:hover { background: #fff; color: var(--brand-900); }

.btn svg { width: 16px; height: 16px; }

/* ============================================================================
   HERO
   ============================================================================ */

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--brand-900) 0%, var(--brand-700) 100%);
  color: #fff;
  overflow: hidden;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 7vw, 6rem);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 80% 0%,  rgba(181, 129, 54, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 0% 100%, rgba(181, 129, 54, 0.10), transparent 60%);
  pointer-events: none;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60' viewBox='0 0 60 60'%3E%3Cg fill='none' stroke='%23ffffff' stroke-opacity='0.04' stroke-width='1'%3E%3Cpath d='M0 0h60v60H0z'/%3E%3Cpath d='M30 0v60M0 30h60'/%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.7;
}

.hero__layout {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) {
  .hero__layout { grid-template-columns: 1fr; }
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.9rem;
  font-size: 0.825rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.04em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
}
.hero__label-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-400);
  box-shadow: 0 0 0 4px rgba(212, 160, 78, 0.25);
}

.hero__title {
  margin-top: 1.5rem;
  font-family: var(--font-heading);
  font-size: var(--fs-5xl);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-tight);
  letter-spacing: -0.015em;
  color: #fff;
}
.hero__title-highlight {
  display: block;
  color: var(--accent-300);
  font-style: italic;
  margin-top: 0.25rem;
}

.hero__desc {
  margin-top: 1.5rem;
  max-width: 60ch;
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: rgba(255, 255, 255, 0.82);
}

.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.hero__actions .btn--outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.35);
}
.hero__actions .btn--outline:hover {
  background: #fff;
  color: var(--brand-900);
  border-color: #fff;
}
.hero__actions .btn--primary {
  background: var(--accent-500);
  border-color: var(--accent-500);
  color: var(--cta-text);
}
.hero__actions .btn--primary:hover {
  background: var(--accent-600);
  border-color: var(--accent-600);
  color: var(--cta-text);
}

.hero__proof {
  list-style: none;
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.925rem;
}
.hero__proof-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__proof-item svg {
  width: 18px; height: 18px;
  color: var(--accent-300);
  flex-shrink: 0;
}

/* Hero portrait */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 5 / 6;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.95);
}
.hero__portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10, 14, 21, 0.55) 100%);
  pointer-events: none;
}
.hero__portrait-tag {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  background: rgba(10, 14, 21, 0.7);
  color: #fff;
  font-size: 0.85rem;
  font-weight: var(--fw-medium);
  backdrop-filter: blur(6px);
}
.hero__portrait-tag-dot {
  width: 7px; height: 7px;
  background: var(--accent-300);
  border-radius: 50%;
}
.hero__portrait--placeholder {
  background: linear-gradient(135deg, var(--brand-600), var(--brand-800));
  display: flex; align-items: center; justify-content: center;
}
.hero__portrait-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: rgba(255, 255, 255, 0.15);
}

/* ============================================================================
   TRUST BAR (Kennzahlen)
   ============================================================================ */

.trust-bar {
  background: var(--brand-800);
  color: rgba(255, 255, 255, 0.85);
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.trust-bar__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 720px) {
  .trust-bar__list { grid-template-columns: repeat(2, 1fr); }
}
.trust-bar__item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.trust-bar__num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-300);
  letter-spacing: 0.01em;
}
.trust-bar__lbl {
  font-size: 0.825rem;
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: 0.02em;
}

/* ============================================================================
   SECTION SHELL
   ============================================================================ */

.section {
  padding: clamp(3.5rem, 8vw, 6rem) 0;
}
.section--grey { background: var(--bg-secondary); }
.section--dark { background: var(--brand-800); color: var(--text-on-dark); }
.section--cta {
  background: linear-gradient(180deg, var(--brand-700) 0%, var(--brand-900) 100%);
  color: var(--text-on-dark);
}

.section__header {
  max-width: 760px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section__header--invert { color: var(--text-on-dark); }

.section__label {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  background: var(--sand-100);
  color: var(--accent-600);
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.section__label--invert {
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-300);
}
.section__title {
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
  color: var(--brand-900);
}
.section__title--invert { color: #fff; }
.section__desc {
  margin-top: 1rem;
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  color: var(--text-secondary);
}
.section--dark .section__desc,
.section--cta .section__desc {
  color: rgba(255, 255, 255, 0.78);
}

.section__cta-line {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: var(--fs-xl);
  color: var(--brand-700);
}
.section__cta-row {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}

/* ============================================================================
   PROBLEM CARDS
   ============================================================================ */

.problem-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 760px) {
  .problem-grid { grid-template-columns: 1fr; }
}
.problem-card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.problem-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.problem-card__icon {
  display: inline-flex;
  width: 48px; height: 48px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--sand-100);
  color: var(--accent-600);
  margin-bottom: 1rem;
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card__title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.problem-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.problem-card__list li {
  position: relative;
  padding-left: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.problem-card__list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--accent-500);
  font-weight: var(--fw-bold);
}

/* ============================================================================
   METHODE
   ============================================================================ */

.method {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 880px) {
  .method { grid-template-columns: 1fr; }
}

.method__visual {
  position: relative;
  background: linear-gradient(135deg, var(--sand-50) 0%, var(--sand-100) 100%);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
}
.method__heads {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  align-items: end;
}
.method__head { text-align: center; }
.method__head img {
  margin: 0 auto;
  max-height: 280px;
  width: auto;
  filter: drop-shadow(0 8px 16px rgba(20, 27, 39, 0.10));
}
.method__head figcaption {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
}

.method__chart {
  margin-top: 1.5rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.75);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--sand-200);
}
.method__chart img { margin: 0 auto; max-height: 70px; width: auto; }

.method__steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.method__step {
  position: relative;
  padding-left: 4.25rem;
  padding-top: 0.25rem;
}
.method__step-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-800);
  color: var(--accent-300);
  font-family: var(--font-heading);
  font-size: 1.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.method__step-title {
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}
.method__step-desc {
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

.method__guarantee {
  margin-top: 3rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--brand-800);
  color: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.75rem;
}
.method__guarantee strong { color: var(--accent-300); }
.method__guarantee-icon {
  display: inline-flex;
  width: 44px; height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  align-items: center; justify-content: center;
  color: var(--accent-300);
  flex-shrink: 0;
}

/* ============================================================================
   TABS (Zielgruppen)
   ============================================================================ */

.tabs__nav {
  display: inline-flex;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-pill);
  padding: 0.35rem;
  gap: 0.25rem;
  margin: 0 auto 2.5rem;
  box-shadow: var(--shadow-sm);
}
.tabs {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tabs__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  color: var(--brand-700);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.tabs__btn svg { width: 18px; height: 18px; opacity: 0.8; }
.tabs__btn:hover { background: var(--sand-100); }
.tabs__btn.is-active {
  background: var(--brand-800);
  color: #fff;
}
.tabs__btn.is-active svg { color: var(--accent-300); opacity: 1; }
.tabs__panels { width: 100%; }
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: hb-fade-in 400ms ease forwards; }

.audience {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
@media (max-width: 920px) {
  .audience { grid-template-columns: 1fr; }
}

.audience__title {
  font-size: var(--fs-3xl);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.audience__lead {
  color: var(--text-secondary);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
  margin-bottom: 1.5rem;
}
.audience__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.audience__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: start;
  color: var(--text-primary);
  line-height: 1.55;
}
.audience__list svg {
  width: 22px; height: 22px;
  color: var(--accent-500);
  margin-top: 0.15rem;
}

.audience__cta {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: calc(var(--header-height) + var(--top-bar-height) + 1rem);
}
.audience__cta-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.audience__cta-title {
  margin-top: 0.5rem;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
.audience__cta-desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.audience__cta-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.audience__cta-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.audience__cta-bullets svg {
  width: 16px; height: 16px;
  color: var(--accent-500);
}

/* ============================================================================
   ANGEBOT — OFFERS
   ============================================================================ */

.offers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
@media (max-width: 1100px) { .offers { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .offers { grid-template-columns: 1fr; } }

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}
.offer:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-300);
}

.offer--featured {
  background: linear-gradient(180deg, #fff 0%, var(--sand-50) 100%);
  border-color: var(--accent-400);
  box-shadow: 0 12px 28px rgba(181, 129, 54, 0.18);
}
.offer__badge {
  position: absolute;
  top: -10px;
  left: 1.25rem;
  background: var(--accent-500);
  color: var(--cta-text);
  font-size: 0.75rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius-pill);
}

.offer__head { display: flex; flex-direction: column; gap: 0.5rem; }
.offer__icon {
  display: inline-flex;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  border-radius: var(--radius-md);
  background: var(--sand-100);
  color: var(--accent-600);
}
.offer__eyebrow {
  font-size: 0.7rem;
  font-weight: var(--fw-bold);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-600);
}
.offer__title {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}
.offer__desc {
  color: var(--text-secondary);
  margin-bottom: 1rem;
  line-height: var(--lh-relaxed);
  flex-grow: 0;
}
.offer__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0 0 1.5rem 0;
}
.offer__bullets li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 0.5rem;
  align-items: start;
  font-size: 0.9rem;
  color: var(--text-primary);
  line-height: 1.45;
}
.offer__bullets svg {
  width: 18px; height: 18px;
  color: var(--accent-500);
  margin-top: 0.1rem;
}
.offer__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  background: var(--brand-50);
  color: var(--brand-800);
  font-weight: var(--fw-semibold);
  font-size: 0.95rem;
  border: 1px solid transparent;
}
.offer__cta:hover { background: var(--brand-800); color: #fff; }
.offer__cta--strong { background: var(--accent-500); color: var(--cta-text); }
.offer__cta--strong:hover { background: var(--accent-600); color: var(--cta-text); }
.offer__cta svg { width: 18px; height: 18px; }

/* ============================================================================
   PROCESS / Ablauf (auf dunklem Background)
   ============================================================================ */

.process {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 880px) { .process { grid-template-columns: 1fr; } }

.process__step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.process__num {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: var(--fw-semibold);
  color: var(--accent-300);
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}
.process__title {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}
.process__desc {
  color: rgba(255, 255, 255, 0.78);
  line-height: var(--lh-relaxed);
}

/* ============================================================================
   TESTIMONIALS
   ============================================================================ */

.testimonials {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
@media (max-width: 760px) { .testimonials { grid-template-columns: 1fr; } }

.testimonial {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial__quote-mark {
  color: var(--accent-400);
  display: inline-flex;
}
.testimonial__quote-mark svg { width: 36px; height: 36px; }
.testimonial__text {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: var(--fw-medium);
  color: var(--brand-800);
  line-height: 1.5;
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  font-style: normal;
  color: var(--text-secondary);
  font-size: 0.9rem;
}
.testimonial__author strong {
  color: var(--brand-900);
  font-weight: var(--fw-bold);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.reviews-bar {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  justify-content: space-between;
  background: var(--sand-50);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
}
.reviews-bar__rating {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.reviews-bar__stars {
  display: inline-flex;
  gap: 2px;
  color: var(--accent-500);
}
.reviews-bar__stars svg { width: 18px; height: 18px; }
.reviews-bar__num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: var(--fw-semibold);
  color: var(--brand-900);
}
.reviews-bar__lbl {
  color: var(--text-secondary);
  font-size: 0.95rem;
}
.reviews-bar__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: var(--fw-semibold);
  color: var(--brand-800);
}
.reviews-bar__link:hover { color: var(--accent-600); }
.reviews-bar__link svg { width: 16px; height: 16px; }

/* ============================================================================
   BIO
   ============================================================================ */

.bio {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
@media (max-width: 880px) { .bio { grid-template-columns: 1fr; } }

.bio__visual {
  position: relative;
}
.bio__portrait {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.bio__meeting {
  position: absolute;
  right: -1.5rem;
  bottom: -2rem;
  width: 60%;
  max-width: 280px;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius-md);
  border: 6px solid #fff;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 880px) {
  .bio__meeting { display: none; }
}
.bio__title {
  margin-top: 1rem;
  font-size: var(--fs-4xl);
  line-height: var(--lh-tight);
}
.bio__lead {
  margin-top: 1rem;
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}
.bio__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1.5rem;
}
.bio__list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 0.75rem;
  align-items: center;
  color: var(--text-primary);
}
.bio__list svg { width: 20px; height: 20px; color: var(--accent-500); }

/* ============================================================================
   FAQ
   ============================================================================ */

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq__item {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: var(--fw-semibold);
  font-size: 1.15rem;
  color: var(--brand-900);
  list-style: none;
  user-select: none;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon {
  display: inline-flex;
  width: 30px; height: 30px;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--sand-100);
  color: var(--accent-600);
  flex-shrink: 0;
  transition: transform var(--transition-fast);
}
.faq__icon svg { width: 16px; height: 16px; }
.faq__item[open] .faq__icon { transform: rotate(45deg); }
.faq__a {
  padding: 0 1.25rem 1.25rem;
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
}

/* ============================================================================
   FINAL CTA + KONTAKTFORMULAR
   ============================================================================ */

.cta-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 920px) { .cta-block { grid-template-columns: 1fr; } }

.cta-block__title {
  margin-top: 1rem;
  font-size: var(--fs-4xl);
  color: #fff;
  line-height: var(--lh-tight);
}
.cta-block__desc {
  margin-top: 1rem;
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, 0.82);
  line-height: var(--lh-relaxed);
}
.cta-block__bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem 0;
  color: rgba(255, 255, 255, 0.85);
}
.cta-block__bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.cta-block__bullets svg { width: 18px; height: 18px; color: var(--accent-300); }

.cta-block__direct {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.cta-block__direct-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: var(--fw-medium);
}
.cta-block__direct-link:hover { color: var(--accent-300); }
.cta-block__direct-link svg { width: 18px; height: 18px; color: var(--accent-300); }

.cta-block__form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  color: var(--text-primary);
  box-shadow: var(--shadow-xl);
}

.hb-form { display: flex; flex-direction: column; gap: 1rem; }
.hb-form__title {
  font-size: 1.5rem;
  color: var(--brand-900);
  margin-bottom: 0.25rem;
}
.hb-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .hb-form__row { grid-template-columns: 1fr; } }
.hb-form__field { display: flex; flex-direction: column; gap: 0.4rem; }
.hb-form__label {
  font-size: 0.85rem;
  font-weight: var(--fw-semibold);
  color: var(--brand-700);
}
.hb-form__req { color: var(--accent-500); margin-left: 0.15rem; }

.hb-form__input {
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-300);
  background: var(--grey-50);
  font: inherit;
  color: var(--brand-900);
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}
.hb-form__input:focus {
  outline: none;
  border-color: var(--accent-500);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(181, 129, 54, 0.18);
}
textarea.hb-form__input { resize: vertical; min-height: 110px; }

.hb-form__radios {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.hb-form__radio {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--grey-300);
  background: var(--grey-50);
  font-size: 0.875rem;
  color: var(--brand-700);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
}
.hb-form__radio input { accent-color: var(--accent-500); }
.hb-form__radio:has(input:checked) {
  background: var(--brand-800);
  border-color: var(--brand-800);
  color: #fff;
}
.hb-form__honeypot { display: none !important; }

.hb-form__submit { margin-top: 0.5rem; }
.hb-form__legal {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.hb-form__legal a { color: var(--brand-700); text-decoration: underline; }

.hb-form__message {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  background: var(--sand-100);
  color: var(--brand-900);
}
.hb-form__message[data-state="error"] {
  background: #fde2e2;
  color: #7a1f1f;
}
.hb-form__message[data-state="success"] {
  background: #def4e4;
  color: #1c5d2c;
}

/* ============================================================================
   PAGE-HERO (innere Seiten, 404)
   ============================================================================ */

.page-hero {
  position: relative;
  background: linear-gradient(180deg, var(--brand-900), var(--brand-700));
  color: #fff;
  padding: clamp(3rem, 6vw, 5rem) 0 clamp(2.5rem, 5vw, 4rem);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 0%, rgba(181, 129, 54, 0.18), transparent 60%);
}
.page-hero__content {
  position: relative;
  max-width: 760px;
}
.page-hero__title {
  font-size: var(--fs-5xl);
  color: #fff;
  line-height: var(--lh-tight);
}
.page-hero__desc {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--fs-lg);
  line-height: var(--lh-relaxed);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: var(--accent-300); }
.breadcrumb__separator { opacity: 0.5; }

.prose { line-height: var(--lh-relaxed); }
.prose h2 { font-size: var(--fs-3xl); margin-top: 2rem; margin-bottom: 1rem; }
.prose h3 { font-size: var(--fs-2xl); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.prose p  { margin-bottom: 1rem; color: var(--text-primary); }
.prose ul, .prose ol { margin-bottom: 1rem; padding-left: 1.25rem; }
.prose a { color: var(--accent-600); text-decoration: underline; }
.prose a:hover { color: var(--brand-700); }
.prose img { border-radius: var(--radius-md); margin: 1.5rem 0; }

/* ============================================================================
   GRID UTILITIES (für index.php / Blog-Liste)
   ============================================================================ */

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 880px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: #fff;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.card__image img { width: 100%; height: 220px; object-fit: cover; }
.card__body { padding: 1.5rem; }
.card__title { font-size: 1.25rem; margin-bottom: 0.5rem; }
.card__title a { color: var(--brand-900); }
.card__title a:hover { color: var(--accent-600); }
.card__desc { color: var(--text-secondary); margin-bottom: 1rem; }
.card__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-weight: var(--fw-semibold); color: var(--brand-800);
}
.card__link:hover { color: var(--accent-600); }

/* ============================================================================
   FOOTER
   ============================================================================ */

.footer {
  background: var(--brand-900);
  color: rgba(255, 255, 255, 0.78);
  padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem;
}
.footer__inner {
  width: 100%;
  max-width: var(--container-2xl);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1.2fr 0.8fr 0.9fr 1.1fr;
}
@media (max-width: 980px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer__grid { grid-template-columns: 1fr; } }

.footer__brand .footer__logo { margin-bottom: 0.75rem; filter: brightness(0) invert(1) opacity(0.9); }
.footer__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  letter-spacing: 0.01em;
  margin-bottom: 0.5rem;
}
.footer__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.footer__title {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: var(--fw-bold);
  color: #fff;
  margin-bottom: 1rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer__list a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}
.footer__list a:hover { color: var(--accent-300); }

.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}
.footer__contact svg {
  width: 18px; height: 18px;
  color: var(--accent-400);
  flex-shrink: 0;
}
.footer__contact--address {
  align-items: flex-start;
}
.footer__contact--address svg { margin-top: 0.15rem; }

.footer__cta .footer__desc { margin-bottom: 1rem; }

.footer__bar {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer__legal {
  display: flex;
  list-style: none;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__legal a { color: rgba(255, 255, 255, 0.65); }
.footer__legal a:hover { color: var(--accent-300); }

/* ============================================================================
   ANIMATIONS / SMALL TOUCHES
   ============================================================================ */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* Lockerer Body-Reset für alte WP-Plugins, die `text-decoration: underline` global setzen */
.entry-content a { text-decoration: underline; }
