/*
 * BERLINER VERMÖGENSKONTOR – Stylesheet
 * Statische Fassung des bisherigen Design-Systems (Creme #F5F1E8, Navy #272E68, Gold #D1A450)
 * Typografie: Cormorant Garamond (Display) + Nunito Sans (Text)
 *
 * Aufbau:
 *   1. Reset / Grundlagen
 *   2. Design-System (unverändert aus dem bisherigen Projekt übernommen)
 *   3. Layout- und Hilfsklassen (entsprechen den bisher verwendeten Utility-Klassen)
 */

/* ============================================================
   1. RESET / GRUNDLAGEN
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; border: 0 solid var(--border); }
* { margin: 0; padding: 0; }
html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}
body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  line-height: 1.5;
}
img, svg, video, canvas, picture { display: block; max-width: 100%; }
img, video { height: auto; }
svg { flex-shrink: 0; }
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; }
h1, h2, h3, h4, h5, h6, p { overflow-wrap: break-word; }
a { color: inherit; text-decoration: none; }
a:hover { color: inherit; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font: inherit; color: inherit; background: transparent; border-radius: 0;
}
button { background: none; }
textarea { resize: vertical; }
button:not(:disabled),
[role="button"]:not([aria-disabled="true"]),
[type="button"]:not(:disabled),
[type="submit"]:not(:disabled),
a[href],
select:not(:disabled),
input[type="checkbox"]:not(:disabled),
input[type="radio"]:not(:disabled) { cursor: pointer; }
:focus-visible { outline: 2px solid #272E68; outline-offset: 2px; }
hr { border-top-width: 1px; }

:root {
  --radius: 0.25rem;
  --background: #F8F6F0;
  --foreground: #1a1d26;
  --border: rgba(39, 46, 104, 0.12);
  --primary: #272E68;
  --accent: #D1A450;
}

/* ============================================================
   2. DESIGN-SYSTEM (aus dem bisherigen Projekt)
   ============================================================ */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
  box-sizing: border-box;
}
@media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } }
@media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } }

.flex { min-height: 0; min-width: 0; }

