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

    :root {
      --gold: #C7A56A;
      --gold-light: #f5f0e8;
      --black: #0e0e0e;
      --white: #ffffff;
      --gray: #888;
      --light: #f8f8f8;
      --border: #e8e8e8;
    }

    html { scroll-behavior: smooth; overflow-x: hidden; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--black);
      overflow-x: hidden;
    }

    /* ── NAVIGATION ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 60px;
      transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      background: rgba(255,255,255,0.96);
      backdrop-filter: blur(12px);
      padding: 16px 60px;
      box-shadow: 0 1px 0 var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.4rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      text-decoration: none;
      transition: color 0.3s;
    }
    nav.scrolled .nav-logo { color: var(--black); }
    .nav-links {
      display: flex;
      gap: 40px;
      list-style: none;
    }
    .nav-links a {
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      text-decoration: none;
      transition: color 0.2s;
    }
    nav.scrolled .nav-links a { color: var(--gray); }
    .nav-links a:hover { color: var(--gold); }
    .nav-cta {
      font-size: 0.75rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white) !important;
      background: var(--gold);
      padding: 10px 22px;
      border-radius: 4px;
      text-decoration: none;
      transition: background 0.2s, color 0.2s !important;
    }
    .nav-cta:hover { background: #a07530 !important; }
    nav.scrolled .nav-cta { color: var(--white) !important; }

    /* Mobile menu */
    .burger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
    }
    .burger span {
      display: block;
      width: 24px;
      height: 2px;
      background: var(--white);
      transition: background 0.3s;
      border-radius: 2px;
    }
    nav.scrolled .burger span { background: var(--black); }
    .mobile-menu {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: var(--white);
      z-index: 99;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      font-size: 1.5rem;
      font-family: 'Cormorant Garamond', serif;
      letter-spacing: 0.1em;
      color: var(--black);
      text-decoration: none;
    }
    .mobile-menu a:hover { color: var(--gold); }
    .mobile-close {
      position: absolute;
      top: 24px; right: 24px;
      background: none;
      border: none;
      font-size: 1.8rem;
      cursor: pointer;
      color: var(--black);
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 600px;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      padding-bottom: 80px;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('images/dj-darman.jpg');
      background-size: cover;
      background-position: center top;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.35) 60%, rgba(0,0,0,0.2) 100%);
    }
    .hero-content {
      position: relative;
      text-align: center;
      color: var(--white);
      max-width: 800px;
      padding: 0 24px;
    }
    .hero-tag {
      display: inline-block;
      font-size: 0.68rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 20px;
      border: 1px solid rgba(184,135,58,0.4);
      padding: 6px 16px;
      border-radius: 20px;
    }
    .hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 6vw, 4.5rem);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: 0.02em;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--gold);
    }
    .hero p {
      font-size: clamp(0.9rem, 2vw, 1.05rem);
      color: rgba(255,255,255,0.7);
      margin-bottom: 36px;
      letter-spacing: 0.05em;
    }
    .hero-btns {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }
    .btn-primary {
      background: var(--gold);
      color: var(--white);
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      transition: background 0.2s;
    }
    .btn-primary:hover { background: #a07530; }
    .btn-outline {
      background: transparent;
      color: var(--white);
      padding: 14px 32px;
      border-radius: 4px;
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border: 1px solid rgba(255,255,255,0.4);
      transition: border-color 0.2s;
    }
    .btn-outline:hover { border-color: var(--white); }
    .scroll-indicator {
      position: absolute;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      color: rgba(255,255,255,0.4);
      font-size: 0.65rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
    }
    .scroll-line {
      width: 1px;
      height: 40px;
      background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
      animation: scrollDown 2s ease-in-out infinite;
    }
    @keyframes scrollDown {
      0%,100% { transform: scaleY(1); opacity: 1; }
      50% { transform: scaleY(0.5); opacity: 0.4; }
    }

    /* ── STATS ── */
    .stats {
      background: var(--black);
      padding: 60px 40px;
      display: flex;
      justify-content: center;
      gap: 80px;
      flex-wrap: wrap;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 6vw, 5rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1;
    }
    .stat-number span { color: var(--gold); }
    .stat-label {
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 8px;
    }

    /* ── SECTION BASE ── */
    section { padding: 100px 40px; }
    .section-inner {
      max-width: 1100px;
      margin: 0 auto;
    }
    .section-tag {
      font-size: 0.68rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 24px;
    }
    .section-text {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.8;
      max-width: 600px;
    }

    /* ── ABOUT / SERVICES ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-visual {
      position: relative;
    }
    .about-card {
      background: var(--light);
      border-radius: 16px;
      padding: 48px 40px;
      height: 420px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
      overflow: hidden;
    }
    .about-card::before {
      content: '';
      position: absolute;
      width: 300px; height: 300px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(184,135,58,0.2) 0%, transparent 70%);
      top: -50px; right: -50px;
    }
    .about-card-text {
      position: relative;
      color: var(--white);
    }
    .about-card-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      margin-bottom: 8px;
    }
    .about-card-text p {
      font-size: 0.82rem;
      color: rgba(255,255,255,0.6);
      letter-spacing: 0.08em;
    }
    .about-badge {
      position: absolute;
      top: -16px;
      right: -16px;
      background: var(--gold);
      color: var(--white);
      width: 80px;
      height: 80px;
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 0.6rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.3;
    }
    .services-list {
      display: flex;
      flex-direction: column;
      gap: 32px;
      margin-top: 40px;
    }
    .service-item {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }
    .service-icon {
      width: 44px;
      height: 44px;
      background: var(--gold-light);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }
    .service-item h3 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 6px;
      letter-spacing: 0.03em;
    }
    .service-item p {
      font-size: 0.83rem;
      color: #666;
      line-height: 1.7;
    }

    /* ── PLANNING ── */
    .planning { background: var(--light); }
    .planning-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .step {
      display: flex;
      gap: 24px;
      padding-bottom: 32px;
      position: relative;
    }
    .step:not(:last-child)::after {
      content: '';
      position: absolute;
      left: 16px;
      top: 36px;
      bottom: 0;
      width: 1px;
      background: var(--border);
    }
    .step-num {
      width: 33px;
      height: 33px;
      border-radius: 50%;
      border: 1px solid var(--gold);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.72rem;
      color: var(--gold);
      flex-shrink: 0;
      font-weight: 600;
      background: var(--white);
      position: relative;
      z-index: 1;
    }
    .step h3 {
      font-size: 0.9rem;
      font-weight: 600;
      margin-bottom: 6px;
      padding-top: 4px;
    }
    .step p {
      font-size: 0.83rem;
      color: #666;
      line-height: 1.7;
    }

    /* ── CALENDAR ── */
    .calendar-section { background: var(--white); }
    .calendar-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .calendar-wrapper {
      max-width: 380px;
    }
    .cal-nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
    }
    .cal-nav button {
      background: none;
      border: 1px solid var(--border);
      border-radius: 8px;
      width: 38px;
      height: 38px;
      cursor: pointer;
      font-size: 1rem;
      color: #555;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, color 0.2s;
    }
    .cal-nav button:hover { border-color: var(--gold); color: var(--gold); }
    .cal-nav button:disabled { opacity: 0.25; cursor: default; }
    .cal-title {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      font-weight: 600;
    }
    .cal-head {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      margin-bottom: 6px;
    }
    .cal-head span {
      text-align: center;
      font-size: 0.62rem;
      color: #bbb;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 0;
    }
    .cal-days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 4px;
    }
    .cal-day {
      position: relative;
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      border-radius: 8px;
    }
    .cal-day.empty { background: transparent; }
    .cal-day.normal { color: #bbb; }
    .cal-day.booked {
      background: var(--gold-light);
      color: var(--gold);
      font-weight: 700;
    }
    .cal-day.booked::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 50%;
      transform: translateX(-50%);
      width: 4px; height: 4px;
      background: var(--gold);
      border-radius: 50%;
    }
    .cal-info {
      margin-top: 20px;
      padding: 16px 20px;
      background: var(--light);
      border-radius: 10px;
      font-size: 0.8rem;
      color: #777;
      line-height: 1.6;
      border-left: 3px solid var(--gold);
    }

    /* ── TECHNIK ── */
    .technik { background: var(--black); }
    .technik .section-title { color: var(--white); }
    .technik .section-tag { color: var(--gold); }
    .technik-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 48px;
    }
    .technik-card {
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 12px;
      padding: 32px 28px;
      transition: border-color 0.3s;
    }
    .technik-card:hover { border-color: rgba(184,135,58,0.4); }
    .technik-icon {
      font-size: 1.6rem;
      margin-bottom: 16px;
    }
    .technik-card h3 {
      font-size: 0.88rem;
      font-weight: 600;
      color: var(--white);
      margin-bottom: 10px;
      letter-spacing: 0.05em;
    }
    .technik-card p {
      font-size: 0.8rem;
      color: rgba(255,255,255,0.45);
      line-height: 1.7;
    }

    /* ── KONTAKT ── */
    .kontakt { background: var(--white); }
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: start;
    }
    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 32px;
    }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 18px 20px;
      border: 1px solid var(--border);
      border-radius: 10px;
      text-decoration: none;
      color: var(--black);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .contact-item:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 16px rgba(184,135,58,0.08);
    }
    .contact-item-icon {
      width: 40px; height: 40px;
      background: var(--gold-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }
    .contact-item-text small {
      font-size: 0.68rem;
      color: var(--gray);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: block;
      margin-bottom: 2px;
    }
    .contact-item-text span {
      font-size: 0.9rem;
      font-weight: 500;
    }
    .notice-box {
      margin-top: 32px;
      padding: 20px 24px;
      background: var(--light);
      border-radius: 10px;
      font-size: 0.82rem;
      color: #666;
      line-height: 1.7;
      border-left: 3px solid var(--gold);
    }
    .notice-box strong { color: var(--black); display: block; margin-bottom: 4px; }
    .social-links {
      display: flex;
      gap: 12px;
      margin-top: 32px;
    }
    .social-link {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 12px 20px;
      border: 1px solid var(--border);
      border-radius: 8px;
      text-decoration: none;
      color: var(--black);
      font-size: 0.8rem;
      transition: border-color 0.2s;
    }
    .social-link:hover { border-color: var(--gold); color: var(--gold); }

    /* ── FOOTER ── */
    footer {
      background: var(--black);
      padding: 40px 60px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
    }
    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px 24px;
    }
    .footer-links a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--gold); }
    .footer-copy {
      font-size: 0.72rem;
      color: rgba(255,255,255,0.25);
      letter-spacing: 0.05em;
    }

    /* ── HOVER CARD LIFT ── */
    .service-item, .step, .contact-item {
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .service-item:hover {
      transform: translateX(6px);
    }
    .technik-card {
      transition: border-color 0.3s, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .technik-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(0,0,0,0.3);
    }

    /* ── GOLD LINE ANIMATION on section-tag ── */
    .section-tag {
      position: relative;
      display: inline-block;
    }
    .section-tag::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--gold);
      transition: width 0.6s ease;
    }
    .section-inner:hover .section-tag::after { width: 100%; }

    /* ── SMOOTH BUTTON ── */
    .btn-primary, .btn-outline {
      transition: background 0.2s, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .btn-primary:hover {
      box-shadow: 0 8px 24px rgba(184,135,58,0.35);
    }

    /* ── HERO BG fixed for parallax ── */
    .hero { overflow: hidden; }
    .hero-bg { will-change: transform; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      nav { padding: 20px 24px; }
      nav.scrolled { padding: 14px 24px; }
      .nav-links { display: none; }
      .burger { display: flex; }
      .about-grid,
      .planning-grid,
      .calendar-layout,
      .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
      .technik-grid { grid-template-columns: 1fr 1fr; }
      .stats { gap: 40px; padding: 48px 24px; }
      section { padding: 72px 24px; }
      footer { padding: 32px 24px; flex-direction: column; text-align: center; }
      .about-visual { order: -1; }
      .calendar-wrapper { max-width: 100%; }
    }
    @media (max-width: 560px) {
      .technik-grid { grid-template-columns: 1fr; }
      .hero-btns { flex-direction: column; align-items: center; }
      .social-links { flex-direction: column; }
    }

    /* ── A11Y: Skip link ── */
    .skip-link {
      position: absolute;
      top: -40px;
      left: 16px;
      background: var(--black);
      color: var(--gold);
      padding: 10px 16px;
      font-family: 'Inter', sans-serif;
      font-size: 0.85rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-decoration: none;
      z-index: 1000;
      transition: top 0.2s;
    }
    .skip-link:focus { top: 16px; outline: 2px solid var(--gold); outline-offset: 2px; }

    /* ── A11Y: Focus-visible ── */
    a:focus-visible,
    button:focus-visible,
    [role="button"]:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
      border-radius: 2px;
    }

    /* ── A11Y: Reduced motion ── */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .hero-bg { transform: none !important; }
    }

