  :root {
    /* CI aus Mela's bestehendem Logo */
    --bg: #FBFAF6;
    --bg-soft: #F0F0E8;
    --bg-paper: #FFFFFF;
    --ink: #2A2A2A;          /* Logo-Schwarz */
    --ink-deep: #1A1A1A;
    --ink-soft: #5A5A56;
    --lime: #A0CC1F;          /* Logo-Limette */
    --lime-deep: #7FA516;
    --lime-pale: #E6F0C4;
    --lime-tint: #F5F9E6;
    --accent-purple: #7B5BA3; /* aus den Mini-Footprints */
    --accent-navy: #3E5A8A;   /* aus den Mini-Footprints */
    --rule: rgba(42, 42, 42, 0.1);
    --max: 1280px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: "Plus Jakarta Sans", -apple-system, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 17px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip; /* nicht 'hidden' — sonst bricht position:fixed auf Mobile */
  }
  ::selection { background: var(--lime); color: var(--ink-deep); }
  a { color: inherit; text-decoration: none; }
  .wrap { max-width: var(--max); margin: 0 auto; padding: 0 36px; }

  /* ========= NAV mit echtem Logo ========= */
  nav {
    position: sticky;
    top: 0;
    background: rgba(251, 250, 246, 0.92);
    backdrop-filter: blur(16px);
    z-index: 100;
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
  }
  nav .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .brand-logo {
    height: 76px;
    width: auto;
    display: block;
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links > a {
    font-weight: 500;
    font-size: 14.5px;
    letter-spacing: -0.005em;
    color: var(--ink);
  }
  .nav-links > a:hover { color: var(--lime-deep); }
  .drawer-logo { display: none; } /* nur im Mobile-Drawer sichtbar */
  .nav-cta {
    background: var(--ink);
    color: var(--bg) !important;
    padding: 12px 22px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    transition: background .25s ease;
  }
  .nav-cta:hover { background: var(--lime-deep) !important; }

  /* ========= HERO ========= */
  .hero {
    padding: 70px 0 90px;
    position: relative;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: 80px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(160, 204, 31, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    filter: blur(40px);
  }
  .hero .row {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .hero-eyebrow {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lime-deep);
    font-weight: 700;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .hero-eyebrow::before {
    content: "";
    width: 36px;
    height: 2px;
    background: var(--lime);
  }
  .hero h1 {
    font-weight: 700;
    font-size: clamp(48px, 7vw, 92px);
    line-height: 1.0;
    letter-spacing: -0.035em;
    margin-bottom: 32px;
    color: var(--ink-deep);
  }
  .hero h1 .accent {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
    color: var(--lime-deep);
    font-size: 1.05em;
    letter-spacing: -0.015em;
  }
  .hero .lede {
    font-size: 20px;
    line-height: 1.5;
    color: var(--ink-soft);
    max-width: 44ch;
    margin-bottom: 36px;
    font-weight: 400;
  }
  .hero .lede strong { color: var(--ink); font-weight: 600; }
  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: -0.005em;
    transition: transform .22s ease, background .25s ease, color .25s ease;
    border: 1.5px solid transparent;
    cursor: pointer;
  }
  .btn-primary {
    background: var(--lime);
    color: var(--ink-deep);
  }
  .btn-primary:hover { background: var(--lime-deep); color: var(--bg); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--ink);
  }
  .btn-ghost:hover { background: var(--ink); color: var(--bg); transform: translateY(-2px); }
  .btn::after { content: "→"; transition: transform .25s ease; }
  .btn:hover::after { transform: translateX(4px); }

  .hero-photo {
    aspect-ratio: 4 / 5;
    border-radius: 220px 220px 24px 24px;
    overflow: hidden;
    background: var(--bg-soft);
    position: relative;
    box-shadow: 0 30px 60px -25px rgba(42, 42, 42, 0.22);
  }
  .hero-photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
  }
  .hero-floater {
    position: absolute;
    bottom: 22px;
    right: -22px;
    background: var(--bg-paper);
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 12px 32px -8px rgba(42, 42, 42, 0.15);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 2px solid var(--lime);
  }
  .hero-floater .stars {
    color: var(--lime-deep);
    font-size: 18px;
    letter-spacing: 1px;
  }
  .hero-floater .meta {
    font-size: 13px;
    line-height: 1.3;
  }
  .hero-floater .meta b {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 1px;
    color: var(--ink-deep);
  }
  .hero-floater .meta span { color: var(--ink-soft); font-size: 12px; }

  /* ========= USP STRIP ========= */
  .usp-strip {
    background: var(--ink-deep);
    color: var(--bg);
    padding: 36px 0;
  }
  .usp-strip .row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .usp {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .usp .icn {
    width: 36px; height: 36px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  .usp b {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    color: var(--bg);
  }
  .usp span {
    font-size: 13.5px;
    color: rgba(251, 250, 246, 0.7);
    line-height: 1.4;
  }

  /* ========= SERVICES ========= */
  .services {
    padding: 120px 0;
  }
  .services .head {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: end;
    margin-bottom: 60px;
  }
  .section-eyebrow {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--lime-deep);
    font-weight: 700;
    margin-bottom: 18px;
  }
  .services h2,
  .blaulicht h2,
  .about h2,
  .testimonials h2,
  .practical h2,
  .cta-section h2 {
    font-weight: 700;
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.0;
    letter-spacing: -0.03em;
    color: var(--ink-deep);
  }
  h2 .accent {
    font-family: "Cormorant Garamond", serif;
    font-weight: 500;
    font-style: italic;
    color: var(--lime-deep);
    font-size: 1.05em;
    letter-spacing: -0.015em;
  }
  .services .head p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 40ch;
  }
  .svc-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .svc {
    display: grid;
    grid-template-columns: 80px 1fr 130px 140px;
    gap: 32px;
    align-items: center;
    padding: 32px 8px;
    border-top: 1px solid var(--rule);
    transition: padding 0.3s ease, background 0.3s ease;
  }
  .svc:last-child { border-bottom: 1px solid var(--rule); }
  .svc:hover {
    padding-left: 28px;
    background: var(--lime-tint);
  }
  .svc .num {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 26px;
    color: var(--lime-deep);
    font-weight: 500;
  }
  .svc .name {
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    margin-bottom: 4px;
  }
  .svc .desc {
    font-size: 14.5px;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .svc .time {
    font-size: 14px;
    color: var(--ink-soft);
    text-align: right;
  }
  .svc .price {
    text-align: right;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: -0.02em;
    color: var(--ink-deep);
  }
  .svc .price small {
    display: block;
    font-weight: 400;
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-top: 2px;
  }

  /* ========= ZUSATZLEISTUNGEN (Unter-Section) ========= */
  .zusatz-section {
    margin-top: 80px;
    padding-top: 32px;
  }
  .zusatz-header {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 64px;
    align-items: end;
    margin-bottom: 24px;
  }
  .zusatz-header h3 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    color: var(--ink-deep);
    letter-spacing: -0.01em;
    margin: 0;
    line-height: 1;
  }
  .zusatz-header p {
    font-size: 15px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 50ch;
    margin: 0;
  }
  .svc.svc-zusatz {
    background: rgba(0, 0, 0, 0.015);
  }
  .svc.svc-zusatz:hover {
    background: var(--lime-tint);
  }
  .svc.svc-zusatz .num {
    font-family: inherit;
    font-style: normal;
    font-weight: 400;
    font-size: 28px;
    color: var(--lime-deep);
    text-align: center;
  }
  .svc.svc-zusatz .name {
    font-size: 19px;
  }
  .svc.svc-zusatz .price {
    font-size: 19px;
  }
  @media (max-width: 720px) {
    .zusatz-header { grid-template-columns: 1fr; gap: 12px; }
    .zusatz-header h3 { font-size: 28px; }
  }

  /* ========= BLAULICHT FEATURE ========= */
  .blaulicht {
    padding: 120px 0;
    background: var(--ink-deep);
    color: var(--bg);
    border-radius: 40px;
    margin: 0 24px;
    position: relative;
    overflow: hidden;
  }
  .blaulicht::before {
    content: "";
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(160, 204, 31, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    top: -100px; right: -200px;
    filter: blur(40px);
  }
  .blaulicht .row {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
  }
  .blaulicht .section-eyebrow {
    color: var(--lime);
  }
  .blaulicht h2 {
    color: var(--bg);
  }
  .blaulicht h2 .accent {
    color: var(--lime);
  }
  .blaulicht .lede {
    font-size: 19px;
    color: rgba(251, 250, 246, 0.78);
    line-height: 1.55;
    margin-top: 28px;
    margin-bottom: 32px;
    max-width: 44ch;
  }
  .blaulicht-points {
    list-style: none;
    display: grid;
    gap: 18px;
    margin-bottom: 36px;
  }
  .blaulicht-points li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }
  .blaulicht-points li::before {
    content: "✓";
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-deep);
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    margin-top: 2px;
  }
  .blaulicht-points li b {
    font-weight: 700;
    color: var(--bg);
    margin-right: 6px;
  }
  .blaulicht-points li span { color: rgba(251, 250, 246, 0.78); }
  .blaulicht .btn-primary {
    background: var(--lime);
    color: var(--ink-deep);
  }
  .blaulicht .btn-primary:hover {
    background: var(--bg);
    color: var(--ink-deep);
  }
  .blaulicht-photo {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-soft);
  }
  .blaulicht-photo img { width: 100%; height: 100%; object-fit: cover; }

  /* ========= QUOTE ========= */
  .quote-section {
    padding: 130px 0;
    text-align: center;
  }
  .quote-section blockquote {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.25;
    letter-spacing: -0.015em;
    max-width: 26ch;
    margin: 0 auto;
    color: var(--ink-deep);
  }
  .quote-section blockquote::before {
    content: "„";
    font-size: 1.5em;
    color: var(--lime-deep);
    line-height: 0;
    vertical-align: -0.2em;
    margin-right: 4px;
  }
  .quote-section blockquote::after {
    content: """;
    font-size: 1.5em;
    color: var(--lime-deep);
    line-height: 0;
    vertical-align: -0.2em;
  }
  .quote-section cite {
    display: block;
    margin-top: 30px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-style: normal;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
  }
  .quote-section .stars {
    color: var(--lime-deep);
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 14px;
    display: block;
  }

  /* ========= ABOUT ========= */
  .about {
    padding: 120px 0;
    background: var(--bg-soft);
  }
  .about .row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
  }
  .about-photo {
    aspect-ratio: 4 / 5;
    border-radius: 24px;
    overflow: hidden;
    background: var(--bg-paper);
    box-shadow: 0 20px 50px -20px rgba(42, 42, 42, 0.18);
  }
  .about-photo img { width: 100%; height: 100%; object-fit: cover; }
  .about h2 { margin-bottom: 28px; }
  .about p {
    font-size: 18px;
    color: var(--ink-soft);
    line-height: 1.6;
    margin-bottom: 18px;
    max-width: 50ch;
  }
  .about p strong { color: var(--ink-deep); font-weight: 600; }
  .credentials {
    margin-top: 36px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .cred {
    background: var(--bg);
    padding: 18px;
    border-radius: 14px;
    border: 1px solid var(--rule);
    border-left: 3px solid var(--lime);
  }
  .cred b {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: -0.005em;
    color: var(--ink-deep);
  }
  .cred span {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.4;
  }
  .languages {
    margin-top: 28px;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .languages b { color: var(--ink-deep); font-weight: 600; margin-right: 8px; }
  .lang-pill {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg);
    border: 1px solid var(--lime-pale);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 500;
    margin-right: 6px;
    margin-top: 6px;
    color: var(--ink-deep);
  }

  /* ========= TESTIMONIALS ========= */
  .testimonials {
    padding: 120px 0;
  }
  .testimonials .head {
    text-align: center;
    margin-bottom: 60px;
  }
  .testimonials .head .section-eyebrow { display: inline-flex; align-items: center; gap: 12px; }
  .testimonials .head .section-eyebrow::before,
  .testimonials .head .section-eyebrow::after {
    content: "";
    width: 24px; height: 2px;
    background: var(--lime);
  }
  .testimonials h2 { max-width: 22ch; margin: 0 auto 16px; }
  .testimonials .head p {
    font-size: 15px;
    color: var(--ink-soft);
    margin-top: 14px;
  }
  .test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }
  .test {
    background: var(--bg-paper);
    border-radius: 22px;
    padding: 32px;
    border: 1px solid var(--rule);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .test:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -20px rgba(42, 42, 42, 0.12);
    border-color: var(--lime);
  }
  .test .test-stars {
    color: var(--lime-deep);
    font-size: 16px;
    letter-spacing: 3px;
    margin-bottom: 16px;
  }
  .test p {
    font-size: 15.5px;
    line-height: 1.55;
    color: var(--ink);
    margin-bottom: 20px;
    font-weight: 400;
  }
  .test .author {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid var(--rule);
  }
  .test .avatar {
    width: 36px; height: 36px;
    background: var(--lime);
    color: var(--ink-deep);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
  }
  .test .name {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 0;
    color: var(--ink-deep);
  }
  .test .verified {
    font-size: 11.5px;
    color: var(--lime-deep);
    font-weight: 600;
  }

  /* ========= PRACTICAL ========= */
  .practical {
    padding: 120px 0;
    background: var(--ink-deep);
    color: var(--bg);
  }
  .practical .row {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: start;
  }
  .practical h2 { color: var(--bg); margin-bottom: 24px; }
  .practical h2 .accent { color: var(--lime); }
  .practical > .wrap > .row > div > .lede {
    font-size: 18px;
    color: rgba(251, 250, 246, 0.7);
    line-height: 1.55;
    margin-bottom: 28px;
    max-width: 38ch;
  }
  .info-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 36px;
  }
  .info-item {
    padding: 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    border-left: 3px solid var(--lime);
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 24px;
    align-items: start;
  }
  .info-item .label {
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--lime);
    font-weight: 700;
    padding-top: 2px;
  }
  .info-item .val {
    font-size: 15.5px;
    color: var(--bg);
    line-height: 1.5;
    font-weight: 500;
  }
  .info-item .val a:hover { color: var(--lime); }
  .hours {
    display: grid;
    gap: 2px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 22px;
  }
  .hours .day {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 14.5px;
  }
  .hours .day:not(:last-child) {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .hours .day .d { color: rgba(251, 250, 246, 0.7); font-weight: 500; }
  .hours .day .t { color: var(--bg); font-weight: 600; }
  .hours .day.closed .t { color: rgba(251, 250, 246, 0.4); }

  /* ========= CTA ========= */
  .cta-section {
    padding: 130px 0;
    text-align: center;
    position: relative;
  }
  .cta-section::before {
    content: "";
    position: absolute;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(160, 204, 31, 0.12) 0%, transparent 65%);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(60px);
    z-index: 0;
  }
  .cta-section > .wrap { position: relative; z-index: 1; }
  .cta-section h2 {
    max-width: 18ch;
    margin: 0 auto 32px;
  }
  .cta-section p {
    font-size: 19px;
    color: var(--ink-soft);
    max-width: 42ch;
    margin: 0 auto 40px;
    line-height: 1.55;
  }
  .cta-section .actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .cta-section .phone {
    margin-top: 56px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 24px;
    color: var(--ink-soft);
  }
  .cta-section .phone a { color: var(--lime-deep); font-weight: 500; }

  /* ========= FOOTER (Baba-Pattern) ========= */
  footer {
    background: var(--bg-soft);
    padding: 80px 0 32px;
    border-top: 1px solid var(--rule);
  }
  footer .ft-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    margin-bottom: 50px;
    align-items: center;
  }
  footer .ft-info {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  footer .ft-info .label,
  footer .ft-contact .label {
    color: var(--lime-deep);
    font-size: 11.5px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 700;
    margin-bottom: 12px;
    display: block;
  }
  footer .ft-info b {
    color: var(--ink);
    font-weight: 600;
    display: block;
    margin-bottom: 2px;
  }
  footer .ft-center {
    text-align: center;
    padding: 0 16px;
  }
  footer .ft-logo {
    height: 96px;
    width: auto;
    display: inline-block;
    margin-bottom: 18px;
  }
  footer .ft-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 13px;
  }
  footer .ft-links button {
    color: var(--ink-soft);
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 13px;
    padding: 4px 6px;
    transition: color .2s ease;
  }
  footer .ft-links button:hover {
    color: var(--lime-deep);
  }
  footer .ft-links .dot { color: var(--ink-soft); opacity: 0.4; }
  footer .ft-contact {
    text-align: right;
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--ink-soft);
  }
  footer .ft-contact a {
    color: var(--ink);
    font-weight: 500;
  }
  footer .ft-contact a:hover { color: var(--lime-deep); }
  footer .ft-cta {
    display: inline-flex;
    margin-top: 18px;
    padding: 10px 22px;
    border: 1.5px solid var(--ink);
    color: var(--ink);
    border-radius: 100px;
    text-transform: uppercase;
    font-size: 11.5px;
    letter-spacing: 0.12em;
    font-weight: 700;
    transition: all .25s ease;
  }
  footer .ft-cta:hover {
    background: var(--ink);
    color: var(--bg-paper);
  }
  footer .credit {
    border-top: 1px solid var(--rule);
    padding-top: 24px;
    text-align: center;
    font-size: 12.5px;
    color: var(--ink-soft);
  }
  footer .credit a {
    color: var(--lime-deep);
    font-weight: 500;
  }
  footer .credit .heart {
    display: inline-block;
    color: var(--lime-deep);
    font-size: 11px;
    margin: 0 4px;
    transform: translateY(0.5px);
  }

  /* ========= POPUP-MODAL (Impressum & Datenschutz) ========= */
  .modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(42, 42, 42, 0.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
  }
  .modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
  }
  .modal {
    background: var(--bg-paper);
    border-radius: 18px;
    max-width: 720px;
    max-height: 85vh;
    width: 100%;
    overflow-y: auto;
    padding: 48px 56px;
    position: relative;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.4);
    transform: translateY(12px);
    transition: transform .3s ease;
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--bg-soft);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    color: var(--ink);
    transition: all .2s ease;
    font-family: inherit;
  }
  .modal-close:hover {
    background: var(--ink);
    color: var(--bg-paper);
  }
  .modal h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.025em;
  }
  .modal .modal-sub {
    color: var(--ink-soft);
    font-size: 14px;
    margin-bottom: 28px;
    font-style: italic;
  }
  .modal h3 {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--lime-deep);
    margin-top: 24px;
    margin-bottom: 10px;
  }
  .modal h3:first-of-type { margin-top: 0; }
  .modal p {
    font-size: 15px;
    line-height: 1.65;
    color: var(--ink);
    margin-bottom: 14px;
  }
  .modal a { color: var(--lime-deep); }

  @media (max-width: 760px) {
    footer .ft-grid {
      grid-template-columns: 1fr;
      gap: 36px;
      text-align: center;
    }
    footer .ft-contact { text-align: center; }
    footer .ft-logo { height: 72px; }
    .modal { padding: 36px 22px; max-height: 92vh; }
    .modal h2 { font-size: 22px; }
  }

  /* ========= NAV TOGGLE (Hamburger, nur Mobile) ========= */
  .nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 22px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    margin-left: 14px;
    position: relative;
    z-index: 102;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .3s ease, opacity .2s ease;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

  /* ========= RESPONSIVE ========= */
  @media (max-width: 920px) {
    /* WICHTIG: backdrop-filter ausschalten — sonst containing block
       für position:fixed Kinder (Drawer covert nicht ganzen Screen) */
    nav {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: var(--bg);
    }
    .wrap { padding: 0 22px; }
    nav { padding: 12px 0; }
    .brand-logo { height: 72px; }
    .nav-toggle { display: flex; }

    /* Mobile-Drawer: Items oben statt zentriert, eng */
    .nav-links {
      position: fixed;
      inset: 0;
      background: var(--bg);
      flex-direction: column;
      justify-content: flex-start;
      align-items: center;
      gap: 14px;
      padding: 32px 24px 60px;
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s ease;
      z-index: 101;
    }
    .nav-links.open {
      opacity: 1;
      pointer-events: auto;
    }
    .nav-links > a:not(.nav-cta) {
      display: block;
      font-family: "Cormorant Garamond", serif;
      font-size: 28px;
      font-weight: 500;
      letter-spacing: -0.01em;
    }
    .nav-links > a:not(.nav-cta):hover {
      color: var(--lime-deep);
      font-style: italic;
    }
    .drawer-logo {
      display: block;
      width: auto;
      height: auto;
      max-width: 70%;
      max-height: 100px;
      margin-bottom: 8px;
    }
    /* CTA im Drawer grösser dargestellt */
    .nav-links .nav-cta {
      margin-top: 16px;
      padding: 16px 32px;
      font-size: 16px;
    }
    .hero { padding: 40px 0 60px; }
    .hero .row { grid-template-columns: 1fr; gap: 40px; }
    .hero-floater { right: 12px; }
    .usp-strip .row { grid-template-columns: 1fr 1fr; gap: 18px; }
    .services .head { grid-template-columns: 1fr; gap: 20px; }
    .svc {
      grid-template-columns: 40px 1fr;
      grid-template-areas: "num name" "num desc" ". time" ". price";
      gap: 8px;
    }
    .svc .num { grid-area: num; align-self: start; padding-top: 4px; }
    .svc .name { grid-area: name; font-size: 19px; }
    .svc .desc { grid-area: desc; }
    .svc .time { grid-area: time; text-align: left; }
    .svc .price { grid-area: price; text-align: left; padding-top: 8px; }
    .blaulicht { margin: 0 12px; border-radius: 24px; padding: 60px 0; }
    .blaulicht .row { grid-template-columns: 1fr; gap: 40px; }
    .about .row { grid-template-columns: 1fr; gap: 40px; }
    .credentials { grid-template-columns: 1fr; }
    .test-grid { grid-template-columns: 1fr; }
    .practical .row { grid-template-columns: 1fr; gap: 40px; }
    .info-item { grid-template-columns: 1fr; gap: 6px; }
    footer .credit { flex-direction: column; gap: 8px; text-align: center; }
  }

  /* ========= ANIMATIONS ========= */
  @keyframes rise {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .hero-eyebrow, .hero h1, .hero .lede, .hero-actions, .hero-photo {
    animation: rise 0.85s ease both;
  }
  .hero h1 { animation-delay: 0.1s; }
  .hero .lede { animation-delay: 0.2s; }
  .hero-actions { animation-delay: 0.3s; }
  .hero-photo { animation-delay: 0.15s; }

  /* ========= NEWS-BANNER (editoriale Karte zwischen Nav und Hero) ========= */
  .news-banner {
    display: none;
    max-width: 920px;
    margin: 40px auto 12px;
    padding: 36px 44px;
    background: var(--bg-paper);
    border-radius: 6px;
    border-left: 6px solid var(--lime-deep);
    box-shadow: 0 24px 50px -22px rgba(42, 42, 42, 0.22);
    position: relative;
    text-align: left;
  }
  .news-banner.show { display: block; }
  .news-banner .nb-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    margin-bottom: 14px;
    display: block;
  }
  .news-banner .nb-title {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    line-height: 1.15;
    color: var(--ink-deep);
    margin-bottom: 6px;
    letter-spacing: -0.02em;
  }
  .news-banner .nb-dates {
    font-size: 19px;
    color: var(--ink-deep);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
  }
  .news-banner .nb-text {
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
    max-width: 60ch;
  }

  /* Kategorien — Editorial-Töne mit dezenter BG-Tönung für mehr Präsenz */
  .news-banner.abwesend {
    background: #FBF5EA;
    border-left-color: #B47A30;
  }
  .news-banner.abwesend .nb-label,
  .news-banner.abwesend .nb-title { color: #8A5E25; }
  .news-banner.abwesend .nb-dates { color: #6B4818; }

  .news-banner.aktion {
    background: var(--lime-tint);
    border-left-color: var(--lime-deep);
  }
  .news-banner.aktion .nb-label,
  .news-banner.aktion .nb-title { color: var(--lime-deep); }

  .news-banner.hinweis {
    background: #F2F4F8;
    border-left-color: #4A6080;
  }
  .news-banner.hinweis .nb-label,
  .news-banner.hinweis .nb-title { color: #3E5A8A; }
  .news-banner.hinweis .nb-dates { color: #2E4570; }

  @media (max-width: 760px) {
    .news-banner {
      margin: 24px 18px 0;
      padding: 26px 26px;
      border-left-width: 5px;
    }
    .news-banner .nb-title { font-size: 28px; }
    .news-banner .nb-dates { font-size: 17px; }
    .news-banner .nb-text { font-size: 16px; }
  }
  @media (max-width: 600px) {
    .hero h1 { font-size: 42px; letter-spacing: -0.025em; }
    .hero .lede { font-size: 17.5px; }
  }

  /* ========= FLOATING-CTA / STICKY BOTTOM-BAR ========= */
  .floating-cta {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--lime);
    color: var(--ink-deep) !important;
    padding: 14px 24px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 14.5px;
    letter-spacing: -0.01em;
    text-decoration: none;
    box-shadow: 0 14px 32px -8px rgba(160, 204, 31, 0.55), 0 4px 12px -4px rgba(0,0,0,0.15);
    z-index: 9999;
    transition: background .2s ease, transform .2s ease;
  }
  .floating-cta:hover {
    background: var(--lime-deep);
    transform: translateY(-3px);
  }
  @media (max-width: 600px) {
    /* MOBILE: prominenter sticky-Bar mit Atemraum nach unten */
    .floating-cta {
      position: fixed !important;
      left: 14px !important;
      right: 14px !important;
      bottom: max(28px, calc(20px + env(safe-area-inset-bottom, 0px))) !important;
      top: auto !important;
      width: auto !important;
      text-align: center;
      padding: 20px 24px;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: 0.005em;
      border-radius: 18px;
      box-shadow: 0 -4px 24px rgba(0,0,0,0.08), 0 18px 40px rgba(160, 204, 31, 0.55), 0 6px 14px rgba(0,0,0,0.18);
      z-index: 999999;
    }
    .floating-cta::after {
      content: " →";
      margin-left: 6px;
      font-weight: 600;
    }
    /* Body: zusätzlicher Padding-Bottom damit Content nicht hinter dem CTA verschwindet */
    body {
      padding-bottom: 100px;
    }
  }

  /* ========= PRAXIS-GALERIE ========= */
  .praxis-intro {
    text-align: center;
    margin-bottom: 32px;
  }
  .praxis-intro h2 {
    max-width: 22ch;
    margin: 12px auto 18px;
  }
  .praxis-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin: 0 auto 88px;
    max-width: 1100px;
    align-items: start;
  }
  .praxis-photo {
    position: relative;
  }
  .praxis-photo:first-child {
    transform: translateY(-12px);
  }
  .praxis-photo:last-child {
    transform: translateY(40px);
  }
  .praxis-photo img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 16px;
    display: block;
    box-shadow: 0 28px 60px -28px rgba(42,42,42,0.28);
  }
  .praxis-photo figcaption {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 17px;
    color: var(--ink-soft);
    margin-top: 18px;
    text-align: center;
    line-height: 1.45;
    padding: 0 12px;
  }
  @media (max-width: 760px) {
    .praxis-gallery {
      grid-template-columns: 1fr;
      gap: 40px;
      margin-bottom: 56px;
    }
    .praxis-photo:first-child,
    .praxis-photo:last-child {
      transform: none;
    }
    .praxis-photo figcaption {
      font-size: 16px;
    }
  }

  /* ========= BOOKING-WIDGET ========= */
  .booking-section {
    background: linear-gradient(180deg, var(--bg-paper) 0%, var(--bg-soft) 100%);
    padding: 100px 0 96px;
    position: relative;
  }
  .booking-section h2 {
    text-align: center;
    max-width: 18ch;
    margin: 12px auto 16px;
  }
  .booking-intro {
    text-align: center;
    font-size: 18px;
    color: var(--ink-soft);
    max-width: 50ch;
    margin: 0 auto 56px;
    line-height: 1.55;
  }
  .booking-widget {
    max-width: 720px;
    margin: 0 auto;
    background: var(--bg-paper);
    border-radius: 24px;
    border: 1px solid var(--rule);
    padding: 44px;
    box-shadow: 0 30px 60px -24px rgba(42,42,42,0.12);
  }
  .booking-steps {
    display: flex;
    justify-content: center;
    gap: 36px;
    margin-bottom: 36px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--rule);
  }
  .bk-step {
    display: flex;
    align-items: center;
    gap: 11px;
    font-size: 14px;
    color: var(--ink-soft);
    font-weight: 500;
  }
  .bk-step.active { color: var(--ink); font-weight: 700; }
  .bk-step-num {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--bg-soft);
    color: var(--ink-soft);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: "Geist Mono", monospace;
    transition: all .25s ease;
  }
  .bk-step.active .bk-step-num { background: var(--lime); color: var(--ink-deep); }
  .bk-step.done .bk-step-num { background: var(--lime-deep); color: var(--bg-paper); }

  .bk-panel.hidden { display: none; }
  .bk-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--rule);
    gap: 16px;
    flex-wrap: wrap;
  }
  .bk-actions > span { flex: 1; }
  /* Globale btn::after-Pfeile ausschalten — Widget hat eigene */
  .bk-actions .btn::after { content: none; }
  .bk-actions .btn:hover::after { transform: none; }

  .bk-services { display: grid; gap: 10px; }
  .bk-svc {
    display: grid;
    grid-template-columns: 28px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 22px;
    border: 1.5px solid var(--rule);
    border-radius: 14px;
    cursor: pointer;
    transition: all .2s ease;
    background: var(--bg-paper);
  }
  .bk-svc:hover { border-color: var(--lime); background: var(--lime-tint); }
  .bk-svc.selected { border-color: var(--lime-deep); background: var(--lime-tint); }
  .bk-svc input { accent-color: var(--lime-deep); width: 20px; height: 20px; cursor: pointer; }
  .bk-svc-name { font-weight: 700; font-size: 16.5px; letter-spacing: -0.015em; color: var(--ink); }
  .bk-svc-desc { font-size: 13px; color: var(--ink-soft); margin-top: 4px; line-height: 1.4; }
  .bk-svc-dur { font-size: 13.5px; color: var(--ink-soft); white-space: nowrap; }
  .bk-svc-price { font-weight: 700; font-size: 17px; white-space: nowrap; color: var(--ink-deep); }

  /* ===== ZUSATZLEISTUNGEN (Booking Widget) ===== */
  .bk-addons-block {
    margin-top: 24px;
    padding: 20px 22px;
    background: var(--lime-tint);
    border: 1px dashed var(--lime);
    border-radius: 14px;
  }
  .bk-addons-header {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 19px;
    color: var(--ink-deep);
    margin-bottom: 14px;
  }
  .bk-addons-list { display: grid; gap: 8px; margin-bottom: 16px; }
  .bk-addon {
    display: grid;
    grid-template-columns: 24px 1fr auto;
    gap: 14px;
    align-items: center;
    padding: 12px 16px;
    background: var(--bg-paper);
    border: 1.5px solid var(--rule);
    border-radius: 10px;
    cursor: pointer;
    transition: all .15s ease;
  }
  .bk-addon:hover { border-color: var(--lime); }
  .bk-addon.selected { border-color: var(--lime-deep); background: var(--lime-tint); }
  .bk-addon input { accent-color: var(--lime-deep); width: 18px; height: 18px; cursor: pointer; }
  .bk-addon-name { font-weight: 600; font-size: 14.5px; color: var(--ink); }
  .bk-addon-desc { font-size: 12px; color: var(--ink-soft); margin-top: 2px; line-height: 1.4; }
  .bk-addon-meta {
    font-size: 13px;
    color: var(--ink-soft);
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    font-family: "Geist Mono", monospace;
  }

  .bk-total-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 18px;
    background: var(--ink-deep);
    color: var(--bg-paper);
    border-radius: 10px;
  }
  .bk-total-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
  }
  .bk-total-value {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 22px;
    font-weight: 600;
    color: var(--bg-paper);
  }
  .bk-total-value .bk-ab { font-size: 0.65em; color: rgba(255, 255, 255, 0.6); }

  /* Zusammenfassung — Addon-Zeile etwas eingerückt */
  .bk-sum-addon { font-style: italic; opacity: 0.85; }
  .bk-sum-addon .l { padding-left: 8px; font-size: 13px; }
  .bk-sum-addon .v { font-size: 13px; }

  .bk-month {
    margin-bottom: 32px;
  }
  .bk-month:last-child { margin-bottom: 0; }

  /* Monats-Navigation: ← Juli 2026 → */
  .bk-month-nav {
    display: grid;
    grid-template-columns: 44px 1fr 44px;
    gap: 14px;
    align-items: center;
    margin-bottom: 22px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--rule);
  }
  .bk-month-current {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 24px;
    color: var(--ink-deep);
    letter-spacing: -0.015em;
    text-align: center;
  }
  .bk-month-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--rule);
    background: var(--bg-paper);
    cursor: pointer;
    font-size: 18px;
    color: var(--ink-deep);
    font-weight: 600;
    transition: all .15s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    padding: 0;
  }
  .bk-month-btn:hover:not(:disabled) {
    background: var(--lime-tint);
    border-color: var(--lime-deep);
    color: var(--lime-deep);
  }
  .bk-month-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .bk-dates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
    margin-bottom: 28px;
  }
  .bk-date {
    padding: 14px 8px;
    background: var(--bg-paper);
    border: 1.5px solid var(--rule);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all .2s ease;
  }
  .bk-date:hover { border-color: var(--lime); }
  .bk-date.selected { border-color: var(--lime-deep); background: var(--lime-tint); }
  .bk-date .wd {
    font-size: 11px;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 700;
    margin-bottom: 6px;
  }
  .bk-date .d {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
  }
  .bk-date.selected .d { color: var(--lime-deep); }

  .bk-times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 8px;
  }
  .bk-time {
    padding: 14px 10px;
    background: var(--bg-paper);
    border: 1.5px solid var(--rule);
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    font-size: 15px;
    font-weight: 600;
    transition: all .2s ease;
    font-family: "Geist Mono", monospace;
  }
  .bk-time:hover { border-color: var(--lime); }
  .bk-time.selected {
    border-color: var(--lime-deep);
    background: var(--lime);
    color: var(--ink-deep);
  }

  /* Mobile: kompaktere Buchungs-Pills (NACH den Defaults damit Override greift) */
  @media (max-width: 600px) {
    .bk-month { margin-bottom: 24px; }
    .bk-month-nav {
      grid-template-columns: 38px 1fr 38px;
      gap: 10px;
      margin-bottom: 16px;
      padding-bottom: 10px;
    }
    .bk-month-current { font-size: 19px; }
    .bk-month-btn {
      width: 38px;
      height: 38px;
      font-size: 16px;
    }

    .bk-dates-grid {
      grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
      gap: 5px;
      margin-bottom: 18px;
    }
    .bk-date { padding: 10px 4px; border-radius: 8px; }
    .bk-date .wd { font-size: 9.5px; margin-bottom: 4px; letter-spacing: 0.04em; }
    .bk-date .d { font-size: 21px; }

    .bk-times-grid {
      grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
      gap: 5px;
    }
    .bk-time { padding: 9px 4px; font-size: 13.5px; border-radius: 8px; }
  }

  .bk-summary {
    background: var(--lime-tint);
    border: 1px solid var(--lime);
    border-radius: 14px;
    padding: 24px 26px;
    margin-bottom: 28px;
  }
  .bk-sum-row {
    display: flex;
    justify-content: space-between;
    padding: 6px 0;
    font-size: 15px;
  }
  .bk-sum-row .l { color: var(--ink-soft); }
  .bk-sum-row .v { font-weight: 600; color: var(--ink); }
  .bk-summary hr {
    border: none;
    border-top: 1px dashed var(--lime-deep);
    margin: 12px 0;
  }

  .bk-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .bk-field { display: flex; flex-direction: column; }
  .bk-field.full { grid-column: 1/-1; }
  .bk-field label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ink-soft);
    margin-bottom: 6px;
  }
  .bk-field input, .bk-field textarea {
    padding: 13px 16px;
    border: 1.5px solid var(--rule);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    background: var(--bg-paper);
    color: var(--ink-deep);
    transition: all .2s ease;
    width: 100%;
  }
  .bk-field input:focus, .bk-field textarea:focus {
    outline: none;
    border-color: var(--lime-deep);
    box-shadow: 0 0 0 3px rgba(160, 204, 31, 0.18);
  }
  .bk-field textarea { resize: vertical; min-height: 88px; font-family: inherit; }

  /* "ab"-Prefix für variable Preise */
  .bk-ab {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 0.85em;
    color: var(--ink-soft);
    margin-right: 2px;
  }

  /* Email-Lookup-Hint */
  .bk-lookup-hint {
    margin-top: 6px;
    padding: 8px 12px;
    background: rgba(160, 204, 31, 0.12);
    border-left: 3px solid var(--lime-deep);
    border-radius: 4px;
    color: var(--ink-deep);
    font-size: 13px;
    font-style: italic;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height .25s ease, opacity .2s ease, padding .25s ease;
    padding-top: 0;
    padding-bottom: 0;
  }
  .bk-lookup-hint.show {
    max-height: 60px;
    opacity: 1;
    padding-top: 8px;
    padding-bottom: 8px;
  }

  /* Ausklappbare Rechnungsadresse */
  .bk-address-details {
    grid-column: 1 / -1;
    margin-top: 4px;
    border: 1.5px dashed var(--rule);
    border-radius: 10px;
    background: rgba(160, 204, 31, 0.04);
    transition: background 0.2s ease;
  }
  .bk-address-details[open] {
    background: rgba(160, 204, 31, 0.08);
    border-color: var(--lime-deep);
    border-style: solid;
  }
  .bk-address-details > summary {
    cursor: pointer;
    padding: 14px 18px;
    list-style: none;
    font-size: 14px;
    color: var(--ink);
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    user-select: none;
  }
  .bk-address-details > summary::-webkit-details-marker { display: none; }
  .bk-address-details > summary::before {
    content: "+";
    display: inline-block;
    width: 18px;
    height: 18px;
    line-height: 16px;
    text-align: center;
    border-radius: 50%;
    border: 1.5px solid var(--lime-deep);
    color: var(--lime-deep);
    font-weight: 700;
    font-size: 14px;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }
  .bk-address-details[open] > summary::before {
    content: "−";
    background: var(--lime-deep);
    color: var(--bg-paper);
  }
  .bk-address-summary-text {
    font-weight: 700;
    color: var(--ink-deep);
  }
  .bk-address-summary-hint {
    font-size: 13px;
    color: var(--ink-soft);
    font-style: italic;
  }
  .bk-address-fields {
    padding: 0 18px 18px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .bk-success { text-align: center; padding: 32px 16px; }
  .bk-check {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink-deep);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 24px;
  }
  .bk-success h3 {
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-weight: 500;
    font-size: 36px;
    margin-bottom: 14px;
    letter-spacing: -0.015em;
  }
  .bk-success p { color: var(--ink-soft); max-width: 38ch; margin: 0 auto; font-size: 16px; }

  .bk-empty {
    text-align: center;
    padding: 36px 20px;
    color: var(--ink-soft);
    background: var(--bg-soft);
    border-radius: 12px;
    font-size: 15px;
  }
  .bk-empty a { color: var(--lime-deep); font-weight: 600; }

  .bk-error {
    background: rgba(196, 69, 69, 0.08);
    border: 1px solid rgba(196, 69, 69, 0.3);
    color: #C44545;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 18px;
    display: none;
    text-align: center;
  }
  .bk-error.show {
    display: block;
    animation: bkShake 0.4s ease;
  }
  @keyframes bkShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-6px); }
    75% { transform: translateX(6px); }
  }

  .bk-alt {
    text-align: center;
    margin-top: 40px;
    font-family: "Cormorant Garamond", serif;
    font-style: italic;
    font-size: 20px;
    color: var(--ink-soft);
  }
  .bk-alt a { color: var(--lime-deep); font-weight: 600; }

  @media (max-width: 760px) {
    .booking-section { padding: 64px 0 56px; }
    .booking-widget { padding: 28px 22px; border-radius: 18px; }
    .booking-steps { gap: 14px; font-size: 12.5px; padding-bottom: 20px; margin-bottom: 24px; }
    .bk-step-num { width: 26px; height: 26px; font-size: 12px; }
    .bk-svc {
      grid-template-columns: 24px 1fr;
      grid-template-areas: "rad name" "rad dur" "rad price";
      gap: 4px 14px;
      padding: 16px 18px;
    }
    .bk-svc > input { grid-area: rad; align-self: start; margin-top: 3px; }
    .bk-svc-dur, .bk-svc-price { text-align: left; padding-top: 6px; }
    .bk-form { grid-template-columns: 1fr; }
    .bk-address-fields { grid-template-columns: 1fr; }
    .bk-actions { flex-direction: column-reverse; }
    .bk-actions .btn, .bk-actions button { width: 100%; text-align: center; justify-content: center; }
    .bk-actions > span { display: none; }
  }
