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

:root {
  --gold:       #b8976a;
  --gold-light: #d4b48a;
  --gold-dim:   rgba(184, 151, 106, 0.18);
  --dark:       #0e0e0e;
  --dark-mid:   #161616;
  --white:      #f5f2ee;
  --white-dim:  rgba(245, 242, 238, 0.55);
}

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

html, body {
  background: var(--dark);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

/* ─── NAV ─────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 56px;
  background: rgba(14, 14, 14, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(184, 151, 106, 0.25);
  opacity: 0;
  animation: fadeDown 0.9s ease 0.2s forwards;
}

.nav-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-wordmark .name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.nav-wordmark .sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.62rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
  text-shadow: 0 1px 8px rgba(0,0,0,0.8);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--white);
}

.nav-cta {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 8px 22px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
}

.nav-cta::after {
  display: none !important;
}

/* ─── HERO ────────────────────────────────────────────── */
header.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

/* Left panel */
.hero-left {
  position: relative;
  z-index: 10;
  background: var(--dark-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px 64px 64px 56px;
  opacity: 0;
  animation: fadeLeft 1s ease 0.5s forwards;
}

/* Vertical gold accent line — right edge */
.hero-left::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent);
  opacity: 0;
  animation: lineReveal 1.2s ease 1.1s forwards;
}

.hero-wordmark {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hw-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(3.5rem, 6vw, 5rem);
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1;
}

.hw-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: clamp(0.85rem, 1.3vw, 1.1rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

/* Right panel — portrait */
.hero-right {
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.4s ease 0.3s forwards;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  filter: grayscale(1);
}

.vimeo-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
  filter: grayscale(1);
}

.vimeo-placeholder {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  cursor: pointer;
}

.vimeo-placeholder-btn {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid rgba(184,151,106,0.5);
  background: rgba(184,151,106,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.vimeo-placeholder-btn:hover {
  background: rgba(184,151,106,0.25);
  border-color: var(--gold);
}

.vimeo-placeholder-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,242,238,0.5);
  text-align: center;
  line-height: 1.6;
}

.vimeo-placeholder-text span {
  font-size: 0.65rem;
  opacity: 0.6;
  text-transform: none;
  letter-spacing: 0.05em;
}

/* ─── COOKIE BANNER ─────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(14,14,14,0.97);
  border-top: 1px solid rgba(184,151,106,0.2);
  padding: 20px 32px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(8px);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}

.cookie-banner-text strong {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}

.cookie-banner-text p {
  font-family: 'Barlow', sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--white-dim);
  margin: 0;
  line-height: 1.6;
}

.cookie-dsgvo-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--gold);
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(184,151,106,0.4);
}

.cookie-dsgvo-link:hover {
  text-decoration-color: var(--gold);
}

.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.cookie-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 24px;
  cursor: pointer;
  border: 1px solid rgba(184,151,106,0.4);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.cookie-btn--decline {
  background: transparent;
  color: var(--white-dim);
}

.cookie-btn--decline:hover {
  background: rgba(255,255,255,0.05);
  color: var(--white);
}

.cookie-btn--accept {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.cookie-btn--accept:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}

@media (max-width: 700px) {
  .cookie-banner {
    padding: 16px 20px;
  }
  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.vimeo-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  pointer-events: none;
}

/* Multi-directional edge blend */
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--dark-mid) 0%, rgba(22,22,22,0.5) 18%, transparent 45%),
    linear-gradient(to bottom, var(--dark-mid) 0%, transparent 22%),
    linear-gradient(to top,    var(--dark-mid) 0%, transparent 28%),
    linear-gradient(to left,   var(--dark-mid) 0%, transparent 20%);
  z-index: 2;
}

.hero-right::after { display: none; }

/* Decorative corner bracket — top right of image */
.corner-bracket {
  position: absolute;
  top: 40px;
  right: 48px;
  width: 36px;
  height: 36px;
  z-index: 10;
  opacity: 0;
  animation: fadeIn 1s ease 1.3s forwards;
}

.corner-bracket::before,
.corner-bracket::after {
  content: '';
  position: absolute;
  background: var(--gold);
  opacity: 0.7;
}

.corner-bracket::before {
  top: 0;
  right: 0;
  width: 100%;
  height: 1px;
}

.corner-bracket::after {
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
}

