:root {
  --beige: #F6F2E9;
  --card: #FCFAF3;
  --ink: #2B322E;
  --sage: #8CA192;
  --sage-light: #B9C7BC;
  --sage-dark: #5B7267;
  --blue-deep: #233340;
  --serif: Georgia, 'Iowan Old Style', 'Palatino Linotype', serif;
  --sans: -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--beige);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.7;
}

.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  color: var(--blue-deep);
  margin: 0;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

header {
  position: sticky;
  top: 0;
  background: rgba(246, 242, 233, .94);
  border-bottom: 1px solid rgba(43, 50, 46, .08);
  z-index: 20;
  backdrop-filter: blur(4px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--blue-deep);
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  font-size: 14px;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: var(--ink);
}

nav ul a:hover {
  color: var(--sage-dark);
}

#menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
}

#mobile-menu {
  display: none;
  flex-direction: column;
  padding: 0 24px 20px;
  border-top: 1px solid rgba(43, 50, 46, .08);
}

#mobile-menu a {
  padding: 12px 0;
  text-decoration: none;
  color: var(--ink);
  display: block;
}

#mobile-menu.open {
  display: flex;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transpartent;
  cursor: pointer;
  font-size: 15px;
  background: var(--blue-deep);
  color: var(--beige);
  box-shadow: 0 2px 6px rgba(35, 51, 64, 0.12);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    background-color 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    box-shadow 0.25s ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--sage-dark);
  color: var(--beige);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(35, 51, 64, 0.2);
}

.btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(35, 51, 64, 0.15);
}

.btn-ghost {
  background: transparent;
  color: #0f172a;
  border: 1px solid #cbd5e1;
  box-shadow: none;
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  background: transparent;
  box-shadow: 0 6px 16px rgba(91, 114, 103, 0.25);
}

.btn-ghost:active {
  box-shadow: 0 2px 4px rgba(91, 114, 103, 0.15);
}

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

section {
  padding: 80px 0;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .9s ease-out, transform .9s ease-out;
}

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


.hero {
  text-align: center;
  padding: 120px 0 100px;
  width: 100%;
  min-height: 400px;

  /* Dynamisches Hintergrundbild */
  /*background-image: linear-gradient(rgba(246, 242, 233, 0.85), rgba(246, 242, 233, 0.85)), url('pictures/beispielbild.JPG');*/
  background:
    linear-gradient(180deg, rgba(246, 242, 233, 0.35) 0%, rgba(246, 242, 233, 0.92) 78%, rgba(246, 242, 233, 1) 100%),
    linear-gradient(160deg, #a9c3d4 0%, #5f84a0 45%, #233340 100%);
  background-size: cover;
  background-repeat: no-repeat;
  /*background-position: center;
    background-attachment: fixed;*/
}

.hero h1 {
  font-size: 38px;
  line-height: 1.35;
  max-width: 760px;
  margin: 0 auto;
}

.hero .lead {
  max-width: 620px;
  margin: 26px auto 0;
  color: rgba(43, 50, 46, .75);
  font-size: 17px;
}

.hero .lead2 {
  max-width: 620px;
  margin: 16px auto 0;
  color: rgba(43, 50, 46, .75);
  font-size: 17px;
}

.hero .actions {
  margin-top: 38px;
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.lead-block {
  max-width: 680px;
}

.lead-block p {
  color: rgba(43, 50, 46, .75);
  margin-top: 14px;
  font-size: 16px;
}

.orient-list {
  max-width: 100%;
  margin-top: 34px;
  border-top: 1px solid rgba(43, 50, 46, .08);
}

.orient-item {
  width: 100%;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(43, 50, 46, .08);
  padding: 20px 4px;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color .4s ease;
}

.orient-dot {
  width: 9px;
  height: 9px;
  margin-top: 7px;
  border-radius: 999px;
  border: 1.5px solid rgba(91, 114, 103, .45);
  flex-shrink: 0;
  transition: background-color .5s ease, border-color .5s ease;
}

.orient-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.orient-label {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 16px;
  color: var(--blue-deep);
  transition: color .5s ease;
  ;
}

.orient-desc {
  font-family: var(--sans);
  font-size: 15px;
  color: rgba(43, 50, 46, .7);
  line-height: 1.55;
}

.orient-item:hover {
  background-color: rgba(140, 161, 146, .08);
}

@media (min-width:700px) {
  .orient-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 36px;
  }
}

.section-alt {
  background: rgba(185, 199, 188, .2);
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  align-items: stretch;
}

.angebot-card {
  background: var(--card);
  border: 1px solid rgba(43, 50, 46, .1);
  border-top: 4px solid #0d9488;
  border-radius: 12px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.angebot-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.angebot-card .fokus {
  font-size: 13px;
  color: var(--sage-dark);
  display: block;
  margin-bottom: 20px;
  line-height: 1.4;
}

.angebot-card .card-action {
  margin-top: 24px;
}

.angebot-card p {
  color: rgba(43, 50, 46, .75);
  font-size: 15px;
  margin-bottom: 12px;
}

.angebot-card .card-action {
  margin-top: auto;
}

.angebot-card .btn {
  width: 100%;
  justify-content: center;
}

.badge {
  background-color: #ccfbf1;
  color: #0f766e;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 12px;
  display: inline-block;
  margin-bottom: 12px;
}

.anliegen-list {
  margin-top: 34px;
  max-width: 760px;
}

.anliegen-list li {
  list-style: none;
  position: relative;
  padding: 14px 0 14px 26px;
  border-bottom: 1px solid rgba(43, 50, 46, .07);
  font-size: 16px;
  color: rgba(43, 50, 46, .85);
}

.anliegen-list li:first-child {
  border-top: 1px solid rgba(43, 50, 46, .07);
}

.anliegen-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 23px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--sage-dark);
}

