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

    :root {
      --bg:        #181614;
      --bg2:       #211e1b;
      --card:      #2a2520;
      --accent:    #8c3d2e;
      --accent2:   #b5654a;
      --cream:     #f0ebe0;
      --muted:     #a89e90;
      --border:    rgba(240,235,224,0.10);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--cream);
      font-family: 'Inter', sans-serif;
      font-weight: 300;
      line-height: 1.7;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.2rem 3rem;
      background: rgba(24,22,20,0.85);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--cream);
      text-decoration: none;
    }
    .nav-logo span { color: var(--accent2); }
    .nav-links { display: flex; gap: 2.5rem; list-style: none; }
    .nav-links a {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--cream); }
    .nav-cta {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--cream);
      background: var(--accent);
      padding: .55rem 1.4rem;
      text-decoration: none;
      transition: background .2s;
    }
    .nav-cta:hover { background: var(--accent2); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      padding-bottom: 5rem;
    }
    .hero-img {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      filter: brightness(0.55);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to bottom, transparent 40%, var(--bg) 100%);
    }
    .hero-content {
      position: relative; z-index: 2;
      text-align: center;
      max-width: 700px;
      padding: 0 2rem;
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1.2rem;
    }
    .hero-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 3.8rem);
      font-weight: 300;
      letter-spacing: 0.06em;
      line-height: 1.15;
      margin-bottom: .6rem;
    }
    .hero-title {
      font-size: 0.78rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 1.8rem;
    }
    .hero-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.3rem, 2.5vw, 1.7rem);
      font-weight: 300;
      color: var(--cream);
      margin-bottom: 2.4rem;
      line-height: 1.4;
    }
    .btn {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: .85rem 2.4rem;
      background: var(--accent);
      color: var(--cream);
      text-decoration: none;
      transition: background .2s, transform .15s;
    }
    .btn:hover { background: var(--accent2); transform: translateY(-1px); }

    /* ── SECTION BASE ── */
    section { padding: 5rem 2rem; }
    .container { max-width: 900px; margin: 0 auto; }
    .section-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 2.5rem;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .section-label::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--border);
    }

    /* ── WIE WIR ZUSAMMENARBEITEN ── */
    #zusammenarbeit { background: var(--bg2); }
    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border);
    }
    .card {
      background: var(--card);
      padding: 2rem 1.8rem;
    }
    .card-icon { font-size: 1.4rem; margin-bottom: 1rem; }
    .card-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 400;
      margin-bottom: .5rem;
      color: var(--cream);
    }
    .card-text {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .card-text strong { color: var(--accent2); font-weight: 400; }

    /* ── LEISTUNGEN ── */
    #leistungen { background: var(--bg); }
    .leistungen-list {
      list-style: none;
      border-top: 1px solid var(--border);
    }
    .leistungen-list li {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      padding: 1.1rem 0;
      border-bottom: 1px solid var(--border);
      font-size: 0.95rem;
      color: var(--cream);
      transition: color .2s;
    }
    .leistungen-list li::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent2);
      flex-shrink: 0;
    }
    .leistungen-list li:hover { color: var(--accent2); }

    /* ── ABLAUF ── */
    #ablauf { background: var(--bg2); }
    .ablauf-steps {
      display: flex;
      flex-direction: column;
      gap: 0;
    }
    .step {
      display: flex;
      gap: 2rem;
      padding: 1.8rem 0;
      border-bottom: 1px solid var(--border);
    }
    .step-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2rem;
      font-weight: 300;
      color: var(--accent);
      opacity: 0.6;
      min-width: 2rem;
      line-height: 1;
      padding-top: 0.1rem;
    }
    .step-body {}
    .step-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      margin-bottom: .35rem;
      color: var(--cream);
    }
    .step-text {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ── HINWEIS ── */
    .hinweis {
      margin-top: 3rem;
      padding: 1.8rem 2rem;
      border-left: 3px solid var(--accent);
      background: rgba(140,61,46,0.08);
    }
    .hinweis p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7;
    }
    .hinweis p + p { margin-top: .7rem; }
    .hinweis strong { color: var(--cream); font-weight: 400; }

    /* ── KONTAKT ── */
    #kontakt { background: var(--bg); }
    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: start;
    }
    .kontakt-info h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.2rem;
      font-weight: 300;
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .kontakt-info p {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 2rem;
      line-height: 1.7;
    }
    .contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
    .contact-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.88rem;
    }
    .contact-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: var(--accent2);
      flex-shrink: 0;
    }
    .contact-item a {
      color: var(--cream);
      text-decoration: none;
      transition: color .2s;
    }
    .contact-item a:hover { color: var(--accent2); }
    .contact-item span { color: var(--muted); font-size: 0.78rem; display: block; }

    .instagram-block {
      margin-top: 2.5rem;
      padding: 1.5rem 1.8rem;
      border: 1px solid var(--border);
    }
    .instagram-block p {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: .5rem;
    }
    .instagram-block a {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      color: var(--accent2);
      text-decoration: none;
    }
    .instagram-block small {
      display: block;
      font-size: 0.75rem;
      color: var(--muted);
      margin-top: .3rem;
    }

    .kontakt-form { display: flex; flex-direction: column; gap: 1rem; }
    .form-field {
      display: flex;
      flex-direction: column;
      gap: .4rem;
    }
    .form-field label {
      font-size: 0.7rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .form-field input,
    .form-field textarea {
      background: var(--card);
      border: 1px solid var(--border);
      color: var(--cream);
      padding: .85rem 1rem;
      font-family: 'Inter', sans-serif;
      font-size: 0.88rem;
      outline: none;
      transition: border-color .2s;
      resize: vertical;
    }
    .form-field input:focus,
    .form-field textarea:focus { border-color: var(--accent2); }
    .form-field textarea { min-height: 120px; }
    .form-note {
      font-size: 0.72rem;
      color: var(--muted);
      line-height: 1.6;
    }

    /* ── FOOTER ── */
    footer {
      background: var(--bg2);
      border-top: 1px solid var(--border);
      padding: 2.5rem 2rem;
      text-align: center;
    }
    .footer-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1rem;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--cream);
      margin-bottom: .5rem;
    }
    .footer-sub {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: var(--muted);
      text-transform: uppercase;
      margin-bottom: 1.5rem;
    }
    .footer-links {
      display: flex;
      justify-content: center;
      gap: 2rem;
      list-style: none;
    }
    .footer-links a {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--cream); }
    .footer-copy {
      margin-top: 1.5rem;
      font-size: 0.7rem;
      color: rgba(168,158,144,0.45);
    }

    /* ── MOBILE ── */
    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .ueber-inner  { grid-template-columns: 1fr; gap: 2rem; }
      .cards        { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 768px) {
      nav { padding: 1rem 1.5rem; }
      .nav-links { display: none; }
      nav .nav-cta { font-size: 0.65rem; padding: .5rem 1rem; }

      section { padding: 3.5rem 1.2rem; }

      .hero-content { padding: 0 1.2rem; }
      .hero-eyebrow { font-size: 0.62rem; letter-spacing: 0.22em; }
      .hero-name    { font-size: 2rem; }
      .hero-title   { font-size: 0.68rem; }
      .hero-tagline { font-size: 1.15rem; }
      .btn          { font-size: 0.68rem; padding: .75rem 1.8rem; }

      .cards { grid-template-columns: 1fr; gap: 1px; }
      .card  { padding: 1.5rem 1.4rem; }

      .section-label { font-size: 0.6rem; }

      .step { gap: 1.2rem; }
      .step-num { font-size: 1.5rem; min-width: 1.5rem; }

      .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
      .kontakt-info h2 { font-size: 1.5rem; }

      .ueber-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 2rem;
        padding-top: 2rem;
      }
      .ueber-photo,
      .ueber-photo-placeholder { max-width: 220px; margin: 0 auto; }
      .ueber-text h3 { font-size: 1.5rem; }

      .modal-box { padding: 2rem 1.4rem; }

      .footer-btn-row { gap: .6rem; }
      .footer-btn { font-size: 0.65rem; padding: .55rem 1rem; }
    }

    @media (max-width: 480px) {
      .hero-name    { font-size: 1.7rem; }
      .hero-tagline { font-size: 1rem; }
      .cards { grid-template-columns: 1fr; }
      .footer-btn-row { flex-direction: column; align-items: center; gap: .5rem; }
      .footer-btn { width: 200px; justify-content: center; }
    }

    /* ── ÜBER MICH TEASER ── */
    #ueber-mich { background: var(--bg2); }
    .ueber-teaser {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 1.5rem;
    }
    .ueber-teaser-quote {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-size: clamp(1.2rem, 2.5vw, 1.6rem);
      font-weight: 300;
      color: var(--cream);
      max-width: 620px;
      line-height: 1.5;
      position: relative;
      padding: 0 1.5rem;
    }
    .ueber-teaser-quote::before { content: '\201E'; color: var(--accent2); font-size: 3rem; line-height: 0; vertical-align: -0.6rem; margin-right: .2rem; }
    .ueber-teaser-quote::after  { content: '\201C'; color: var(--accent2); font-size: 3rem; line-height: 0; vertical-align: -0.6rem; margin-left: .2rem; }
    .btn-reveal {
      display: inline-flex;
      align-items: center;
      gap: .7rem;
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: .9rem 2rem;
      background: transparent;
      color: var(--cream);
      border: 1px solid var(--border);
      cursor: pointer;
      transition: border-color .2s, color .2s, background .2s;
      font-family: 'Inter', sans-serif;
    }
    .btn-reveal:hover { border-color: var(--accent2); color: var(--accent2); }
    .btn-reveal .arrow {
      display: inline-block;
      transition: transform .35s;
      font-size: 1rem;
    }
    .btn-reveal.open .arrow { transform: rotate(180deg); }

    /* Reveal Panel */
    .ueber-panel {
      width: 100%;
      max-height: 0;
      overflow: hidden;
      transition: max-height .6s cubic-bezier(.4,0,.2,1), opacity .4s ease;
      opacity: 0;
    }
    .ueber-panel.open {
      max-height: 1200px;
      opacity: 1;
    }
    .ueber-inner {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 3.5rem;
      align-items: start;
      margin-top: 3rem;
      text-align: left;
      padding-top: 3rem;
      border-top: 1px solid var(--border);
    }
    .ueber-photo {
      width: 100%;
      aspect-ratio: 3/4;
      object-fit: cover;
      object-position: center top;
      filter: grayscale(20%);
    }
    .ueber-photo-placeholder {
      width: 100%;
      aspect-ratio: 3/4;
      background: var(--card);
      border: 1px dashed var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: .5rem;
      color: var(--muted);
      font-size: 0.78rem;
      text-align: center;
      letter-spacing: 0.1em;
    }
    .ueber-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.9rem;
      font-weight: 300;
      margin-bottom: .3rem;
      color: var(--cream);
    }
    .ueber-text .ueber-subtitle {
      font-size: 0.72rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1.8rem;
    }
    .ueber-text p {
      font-size: 0.88rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: 1.2rem;
    }
    .qualifikationen {
      margin-top: 2rem;
      border-top: 1px solid var(--border);
      padding-top: 1.5rem;
    }
    .qualifikationen-label {
      font-size: 0.65rem;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1rem;
    }
    .qual-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: .6rem;
    }
    .qual-list li {
      display: flex;
      align-items: center;
      gap: .9rem;
      font-size: 0.84rem;
      color: var(--cream);
    }
    .qual-list li::before {
      content: '';
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent2);
      flex-shrink: 0;
    }
    @media (max-width: 768px) {
      .ueber-inner { grid-template-columns: 1fr; }
      .ueber-photo, .ueber-photo-placeholder { max-width: 240px; margin: 0 auto; }
    }

    /* ── LEISTUNGEN ACCORDION ── */
    .leistungen-list li {
      flex-direction: column;
      align-items: flex-start;
      cursor: pointer;
      user-select: none;
      padding: 1.2rem 0;
    }
    .leistungen-list li .li-row {
      display: flex;
      align-items: center;
      gap: 1.2rem;
      width: 100%;
    }
    .leistungen-list li .li-row::before {
      content: '';
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--accent2);
      flex-shrink: 0;
    }
    .leistungen-list li::before { display: none; }
    .li-title {
      flex: 1;
      font-size: 0.95rem;
      color: var(--cream);
      transition: color .2s;
    }
    .li-arrow {
      font-size: 0.8rem;
      color: var(--muted);
      transition: transform .3s, color .2s;
      margin-left: auto;
    }
    .leistungen-list li.open .li-arrow { transform: rotate(180deg); color: var(--accent2); }
    .leistungen-list li.open .li-title { color: var(--accent2); }
    .leistungen-list li:hover .li-title { color: var(--accent2); }
    .li-desc {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
      opacity: 0;
      padding-left: 1.8rem;
    }
    .leistungen-list li.open .li-desc {
      max-height: 200px;
      opacity: 1;
    }
    .li-desc p {
      font-size: 0.82rem;
      color: var(--muted);
      line-height: 1.75;
      padding: .7rem 0 .2rem;
    }

    /* ── FOOTER BUTTONS ── */
    .footer-links a {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      padding: .5rem .9rem;
      border: 1px solid transparent;
      transition: color .2s, border-color .2s;
      cursor: pointer;
      background: none;
      font-family: 'Inter', sans-serif;
    }
    .footer-links a:hover,
    .footer-links button:hover { color: var(--cream); border-color: var(--border); }
    .footer-links button {
      display: inline-flex;
      align-items: center;
      gap: .45rem;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      color: var(--muted);
      text-decoration: none;
      text-transform: uppercase;
      padding: .5rem .9rem;
      border: 1px solid transparent;
      transition: color .2s, border-color .2s;
      cursor: pointer;
      background: none;
      font-family: 'Inter', sans-serif;
    }
    .footer-links button:hover { color: var(--cream); border-color: var(--border); }

    /* ── MODAL OVERLAY ── */
    .modal-overlay {
      position: fixed; inset: 0; z-index: 999;
      background: rgba(10,8,6,0.88);
      backdrop-filter: blur(6px);
      display: flex; align-items: center; justify-content: center;
      padding: 2rem;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
    }
    .modal-overlay.open {
      opacity: 1;
      pointer-events: all;
    }
    .modal-box {
      background: var(--bg2);
      border: 1px solid var(--border);
      max-width: 680px;
      width: 100%;
      max-height: 82vh;
      overflow-y: auto;
      padding: 3rem;
      position: relative;
      transform: translateY(20px);
      transition: transform .35s cubic-bezier(.4,0,.2,1);
    }
    .modal-overlay.open .modal-box { transform: translateY(0); }
    .modal-close {
      position: absolute; top: 1.2rem; right: 1.4rem;
      background: none; border: none;
      color: var(--muted); font-size: 1.3rem;
      cursor: pointer; line-height: 1;
      transition: color .2s;
      font-family: 'Inter', sans-serif;
    }
    .modal-close:hover { color: var(--cream); }
    .modal-label {
      font-size: 0.65rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      color: var(--accent2);
      margin-bottom: 1.5rem;
    }
    .modal-box h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      font-weight: 300;
      margin-bottom: 2rem;
      color: var(--cream);
    }
    .modal-box h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem;
      font-weight: 400;
      color: var(--cream);
      margin: 1.8rem 0 .5rem;
      letter-spacing: 0.04em;
    }
    .modal-box p {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.8;
      margin-bottom: .6rem;
    }
    .modal-box ul {
      list-style: none;
      padding: 0;
      margin: .5rem 0 1rem 0;
    }
    .modal-box ul li {
      font-size: 0.83rem;
      color: var(--muted);
      line-height: 1.7;
      padding: .25rem 0;
      padding-left: 1.2rem;
      position: relative;
    }
    .modal-box ul li::before {
      content: '';
      position: absolute; left: 0; top: .65rem;
      width: 5px; height: 5px;
      border-radius: 50%;
      background: var(--accent2);
    }
    .modal-box a { color: var(--accent2); text-decoration: none; }
    .modal-box a:hover { text-decoration: underline; }
    .modal-divider {
      height: 1px;
      background: var(--border);
      margin: 1.5rem 0;
    }
    /* scrollbar */
    .modal-box::-webkit-scrollbar { width: 4px; }
    .modal-box::-webkit-scrollbar-track { background: transparent; }
    .modal-box::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

    /* ── FORM FEEDBACK ── */
    .form-success, .form-error {
      display: none;
      padding: 1.2rem 1.5rem;
      font-size: 0.83rem;
      line-height: 1.6;
      margin-top: 1rem;
    }
    .form-success {
      background: rgba(100,160,100,0.08);
      border-left: 3px solid #6a9e6a;
      color: #a8c8a8;
    }
    .form-error {
      background: rgba(140,61,46,0.10);
      border-left: 3px solid var(--accent);
      color: var(--accent2);
    }
    .btn-submit {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: .85rem 2.4rem;
      background: var(--accent);
      color: var(--cream);
      border: none;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: background .2s, transform .15s;
      width: 100%;
      text-align: center;
    }
    .btn-submit:hover { background: var(--accent2); transform: translateY(-1px); }
    .btn-submit:disabled { opacity: .5; cursor: not-allowed; transform: none; }

    /* ── FOOTER BUTTONS ROW ── */
    .footer-btn-row {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1.5rem 0 1rem;
      flex-wrap: wrap;
    }
    .footer-btn {
      display: inline-flex;
      align-items: center;
      gap: .5rem;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--muted);
      background: transparent;
      border: 1px solid var(--border);
      padding: .6rem 1.3rem;
      cursor: pointer;
      font-family: 'Inter', sans-serif;
      transition: color .2s, border-color .2s, background .2s;
    }
    .footer-btn:hover {
      color: var(--cream);
      border-color: var(--accent2);
      background: rgba(181,101,74,0.08);
    }
    .footer-btn-icon {
      font-size: 0.85rem;
      opacity: .7;
    }

