/* ========================================
   Orth & Rumpl – Premium Kanzlei-Design
   ======================================== */

/* --- Custom Properties --- */
:root {
  --primary: #1a2332;
  --accent: #b8965a;
  --accent-hover: #a07d45;
  --text: #2d3748;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-warm: #f7f6f3;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

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

ul {
  list-style: none;
}

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-sm);
}

.nav__container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--accent);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  letter-spacing: 0.01em;
}

.nav__link:hover,
.nav__link--active {
  color: var(--primary);
}

.nav__link--active {
  background: rgba(26, 35, 50, 0.06);
}

.nav__link--cta {
  background: var(--primary);
  color: var(--white) !important;
  margin-left: 8px;
}

.nav__link--cta:hover {
  background: #243044;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  gap: 6px;
  padding: 0;
  z-index: 1100;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__hamburger--active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav__hamburger--active span:nth-child(2) {
  opacity: 0;
}

.nav__hamburger--active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Overlay */
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1050;
  background: rgba(26, 35, 50, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-overlay--active {
  opacity: 1;
  visibility: visible;
}

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

.mobile-overlay__menu li {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-overlay--active .mobile-overlay__menu li {
  opacity: 1;
  transform: translateY(0);
}

.mobile-overlay--active .mobile-overlay__menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(2) { transition-delay: 0.15s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(3) { transition-delay: 0.2s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(4) { transition-delay: 0.25s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(5) { transition-delay: 0.3s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(6) { transition-delay: 0.35s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(7) { transition-delay: 0.4s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(8) { transition-delay: 0.45s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(9) { transition-delay: 0.5s; }
.mobile-overlay--active .mobile-overlay__menu li:nth-child(10) { transition-delay: 0.55s; }

.mobile-overlay__link {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--white);
  padding: 14px 0;
  transition: color var(--transition);
}

.mobile-overlay__link:hover {
  color: var(--accent);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.7) 0%,
    rgba(26, 35, 50, 0.85) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 800px;
}

.hero__badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184, 150, 90, 0.4);
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.hero__title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  white-space: nowrap;
}

.hero__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}

.hero__text {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent);
  padding: 16px 36px;
  border-radius: var(--radius);
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}

.hero__cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* --- Stats Bar --- */
.stats {
  background: var(--primary);
  padding: 48px 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stats__item {
  padding: 8px;
}

.stats__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
  margin-bottom: 6px;
}

.stats__label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .stats__number {
    font-size: 1.75rem;
  }
}

/* --- Sections --- */
.section {
  padding: 100px 0;
}

.section__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
  margin-bottom: 56px;
}

/* --- Leistungen Grid --- */
.leistungen {
  background: var(--bg);
}

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

.card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card:hover::after {
  transform: scaleX(1);
}

.card__number {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(184, 150, 90, 0.2);
  margin-bottom: 16px;
  line-height: 1;
}

.card__title {
  font-size: 1.05rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.card__text {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Sachverständige Section --- */
.sv {
  background: var(--bg-warm);
}

.sv__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.sv__card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.sv__photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}

.sv__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}

.sv__card:hover .sv__photo img {
  transform: scale(1.03);
}

.sv__info {
  padding: 32px;
}

.sv__name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.sv__role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 4px;
}

.sv__position {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sv__section {
  margin-bottom: 24px;
}

.sv__section h4 {
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

.sv__list {
  list-style: none;
}

.sv__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.sv__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.sv__list--checks li::before {
  content: '✓';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  top: 1px;
}

.sv__timeline {
  list-style: none;
}

.sv__timeline li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.6;
}

.sv__timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary);
}

.sv__timeline li span {
  display: inline-block;
  font-weight: 600;
  color: var(--primary);
  min-width: 90px;
  margin-right: 8px;
}

.sv__publication {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.6;
}

.sv__contact {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
}

.sv__contact a {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  transition: color var(--transition);
}

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

.sv__standort {
  font-size: 0.82rem;
  color: var(--text-light);
}

@media (max-width: 1024px) {
  .sv__grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .sv__info {
    padding: 24px;
  }

  .sv__name {
    font-size: 1.3rem;
  }

  .sv__contact {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* --- Detail Banner --- */
.detail__banner {
  position: relative;
  height: 220px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.detail__banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26, 35, 50, 0.5) 0%,
    rgba(26, 35, 50, 0.85) 100%
  );
}

.detail__banner-content {
  position: relative;
  z-index: 1;
  padding-bottom: 32px;
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.detail__banner-nr {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(184, 150, 90, 0.35);
  line-height: 1;
}

.detail__banner-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .detail__banner {
    height: 160px;
  }

  .detail__banner-nr {
    font-size: 2rem;
  }

  .detail__banner-content {
    padding-bottom: 20px;
  }
}

/* --- Detail Sections --- */
.detail {
  background: var(--bg);
}

.detail--alt {
  background: var(--bg-warm);
}

.detail__header {
  margin-bottom: 48px;
}