/* ───────── Subpages (Landingpages) ───────── */
.subpage-header { padding: 150px 40px 60px; max-width: 1100px; margin: 0 auto; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.08em; color: var(--gray); margin-bottom: 28px; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.subpage-header h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); line-height: 1.08; margin-bottom: 24px; }
.subpage-header .lead { font-size: 1.05rem; color: #555; line-height: 1.85; max-width: 720px; }
.prose { max-width: 760px; margin: 0 auto; padding: 0 40px; }
.prose h2 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 400; margin: 56px 0 18px; line-height: 1.15; }
.prose h3 { font-size: 1.05rem; font-weight: 600; margin: 32px 0 10px; }
.prose p { font-size: 0.97rem; color: #555; line-height: 1.9; margin-bottom: 18px; }
.prose ul { margin: 0 0 18px 1.1em; color: #555; line-height: 1.9; font-size: 0.97rem; }
.prose strong { color: var(--black); }
.faq { max-width: 760px; margin: 56px auto 0; padding: 0 40px; }
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary { cursor: pointer; font-weight: 600; font-size: 1rem; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--gold); font-size: 1.4rem; transition: transform 0.25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 14px; color: #555; line-height: 1.85; font-size: 0.95rem; }
.subpage-cta { background: var(--black); color: #fff; text-align: center; padding: 90px 40px; margin-top: 80px; }
.subpage-cta h2 { font-family: 'Cormorant Garamond', serif; font-weight: 300; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
.subpage-cta p { color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.related { max-width: 1100px; margin: 70px auto 0; padding: 0 40px; }
.related-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; margin-top: 24px; }
.related-card { border: 1px solid var(--border); border-radius: 14px; padding: 24px; text-decoration: none; color: var(--black); transition: border-color 0.25s, transform 0.25s; }
.related-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.related-card span { display: block; font-size: 0.8rem; color: var(--gold); margin-top: 8px; }
@media (max-width: 768px) { .subpage-header { padding: 120px 24px 40px; } .prose, .faq { padding: 0 24px; } }

/* ── Nav-Dropdown „Leistungen" ── */
.nav-links .has-dropdown { position: relative; }
.nav-links .has-dropdown > a::after { content: " ▾"; font-size: 0.7em; opacity: 0.75; }
.nav-links .dropdown {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 250px; background: #fff; border: 1px solid var(--border);
  border-radius: 12px; box-shadow: 0 24px 48px -16px rgba(0,0,0,0.22);
  padding: 10px; list-style: none; display: flex; flex-direction: column; gap: 2px;
  opacity: 0; visibility: hidden; z-index: 200;
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-links .has-dropdown:hover .dropdown,
.nav-links .has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-links .dropdown a {
  display: block; padding: 10px 14px; border-radius: 8px;
  color: var(--black) !important; font-size: 0.72rem; letter-spacing: 0.12em; white-space: nowrap;
}
.nav-links .dropdown a:hover { background: var(--light); color: var(--gold) !important; }
nav.scrolled .nav-links .dropdown a { color: var(--black) !important; }

/* ── Mobile-Menü: scrollbar + Leistungen-Untergruppe ── */
.mobile-menu { overflow-y: auto; justify-content: flex-start; padding: 88px 24px 40px; gap: 20px; }
.mobile-menu .mobile-sub { font-size: 0.7rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); margin-top: 10px; }
.mobile-menu a.mobile-sublink { font-size: 1.1rem; }
