@font-face {
    font-family: 'Fraunces';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/fraunces-600.woff2') format('woff2');
  }
  @font-face {
    font-family: 'Fraunces';
    font-style: italic;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/fraunces-500italic.woff2') format('woff2');
  }

  :root {
    --paper: #ffffff;
    --surface: #f4f4f5;
    --ink: #242226;
    --ink-soft: #67666b;
    --red: #e2001c;
    --red-deep: #b40016;
    --red-tint: #fbe9ea;
    --line: #e3e2e4;
    --shadow: 0 24px 48px -28px rgba(36, 34, 38, 0.18);
    --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
    --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
  }

  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }

  img, svg { max-width: 100%; display: block; }

  a { color: inherit; }

  .wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 3rem);
  }

  h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.12;
    margin: 0;
    text-wrap: balance;
    letter-spacing: -0.01em;
  }

  .skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: var(--red);
    color: #fff;
    padding: 0.75em 1.25em;
    z-index: 100;
    border-radius: 0 0 8px 0;
  }
  .skip-link:focus { left: 0; }

  :focus-visible {
    outline: 2px solid var(--red);
    outline-offset: 3px;
  }

  .eyebrow {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--red);
    margin: 0 0 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.6em;
  }
  .eyebrow::before {
    content: "";
    width: 1.6em;
    height: 1px;
    background: var(--red);
    display: inline-block;
  }

  /* ---------- Header ---------- */
  header.site {
    position: sticky;
    top: 0;
    z-index: 40;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  header.site .bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
    max-width: 1160px;
    margin: 0 auto;
  }
  .brand { display: flex; align-items: center; }
  .brand img { height: 34px; width: auto; }
  nav.primary { display: flex; align-items: center; gap: 2rem; }
  nav.primary a {
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-soft);
    transition: color 0.15s ease;
  }
  nav.primary a:hover { color: var(--red); }
  .header-actions { display: flex; align-items: center; gap: 1.1rem; }
  .phone-chip {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    color: var(--ink);
    white-space: nowrap;
  }
  .phone-chip svg { width: 16px; height: 16px; stroke: var(--red); flex-shrink: 0; }

  .menu-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    color: var(--ink);
    cursor: pointer;
    flex-shrink: 0;
  }
  .menu-toggle svg { width: 24px; height: 24px; }

  .mobile-menu { display: none; }

  body.menu-open { overflow: hidden; }

  @media (max-width: 780px) {
    nav.primary { display: none; }
    header.site .header-actions { display: none; }
    .menu-toggle { display: flex; }

    .mobile-menu {
      display: flex;
      flex-direction: column;
      position: fixed;
      inset: 0;
      background: var(--paper);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s ease, visibility 0.2s ease;
      pointer-events: none;
      z-index: 50;
    }
    .mobile-menu[data-open="true"] {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    .mobile-menu-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.9rem clamp(1.25rem, 4vw, 3rem);
      border-bottom: 1px solid var(--line);
      flex-shrink: 0;
    }
    .mobile-menu-top img { height: 34px; width: auto; }
    .menu-close {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      padding: 0;
      background: none;
      border: none;
      color: var(--ink);
      cursor: pointer;
    }
    .menu-close svg { width: 24px; height: 24px; }
    .mobile-menu nav {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.3rem;
      padding: 1.5rem clamp(1.25rem, 6vw, 3rem);
      overflow-y: auto;
    }
    .mobile-menu nav a {
      text-decoration: none;
      font-size: 1.3rem;
      font-weight: 600;
      color: var(--ink);
      padding: 0.9rem 0;
      border-bottom: 1px solid var(--line);
      width: 100%;
      max-width: 360px;
      text-align: center;
    }
    .mobile-menu nav a:last-child { border-bottom: none; }
    .mobile-menu-bottom {
      flex-shrink: 0;
      background: var(--paper);
      border-top: 1px solid var(--line);
      padding: 1.25rem clamp(1.25rem, 6vw, 3rem) clamp(1.5rem, 6vw, 2.25rem);
    }
    .mobile-menu-bottom .btn { width: 100%; }
  }
  @media (prefers-reduced-motion: reduce) {
    .mobile-menu { transition: none; }
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6em;
    padding: 0.95em 1.6em;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.98rem;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
    white-space: nowrap;
  }
  .btn-primary {
    background: var(--red);
    color: #fff;
    box-shadow: 0 14px 28px -14px color-mix(in srgb, var(--red) 70%, transparent);
  }
  .btn-primary:hover { background: var(--red-deep); transform: translateY(-1px); }
  .btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: var(--line);
  }
  .btn-ghost:hover { border-color: var(--red); color: var(--red); }

  /* ---------- Hero ---------- */
  .hero {
    position: relative;
    padding: clamp(4rem, 11vw, 8.5rem) 0 clamp(3.5rem, 8vw, 6rem);
    overflow: hidden;
    isolation: isolate;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url('images/unnamed-2.webp');
    background-size: cover;
    background-position: center 58%;
    z-index: -2;
  }
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
      var(--paper) 22%,
      color-mix(in srgb, var(--paper) 90%, transparent) 40%,
      color-mix(in srgb, var(--paper) 55%, transparent) 60%,
      color-mix(in srgb, var(--paper) 15%, transparent) 85%);
    z-index: -1;
  }
  @media (max-width: 780px) {
    .hero::after { background: color-mix(in srgb, var(--paper) 90%, transparent); }
  }
  .hero .wrap {
    display: block;
  }
  .hero h1 {
    font-size: clamp(2.4rem, 3.2vw + 1.4rem, 4.2rem);
    animation: focus-in 1.15s cubic-bezier(.2,.7,.2,1) both;
  }
  .hero .tagline-mark {
    font-style: italic;
    font-weight: 500;
    color: var(--red);
  }
  .hero p.lede {
    font-size: 1.15rem;
    color: var(--ink-soft);
    max-width: 46ch;
    margin: 1.4rem 0 2.1rem;
    animation: rise-in 0.9s ease both;
    animation-delay: 0.25s;
  }
  .hero .cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    animation: rise-in 0.9s ease both;
    animation-delay: 0.4s;
  }
  .hero .trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    margin-top: 2.2rem;
    font-size: 0.88rem;
    color: var(--ink-soft);
    animation: rise-in 0.9s ease both;
    animation-delay: 0.55s;
  }
  .hero .trust-row span { display: flex; align-items: center; gap: 0.5em; }
  .hero .trust-row span::before {
    content: "";
    width: 5px; height: 5px; border-radius: 50%;
    background: var(--red);
    flex-shrink: 0;
  }

  @keyframes focus-in {
    from { filter: blur(9px); opacity: 0; }
    to { filter: blur(0); opacity: 1; }
  }
  @keyframes rise-in {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @media (prefers-reduced-motion: reduce) {
    .hero h1, .hero p.lede, .hero .cta-row, .hero .trust-row { animation: none !important; opacity: 1 !important; filter: none !important; transform: none !important; }
  }


  /* ---------- Facts strip ---------- */
  .facts {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
  }
  .facts .wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: clamp(2.2rem, 4vw, 3rem) clamp(1.25rem, 4vw, 3rem);
  }
  .fact { display: flex; gap: 0.9rem; align-items: flex-start; }
  .fact svg { width: 26px; height: 26px; stroke: var(--red); flex-shrink: 0; margin-top: 0.15rem; }
  .fact h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; }
  .fact p { margin: 0; font-size: 0.9rem; color: var(--ink-soft); line-height: 1.5; }
  @media (max-width: 900px) {
    .facts .wrap { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 560px) {
    .facts .wrap { grid-template-columns: 1fr; }
  }

  /* ---------- Section shell ---------- */
  section { padding: clamp(4rem, 8vw, 6.5rem) 0; }
  .section-head { max-width: 640px; margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
  .section-head h2 { font-size: clamp(1.9rem, 2vw + 1.3rem, 2.75rem); }

  /* ---------- Schwerpunkte cards ---------- */
  .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.75rem;
  }
  .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  }
  .card:hover { border-color: color-mix(in srgb, var(--red) 45%, var(--line)); box-shadow: var(--shadow); transform: translateY(-3px); }
  .card .icon-ring {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 2px solid var(--red);
    margin-bottom: 1.4rem;
    position: relative;
  }
  .card .icon-ring::after {
    content: "";
    position: absolute; inset: 8px;
    border-radius: 50%;
    border: 1px solid var(--line);
  }
  .card h3 { font-family: var(--font-display); font-size: 1.5rem; margin-bottom: 0.7rem; }
  .card p { margin: 0 0 1.1rem; color: var(--ink-soft); }
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--red);
    background: var(--red-tint);
    padding: 0.4em 0.9em;
    border-radius: 999px;
  }
  @media (max-width: 760px) { .cards { grid-template-columns: 1fr; } }

  /* ---------- Über uns ---------- */
  .about { background: var(--surface); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
  .about .wrap {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
  }
  .about h2 { font-size: clamp(1.9rem, 2vw + 1.3rem, 2.6rem); margin-bottom: 1.2rem; }
  .about p { color: var(--ink-soft); font-size: 1.05rem; max-width: 52ch; }
  .about p + p { margin-top: 1em; }
  .about-photo {
    aspect-ratio: 6 / 5;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
  }
  .about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  @media (max-width: 860px) {
    .about .wrap { grid-template-columns: 1fr; }
    .about-photo { max-width: 420px; margin: 0 auto; order: -1; }
  }

  /* ---------- Kontakt ---------- */
  .contact .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 5vw, 4rem);
  }
  .contact-card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(1.8rem, 3vw, 2.6rem);
  }
  .contact-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 1.2rem; }
  .info-line {
    display: flex; gap: 0.85rem; align-items: flex-start;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.98rem;
  }
  .info-line:last-of-type { border-bottom: none; }
  .info-line svg { width: 18px; height: 18px; stroke: var(--red); margin-top: 0.15rem; flex-shrink: 0; }
  .info-line a { text-decoration: none; }
  .info-line a:hover { color: var(--red); }
  .contact-card .btn { margin-top: 1.5rem; width: 100%; }

  table.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
  table.hours td { padding: 0.65rem 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
  table.hours tr:last-child td { border-bottom: none; }
  table.hours td:first-child { color: var(--ink-soft); }
  table.hours td:last-child { text-align: right; font-weight: 600; }
  table.hours tr.today td { color: var(--red); font-weight: 700; }
  table.hours tr.closed td:last-child { color: var(--ink-soft); font-weight: 500; font-style: italic; }

  @media (max-width: 780px) { .contact .wrap { grid-template-columns: 1fr; } }

  /* ---------- Nachricht / Kontaktformular ---------- */
  .message .wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .message .section-head { text-align: center; }
  .message-form {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: clamp(1.8rem, 3vw, 2.6rem);
    width: 100%;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
  }
  .message-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.3rem;
  }
  .message-form label {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--ink);
    text-align: left;
  }
  .message-form input[type="text"],
  .message-form input[type="email"],
  .message-form input[type="tel"],
  .message-form textarea {
    font: inherit;
    padding: 0.75em 0.9em;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
  }
  .message-form input:focus,
  .message-form textarea:focus { border-color: var(--red); }
  .message-form textarea { resize: vertical; min-height: 120px; }
  .message-form .consent {
    flex-direction: row;
    align-items: flex-start;
    gap: 0.7rem;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--ink-soft);
  }
  .message-form .consent input {
    margin-top: 0.2rem;
    width: 16px;
    height: 16px;
    accent-color: var(--red);
    flex-shrink: 0;
  }
  .message-form .consent a { color: var(--ink-soft); text-decoration: underline; }
  .message-form .consent a:hover { color: var(--red); }
  .message-form button { align-self: center; }
  .message-form .form-note {
    font-size: 0.88rem;
    color: var(--ink-soft);
    min-height: 1.2em;
    margin: 0;
    text-align: center;
  }
  .message-form .form-note.success { color: #1a7f37; }
  @media (max-width: 600px) {
    .message-form .form-row { grid-template-columns: 1fr; }
  }

  /* ---------- Footer ---------- */
  footer.site {
    background: var(--surface);
    border-top: 1px solid var(--line);
    color: var(--ink-soft);
    padding: clamp(2.5rem, 5vw, 3.5rem) 0 2rem;
  }
  footer.site .wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
  }
  footer.site .brand-mark { font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--ink); }
  footer.site .brand-mark .o { color: var(--red); }
  footer.site nav { display: flex; flex-direction: column; gap: 0.6rem; }
  footer.site nav a { text-decoration: none; font-size: 0.92rem; color: var(--ink-soft); }
  footer.site nav a:hover { color: var(--red); }
  footer.site address { font-style: normal; font-size: 0.92rem; line-height: 1.7; color: var(--ink-soft); }
  footer.site .bottom {
    max-width: 1160px; margin: 2.5rem auto 0; padding: 1.5rem clamp(1.25rem, 4vw, 3rem) 0;
    border-top: 1px solid var(--line);
    font-size: 0.82rem; color: var(--ink-soft);
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  }
  @media (max-width: 780px) {
    footer.site .wrap { flex-direction: column; align-items: center; text-align: center; }
    footer.site nav { align-items: center; }
    footer.site address { text-align: center; }
    footer.site .bottom { flex-direction: column; align-items: center; text-align: center; gap: 0.4rem; }
  }

  /* ---------- Floating actions ---------- */
  .floating-actions {
    position: fixed;
    right: clamp(1rem, 4vw, 2rem);
    bottom: clamp(1rem, 4vw, 2rem);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 45;
  }
  .fab {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease, opacity 0.2s ease, visibility 0.2s ease;
  }
  .fab svg { width: 22px; height: 22px; }
  .fab-call,
  .fab-top { background: var(--red); color: #fff; }
  .fab-call:hover,
  .fab-top:hover { background: var(--red-deep); transform: translateY(-2px); }
  @media (prefers-reduced-motion: reduce) {
    .fab { transition: none; }
  }