/* Large catchphrase over city image */
.hero-catcher {
  position: absolute;
  top: 50%;
  left: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 15;
  padding: 0 48px;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-style: italic;
  font-size: clamp(2rem, 3vw, 3.6rem);
  line-height: 1.25;
  color: var(--white);
  text-shadow:
    0 2px 20px rgba(0,0,0,0.9),
    0 4px 60px rgba(0,0,0,0.7);
  letter-spacing: 0.01em;
  opacity: 0;
  animation: fadeUp 1.8s ease 2.2s forwards;
  pointer-events: none;
}

.hero-catcher::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.9;
}

.hero-catcher::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 20px auto 0;
  opacity: 0.9;
}

/* Floating credential badge */
.hero-badge {
  position: absolute;
  bottom: 52px;
  right: 52px;
  z-index: 10;
  text-align: right;
  opacity: 0;
  animation: fadeUp 0.9s ease 1.4s forwards;
}

.hero-badge .badge-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--white);
  display: block;
}

.hero-badge .badge-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.68rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 5px;
}

/* ─── SCROLL ARROW (mobile) ──────────────────────────── */
.scroll-arrow {
  display: none;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  color: var(--white);
  opacity: 0;
  animation: fadeIn 1s ease 2.5s forwards;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.scroll-arrow svg {
  animation: arrowBounce 1.6s ease-in-out infinite;
}

@keyframes arrowBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

.scroll-arrow.hidden {
  opacity: 0 !important;
}

/* ─── SCROLL HINT ─────────────────────────────────────── */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 56px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease 1.8s forwards;
}

.scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.58rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--white-dim);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold) 0%, transparent 100%);
  animation: scrollPulse 2.2s ease-in-out 2.2s infinite;
}

/* ─── KEYFRAMES ───────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-12px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes lineReveal {
  from { opacity: 0; transform: scaleY(0); transform-origin: top; }
  to   { opacity: 1; transform: scaleY(1); transform-origin: top; }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.25); }
}

/* ─── LEISTUNGEN ─────────────────────────────────────── */
.leistungen {
  background: var(--dark);
  padding: 100px 56px 64px;
}

.leistungen-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.leistungen-header {
  margin-bottom: 64px;
}

.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.78rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  letter-spacing: -0.01em;
}

.leistungen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-bottom: 72px;
}

.leistung-card {
  padding: 48px 48px 48px 0;
  border-top: 1px solid rgba(184,151,106,0.2);
}

.leistung-card:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid rgba(184,151,106,0.2);
}

.leistung-icon {
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.85;
}

.leistung-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}

.leistung-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--white-dim);
}

.leistungen-cta {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--gold);
  text-decoration: none;
  padding: 22px 56px;
  box-shadow: 0 4px 32px rgba(184,151,106,0.35);
  transition: background 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
}

.cta-button:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 48px rgba(184,151,106,0.55);
  letter-spacing: 0.28em;
}

.cta-button--subtle {
  background: var(--dark);
  color: var(--white-dim);
  box-shadow: none;
  border: 1px solid rgba(245,242,238,0.12);
}

.cta-button--subtle:hover {
  background: rgba(245,242,238,0.05);
  color: var(--white);
  box-shadow: none;
  border-color: rgba(245,242,238,0.25);
  letter-spacing: 0.28em;
}

@media (max-width: 700px) {
  .leistungen-cta {
    flex-direction: column;
  }

  .leistungen-cta .cta-button,
  .leistungen-cta .cta-button--subtle {
    width: 100%;
    text-align: center;
  }

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

  .leistung-card:nth-child(even) {
    padding-left: 0;
    border-left: none;
    border-top: 1px solid rgba(184,151,106,0.2);
  }

  .leistungen {
    padding: 72px 32px;
  }
}

/* ─── ANLÄSSE ────────────────────────────────────────── */
.anlaesse {
  background: var(--dark-mid);
  padding: 100px 56px 80px;
  border-top: 1px solid rgba(184,151,106,0.1);
}

.anlaesse-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.anlaesse-header {
  margin-bottom: 64px;
}

.anlaesse-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.anlass-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 48px 36px 0;
  border-top: 1px solid rgba(184,151,106,0.15);
}

.anlass-item:nth-child(even) {
  padding-left: 48px;
  padding-right: 0;
  border-left: 1px solid rgba(184,151,106,0.15);
}

.anlass-icon {
  color: var(--gold);
  opacity: 0.75;
  flex-shrink: 0;
  margin-top: 3px;
}