/* ── HERO SUB ── */
.hero-sub {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 2rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

/* ── WHATSAPP FLOATING ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  background: #25d366;
  color: white;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37,211,102,0.35);
  transition: transform .2s, box-shadow .2s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* ── SECTION CTA ── */
.section-cta {
  margin-top: 3rem;
  text-align: center;
}
.section-cta-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
  display: block;
}

/* ── FIX: Leistungen accordion override ── */
.leistungen-list li {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  cursor: pointer;
  user-select: none;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--cream);
  transition: color .2s;
}
.leistungen-list li::before { display: none !important; }
.leistungen-list li .li-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
}
.leistungen-list li .li-row::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  flex-shrink: 0;
}
.li-title { flex: 1; font-size: 0.95rem; color: var(--cream); transition: color .2s; }
.li-arrow { font-size: 0.8rem; color: var(--muted); transition: transform .3s, color .2s; margin-left: auto; }
.leistungen-list li.open .li-arrow { transform: rotate(180deg); color: var(--accent2); }
.leistungen-list li.open .li-title { color: var(--accent2); }
.leistungen-list li:hover .li-title { color: var(--accent2); }
.li-desc {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), opacity .3s ease;
  opacity: 0;
  padding-left: 1.8rem;
  width: 100%;
}
.leistungen-list li.open .li-desc { max-height: 200px; opacity: 1; }
.li-desc p { font-size: 0.82rem; color: var(--muted); line-height: 1.75; padding: .7rem 0 .2rem; }

