  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --blue:    #7B9EB5;
    --rose:    #C9A090;
    --cream:   #eeeeee;
    --warm:    #EDE8E0;
    --text:    #2E2A27;
    --muted:   #7A7068;
    --light:   #FFFFFF;
    --border:  rgba(46,42,39,0.12);
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Inter', sans-serif;
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
	flex-grow: 1;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #F0EEEC;
    backdrop-filter: blur(8px);
    border-bottom: 0.5px solid var(--border);
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
  }
  .nav-logo { display: inline-flex; align-items: center; text-decoration: none; }
  .nav-logo img { height: 48px; width: auto; display: block; }
  .nav-links { display: flex; gap: 2rem; list-style: none; }
  .nav-links a {
    position: relative;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    text-decoration: none;
    color: var(--muted);
	display: inline-block;
	font-weight: 500;
	letter-spacing: 0.055em;
	padding: 6px 10px;
	border-radius: 999px;
	transition: color 0.2s ease, background 0.2s ease, transform 0.15s ease;
  }
	.nav-links a::before {
	  content: "";
	  position: absolute;
	  inset: 3px 4px;
	  background: rgba(123, 158, 181, 0.16);
	  border-radius: 999px;
	  transform: scaleX(0.78);
	  opacity: 0;
	  z-index: -1;
	  transition: opacity 0.2s ease, transform 0.2s ease;
	}
  
  .nav-links a::after {
    content: "";
    position: absolute;
	left: 12px;
	right: 12px;
	bottom: 2px;
	height: 1px;
	background: var(--blue);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform 0.2s ease;
  }
  .nav-links a:hover,
  .nav-links a:focus-visible { 
	color: var(--blue); 
	transform: translateY(-1px);
	}
	.nav-links a:hover::before,
	.nav-links a:focus-visible::before {
	  opacity: 1;
	  transform: scaleX(1);
	}
	
  .nav-links a:hover::after,
  .nav-links a:focus-visible::after { 
	transform: scaleX(1);
   }
  .nav-cta {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--light);
    background: var(--blue);
    padding: 9px 22px;
    border-radius: 40px;
    transition: background 0.2s;
  }
  .nav-cta:hover { background: #6a8fa5; }
  .nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0.5px solid var(--border);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: var(--text);
    border-radius: 999px;
    transition: transform 0.2s, opacity 0.2s;
  }
  .nav-toggle.active span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
  .nav-toggle.active span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

  /* Scroll reveal */
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  @media (prefers-reduced-motion: reduce) {
    .reveal-on-scroll {
      opacity: 1;
      transform: none;
      transition: none;
    }
  }

  /* HERO */
  .hero {
    display: grid;
    grid-template-columns: 1fr 400px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem 2.5rem 4rem;
    gap: 4rem;
  }
  .hero-text { max-width: 520px; text-align: left; }
  .hero-buttons { display: flex; justify-content: flex-start; gap: 0; flex-wrap: wrap; }
  .hero-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.25rem;
  }
  .hero-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 300;
    line-height: 1.18;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .hero-headline em {
    font-style: italic;
    color: var(--blue);
  }
  .hero-body {
    font-size: 15.5px;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    text-align: justify;
  }
  .hero-body p + p { margin-top: 0.75rem; }
  .btn-primary {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--light);
    background: var(--blue);
    padding: 13px 30px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
  }
  .btn-primary:hover { background: #6a8fa5; transform: translateY(-1px); }
  .btn-ghost {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 400;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--muted);
    padding: 13px 24px;
    border-radius: 40px;
    border: 0.5px solid var(--border);
    margin-left: 0.75rem;
    transition: background 0.2s;
  }
  .btn-ghost:hover { background: var(--warm); }
  .hero-img-wrap {
    position: relative;
    width: 100%;
  }

  .hero-img-wrap img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: 120px 120px 80px 80px;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
    display: block;
  }

  /* QUOTE BAND */
  .quote-band {
    background: var(--blue);
    padding: 3.5rem 2.5rem;
    text-align: center;
  }
  .quote-band blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.5vw, 1.85rem);
    font-weight: 300;
    font-style: italic;
    color: var(--light);
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.55;
  }
  .quote-band cite {
    display: block;
    font-family: 'Inter', sans-serif;
    font-style: normal;
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.65);
    margin-top: 1.1rem;
  }

  /* LEISTUNGEN */
  .section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 5.5rem 2.5rem;
  }
  .section-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.6rem;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 3rem;
  }
  .cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
	align-items: stretch;
  }
  .card {
    display: flex;
	flex-direction: column;
	height: 100%;
    background: var(--light);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 2rem 1.75rem;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
  .card-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.1rem;
    font-size: 18px;
  }
  .icon-blue  { background: #E8F0F5; color: var(--blue); }
  .icon-rose  { background: #F5EDE9; color: var(--rose); }
  .icon-warm  { background: var(--warm); color: var(--muted); }
  .card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    color: var(--text);
  }
  .card-body { font-size: 14.5px; color: var(--muted); line-height: 1.7; text-align: justify; }

  /* FAQ */
  .faq-section {
    background: #C9A090;
    padding: 5.5rem 2.5rem;
  }
  .faq-inner { max-width: 780px; margin: 0 auto; text-align: justify; }
  .faq-item {
    border-bottom: 0.5px solid rgba(255,255,255,0.3);
  }
  .faq-item:first-of-type { border-top: 0.5px solid rgba(255,255,255,0.3); }
  .faq-q {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.3rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    gap: 1rem;
  }
  .faq-q:hover { color: rgba(255,255,255,0.75); }
  .faq-icon {
    font-size: 20px;
    font-weight: 300;
    color: rgba(255,255,255,0.7);
    flex-shrink: 0;
    transition: transform 0.25s;
  }
  .faq-item.open .faq-icon { transform: rotate(45deg); }
  .faq-a {
    font-size: 14.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.25s;
  }
  .faq-item.open .faq-a {
    max-height: 1200px;
    padding-bottom: 1.4rem;
  }
  .faq-a p + p { margin-top: 0.75rem; }
  .faq-a ul {
    margin: 0.75rem 0 0.75rem 1.2rem;
  }
  .faq-a ul li { margin-bottom: 0.3rem; }
  .faq-a .lit {
    font-size: 12.5px;
    color: rgba(122,112,104,0.75);
    margin-top: 1rem;
    border-top: 0.5px solid var(--border);
    padding-top: 0.75rem;
  }

  /* KONTAKT */
  .kontakt-section {
    background: #7B9EB5;
    padding: 5.5rem 2.5rem;
    text-align: center;
  }
  .kontakt-section .section-tag { color: rgba(255,255,255,0.65); }
  .kontakt-section .section-title { color: #fff; margin-bottom: 1.1rem; }
  .kontakt-sub {
    font-size: 15px;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin: 0 auto 2.5rem;
  }
  .btn-white {
    display: inline-block;
    font-size: 13.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--light);
    background: var(--rose);
    padding: 13px 34px;
    border-radius: 40px;
    transition: background 0.2s;
  }
  .btn-white:hover { background: #b8907f; }

  /* FOOTER */
  footer {
    background: var(--light);
    border-top: 0.5px solid var(--border);
    padding: 1.5rem 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  footer p {
    font-size: 12px;
    color: var(--muted);
  }
  footer a {
    font-size: 12px;
    color: var(--muted);
    text-decoration: none;
    margin-left: 1.5rem;
  }
  footer a:hover { color: var(--text); }
  .nav-social { display: flex; gap: 0.6rem; align-items: center; margin-left: 0.5rem; }
  .nav-social a { display: flex; align-items: center; color: var(--muted); transition: color 0.2s; }
  .nav-social a:hover { color: var(--blue); }
  .nav-social svg { width: 17px; height: 17px; }
  .footer-social { display: flex; gap: 0.75rem; align-items: center; }
  .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0;
    color: var(--muted);
    transition: color 0.2s;
  }
  .footer-social a:hover { color: var(--blue); }
  .footer-social svg { width: 18px; height: 18px; }

  @media (max-width: 860px) {
    .hero { grid-template-columns: 1fr; gap: 2rem; padding: 1.5rem 1.5rem 3rem; }
    .hero-img-wrap { order: -1; max-width: 280px; margin: 0 auto; }
    .hero-text { text-align: center; }
    .hero-buttons { justify-content: center; }
    .cards { grid-template-columns: 1fr; }
    nav {
      padding: 0 1rem;
      gap: 0.65rem;
    }
    .nav-logo img { height: 42px; }
    .nav-cta {
      margin-left: auto;
      padding: 8px 14px;
      font-size: 12px;
      white-space: nowrap;
    }
    .nav-toggle { display: flex; }
    .nav-social { display: none; }
    .nav-links {
      display: none;
      position: absolute;
      top: 68px;
      left: 0;
      right: 0;
      background: #F0EEEC;
      border: none;
      border-radius: 0;
      padding: 1rem 1.5rem;
      flex-direction: column;
      box-shadow: 0 12px 32px rgba(0,0,0,0.08);
	  gap: 1.2rem;
	  list-style: none;
    }
	.nav-links li {
	  position: relative;
	}
    .nav-links.open { display: flex; }
    footer { flex-direction: column; gap: 0.5rem; text-align: center; }
    footer a { margin-left: 0; margin-right: 0.75rem; }
  }

  /* PAARBERATUNG DETAIL */
  .angebot-detail {
    background: var(--light);
    padding: 5.5rem 2.5rem;
  }
  .angebot-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .angebot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
  }
  .angebot-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
  }
  .angebot-note {
    margin-top: 1.5rem;
    padding: 0.9rem 1.1rem;
    border-left: 2px solid var(--rose);
    background: #FDF8F6;
    border-radius: 0 8px 8px 0;
    font-size: 13.5px;
    color: var(--muted);
    font-style: italic;
  }
  .pricing-cards-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-top: 2rem;
    width: 100%;
  }
  .pricing-card {
    background: var(--cream);
    border: 0.5px solid var(--border);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .modal-grid .pricing-card { padding: 1.35rem; }
  .pricing-card:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
  .pricing-card.featured {
    background: var(--light);
    border: 1.5px solid var(--blue);
  }
  .pricing-badge {
    position: absolute;
    top: -11px;
    left: 1.5rem;
    background: var(--blue);
    color: white;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.06em;
    padding: 3px 12px;
    border-radius: 20px;
  }
  .pricing-type {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.25rem;
  }
  .pricing-duration {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 1rem;
  }
  .pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1;
    margin-bottom: 1.1rem;
  }
  .pricing-price span {
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--muted);
    font-weight: 300;
  }
  .pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }
  .pricing-features li {
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
  }
  .pricing-features li::before {
    content: "✓";
    color: var(--blue);
    font-weight: 500;
    flex-shrink: 0;
    margin-top: 1px;
  }

  @media (max-width: 860px) {
    .angebot-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  }

  /* ÜBER MICH */
  .ueber-section {
    background: var(--warm);
    padding: 5.5rem 2.5rem;
  }
  .ueber-inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .ueber-grid {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 4.5rem;
    align-items: start;
    margin-top: 3rem;
  }
  .ueber-img-wrap {
    position: relative;
  }
  .ueber-img-wrap img {
    width: 100%;
    border-radius: 120px 120px 80px 80px;
    object-fit: cover;
    object-position: center top;
    aspect-ratio: 3/4;
    display: block;
  }
  .ueber-img-deco { display: none; } .ueber-img-deco-hidden {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 70%;
    height: 55%;
    border: 1.5px solid var(--rose);
    border-radius: 0 0 80px 0;
    z-index: 0;
    pointer-events: none;
  }
  .ueber-text h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.5rem;
  }
  .ueber-text h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
  }
  .ueber-text p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
  }
  .ueber-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.75rem;
  }
  .ueber-tag {
    font-size: 12.5px;
    color: var(--blue);
    background: #E8F0F5;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 400;
  }
  .ueber-credentials {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .ueber-cred-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 14px;
    color: var(--muted);
  }
  .ueber-cred-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
    margin-top: 7px;
  }

  @media (max-width: 860px) {
    .ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .ueber-img-wrap img { max-width: 280px; margin: 0 auto; border-radius: 80px 80px 60px 60px; }
    .ueber-img-deco { display: none; } .ueber-img-deco-hidden { display: none; }
  }

  /* EINZELBERATUNG ALT BG */
  .angebot-detail-alt {
    background: var(--cream);
    padding: 5.5rem 2.5rem;
  }
  .location-note {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-top: 1.5rem;
    font-size: 13.5px;
    color: var(--muted);
    padding: 0.9rem 1.1rem;
    border-left: 2px solid var(--blue);
    background: #EEF4F8;
    border-radius: 0 8px 8px 0;
    font-style: italic;
  }

  .pricing-btn {
    display: inline-block;
    margin-top: 1.25rem;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--light);
    background: var(--blue);
    padding: 10px 22px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    width: 100%;
    text-align: center;
  }
  .pricing-btn:hover { background: #6a8fa5; }
  .pricing-btn.rose { background: var(--blue); }
  .pricing-btn.rose:hover { background: #6a8fa5; }

  .modal-cta-btn {
    display: block;
    margin: 1.5rem auto 0;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    color: var(--light);
    background: var(--blue);
    padding: 12px 36px;
    border-radius: 40px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    width: fit-content;
  }
  .modal-cta-btn:hover { background: #6a8fa5; }

  @media (max-width: 780px) {
    .pricing-cards { grid-template-columns: 1fr; }
  }

  .hero-logo-large {
    margin-bottom: 1.5rem;
    background: #1a1a1a;
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
    max-width: 480px;
  }
  .hero-logo-large img {
    width: 100%;
    height: auto;
    display: block;
  }

  .ueber-credential-grid {
    margin-top: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .cred-block {
    padding-bottom: 1.5rem;
    border-bottom: 0.5px solid var(--border);
  }
  .cred-block:last-child { border-bottom: none; padding-bottom: 0; }
  .cred-heading {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .ueber-cred-dot.rose { background: var(--rose); }
  .ueber-cred-dot.blue { background: var(--blue); }

  /* MODALS */
  .modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(30,25,22,0.55);
    z-index: 500;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    backdrop-filter: blur(4px);
  }
  .modal-overlay.active { display: flex; }
  .modal-box {
    background: var(--light);
    border-radius: 28px;
    max-width: 1040px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    position: relative;
    padding: 2rem 2rem 1.75rem;
    box-shadow: 0 24px 64px rgba(0,0,0,0.18);
  }
  .modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: 0.5px solid var(--color-border-secondary);
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: var(--muted);
    line-height: 1;
    transition: background 0.15s;
  }
  .modal-close:hover { background: var(--warm); }
  .modal-tag {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.4rem;
  }
  .modal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.35rem;
  }
  .modal-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 1.5rem;
    align-items: start;
  }
  .modal-grid .pricing-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
  }
  .modal-text p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.65;
    margin-bottom: 0.75rem;
    text-align: justify;
  }
  .modal-note {
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    border-left: 2px solid var(--rose);
    background: #FDF8F6;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
  }
  .modal-note-blue {
    margin-top: 1.25rem;
    padding: 0.85rem 1rem;
    border-left: 2px solid var(--blue);
    background: #EEF4F8;
    border-radius: 0 8px 8px 0;
    font-size: 13px;
    color: var(--muted);
    font-style: italic;
  }
  .card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
	margin-top: auto;
    padding-top: 1.1rem;
    border-top: 0.5px solid var(--color-border-tertiary);
  }
  .card-btn-detail {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 9px 16px;
    border-radius: 40px;
    border: 1px solid rgba(123,158,181,0.55);
    background: #E8F0F5;
    color: var(--blue);
    cursor: pointer;
    transition: background 0.15s, color 0.15s, border-color 0.15s;
    text-decoration: none;
  }
  .card-btn-detail:hover { background: var(--blue); color: var(--light); border-color: var(--blue); }
  .card-btn-book {
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    padding: 9px 16px;
    border-radius: 40px;
    border: none;
    background: var(--blue);
    color: white;
    cursor: pointer;
    transition: background 0.15s;
    text-decoration: none;
  }
  .card-btn-book:hover { background: #6a8fa5; }
  .card-btn-book.rose { background: var(--blue); }
  .card-btn-book.rose:hover { background: #6a8fa5; }

  @media (max-width: 900px) {
    .modal-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  }

  @media (max-width: 680px) {
    .modal-box { padding: 1.75rem 1.25rem; }
  }

  .kontakt-logo {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
  }
  .kontakt-logo img {
    height: clamp(160px, 45vw, 350px);
    width: auto;
    display: block;
    opacity: 0.9;
  }

  .faq-section .section-tag { color: rgba(255,255,255,0.65); }
  .faq-section .section-title { color: #fff; }
  .faq-a .lit { color: rgba(255,255,255,0.55); border-top-color: rgba(255,255,255,0.2); }
/* -- LEGAL PAGES (Impressum / Datenschutz) */
#cookie-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 9998;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1.5rem;
}
#cookie-overlay.active { display: flex; }
@media (max-width: 860px) {
  #cookie-overlay { align-items: center; justify-content: center; padding: 1rem; }
}
#cookie-banner {
  background: var(--light);
  border-radius: 16px;
  padding: 2rem;
  max-width: 460px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}
.cookie-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.75rem;
  font-family: inherit;
}
.cookie-text {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.cookie-toggles {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text);
}
.toggle-fixed {
  width: 40px; height: 22px;
  background: var(--blue);
  border-radius: 11px;
  position: relative;
  opacity: 0.5;
  flex-shrink: 0;
}
.toggle-fixed::after {
  content: '';
  position: absolute;
  right: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
}
.toggle-label { position: relative; display: inline-flex; cursor: pointer; flex-shrink: 0; }
.toggle-label input { opacity: 0; width: 0; height: 0; position: absolute; }
.toggle-track {
  display: flex;
  align-items: center;
  width: 40px; height: 22px;
  background: var(--border);
  border-radius: 11px;
  transition: background 0.2s;
  position: relative;
}
.toggle-label input:checked + .toggle-track { background: var(--blue); }
.toggle-thumb {
  position: absolute;
  left: 3px;
  width: 16px; height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.toggle-label input:checked + .toggle-track .toggle-thumb { left: 21px; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.cookie-btn-secondary, .cookie-btn-primary {
  flex: 1;
  font-family: inherit;
  border-radius: 10px;
  cursor: pointer;
  padding: 0.7rem 1rem;
  font-size: 13px;
  font-weight: 500;
  transition: opacity 0.2s;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.cookie-btn-secondary {
  background: var(--cream);
  color: var(--text);
  border: 0.5px solid var(--border);
  justify-content: center;
}
.cookie-btn-primary {
  background: var(--blue);
  color: #fff;
}
.cookie-btn-secondary:hover, .cookie-btn-primary:hover { opacity: 0.85; }
.cookie-btn-primary small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.8;
}
.cookie-footer-links {
  display: flex;
  gap: 1.25rem;
  border-top: 0.5px solid var(--border);
  padding-top: 1rem;
}
.cookie-footer-links a {
  font-size: 11px;
  color: var(--muted);
  text-decoration: none;
}
.cookie-footer-links a:hover { color: var(--blue); }
.cookie-settings-link { font-size: 12px; color: var(--muted); text-decoration: none; cursor: pointer; }
.cookie-settings-link:hover { color: var(--text); }
@media (max-width: 480px) {
  .cookie-actions { flex-direction: column; }
}

.legal-page {
  min-height: calc(100vh - 68px - 80px);
  padding: 4rem 1.5rem 6rem;
}
.legal-container {
  max-width: 720px;
  margin: 0 auto;
}
.legal-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.legal-container h2 {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}
.legal-container p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.legal-container ul {
  list-style: none;
  padding: 0;
  margin-bottom: 0.75rem;
}
.legal-container ul li {
  color: var(--muted);
  line-height: 1.8;
  padding-left: 1.25rem;
  position: relative;
}
.legal-container ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose);
}
.legal-container a {
  color: var(--blue);
  text-decoration: none;
}
.legal-container a:hover {
  text-decoration: underline;
}

/* -- HINWEIS BOX */
.hinweis-box {
  margin: 1rem 0 1.5rem;
  padding: 0.9rem 1.1rem;
  border-left: 3px solid var(--rose);
  background: rgba(201,160,144,0.08);
  border-radius: 0 8px 8px 0;
}
.hinweis-box p {
  font-size: 0.8rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  text-align: justify;
}
/* -- KONTAKT EMAIL FALLBACK */
.kontakt-email {
  margin-top: 0.85rem;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
}
.kontakt-email a {
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.kontakt-email a:hover {
  color: #fff;
}