.anlass-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.anlass-desc {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.8;
  color: var(--white-dim);
}

@media (max-width: 700px) {
  .anlaesse {
    padding: 72px 32px 64px;
  }

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

  .anlass-item:nth-child(even) {
    padding-left: 0;
    border-left: none;
  }
}

/* ─── VORTEILE ───────────────────────────────────────── */
.vorteile {
  background: var(--dark);
  padding: 100px 56px 80px;
  border-top: 1px solid rgba(184,151,106,0.1);
}

.vorteile-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.vorteile-header {
  margin-bottom: 64px;
}

.vorteile-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.vorteil-item {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid rgba(184,151,106,0.15);
}

.vorteil-item:last-child {
  border-bottom: 1px solid rgba(184,151,106,0.15);
}

.vorteil-num {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  width: 52px;
  line-height: 1;
  padding-top: 4px;
}

.vorteil-body {
  flex: 1;
}

.vorteil-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.vorteil-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--white-dim);
  max-width: 680px;
}

@media (max-width: 700px) {
  .vorteile {
    padding: 72px 32px 64px;
  }

  .vorteil-item {
    gap: 28px;
  }

  .vorteil-num {
    font-size: 1.8rem;
    width: 40px;
  }
}

/* ─── FAQ ────────────────────────────────────────────── */
.faq {
  background: var(--dark-mid);
  padding: 100px 56px 80px;
  border-top: 1px solid rgba(184,151,106,0.1);
}

.faq-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-header {
  margin-bottom: 64px;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid rgba(184,151,106,0.15);
}

.faq-item:last-child {
  border-bottom: 1px solid rgba(184,151,106,0.15);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 0.01em;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23b8976a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(180deg);
}

.faq-item[open] .faq-question {
  color: var(--gold);
}

.faq-answer {
  padding: 0 0 28px;
}

.faq-answer p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--white-dim);
  max-width: 760px;
}

@media (max-width: 700px) {
  .faq {
    padding: 72px 32px 64px;
  }

  .faq-question {
    font-size: 1.1rem;
  }
}

/* ─── ÜBER MICH ──────────────────────────────────────── */
#ueber-mich {
  scroll-margin-top: -220px;
}

.ueber-mich {
  display: grid;
  grid-template-columns: 72% 28%;
  min-height: 88vh;
  background: var(--dark);
  position: relative;
}

/* Sanfter Übergang von Leistungen zu Über mich */
.ueber-mich::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(to bottom, var(--dark) 0%, transparent 100%);
  z-index: 5;
  pointer-events: none;
}

.ueber-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 56px 24px 56px 56px;
  position: relative;
  z-index: 2;
}

.ueber-text-block {
  margin-bottom: 36px;
}

.bescheinigungen {
  display: flex;
  gap: 16px;
}

.bescheinigung {
  flex: 1;
  overflow: hidden;
}

.bescheinigung img {
  width: 85%;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: grayscale(0.2);
  transition: filter 0.3s ease;
}

.bescheinigung:hover img {
  filter: grayscale(0);
}

/* Scroll-Animation */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal-item.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

.ueber-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1;
}

.ueber-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.ueber-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 32px 0;
}

.ueber-text {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.9;
  color: var(--white-dim);
  max-width: 100%;
  margin-bottom: 20px;
}

.ueber-text:last-child {
  margin-bottom: 0;
}

/* Rechte Seite — Portrait */
.ueber-right {
  position: relative;
  overflow: hidden;
}

.ueber-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 65%;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

.ueber-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,  var(--dark) 0%, rgba(14,14,14,0.6) 22%, transparent 55%),
    linear-gradient(to bottom, var(--dark) 0%, transparent 35%),
    linear-gradient(to top,    var(--dark) 0%, transparent 35%);
  z-index: 2;
}

@media (max-width: 900px) {
  .ueber-mich {
    grid-template-columns: 1fr;
    display: block;
    position: relative;
  }

  .ueber-right {
    position: absolute;
    inset: 0;
    height: 100%;
    min-height: unset;
  }

  .ueber-right img {
    object-position: right center;
  }

  .ueber-right::before {
    background:
      linear-gradient(to bottom, var(--dark) 0%, rgba(14,14,14,0.55) 40%, rgba(14,14,14,0.55) 70%, var(--dark) 100%),
      linear-gradient(to right, var(--dark) 0%, rgba(14,14,14,0.3) 60%, transparent 100%);
  }

  .ueber-left {
    position: relative;
    z-index: 3;
    padding: 64px 32px;
  }
}