/* ── FIX: Über mich panel ── */
.ueber-panel {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height .6s cubic-bezier(.4,0,.2,1), opacity .4s ease;
  opacity: 0;
}
.ueber-panel.open { max-height: 1200px; opacity: 1; }

@media (max-width: 768px) {
  .whatsapp-float { bottom: 1.2rem; right: 1.2rem; width: 48px; height: 48px; font-size: 1.3rem; }
}


/* ══ MOBILE VOLLSTÄNDIG ══ */
@media (max-width: 768px) {

  /* Navigation */
  nav { padding: 1rem 1.2rem; }
  .nav-links { display: none; }
  .nav-cta { font-size: 0.65rem; padding: .5rem 1rem; }

  /* Hero */
  section.hero { padding-bottom: 3rem; }
  .hero-content { padding: 0 1.2rem; }
  .hero-tagline { font-size: 1.2rem; }
  .hero-sub { font-size: 0.8rem; }
  .btn { font-size: 0.68rem; padding: .75rem 1.6rem; }

  /* Sections */
  section { padding: 3rem 1.2rem; }
  .container { padding: 0; }

  /* Karten */
  .cards { grid-template-columns: 1fr; }
  .card { padding: 1.4rem 1.2rem; }

  /* Leistungen */
  .leistungen-list li { padding: 1rem 0; }
  .li-title { font-size: 0.88rem; }

  /* Ablauf */
  .step { gap: 1rem; }
  .step-num { font-size: 1.4rem; min-width: 1.4rem; }
  .step-title { font-size: 1rem; }

  /* Kontakt */
  .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .kontakt-info h2 { font-size: 1.3rem; }
  .form-field input,
  .form-field textarea { font-size: 0.85rem; }

  /* Über mich */
  .ueber-inner { grid-template-columns: 1fr; gap: 1.5rem; margin-top: 1.5rem; padding-top: 1.5rem; }
  .ueber-photo { max-width: 200px; margin: 0 auto; display: block; }
  .ueber-text h3 { font-size: 1.4rem; }
  .ueber-teaser-quote { font-size: 1.1rem; }

  /* Modal */
  .modal-box { padding: 1.5rem 1.2rem; }
  .modal-box h2 { font-size: 1.4rem; }

  /* Footer */
  .footer-btn-row { flex-direction: column; align-items: center; gap: .5rem; }
  .footer-btn { width: 220px; justify-content: center; }

  /* WhatsApp */
  .whatsapp-float { bottom: 1rem; right: 1rem; width: 46px; height: 46px; font-size: 1.2rem; }
}

@media (max-width: 380px) {
  .hero-tagline { font-size: 1rem; }
  .btn { padding: .7rem 1.2rem; }
  nav .nav-logo { font-size: 1.1rem; }
}