.detail__intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 720px;
  line-height: 1.8;
}

.detail__grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.detail__main h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

/* Check List */
.check-list li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  line-height: 1.7;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.check-list li strong {
  color: var(--primary);
}

/* Detail Price */
.detail__price {
  margin-top: 36px;
  padding: 24px;
  background: var(--bg-warm);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
}

.detail--alt .detail__price {
  background: var(--white);
}

.detail__price h4 {
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.detail__price p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.detail__price-note {
  color: var(--text-light);
  font-size: 0.85rem !important;
  margin-top: 4px;
}

/* Sidebar */
.detail__sidebar {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 96px;
}

.detail--alt .detail__sidebar {
  background: var(--white);
}

.detail__sidebar h4 {
  font-size: 1rem;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--accent);
}

.detail__sidebar ul li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 14px;
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.6;
}

.detail__sidebar ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Kontakt --- */
.kontakt {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.kontakt__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.kontakt__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 35, 50, 0.92);
}

.kontakt__container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.kontakt__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 16px;
}

.kontakt__text {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}

.kontakt__details {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}

.kontakt__person h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 4px;
}

.kontakt__role {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 2px;
}

.kontakt__person a {
  display: block;
  color: var(--accent);
  font-size: 0.93rem;
  transition: color var(--transition);
}

.kontakt__phone {
  font-size: 0.88rem !important;
  color: rgba(255, 255, 255, 0.55) !important;
  margin-top: 2px;
}

.kontakt__phone:hover {
  color: var(--accent) !important;
}

.kontakt__person a:hover {
  color: #d4b06e;
}

.kontakt__firma {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.kontakt__firma p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.kontakt__firma a {
  color: var(--accent);
  font-size: 0.9rem;
}

.kontakt__cta-box {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 40px;
}

.kontakt__cta-box h3 {
  color: var(--white);
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.kontakt__cta-box p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

/* Button */
.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}

.btn--gold {
  background: var(--accent);
  color: var(--primary);
}

.btn--gold:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}

.btn--outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-1px);
}

/* Detail CTA */
.detail__cta {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* --- Ablauf (Process) --- */
.ablauf {
  background: var(--bg-warm);
}

.ablauf__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  counter-reset: step;
}

.ablauf__step {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 32px 28px;
  padding-top: 56px;
}

.ablauf__nr {
  position: absolute;
  top: -1px;
  left: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) var(--radius);
}

.ablauf__step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.ablauf__step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .ablauf__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ablauf__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ablauf__step {
    padding: 24px 24px;
    padding-top: 52px;
  }
}

/* --- FAQ --- */
.faq {
  background: var(--bg);
}

.faq__list {
  max-width: 800px;
}

.faq__item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.faq__question {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  padding: 20px 40px 20px 0;
  position: relative;
  list-style: none;
  line-height: 1.4;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--accent);
  transition: transform var(--transition);
}

details[open] .faq__question::after {
  content: '−';
}

.faq__answer {
  padding: 0 0 20px 0;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* --- Trust Badges --- */
.trust {
  background: var(--bg-warm);
  padding: 40px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.trust__grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.trust__badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust__icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  color: var(--accent);
}

.trust__icon svg {
  width: 100%;
  height: 100%;
}

.trust__text {
  display: flex;
  flex-direction: column;
}

.trust__text strong {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  line-height: 1.3;
}

.trust__text span {
  font-size: 0.75rem;
  color: var(--text-light);
  line-height: 1.3;
}

@media (max-width: 768px) {
  .trust__grid {
    gap: 20px 32px;
  }

  .trust__icon {
    width: 28px;
    height: 28px;
  }
}

/* --- Methoden (Comparison) --- */
.methoden {
  background: var(--primary);
  color: var(--white);
}

.methoden .section__title {
  color: var(--white);
}

.methoden .section__subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.methoden__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.methoden__card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}

.methoden__card--highlight {
  background: rgba(184, 150, 90, 0.1);
  border-color: rgba(184, 150, 90, 0.3);
}

.methoden__badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: var(--accent);
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 0 0 var(--radius) var(--radius);
}

.methoden__card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.methoden__card h3 small {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--accent);
}

.methoden__desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  margin-bottom: 16px;
}

.methoden__card ul {
  list-style: none;
  margin-bottom: 16px;
}

.methoden__card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 4px;
}

.methoden__card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.methoden__use {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.methoden__use strong {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 1024px) {
  .methoden__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* --- Referenzen --- */
.referenzen {
  background: var(--bg-warm);
}

.referenzen__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.referenzen__card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.referenzen__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid rgba(184, 150, 90, 0.3);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.referenzen__card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.referenzen__card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  flex-grow: 1;
  margin-bottom: 16px;
}

.referenzen__result {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--primary);
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.referenzen__result::before {
  content: '✓ ';
  color: var(--accent);
}

@media (max-width: 1024px) {
  .referenzen__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* --- Publikation & Video --- */
.publikation {
  background: var(--bg);
}

.publikation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.publikation__book {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 28px;
  align-items: start;
}

.publikation__cover {
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.publikation__cover-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary) 0%, #243044 100%);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.publikation__cover-author {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.publikation__cover-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 6px;
}

.publikation__cover-sub {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.4;
}

.publikation__cover-year {
  margin-top: auto;
  font-size: 0.75rem;
  color: var(--accent);
}

.publikation__info h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 8px;
}