/* ─── KONTAKT ────────────────────────────────────────── */
.kontakt {
  background: var(--dark-mid);
  padding: 100px 56px 80px;
  border-top: 1px solid rgba(184,151,106,0.15);
}

.kontakt-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.kontakt-header {
  margin-bottom: 64px;
}

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

.kontakt-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kontakt-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.kontakt-name {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1.2;
}

.kontakt-detail {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--white-dim);
}

.kontakt-link {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  display: block;
}

.kontakt-link:hover {
  color: var(--gold);
}

/* ─── KONTAKT CTA ────────────────────────────────────── */
.kontakt-cta {
  margin-top: 64px;
}

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

.btn-secondary {
  background: none;
  border: 1px solid rgba(184, 151, 106, 0.3);
  color: var(--gold);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 22px 56px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  background: rgba(184, 151, 106, 0.08);
}

/* ─── MODAL ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--dark-mid);
  border: 1px solid rgba(184,151,106,0.2);
  padding: 52px 48px;
  width: 100%;
  max-width: 620px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.35s ease;
}

.modal-overlay.open .modal {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white-dim);
  font-size: 1.6rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
  padding: 4px;
}

.modal-close:hover {
  color: var(--gold);
}

.modal-title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  font-size: 2rem;
  color: var(--white);
  margin: 8px 0 36px;
}

/* ─── FORMULAR ───────────────────────────────────────── */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(184,151,106,0.2);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  padding: 12px 16px;
  outline: none;
  transition: border-color 0.25s ease;
  resize: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(245,242,238,0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(184,151,106,0.6);
}

.kontakt-form .cta-button {
  align-self: flex-start;
  margin-top: 8px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold);
  flex-shrink: 0;
  cursor: pointer;
}

.form-consent span {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.78rem;
  line-height: 1.6;
  color: var(--white-dim);
}

.consent-link {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: var(--gold);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }

  .modal {
    padding: 40px 28px;
  }
}

/* ─── FOOTER ─────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  border-top: 1px solid rgba(184,151,106,0.1);
  padding: 24px 56px;
  text-align: center;
}

.site-footer p {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.5;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.footer-divider {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  color: var(--white-dim);
  opacity: 0.25;
}

.modal--wide {
  max-width: 760px;
}

.footer-impressum-btn {
  background: none;
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 300;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white-dim);
  opacity: 0.4;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.25s ease, color 0.25s ease;
}

.footer-impressum-btn:hover {
  opacity: 1;
  color: var(--gold);
}

/* ─── IMPRESSUM ──────────────────────────────────────── */
.impressum-content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.impressum-block h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.impressum-block p {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--white-dim);
  margin-bottom: 8px;
}

.impressum-block p:last-child {
  margin-bottom: 0;
}

.impressum-block a {
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.25s ease;
}

.impressum-block a:hover {
  color: var(--gold);
}

.impressum-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.impressum-list li {
  font-family: 'Barlow', sans-serif;
  font-weight: 300;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--white-dim);
  padding-left: 14px;
  position: relative;
}

.impressum-list li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.6;
  font-size: 0.7rem;
  top: 3px;
}