.pause {
  text-align: center;
  padding: 110px 0;
}

.pause p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: rgba(35, 51, 64, .8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-dark {
  background: var(--blue-deep);
  color: var(--beige);
}

.pause {
  text-align: center;
  padding: 110px 0;
}

.pause p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: rgba(35, 51, 64, .8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-dark h2 {
  color: var(--beige);
}

.section-dark .lead-block p {
  color: rgba(246, 242, 233, .75);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.steps li {
  list-style: none;
  border-top: 1px solid rgba(246, 242, 233, .25);
  padding-top: 18px;
}

.steps .num {
  font-family: var(--serif);
  font-style: italic;
  color: var(--sage-light);
  font-size: 20px;
}

.steps h3 {
  color: var(--beige);
  font-size: 16px;
  margin: 10px 0 8px;
  font-family: var(--sans);
}

.steps p {
  color: rgba(246, 242, 233, .7);
  font-size: 14px;
}

.haltung {
  text-align: center;
  background: rgba(185, 199, 188, .2);
}

.haltung .wrap {
  max-width: 680px;
}

.haltung .lead {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--blue-deep);
  line-height: 1.5;
}

.haltung p.body {
  margin-top: 22px;
  color: rgba(43, 50, 46, .75);
  font-size: 16px;
  text-align: left;
}

.haltung p.body+p.body {
  margin-top: 16px;
}

.audience {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.audience .item {
  border-top: 1px solid rgba(43, 50, 46, .12);
  padding-top: 16px;
}

.audience h3 {
  font-size: 17px;
  margin-bottom: 8px;
}

.audience p {
  color: rgba(43, 50, 46, .7);
  font-size: 15px;
}

.about {
  max-width: 680px;
  margin: 0 auto;
}

.about .lead {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.5;
  color: var(--blue-deep);
}

.about p.body {
  margin-top: 20px;
  color: rgba(43, 50, 46, .75);
  font-size: 16px;
  text-align: left;
}

.about p.body+p.body {
  margin-top: 14px;
}

.credentials {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.credentials span {
  border: 1px solid rgba(43, 50, 46, .2);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 13px;
  color: rgba(43, 50, 46, .7);
}

.kontakt-features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
}

.kontakt-features span {
  font-size: 14px;
  color: rgba(43, 50, 46, .7);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kontakt-features span::before {
  content: '✓';
  color: var(--sage-dark);
  font-weight: 600;
}

.note {
  color: rgba(43, 50, 46, .5);
  font-size: 14px;
  margin-top: 26px;
  max-width: 480px;
}

.kontakt-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Styling Version 2 */
.honorar-section {
  padding: 60px 20px;
  color: #334155;
  font-family: inherit;
}

.honorar-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #1e293b;
  margin-bottom: 8px;
}

.intro-text {
  color: #64748b;
  font-size: 1.1rem;
  margin: 0;
}

/* Grid Layout */
.honorar-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

/* Cards */
.card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  border-top: 4px solid #4a6572;
  padding: 28px 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.card-header {
  margin-bottom: 16px;
}

.card-badge {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #f1f5f9;
  color: #475569;
  margin-bottom: 8px;
}

.card-header h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #0f172a;
}

.price {
  font-size: 2rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1;
}

.price-custom {
  font-size: 1.5rem;
  font-weight: 600;
  color: #334155;
  line-height: 1.2;
  margin-top: 8px;
}

.subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin: 4px 0 20px 0;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}

.card-list li {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #475569;
  position: relative;
  padding-left: 18px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #64748b;
}

/* Unteres Info Banner */
.info-banner {
  background-color: #fafafa;
  border: 1px solid #e5e9f0;
  border-radius: 12px;
  padding: 24px 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.info-block h4 {
  margin: 0 0 8px 0;
  font-size: 1.1rem;
  color: #1e293b;
}

.info-block p {
  margin: 0;
  font-size: 0.95rem;
  color: #475569;
  line-height: 1.5;
}

footer {
  padding: 40px 0;
  font-size: 14px;
  color: rgba(43, 50, 46, .6);
  /*background-color: rgba(185,199,188,.2);*/
}

footer .top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 24px;
}

footer .name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 19px;
  color: var(--blue-deep);
}

footer .tagline {
  font-size: 13px;
  margin-top: 4px;
}

footer .contact p {
  margin-bottom: 4px;
}

footer a {
  text-decoration: none;
}

footer .contact a:hover {
  color: var(--sage-dark);
}

footer .legal {
  border-top: 1px solid rgba(43, 50, 46, .08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}

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

  .angebot-card .fokus {
    min-height: auto;
  }
}

/* Responsive Ansicht für Mobilgeräte */
@media (max-width:768px) {
  nav ul.desktop {
    display: none;
  }

  #menu-toggle {
    display: block;
  }

  .hero h1 {
    font-size: 28px;
  }

  .info-banner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  #orient-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .orient-item {
    width: 100%;
    text-align: left;
  }

  .orient-desc {
    display: block;
    max-height: none;
    opacity: 1;
    visibility: visible;
  }

  .orient-item.active .orient-desc {
    max-height: none;
    opacity: 1;
  }
}

@media (max-width: 1024px) {
  .hero {
    background-color: #5f84a0;
    background-image:
      linear-gradient(180deg,
        rgba(246, 242, 233, 0.15) 0%,
        rgba(246, 242, 233, 0.55) 78%,
        rgba(246, 242, 233, 0.95) 100%),
      linear-gradient(160deg, #a9c3d4 0%, #5f84a0 45%, #233340 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
  }
}