.section-cream { background-color: #F5F1E8; color: #2C2C2C; }
.section-light { background-color: #FDFBF7; color: #2C2C2C; }
.section-white { background-color: #ffffff; color: #2C2C2C; }
.section-navy { background-color: #272E68; color: #F5F1E8; }
.section-navy-light { background-color: #3D4580; color: #F5F1E8; }
.navy-accent { color: #272E68; }
.navy-border { border-color: #272E68; }

.btn-navy,
.btn-navy-light,
.btn-navy-filled {
  padding: 0.75rem 2rem;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.btn-navy { background-color: transparent; border: 1.5px solid #272E68; color: #272E68; }
.btn-navy:hover { background-color: #272E68; color: #F5F1E8; }
.btn-navy-light { background-color: transparent; border: 1.5px solid #F5F1E8; color: #F5F1E8; }
.btn-navy-light:hover { background-color: #F5F1E8; color: #272E68; }
.btn-navy-filled { background-color: #272E68; border: 1.5px solid #272E68; color: #F5F1E8; }
.btn-navy-filled:hover { background-color: transparent; color: #272E68; }

.navy-line { width: 3rem; height: 2px; background-color: #272E68; flex-shrink: 0; }

.display-heading { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; line-height: 1.1; }

h1 { font-size: 3.5rem; line-height: 1.05; }
h2 { font-size: 3rem; line-height: 1.1; }
h3 { font-size: 1.5rem; line-height: 1.2; }
@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.25rem; }
}

.section-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #272E68;
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fade-in { opacity: 1; transform: none; transition: none; }
}
/* Ohne JavaScript bleiben alle Inhalte sichtbar */
.no-js .fade-in { opacity: 1; transform: none; }

/* ============================================================
   3. LAYOUT- UND HILFSKLASSEN
   ============================================================ */

/* Display */
.block { display: block; }
.inline-block { display: inline-block; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.hidden { display: none; }

/* Flex / Grid */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.flex-grow { flex-grow: 1; }
.flex-shrink-0, .shrink-0 { flex-shrink: 0; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.gap-0 { gap: 0; }
.gap-1 { gap: 0.25rem; }
.gap-1\.5 { gap: 0.375rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* space-y */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-5 > * + * { margin-top: 1.25rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-y-12 > * + * { margin-top: 3rem; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.top-full { top: 100%; }
.-bottom-1 { bottom: -0.25rem; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
.-z-10 { z-index: -10; }
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }

/* Sizing */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-0 { width: 0; }
.w-px { width: 1px; }
.w-1\/2 { width: 50%; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-9 { width: 2.25rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-20 { width: 5rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-48 { width: 12rem; }
.w-96 { width: 24rem; }
.h-full { height: 100%; }
.h-auto { height: auto; }
.h-px { height: 1px; }
.h-2 { height: 0.5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-9 { height: 2.25rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-14 { height: 3.5rem; }
.h-16 { height: 4rem; }
.h-20 { height: 5rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-48 { height: 12rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.min-h-32 { min-height: 8rem; }
.min-h-screen { min-height: 100vh; }
.min-h-\[90vh\] { min-height: 90vh; }
.min-w-0 { min-width: 0; }
.min-w-max { min-width: max-content; }
.max-w-xs { max-width: 20rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-none { max-width: none; }
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }
.aspect-\[3\/4\] { aspect-ratio: 3 / 4; }

/* Spacing */
.m-0 { margin: 0; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-4 { margin-left: 1rem; margin-right: 1rem; }
.ml-auto { margin-left: auto; }
.ml-1 { margin-left: 0.25rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.ml-4 { margin-left: 1rem; }
.ml-6 { margin-left: 1.5rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-7 { margin-bottom: 1.75rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-14 { margin-bottom: 3.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mt-0\.5 { margin-top: 0.125rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-1\.5 { margin-top: 0.375rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-7 { margin-top: 1.75rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.my-2 { margin-top: 0.5rem; margin-bottom: 0.5rem; }
.my-6 { margin-top: 1.5rem; margin-bottom: 1.5rem; }
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-7 { padding: 1.75rem; }
.p-8 { padding: 2rem; }
.p-12 { padding: 3rem; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-7 { padding-left: 1.75rem; padding-right: 1.75rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-2\.5 { padding-top: 0.625rem; padding-bottom: 0.625rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-3\.5 { padding-top: 0.875rem; padding-bottom: 0.875rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-5 { padding-top: 1.25rem; padding-bottom: 1.25rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.pt-3 { padding-top: 0.75rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-11 { padding-top: 2.75rem; }
.pt-12 { padding-top: 3rem; }
.pt-16 { padding-top: 4rem; }
.pb-5 { padding-bottom: 1.25rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-11 { padding-bottom: 2.75rem; }
.pl-6 { padding-left: 1.5rem; }
.pr-4 { padding-right: 1rem; }

/* Typografie */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.italic { font-style: italic; }
.uppercase { text-transform: uppercase; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.leading-none { line-height: 1; }
.leading-tight { line-height: 1.25; }
.leading-snug { line-height: 1.375; }
.leading-relaxed { line-height: 1.625; }
.leading-\[1\.05\] { line-height: 1.05; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }
.tracking-tight { letter-spacing: -0.025em; }
.whitespace-nowrap { white-space: nowrap; }
.whitespace-pre-wrap { white-space: pre-wrap; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.underline { text-decoration: underline; }
.list-disc { list-style: disc; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border-width: 0;
}

/* Farben */
.text-white { color: #ffffff; }
.text-\[\#2C2C2C\] { color: #2C2C2C; }
.text-\[\#272E68\] { color: #272E68; }
.text-\[\#0F2044\] { color: #0F2044; }
.text-\[\#D1A450\] { color: #D1A450; }
.text-\[\#F5F1E8\] { color: #F5F1E8; }
.text-\[\#555555\], .text-\[\#555\] { color: #555555; }
.text-\[\#666\] { color: #666666; }
.text-\[\#888888\] { color: #888888; }
.text-\[\#999999\], .text-\[\#999\] { color: #999999; }
.text-\[\#006D6F\] { color: #006D6F; }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-600 { color: #4b5563; }
.text-green-700 { color: #15803d; }
.text-green-800 { color: #166534; }
.text-red-500 { color: #ef4444; }
.text-red-700 { color: #b91c1c; }
.text-slate-600 { color: #475569; }
.text-slate-700 { color: #334155; }
.text-slate-900 { color: #0f172a; }
.text-white\/85 { color: rgba(255,255,255,0.85); }
.text-white\/90 { color: rgba(255,255,255,0.9); }

.bg-white { background-color: #ffffff; }
.bg-\[\#F5F1E8\] { background-color: #F5F1E8; }
.bg-\[\#F5F1E8\]\/30 { background-color: rgba(245,241,232,0.3); }
.bg-\[\#F5F1E8\]\/20 { background-color: rgba(245,241,232,0.2); }
.bg-\[\#FDFBF7\] { background-color: #FDFBF7; }
.bg-\[\#F0EBE0\] { background-color: #F0EBE0; }
.bg-\[\#F0E8DD\] { background-color: #F0E8DD; }
.bg-\[\#E8E3D8\] { background-color: #E8E3D8; }
.bg-\[\#272E68\] { background-color: #272E68; }
.bg-\[\#272E68\]\/10 { background-color: rgba(39,46,104,0.1); }
.bg-\[\#272E68\]\/5 { background-color: rgba(39,46,104,0.05); }
.bg-\[\#0F2044\] { background-color: #0F2044; }
.bg-black\/30 { background-color: rgba(0,0,0,0.3); }
.bg-green-50 { background-color: #f0fdf4; }
.bg-red-50 { background-color: #fef2f2; }
.bg-red-100 { background-color: #fee2e2; }
.bg-blue-600 { background-color: #2563eb; }
.bg-white\/80 { background-color: rgba(255,255,255,0.8); }

.border { border-width: 1px; border-style: solid; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; border-style: solid; }
.border-t { border-top-width: 1px; border-top-style: solid; }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-l-2 { border-left-width: 2px; border-left-style: solid; }
.border-r-2 { border-right-width: 2px; border-right-style: solid; }
.border-t-2 { border-top-width: 2px; border-top-style: solid; }
.border-b-2 { border-bottom-width: 2px; border-bottom-style: solid; }
.border-r { border-right-width: 1px; border-right-style: solid; }
.border-\[\#272E68\] { border-color: #272E68; }
.border-\[\#272E68\]\/5 { border-color: rgba(39,46,104,0.05); }
.border-\[\#272E68\]\/10 { border-color: rgba(39,46,104,0.1); }
.border-\[\#272E68\]\/20 { border-color: rgba(39,46,104,0.2); }
.border-\[\#272E68\]\/40 { border-color: rgba(39,46,104,0.4); }
.border-\[\#D1A450\] { border-color: #D1A450; }
.border-\[\#D1A450\]\/20 { border-color: rgba(209,164,80,0.2); }
.border-\[\#D1A450\]\/30 { border-color: rgba(209,164,80,0.3); }
.border-\[\#0F2044\] { border-color: #0F2044; }
.border-\[\#016C76\]\/10 { border-color: rgba(1,108,118,0.1); }
.border-white\/30 { border-color: rgba(255,255,255,0.3); }
.border-green-200 { border-color: #bbf7d0; }
.border-red-200 { border-color: #fecaca; }

.rounded { border-radius: 0.25rem; }
.rounded-sm { border-radius: 0.125rem; }
.rounded-md { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-full { border-radius: 9999px; }

.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05); }
.shadow-md { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1); }

.object-cover { object-fit: cover; }
.object-center { object-position: center; }
.object-top { object-position: top; }
.opacity-0 { opacity: 0; }
.opacity-5 { opacity: 0.05; }
.opacity-10 { opacity: 0.1; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-70 { opacity: 0.7; }
.opacity-90 { opacity: 0.9; }
.fill-\[\#272E68\] { fill: #272E68; }
.fill-current { fill: currentColor; }
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.resize-none { resize: none; }
.transition, .transition-all { transition: all 0.2s ease; }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease; }
.transition-opacity { transition: opacity 0.2s ease; }
.transition-shadow { transition: box-shadow 0.2s ease; }
.transition-transform { transition: transform 0.2s ease; }
.duration-200 { transition-duration: 0.2s; }
.duration-300 { transition-duration: 0.3s; }
.duration-500 { transition-duration: 0.5s; }
.rotate-180 { transform: rotate(180deg); }
.backdrop-blur-md { backdrop-filter: blur(12px); }

/* Verläufe */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--grad-from, transparent), var(--grad-via, transparent), var(--grad-to, transparent)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--grad-from, transparent), var(--grad-via, transparent), var(--grad-to, transparent)); }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--grad-from, transparent), var(--grad-to, transparent)); }
.from-transparent { --grad-from: transparent; }
.via-transparent { --grad-via: transparent; }
.to-\[\#F5F1E8\]\/30 { --grad-to: rgba(245,241,232,0.3); }
.from-\[\#272E68\]\/80 { --grad-from: rgba(39,46,104,0.8); }
.to-transparent { --grad-to: transparent; }
.from-slate-50 { --grad-from: #f8fafc; }
.to-slate-100 { --grad-to: #f1f5f9; }

/* Hover-Zustände */
.hover\:text-\[\#272E68\]:hover { color: #272E68; }
.hover\:text-\[\#0F2044\]:hover { color: #0F2044; }
.hover\:text-\[\#D1A450\]:hover { color: #D1A450; }
.hover\:text-\[\#F5F1E8\]:hover { color: #F5F1E8; }
.hover\:text-\[\#16A7A8\]:hover { color: #16A7A8; }
.hover\:text-white:hover { color: #ffffff; }
.hover\:bg-\[\#F5F1E8\]:hover { background-color: #F5F1E8; }
.hover\:bg-\[\#F5F1E8\]\/50:hover { background-color: rgba(245,241,232,0.5); }
.hover\:bg-\[\#F9F7F3\]:hover { background-color: #F9F7F3; }
.hover\:bg-\[\#272E68\]:hover { background-color: #272E68; }
.hover\:bg-\[\#1a1f45\]:hover { background-color: #1a1f45; }
.hover\:bg-white\/10:hover { background-color: rgba(255,255,255,0.1); }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:border-\[\#272E68\]\/20:hover { border-color: rgba(39,46,104,0.2); }
.hover\:border-\[\#272E68\]\/30:hover { border-color: rgba(39,46,104,0.3); }
.hover\:shadow-md:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.hover\:opacity-80:hover { opacity: 0.8; }
.hover\:underline:hover { text-decoration: underline; }
.hover\:gap-3:hover { gap: 0.75rem; }
.group:hover .group-hover\:text-\[\#272E68\] { color: #272E68; }
.group:hover .group-hover\:text-\[\#D1A450\] { color: #D1A450; }
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { transform: scale(1.05); }
.group:hover .group-hover\:w-full { width: 100%; }
.group:hover .group-hover\:gap-3 { gap: 0.75rem; }

/* Formular-Zustände */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px rgba(39,46,104,0.2); }
input:disabled, button:disabled { opacity: 0.5; cursor: not-allowed; }
input[type="checkbox"], input[type="radio"] { accent-color: #272E68; width: 1rem; height: 1rem; }

/* Sticky-Header: Hintergrund erscheint beim Scrollen */
header[data-header] { background-color: transparent; }
header[data-header][data-scrolled] {
  background-color: rgba(245, 241, 232, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -4px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(39, 46, 104, 0.05);
}

/* Artikel-Typografie (Markdown-Beitrag "Honorarberatung") */
.prose { max-width: 65ch; color: #374151; font-size: 1rem; line-height: 1.75; }
.prose h1 { font-size: 2.25rem; line-height: 1.2; margin-bottom: 1.5rem; color: #1f2937; }
.prose h2 { font-size: 1.5rem; line-height: 1.3; margin-top: 2.5rem; margin-bottom: 1rem; color: #1f2937; }
.prose p { margin-bottom: 1.25rem; }
.prose ul { list-style: disc; padding-left: 1.625rem; margin-bottom: 1.25rem; }
.prose li { margin-bottom: 0.5rem; }
.prose strong { font-weight: 600; color: #1f2937; }
.prose img { border-radius: 0.5rem; }
.prose-lg { font-size: 1.125rem; line-height: 1.8; }
@media (min-width: 1024px) { .lg\:prose-xl { font-size: 1.25rem; line-height: 1.8; } }

/* Breakpoint: sm (640px) */
@media (min-width: 640px) {
  .sm\:flex-row { flex-direction: row; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .sm\:p-8 { padding: 2rem; }
  .sm\:ml-8 { margin-left: 2rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:pt-5 { padding-top: 1.25rem; }
  .sm\:block { display: block; }
}

/* Breakpoint: md (768px) */
@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .md\:grid-cols-\[auto_1fr\] { grid-template-columns: auto 1fr; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:text-5xl { font-size: 3rem; line-height: 1; }
}

/* Breakpoint: lg (1024px) */
@media (min-width: 1024px) {
  .lg\:hidden { display: none; }
  .lg\:block { display: block; }
  .lg\:flex { display: flex; }
  .lg\:flex-row { flex-direction: row; }
  .lg\:flex-row-reverse { flex-direction: row-reverse; }
  .lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
  .lg\:col-span-2 { grid-column: span 2 / span 2; }
  .lg\:col-span-3 { grid-column: span 3 / span 3; }
  .lg\:order-1 { order: 1; }
  .lg\:order-2 { order: 2; }
  .lg\:w-1\/2 { width: 50%; }
  .lg\:h-12 { height: 3rem; }
  .lg\:h-28 { height: 7rem; }
  .lg\:mx-auto { margin-left: auto; margin-right: auto; }
  .lg\:gap-4 { gap: 1rem; }
  .lg\:gap-8 { gap: 2rem; }
  .lg\:gap-10 { gap: 2.5rem; }
  .lg\:gap-16 { gap: 4rem; }
  .lg\:gap-20 { gap: 5rem; }
  .lg\:p-8 { padding: 2rem; }
  .lg\:p-10 { padding: 2.5rem; }
  .lg\:p-12 { padding: 3rem; }
  .lg\:p-16 { padding: 4rem; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:py-0 { padding-top: 0; padding-bottom: 0; }
  .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .lg\:py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
  .lg\:py-16 { padding-top: 4rem; padding-bottom: 4rem; }
  .lg\:py-20 { padding-top: 5rem; padding-bottom: 5rem; }
  .lg\:py-24 { padding-top: 6rem; padding-bottom: 6rem; }
  .lg\:py-28 { padding-top: 7rem; padding-bottom: 7rem; }
  .lg\:pt-8 { padding-top: 2rem; }
  .lg\:pt-16 { padding-top: 4rem; }
  .lg\:pt-\[45px\] { padding-top: 45px; }
  .lg\:pb-\[40px\] { padding-bottom: 40px; }
  .lg\:pb-\[45px\] { padding-bottom: 45px; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
  .lg\:text-5xl { font-size: 3rem; line-height: 1; }
  .lg\:text-center { text-align: center; }
  .lg\:border-r { border-right-width: 1px; border-right-style: solid; }
  .lg\:border-b-0 { border-bottom-width: 0; }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .md\:border-b { border-bottom-width: 1px; border-bottom-style: solid; }
}