@media (max-width: 700px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kontakt {
    padding: 72px 32px 64px;
  }

  .site-footer {
    padding: 20px 32px;
  }
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  header.hero {
    display: block;
    position: relative;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
  }

  .hero-right {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .hero-right::before {
    background:
      linear-gradient(to bottom, rgba(14,14,14,0.55) 0%, rgba(14,14,14,0.2) 40%, rgba(14,14,14,0.2) 60%, rgba(14,14,14,0.7) 100%),
      linear-gradient(to right, rgba(14,14,14,0.3) 0%, transparent 60%);
  }

  .hero-left {
    position: relative;
    z-index: 10;
    background: transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 180px 32px 80px;
  }

  .hero-left::after { display: none; }

  .hero-catcher {
    top: 22%;
    left: 0;
    right: 0;
    transform: translateY(0);
    padding: 0 32px;
    font-size: clamp(1.4rem, 5.5vw, 2rem);
  }

  .hero-badge {
    bottom: 40px;
    right: auto;
    left: 24px;
    text-align: left;
  }

  nav {
    position: relative;
    top: auto;
    padding: 14px 24px;
    background: rgba(14,14,14,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(184,151,106,0.25);
    animation: none;
    opacity: 1;
    justify-content: center;
  }

  nav.nav-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 20;
  }

  body.nav-is-fixed {
    padding-top: 57px;
  }

  .scroll-hint { display: none; }

  .scroll-arrow {
    display: flex;
  }

  .nav-links {
    gap: 24px;
  }

  .scroll-hint {
    left: 32px;
  }
}

@media (max-width: 600px) {
  .nav-item-kontakt {
    display: none;
  }

  .nav-links {
    display: flex;
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    width: 100%;
  }

  .nav-links a {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    padding: 6px 0;
    white-space: nowrap;
  }

  .nav-cta {
    padding: 6px 16px;
  }
}

/* ─── MOBILE OPTIMIERUNGEN ────────────────────────────── */
@media (max-width: 900px) {

  /* Einheitliches Section-Padding */
  .leistungen,
  .anlaesse,
  .vorteile,
  .faq,
  .kontakt {
    padding: 64px 24px 56px;
  }

  /* Section-Header Abstände */
  .leistungen-header,
  .anlaesse-header,
  .vorteile-header,
  .faq-header,
  .kontakt-header,
  .umfang-header,
  .prozess-header,
  .preise-header,
  .rnd-header {
    margin-bottom: 40px;
  }

  /* Größere Überschriften für mehr Wirkung */
  .section-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }

  /* ── Leistungen ── */
  .leistungen-grid {
    gap: 0;
  }

  .leistung-card {
    padding: 28px 0;
    border-top: 1px solid rgba(184,151,106,0.18);
    display: grid;
    grid-template-columns: 28px 1fr;
    grid-template-rows: auto auto;
    column-gap: 18px;
    row-gap: 8px;
  }

  .leistung-icon {
    grid-column: 1;
    grid-row: 1;
    margin-bottom: 0;
    margin-top: 3px;
  }

  .leistung-title {
    grid-column: 2;
    grid-row: 1;
    font-size: 1.25rem;
    margin-bottom: 0;
    align-self: center;
  }

  .leistung-text {
    grid-column: 2;
    grid-row: 2;
    font-size: 0.86rem;
    line-height: 1.75;
  }

  .leistungen-cta {
    margin-top: 40px;
    flex-direction: column;
    gap: 12px;
  }

  .leistungen-cta .cta-button,
  .leistungen-cta .cta-button--subtle {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    font-size: 0.85rem;
  }

  /* ── Anlässe ── */
  .anlaesse-grid {
    grid-template-columns: 1fr;
  }

  .anlass-item {
    padding: 24px 0;
    gap: 18px;
    border-top: 1px solid rgba(184,151,106,0.15);
    border-left: none !important;
  }

  .anlass-title {
    font-size: 1.15rem;
    margin-bottom: 5px;
  }

  .anlass-desc {
    font-size: 0.86rem;
    line-height: 1.7;
  }

  /* ── Vorteile ── */
  .vorteile-list {
    gap: 0;
  }

  .vorteil-item {
    gap: 20px;
    padding: 28px 0;
    align-items: flex-start;
  }

  .vorteil-num {
    font-size: 1.6rem;
    width: 36px;
    opacity: 0.5;
  }

  .vorteil-title {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .vorteil-text {
    font-size: 0.86rem;
    line-height: 1.75;
  }

  /* ── FAQ ── */
  .faq-question {
    font-size: 1.1rem;
    padding: 22px 0;
    gap: 16px;
  }

  .faq-answer p {
    font-size: 0.86rem;
    line-height: 1.8;
  }

  /* ── Kontakt ── */
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kontakt-name {
    font-size: 1.2rem;
  }

  .kontakt-actions {
    flex-direction: column;
    gap: 12px;
  }

  .kontakt-actions .cta-button,
  .kontakt-actions .btn-secondary {
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    font-size: 0.85rem;
  }

  /* ── Über mich ── */
  .ueber-left {
    padding: 56px 24px;
  }

  .ueber-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .ueber-text {
    font-size: 0.95rem;
    line-height: 1.85;
  }

  .bescheinigungen {
    gap: 10px;
    margin-top: 40px;
  }

  .bescheinigung img {
    width: 95%;
  }

  .siegel-logo--stamp img {
    width: 90px;
    height: 90px;
  }

  .siegel-logo--akn img {
    width: 56px;
    height: 90px;
  }

  .siegel-logo--ing img {
    height: 55px;
  }

  /* ── Footer ── */
  .site-footer {
    padding: 20px 24px;
  }
}

/* ─── ACCORDION ────────────────────────────────────────── */
.akk-item {
  border-top: 1px solid rgba(184,151,106,0.12);
}

.akk-item:last-of-type {
  border-bottom: 1px solid rgba(184,151,106,0.12);
}

.akk-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 18px 0;
  text-align: left;
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  transition: color 0.2s ease;
}