.publikation__info h4 {
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 6px;
}

.publikation__author {
  font-size: 0.88rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.publikation__info p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.video-placeholder {
  aspect-ratio: 16 / 9;
  background: var(--bg-warm);
  border: 2px dashed rgba(0, 0, 0, 0.1);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.video-placeholder__inner {
  text-align: center;
  padding: 24px;
}

.video-placeholder__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  opacity: 0.5;
  margin-bottom: 12px;
}

.video-placeholder__text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 4px;
}

.video-placeholder__hint {
  font-size: 0.8rem;
  color: var(--text-light);
}

.publikation__calendly h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.publikation__calendly p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

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

@media (max-width: 768px) {
  .publikation__book {
    grid-template-columns: 140px 1fr;
    gap: 20px;
  }

  .publikation__cover-title {
    font-size: 0.9rem;
  }
}

/* --- Contact Form --- */
.kontakt__form {
  margin-top: 20px;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.form__input {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 12px 16px;
  transition: border-color var(--transition), background var(--transition);
  width: 100%;
}

.form__input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form__input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}

.form__select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form__select option {
  background: var(--primary);
  color: var(--white);
}

.form__textarea {
  margin-bottom: 16px;
  resize: vertical;
  min-height: 100px;
}

.form__footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.form__footer button {
  border: none;
  cursor: pointer;
}

.form__hint {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.form__hint a {
  color: var(--accent);
}

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

  .form__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

/* --- Impressum --- */
.impressum {
  background: #151d29;
  padding: 64px 0;
}

.impressum__title {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.impressum__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.impressum__person h3 {
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 8px;
}

.impressum__person p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-bottom: 8px;
}

.impressum__person a {
  color: var(--accent);
  transition: color var(--transition);
}

.impressum__person a:hover {
  color: #d4b06e;
}

.impressum__note {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.impressum__note p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  margin-bottom: 6px;
}

.impressum__note strong {
  color: rgba(255, 255, 255, 0.5);
}

.impressum__note a {
  color: var(--accent);
  transition: color var(--transition);
}

.impressum__note a:hover {
  color: #d4b06e;
}

@media (max-width: 768px) {
  .impressum__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* --- Footer --- */
.footer {
  background: var(--primary);
  padding: 28px 0;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer__copy {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

/* --- Skip to Content & SR-Only --- */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-to-content:focus {
  top: 12px;
}

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

/* --- Detail Cross-Links --- */
.detail__related {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--text-light);
}

.detail__related a {
  color: var(--accent);
  font-weight: 500;
  transition: color var(--transition);
}

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

/* --- Datenschutz --- */
.datenschutz {
  background: #1a1f2a;
  padding: 64px 0;
}

.datenschutz__title {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.datenschutz__content h3 {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 24px;
  margin-bottom: 8px;
}

.datenschutz__content h3:first-child {
  margin-top: 0;
}

.datenschutz__content p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.7;
  margin-bottom: 4px;
}

.datenschutz__content a {
  color: var(--accent);
  transition: color var(--transition);
}

.datenschutz__content a:hover {
  color: #d4b06e;
}

/* --- Form Field Wrapper --- */
.form__field {
  width: 100%;
}

/* --- Scroll Animations --- */
.animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.animate[data-delay="1"] { transition-delay: 0.1s; }
.animate[data-delay="2"] { transition-delay: 0.2s; }
.animate[data-delay="3"] { transition-delay: 0.3s; }
.animate[data-delay="4"] { transition-delay: 0.4s; }
.animate[data-delay="5"] { transition-delay: 0.15s; }
.animate[data-delay="6"] { transition-delay: 0.25s; }
.animate[data-delay="7"] { transition-delay: 0.35s; }
.animate[data-delay="8"] { transition-delay: 0.45s; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .leistungen__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .detail__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail__sidebar {
    position: static;
  }

  .kontakt__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 72px;
  }

  .nav__menu {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .section {
    padding: 72px 0;
  }

  .section__title {
    font-size: 1.75rem;
  }

  .hero__content {
    padding: 100px 20px 60px;
  }

  .leistungen__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .card {
    padding: 28px 24px;
  }

  .kontakt {
    padding: 80px 0;
  }

  .kontakt__details {
    flex-direction: column;
    gap: 20px;
  }

  .kontakt__cta-box {
    padding: 28px;
  }

  .footer__container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero__bg,
  .kontakt__bg {
    background-attachment: scroll;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 2.25rem;
  }

  .hero__cta {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
}