.akk-btn:hover {
  color: var(--gold-light);
}

.akk-btn-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.akk-btn-inner svg {
  opacity: 0.55;
  flex-shrink: 0;
}

.akk-btn em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--white-dim);
  margin-left: 6px;
}

.akk-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.6;
  min-width: 22px;
}

.akk-chevron {
  flex-shrink: 0;
  color: var(--gold);
  opacity: 0.5;
  transition: transform 0.35s ease, opacity 0.2s ease;
}

.akk-btn[aria-expanded="true"] .akk-chevron {
  transform: rotate(180deg);
  opacity: 0.9;
}

.akk-btn[aria-expanded="true"] {
  color: var(--gold-light);
}

.akk-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.akk-panel-inner {
  padding-bottom: 20px;
}

.akk-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding-bottom: 20px;
}

.akk-liste li {
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.akk-liste li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

.akk-text {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.75;
  padding-bottom: 8px;
}

.akk-fuer {
  font-size: 0.78rem;
  color: rgba(184,151,106,0.6);
  letter-spacing: 0.04em;
  padding-bottom: 16px;
}

/* ─── UMFANG (Objekte + Zielgruppen) ───────────────────── */
.umfang {
  padding: 96px 56px 80px;
  background: var(--dark-mid);
}

.umfang-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.umfang-header {
  margin-bottom: 52px;
}

.umfang-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: start;
}

.umfang-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 24px;
}

.umfang-divider {
  background: rgba(184,151,106,0.12);
  align-self: stretch;
}

.umfang-col-sub {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: -12px;
}

.zg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.zg-grid span {
  border: 1px solid rgba(184,151,106,0.2);
  padding: 9px 14px;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--white-dim);
  transition: border-color 0.2s ease, color 0.2s ease;
  text-align: center;
}

.zg-grid span:hover {
  border-color: var(--gold);
  color: var(--white);
}

@media (max-width: 900px) {
  .umfang {
    padding: 64px 24px 56px;
  }
  .umfang-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .umfang-divider {
    height: 1px;
    background: rgba(184,151,106,0.12);
  }
}

/* ─── PROZESS (Ablauf + Verfahren) ─────────────────────── */
.prozess {
  padding: 96px 56px 80px;
  background: var(--dark);
}

.prozess-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.prozess-header {
  margin-bottom: 52px;
}

.prozess-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 56px;
  align-items: start;
}

.prozess-col-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-bottom: 24px;
}

.prozess-col-sub {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.6;
  margin-bottom: 20px;
  margin-top: -12px;
}

.prozess-divider {
  background: rgba(184,151,106,0.12);
  align-self: stretch;
}

.prozess-hinweis {
  font-size: 0.8rem;
  color: var(--white-dim);
  opacity: 0.65;
  border-left: 2px solid rgba(184,151,106,0.25);
  padding-left: 14px;
  line-height: 1.7;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .prozess {
    padding: 64px 24px 56px;
  }
  .prozess-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .prozess-divider {
    height: 1px;
    background: rgba(184,151,106,0.12);
  }
}

/* ─── UNTERLAGEN & QUALIFIKATION ───────────────────────── */
.unterlagen-qual {
  padding: 96px 56px 80px;
  background: var(--dark-mid);
}

.unterlagen-qual-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.uq-layout {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 64px;
  align-items: start;
}

.uq-divider {
  background: rgba(184,151,106,0.12);
  align-self: stretch;
}

.uq-col .section-label {
  display: block;
  margin-bottom: 10px;
}

.uq-col .section-title {
  margin-bottom: 12px;
}

.uq-intro {
  font-size: 0.88rem;
  color: var(--white-dim);
  line-height: 1.65;
  margin-bottom: 28px;
}

.ihk-block {
  margin-bottom: 28px;
}

.ihk-inner {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.ihk-logo-wrap {
  flex-shrink: 0;
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  border: 1px solid rgba(184,151,106,0.15);
  box-shadow: 0 3px 16px rgba(0,0,0,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ihk-logo-img {
  width: 90px;
  height: auto;
  display: block;
  object-fit: contain;
}

.ihk-text {
  flex: 1;
}

.ihk-logo-placeholder {
  width: 130px;
  height: 62px;
  border: 1px dashed rgba(184,151,106,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.75rem;
  color: var(--gold);
  opacity: 0.6;
  margin-bottom: 14px;
}

.ihk-p {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
  margin-bottom: 10px;
}

.ihk-link {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,106,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s ease;
}

.ihk-link:hover {
  border-color: var(--gold);
}

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

.siegel-logo {
  background: #fff;
  border-radius: 6px;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(184,151,106,0.15);
  box-shadow: 0 4px 22px rgba(0,0,0,0.45);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.siegel-logo:hover {
  box-shadow: 0 6px 28px rgba(184,151,106,0.22), 0 2px 10px rgba(0,0,0,0.5);
  transform: translateY(-2px);
}

.siegel-logo--stamp {
  grid-column: 1;
  grid-row: 1;
}

.siegel-logo--akn {
  grid-column: 2;
  grid-row: 1;
}

.siegel-logo--ing {
  grid-column: 1 / -1;
  grid-row: 2;
}

.siegel-logo--stamp img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

.siegel-logo--akn img {
  width: 72px;
  height: 120px;
  object-fit: contain;
}

.siegel-logo--ing img {
  width: 100%;
  max-width: 260px;
  height: 72px;
  object-fit: contain;
}

.placeholder-hint {
  font-size: 0.6rem;
  color: var(--white-dim);
  opacity: 0.5;
}

.akk-item--grundlagen {
  margin-top: 4px;
}

.grundlagen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-bottom: 16px;
}

.grundlagen-tags span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid rgba(184,151,106,0.15);
  padding: 5px 10px;
}

@media (max-width: 1000px) {
  .uq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .uq-divider {
    height: 1px;
    background: rgba(184,151,106,0.12);
  }
}

@media (max-width: 900px) {
  .unterlagen-qual {
    padding: 64px 24px 56px;
  }
}

/* ─── PREISE ───────────────────────────────────────────── */
.preise {
  padding: 96px 56px 80px;
  background: var(--dark-mid);
}

.preise-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.preise-header {
  margin-bottom: 56px;
}

.preise-intro {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.7;
}

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

.preis-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,151,106,0.12);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.preis-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.preis-ab {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--white);
  font-weight: 400;
}

.preis-wert {
  font-size: 2rem;
  font-weight: 500;
  color: var(--gold-light);
}

.preis-desc {
  font-size: 0.85rem;
  color: var(--white-dim);
  line-height: 1.7;
  flex: 1;
}

.preis-download {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: rgba(184,151,106,0.6);
  text-decoration: none;
  margin-top: 4px;
  transition: color 0.25s ease;
}

.preis-download--placeholder {
  cursor: default;
  pointer-events: none;
  opacity: 0.5;
  font-style: italic;
}

.preise-hinweis {
  font-size: 0.8rem;
  color: var(--white-dim);
  opacity: 0.6;
  line-height: 1.7;
}

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

@media (max-width: 900px) {
  .preise {
    padding: 64px 24px 56px;
  }
}

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

/* ─── RESTNUTZUNGSDAUER ────────────────────────────────── */
.rnd {
  padding: 96px 56px 80px;
  background: var(--dark);
}

.rnd-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.rnd-header {
  margin-bottom: 48px;
}

.rnd-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 56px;
  align-items: start;
}

.rnd-text p {
  font-size: 0.95rem;
  color: var(--white-dim);
  line-height: 1.8;
  margin-bottom: 20px;
}

.rnd-hinweise {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 28px;
}

.rnd-hinweis {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.7;
}

.rnd-hinweis svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.7;
}

.rnd-hinweis strong {
  color: var(--white);
  font-weight: 400;
}

.rnd-cta-box {
  background: rgba(184,151,106,0.06);
  border: 1px solid rgba(184,151,106,0.2);
  padding: 36px 32px;
  position: sticky;
  top: 96px;
}

.rnd-cta-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px !important;
}

.rnd-cta-text {
  font-size: 0.9rem !important;
  margin-bottom: 24px !important;
}

.rnd-cta-box .cta-button {
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .rnd {
    padding: 64px 24px 56px;
  }
  .rnd-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .rnd-cta-box {
    position: static;
  }
}

/* ─── UNTERLAGEN ───────────────────────────────────────── */
.unterlagen {
  padding: 96px 56px 80px;
  background: var(--dark-mid);
}

.unterlagen-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.unterlagen-header {
  margin-bottom: 48px;
}

.unterlagen-intro {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 640px;
  line-height: 1.7;
}

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

.unterlagen-block {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(184,151,106,0.12);
  padding: 32px 28px;
}

.unterlagen-block-titel {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.unterlagen-block-titel em {
  font-size: 0.8rem;
  font-family: 'Barlow', sans-serif;
  color: var(--white-dim);
  font-style: normal;
  font-weight: 300;
}

.unterlagen-liste {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.unterlagen-liste li {
  font-size: 0.87rem;
  color: var(--white-dim);
  line-height: 1.6;
  padding-left: 16px;
  position: relative;
}

.unterlagen-liste li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
  opacity: 0.5;
}

.unterlagen-hinweis {
  font-size: 0.82rem;
  color: var(--white-dim);
  opacity: 0.7;
  border-left: 2px solid rgba(184,151,106,0.3);
  padding-left: 16px;
  line-height: 1.7;
}

@media (max-width: 1000px) {
  .unterlagen-grid {
    grid-template-columns: 1fr 1fr;
  }
  .unterlagen-block:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .unterlagen {
    padding: 64px 24px 56px;
  }
}

@media (max-width: 600px) {
  .unterlagen-grid {
    grid-template-columns: 1fr;
  }
  .unterlagen-block:first-child {
    grid-column: 1;
  }
  .unterlagen-block {
    border-left: none;
    border-right: none;
    border-top: 1px solid rgba(184,151,106,0.12);
    border-bottom: none;
    padding: 28px 0;
    background: transparent;
  }
  .unterlagen-block:last-child {
    border-bottom: 1px solid rgba(184,151,106,0.12);
  }
}

/* ─── ZERTIFIKATE / IHK-SVV ────────────────────────────── */
.zertifikate {
  padding: 96px 56px 80px;
  background: var(--dark);
}

.zertifikate-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.zertifikate-header {
  margin-bottom: 56px;
}

.zertifikate-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.zertifikat-ihk {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  padding: 40px;
  border: 1px solid rgba(184,151,106,0.15);
  background: rgba(255,255,255,0.02);
}

.ihk-logo-placeholder {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  border: 1px dashed rgba(184,151,106,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  font-size: 0.8rem;
  color: var(--gold);
  opacity: 0.6;
}

.placeholder-hint {
  font-size: 0.65rem;
  color: var(--white-dim);
  opacity: 0.5;
}

.ihk-text p {
  font-size: 0.9rem;
  color: var(--white-dim);
  line-height: 1.75;
  margin-bottom: 16px;
}

.ihk-link {
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(184,151,106,0.3);
  padding-bottom: 2px;
  transition: border-color 0.25s ease;
}

.ihk-link:hover {
  border-color: var(--gold);
}

.siegel-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.siegel-placeholder {
  width: 140px;
  height: 140px;
  border: 1px dashed rgba(184,151,106,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--gold);
  opacity: 0.55;
}

@media (max-width: 900px) {
  .zertifikate {
    padding: 64px 24px 56px;
  }
  .zertifikat-ihk {
    flex-direction: column;
    gap: 24px;
    padding: 28px;
  }
  .ihk-logo-placeholder {
    width: 120px;
    height: 60px;
  }
}

/* ─── GRUNDLAGEN ───────────────────────────────────────── */
.grundlagen {
  padding: 96px 56px 80px;
  background: var(--dark-mid);
}

.grundlagen-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.grundlagen-header {
  margin-bottom: 48px;
}

.grundlagen-intro {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--white-dim);
  max-width: 620px;
  line-height: 1.7;
}

.grundlagen-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.grundlagen-tags span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-dim);
  border: 1px solid rgba(184,151,106,0.18);
  padding: 7px 14px;
  transition: border-color 0.25s ease, color 0.25s ease;
}

.grundlagen-tags span:hover {
  border-color: rgba(184,151,106,0.5);
  color: var(--gold-light);
}

@media (max-width: 900px) {
  .grundlagen {
    padding: 64px 24px 56px;
  }
}
