    :root {
      --green: #3f4c3c;
      --green-2: #566450;
      --sage: #e7dfd0;
      --sage-2: #d8cfbd;
      --paper: #fffdf8;
      --ink: #4a4a45;
      --muted: #78756d;
      --line: rgba(63, 76, 60, 0.22);
      --white: #ffffff;
      --shadow: 0 18px 44px rgba(32, 38, 29, 0.10);
      --radius-xs: 4px;
      --radius-sm: 6px;
      --radius-md: 10px;
      --radius-lg: 14px;
      --max: 1180px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Georgia, "Times New Roman", serif;
      color: var(--ink);
      background: linear-gradient(180deg, #fbfaf6 0%, #f3efe6 100%);
      line-height: 1.55;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    .container {
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(255, 253, 248, 0.96);
      border-bottom: 1px solid var(--line);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      min-height: 78px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 14px;
      min-width: 210px;
    }

    .brand-mark {
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      background: transparent;
      overflow: hidden;
    }

    .brand-logo-img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .brand-name {
      display: grid;
      gap: 0;
    }

    .brand-name strong {
      font-size: 27px;
      font-weight: 400;
      letter-spacing: -0.03em;
      color: var(--green);
    }

    .brand-name span {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--muted);
      margin-top: -5px;
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 26px;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      color: var(--green);
    }

    .nav-links a {
      opacity: 0.88;
    }

    .nav-links a:hover {
      opacity: 1;
      text-decoration: underline;
      text-underline-offset: 6px;
    }

    .nav-links .nav-cta { display: none; }

    /* Impressum/Datenschutz nur im Burger-Menü, nicht in der Desktop-Topbar */
    @media (min-width: 981px) {
      .nav-links a[href$=".html"] { display: none; }
    }

    /* Burger button */
    .burger {
      display: none;
      width: 44px;
      height: 44px;
      padding: 10px;
      background: transparent;
      border: 1px solid rgba(63, 76, 60, 0.22);
      border-radius: var(--radius-sm);
      cursor: pointer;
      flex-direction: column;
      justify-content: space-between;
    }

    .burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--green);
      border-radius: 2px;
      transition: transform 0.25s ease, opacity 0.2s ease;
      transform-origin: center;
    }

    .topbar.nav-open .burger span:nth-child(1) {
      transform: translateY(9px) rotate(45deg);
    }

    .topbar.nav-open .burger span:nth-child(2) {
      opacity: 0;
    }

    .topbar.nav-open .burger span:nth-child(3) {
      transform: translateY(-9px) rotate(-45deg);
    }

    body.nav-locked { overflow: hidden; }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border: 1px solid var(--green);
      background: var(--green);
      color: var(--white);
      min-height: 46px;
      padding: 12px 22px;
      border-radius: var(--radius-sm);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.01em;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
      cursor: pointer;
    }

    .button:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 20px rgba(63, 76, 60, 0.18);
      background: #313b2f;
    }

    .button.secondary {
      background: transparent;
      color: var(--green);
      border-color: rgba(63, 76, 60, 0.35);
    }

    .button.secondary:hover {
      background: rgba(63, 76, 60, 0.06);
      box-shadow: none;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 60px 0 40px;
      background:
        radial-gradient(circle at top right, rgba(216, 207, 189, 0.55), transparent 34%),
        linear-gradient(90deg, rgba(216, 207, 189, 0.55) 0 6.5%, transparent 6.5% 100%);
    }

    .hero::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 120px;
      background: url("data:image/svg+xml,%3Csvg width='1440' height='120' viewBox='0 0 1440 120' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 81C117 48 219 44 323 72C447 105 553 109 681 67C825 19 947 2 1089 52C1196 90 1309 94 1440 54V120H0V81Z' fill='%23e7dfd0'/%3E%3Cpath d='M0 64C110 31 223 30 344 58C463 85 566 88 693 49C826 8 949 2 1080 38C1204 72 1318 75 1440 41' stroke='%233f4c3c' stroke-opacity='.35'/%3E%3Cpath d='M0 76C111 41 225 39 344 67C463 96 568 97 694 61C832 21 949 15 1080 49C1204 83 1319 86 1440 52' stroke='%233f4c3c' stroke-opacity='.26'/%3E%3Cpath d='M0 88C112 54 226 51 344 78C461 106 569 110 694 73C832 33 949 27 1080 61C1204 95 1319 98 1440 64' stroke='%233f4c3c' stroke-opacity='.18'/%3E%3C/svg%3E") center bottom / cover no-repeat;
      pointer-events: none;
    }

    .hero-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      align-items: stretch;
      gap: 40px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 18px;
      padding: 8px 13px;
      border: 1px solid rgba(63, 76, 60, 0.18);
      border-radius: var(--radius-sm);
      background: rgba(255, 253, 248, 0.75);
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 13px;
      letter-spacing: 0.04em;
    }

    .eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: var(--radius-sm);
      background: var(--green);
    }

    h1,
    h2,
    h3,
    p {
      margin-top: 0;
    }

    h1 {
      margin-bottom: 16px;
      max-width: 720px;
      color: var(--green);
      font-size: clamp(32px, 5vw, 56px);
      line-height: 1.05;
      font-weight: 400;
      letter-spacing: -0.045em;
    }

    .hero-lead {
      max-width: 680px;
      margin-bottom: 30px;
      font-size: clamp(18px, 2vw, 24px);
      color: #5c5b55;
      line-height: 1.45;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 34px;
    }

    .quick-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      max-width: 760px;
    }

    .quick-fact {
      padding: 18px;
      background: rgba(255, 253, 248, 0.8);
      border: 1px solid rgba(63, 76, 60, 0.14);
      border-radius: var(--radius-md);
    }

    .quick-fact strong {
      display: block;
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 15px;
      margin-bottom: 5px;
    }

    .quick-fact span {
      display: block;
      color: var(--muted);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 13px;
      line-height: 1.35;
    }

    .portrait-card {
      position: relative;
      min-height: 460px;
      height: 100%;
      align-self: stretch;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(145deg, #c4a088 0%, #eadfd3 100%);
      box-shadow: var(--shadow);
      border: 1px solid rgba(63, 76, 60, 0.12);
    }

    .portrait-card::before {
      content: "";
      position: absolute;
      inset: 22px;
      border: 1px solid rgba(255, 253, 248, 0.7);
      border-radius: var(--radius-md);
      pointer-events: none;
    }

    .portrait-placeholder {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 48px;
      color: rgba(63, 76, 60, 0.75);
      text-align: center;
    }

    .portrait-placeholder-inner {
      max-width: 320px;
      padding: 28px;
      background: rgba(255, 253, 248, 0.72);
      border: 1px solid rgba(63, 76, 60, 0.13);
      border-radius: var(--radius-md);
      backdrop-filter: blur(8px);
    }

    .portrait-placeholder span {
      display: block;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      color: var(--muted);
    }

    .portrait-placeholder strong {
      display: block;
      margin-bottom: 8px;
      color: var(--green);
      font-size: 30px;
      font-weight: 400;
    }

    .portrait-photo {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 35%;
      transform: scale(1.08);
    }

    .section {
      padding: 28px 0;
    }

    .section.sage {
      background: var(--sage);
    }

    .section.dark {
      background: var(--green);
      color: rgba(255, 253, 248, 0.88);
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
      align-items: start;
      margin-bottom: 28px;
      max-width: 900px;
    }

    .section-head .section-intro { max-width: 720px; }

    .section-kicker {
      margin-bottom: 10px;
      color: var(--green-2);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      font-weight: 700;
    }

    .dark .section-kicker {
      color: rgba(255, 253, 248, 0.62);
    }

    h2 {
      margin-bottom: 0;
      color: var(--green);
      font-size: clamp(26px, 3.2vw, 42px);
      font-weight: 400;
      letter-spacing: -0.04em;
      line-height: 1.1;
    }

    .dark h2 {
      color: var(--white);
    }

    .section-intro {
      margin-bottom: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
    }

    .dark .section-intro {
      color: rgba(255, 253, 248, 0.78);
    }

    .cards-3 {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .service-card {
      background: var(--paper);
      border: 1px solid rgba(63, 76, 60, 0.15);
      border-radius: var(--radius-md);
      padding: 22px;
      box-shadow: 0 8px 18px rgba(63, 76, 60, 0.05);
    }

    .icon {
      width: 44px;
      height: 44px;
      border-radius: var(--radius-sm);
      display: grid;
      place-items: center;
      margin-bottom: 14px;
      background: var(--green);
      color: var(--white);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      flex-shrink: 0;
      overflow: hidden;
    }

    .icon .icon-img {
      width: 64%;
      height: 64%;
      object-fit: contain;
      filter: brightness(0) invert(1); /* tönt jedes hochgeladene PNG weiß */
    }

    /* Im Spezialisierungs-Bereich (heller Icon-Background) Filter umkehren, damit Icon dunkel bleibt */
    .focus-card .icon { background: var(--sage); }
    .focus-card .icon .icon-img { filter: none; }

    .service-card h3,
    .focus-card h3,
    .step h3 {
      margin-bottom: 8px;
      color: var(--green);
      font-size: 19px;
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.2;
    }

    .service-card p,
    .focus-card p,
    .step p {
      margin-bottom: 0;
      color: var(--muted);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      line-height: 1.55;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      gap: 32px;
      align-items: center;
    }

    .logo-panel {
      position: relative;
      min-height: 520px;
      padding: 42px;
      border-radius: var(--radius-lg);
      background: var(--paper);
      border: 1px solid rgba(63, 76, 60, 0.16);
      box-shadow: var(--shadow);
      overflow: hidden;
      display: grid;
      place-items: center;
    }

    .logo-image {
      width: min(390px, 92%);
      height: auto;
      object-fit: contain;
    }

    .logo-panel::after {
      content: "MOBIL & DIGITAL";
      position: absolute;
      right: 28px;
      top: 32px;
      color: rgba(63, 76, 60, 0.3);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      letter-spacing: 0.32em;
      writing-mode: vertical-rl;
    }

    .line-art {
      height: 360px;
      display: grid;
      place-items: center;
    }

    .line-art svg {
      width: min(330px, 100%);
      color: var(--green);
      opacity: 0.82;
    }

    .logo-title {
      text-align: center;
      color: var(--green);
      font-size: 44px;
      line-height: 1;
      letter-spacing: -0.06em;
    }

    .logo-subtitle {
      margin-top: 8px;
      text-align: center;
      font-family: Arial, Helvetica, sans-serif;
      color: var(--muted);
      font-size: 11px;
      text-transform: uppercase;
      letter-spacing: 0.16em;
    }

    .copy-block p {
      margin-bottom: 20px;
      color: #67645d;
      font-size: 19px;
      line-height: 1.7;
    }

    .quote-box {
      margin-top: 30px;
      padding: 28px;
      border-left: 4px solid var(--green);
      background: rgba(255, 253, 248, 0.7);
      border-radius: 0 var(--radius-md) var(--radius-md) 0;
      color: var(--green);
      font-size: 25px;
      line-height: 1.35;
    }

    .focus-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
    }

    .focus-card {
      padding: 24px;
      border: 1px solid rgba(255, 253, 248, 0.18);
      border-radius: var(--radius-md);
      background: rgba(255, 253, 248, 0.08);
      display: grid;
      grid-template-columns: 64px 1fr;
      grid-template-rows: auto auto;
      column-gap: 18px;
      row-gap: 4px;
      align-items: start;
    }

    .focus-card .icon {
      grid-column: 1;
      grid-row: 1 / span 2;
      align-self: start;
      width: 64px;
      height: 64px;
      margin-bottom: 0;
    }

    .focus-card h3 { grid-column: 2; grid-row: 1; }
    .focus-card p { grid-column: 2; grid-row: 2; }

    .focus-card .icon {
      background: var(--sage);
      color: var(--green);
    }

    .focus-card h3 {
      color: var(--white);
    }

    .focus-card p {
      color: rgba(255, 253, 248, 0.76);
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;
      counter-reset: steps;
    }

    .step {
      position: relative;
      padding: 22px 20px;
      background: var(--paper);
      border: 1px solid rgba(63, 76, 60, 0.14);
      border-radius: var(--radius-md);
      counter-increment: steps;
    }

    .step::before {
      content: counter(steps, decimal-leading-zero);
      display: inline-flex;
      width: 38px;
      height: 38px;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      border-radius: var(--radius-sm);
      background: var(--sage);
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      font-weight: 800;
    }

    .cta-band {
      position: relative;
      padding: 36px;
      border-radius: var(--radius-lg);
      background:
        linear-gradient(90deg, rgba(255, 253, 248, 0.94), rgba(255, 253, 248, 0.77)),
        var(--sage);
      box-shadow: var(--shadow);
      border: 1px solid rgba(63, 76, 60, 0.13);
      overflow: hidden;
    }

    .cta-band::after {
      content: "";
      position: absolute;
      inset: auto -10px -6px -10px;
      height: 82px;
      background: url("data:image/svg+xml,%3Csvg width='1440' height='90' viewBox='0 0 1440 90' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 54C146 15 276 19 416 45C579 76 704 82 878 45C1044 10 1192 5 1440 40' stroke='%233f4c3c' stroke-opacity='.22'/%3E%3Cpath d='M0 66C146 27 276 31 416 57C579 88 704 94 878 57C1044 22 1192 17 1440 52' stroke='%233f4c3c' stroke-opacity='.16'/%3E%3C/svg%3E") center / cover no-repeat;
    }

    .cta-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 34px;
      align-items: center;
    }

    .cta-content h2 {
      max-width: 760px;
      margin-bottom: 14px;
    }

    .cta-content p {
      max-width: 740px;
      margin-bottom: 0;
      color: var(--muted);
      font-size: 18px;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: 0.8fr 1.2fr;
      gap: 28px;
      align-items: stretch;
    }

    .contact-card,
    .contact-form {
      background: rgba(255, 253, 248, 0.08);
      border: 1px solid rgba(255, 253, 248, 0.16);
      border-radius: var(--radius-md);
      padding: 34px;
    }

    .contact-card h3,
    .contact-form h3 {
      margin-bottom: 20px;
      color: var(--white);
      font-size: 32px;
      font-weight: 400;
      letter-spacing: -0.04em;
    }

    .contact-list {
      display: grid;
      gap: 18px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-family: Arial, Helvetica, sans-serif;
    }

    .contact-list li {
      display: grid;
      gap: 4px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 253, 248, 0.14);
    }

    .contact-list span {
      color: rgba(255, 253, 248, 0.56);
      font-size: 13px;
    }

    .contact-list a {
      color: var(--white);
      font-size: 17px;
      font-weight: 700;
    }

    form {
      display: grid;
      gap: 14px;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    input,
    select,
    textarea {
      width: 100%;
      border: 1px solid rgba(255, 253, 248, 0.22);
      border-radius: var(--radius-sm);
      padding: 15px 16px;
      color: var(--white);
      background: rgba(255, 253, 248, 0.08);
      font: 15px Arial, Helvetica, sans-serif;
      outline: none;
    }

    input::placeholder,
    textarea::placeholder {
      color: rgba(255, 253, 248, 0.52);
    }

    input:focus,
    select:focus,
    textarea:focus {
      border-color: rgba(255, 253, 248, 0.62);
      background: rgba(255, 253, 248, 0.12);
    }

    select option {
      color: #222;
    }

    textarea {
      min-height: 132px;
      resize: vertical;
    }

    .form-note {
      margin: 2px 0 8px;
      color: rgba(255, 253, 248, 0.62);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 12px;
      line-height: 1.5;
    }

    .faq-list {
      display: grid;
      gap: 12px;
      max-width: 880px;
    }

    details.faq-item {
      background: var(--paper);
      border: 1px solid rgba(63, 76, 60, 0.14);
      border-radius: var(--radius-md);
      padding: 22px 26px;
      box-shadow: 0 6px 18px rgba(63, 76, 60, 0.05);
      transition: box-shadow 0.2s ease;
    }

    details.faq-item[open] {
      box-shadow: 0 12px 30px rgba(63, 76, 60, 0.09);
    }

    details.faq-item summary {
      list-style: none;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      color: var(--green);
      font-size: 20px;
      font-weight: 400;
      letter-spacing: -0.02em;
      line-height: 1.3;
    }

    details.faq-item summary::-webkit-details-marker { display: none; }

    details.faq-item summary::after {
      content: "+";
      flex: 0 0 auto;
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: var(--radius-sm);
      background: var(--sage);
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 20px;
      line-height: 1;
      transition: transform 0.2s ease, background 0.2s ease;
    }

    details.faq-item[open] summary::after {
      content: "−";
      background: var(--green);
      color: var(--white);
    }

    details.faq-item p {
      margin: 14px 0 0;
      color: var(--muted);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 15px;
      line-height: 1.7;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 28px;
    }

    .legal-card {
      padding: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      max-width: 820px;
    }

    .legal-card h3 {
      margin-bottom: 20px;
      color: var(--green);
      font-size: 28px;
      font-weight: 400;
      letter-spacing: -0.03em;
    }

    .legal-card h4 {
      margin: 22px 0 6px;
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .legal-card h4:first-of-type { margin-top: 0; }

    .legal-card p {
      margin: 0 0 8px;
      color: var(--ink);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14.5px;
      line-height: 1.65;
    }

    .legal-card .legal-note {
      margin-top: 22px;
      padding-top: 16px;
      border-top: 1px solid rgba(63, 76, 60, 0.14);
      color: var(--muted);
      font-size: 12.5px;
      font-style: italic;
    }

    .footer {
      padding: 32px 0;
      background: #33402f;
      color: rgba(255, 253, 248, 0.72);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
    }

    .footer-grid {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 22px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-links a:hover {
      color: var(--white);
    }

    @media (max-width: 980px) {
      .burger {
        display: flex;
        order: 2;
        margin-left: 8px;
        width: 38px;
        height: 38px;
        padding: 9px;
        flex: 0 0 38px;
      }

      /* Header-CTA: schmal, links vom Burger */
      .header-cta {
        order: 1;
        margin-left: auto;
        flex: 0 0 auto;
        min-height: 36px;
        padding: 6px 12px;
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 0.01em;
        line-height: 1.2;
        white-space: nowrap;
      }

      /* Marke kompakter, Untertitel ausblenden */
      .brand-name span { display: none; }
      .brand-name strong { font-size: 19px; }
      .brand-mark { width: 36px; height: 36px; flex-shrink: 0; }
      .brand { gap: 8px; min-width: 0; flex-shrink: 1; overflow: hidden; }
      .brand-name { min-width: 0; overflow: hidden; }
      .brand-name strong { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
      .nav { gap: 8px; flex-wrap: nowrap; }
    }

    /* Sehr schmale Geräte: Markentext sichtbar lassen, CTA & Logo verkleinern */
    @media (max-width: 420px) {
      .brand-mark { width: 32px; height: 32px; }
      .brand { gap: 6px; }
      .brand-name strong { font-size: 16px; }
      .header-cta {
        font-size: 10.5px;
        padding: 5px 9px;
        min-height: 32px;
        letter-spacing: 0;
        font-weight: 700;
      }
      .burger { width: 34px; height: 34px; padding: 8px; flex: 0 0 34px; margin-left: 6px; }
      .nav { gap: 6px; min-height: 60px; }
      .topbar.nav-open .nav-links { top: 60px; }
      .nav-links { top: 60px; }
    }

    /* Wieder zurück in den allgemeinen Mobile-Block (≤ 980 px) */
    @media (max-width: 980px) {
      .nav-links {
        position: fixed;
        top: 70px;
        right: 0;
        bottom: 0;
        left: 0;
        background: var(--paper);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 0;
        padding: 12px 24px 24px;
        font-size: 16px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 0.2s ease, transform 0.2s ease;
        overflow: hidden;
        z-index: 90;
      }

      .topbar.nav-open .nav-links {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
      }

      .nav-links a {
        padding: 9px 4px;
        border-bottom: 1px solid rgba(63, 76, 60, 0.12);
        opacity: 1;
        font-size: 15px;
      }

      .nav-links a:hover { text-decoration: none; }

      .nav-links .nav-cta {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 16px;
        background: var(--green);
        color: var(--white);
        border: 1px solid var(--green);
        border-radius: var(--radius-sm);
        padding: 12px 20px;
        font-weight: 700;
        font-size: 14px;
        border-bottom: 1px solid var(--green);
      }

      .topbar { min-height: 70px; }
      .nav { min-height: 70px; }

      .hero {
        padding-top: 54px;
      }

      .hero-grid,
      .section-head,
      .about-grid,
      .contact-grid,
      .cta-content {
        grid-template-columns: 1fr;
      }

      /* Mobile: Portrait zwischen Buttons und Quick Facts, kompakte Gaps */
      .hero-grid { gap: 14px; }
      .hero-grid > div { display: contents; }
      .hero-grid h1 { order: 1; }
      .hero-grid .hero-lead { order: 2; }
      .hero-grid .hero-actions { order: 3; }
      .hero-grid .portrait-card { order: 4; margin: 0; }
      /* Hero-Buttons (Kontakt aufnehmen / Angebot ansehen) auf Mobile ausblenden — CTA ist im Header */
      .hero-actions { display: none; }
      .hero-lead { margin-bottom: 8px; }
      .hero-lead { margin-bottom: 16px; }
      .hero-grid .quick-facts { order: 5; }

      .portrait-card,
      .logo-panel {
        min-height: 440px;
      }

      .quick-facts,
      .cards-3,
      .focus-grid,
      .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .legal-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 680px) {
      .container {
        width: min(100% - 28px, var(--max));
      }

      .nav {
        min-height: 70px;
      }

      .brand-mark {
        width: 46px;
        height: 46px;
      }

      .brand-name strong {
        font-size: 24px;
      }

      .hero-actions .button,
      .cta-content .button {
        width: 100%;
      }

      .hero-actions,
      .cta-content > div:last-child {
        width: 100%;
      }

      .quick-facts,
      .focus-grid,
      .steps,
      .form-row {
        grid-template-columns: 1fr;
      }

      /* Service cards: horizontal layout (icon left, text right) — kompakt */
      .cards-3 {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .service-card,
      .focus-card {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 4px;
        align-items: start;
        padding: 14px 16px;
      }

      .focus-grid { gap: 10px; }

      .service-card .icon,
      .focus-card .icon {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        font-size: 18px;
      }

      .service-card h3,
      .focus-card h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        font-size: 15px;
        white-space: nowrap;
        hyphens: none;
        word-break: keep-all;
      }

      .service-card p,
      .focus-card p {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        line-height: 1.45;
        hyphens: auto;
      }

      /* Quick-Fact-Titel ebenfalls nicht am Bindestrich umbrechen */
      .quick-fact strong {
        white-space: nowrap;
        hyphens: none;
      }

      .hero {
        background: radial-gradient(circle at top right, rgba(216, 207, 189, 0.75), transparent 42%);
      }

      .portrait-card,
      .logo-panel {
        min-height: 320px;
        border-radius: var(--radius-lg);
      }

      .section {
        padding: 32px 0;
      }

      .hero { padding: 28px 0 24px; }

      .focus-card,
      .contact-card,
      .contact-form,
      .cta-band {
        padding: 22px;
        border-radius: var(--radius-md);
      }

      .step {
        display: grid;
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto;
        column-gap: 12px;
        row-gap: 4px;
        align-items: start;
        padding: 14px 16px;
      }

      .step::before {
        grid-column: 1;
        grid-row: 1 / span 2;
        align-self: start;
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        font-size: 12px;
      }

      .step h3 {
        grid-column: 2;
        grid-row: 1;
        margin-bottom: 0;
        font-size: 15px;
        white-space: nowrap;
        hyphens: none;
        word-break: keep-all;
      }

      .step p {
        grid-column: 2;
        grid-row: 2;
        font-size: 13px;
        line-height: 1.45;
        hyphens: auto;
      }

      /* FAQ-Boxen auf gleiche Größe wie Step-Cards */
      details.faq-item { padding: 14px 16px; }
      details.faq-item summary { font-size: 15px; gap: 12px; }
      details.faq-item summary::after {
        width: 28px;
        height: 28px;
        font-size: 16px;
      }
      details.faq-item p { font-size: 13px; line-height: 1.5; }

      .legal-hero { padding: 40px 0 20px; }
      .legal-hero h1 { font-size: clamp(28px, 6vw, 38px); }
      .legal-hero p { font-size: 15px; }
      .legal-page { padding: 30px 0 60px; }

      .footer-grid {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    .legal-hero {
      padding: 48px 0 18px;
      background:
        radial-gradient(circle at top right, rgba(216, 207, 189, 0.55), transparent 34%),
        linear-gradient(90deg, rgba(216, 207, 189, 0.55) 0 6.5%, transparent 6.5% 100%);
    }

    .legal-hero .section-kicker {
      margin-bottom: 10px;
    }

    .legal-hero h1 {
      font-size: clamp(28px, 3.6vw, 42px);
      max-width: 100%;
      margin-bottom: 12px;
      line-height: 1.15;
    }

    .legal-hero p {
      max-width: 820px;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.55;
      margin-bottom: 0;
    }

    .legal-page {
      padding: 24px 0 60px;
    }

    .legal-page .back-link {
      margin-bottom: 18px;
    }

    .legal-page .legal-card {
      max-width: 100%;
      margin: 0;
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 32px;
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14px;
      letter-spacing: 0.02em;
    }

    .back-link:hover { text-decoration: underline; text-underline-offset: 4px; }

    /* === Anti-Shrink + Box-Vereinheitlichung (übernommen aus Vorschlag) === */
    html, body { max-width: 100%; overflow-x: hidden; }
    img, picture, video { max-width: 100%; height: auto; }
    .section-head { max-width: none; }
    .section-head .section-intro { max-width: 820px; }
    .quote-box { max-width: 820px; }
    .faq-list { max-width: none; }

    /* === Mein Weg / Story === */
    .story {
      padding: 56px 0;
      background: var(--paper);
      border-top: 1px solid rgba(63, 76, 60, 0.1);
      border-bottom: 1px solid rgba(63, 76, 60, 0.1);
    }
    .story-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .story p {
      color: #4f4d47;
      font-size: 17px;
      line-height: 1.7;
      max-width: 820px;
    }
    .story p strong { color: var(--green); font-weight: 600; }

    /* === Motivation: horizontaler Akkordeon === */
    .motivation { padding: 52px 0; background: var(--sage); }
    .h-accordion {
      display: flex;
      gap: 10px;
      height: 380px;
      max-width: 100%;
      box-sizing: border-box;
    }
    .h-panel {
      flex: 1;
      position: relative;
      background: var(--paper);
      border: 1px solid rgba(63, 76, 60, 0.14);
      border-radius: var(--radius-md);
      overflow: hidden;
      cursor: pointer;
      transition: flex-grow 0.55s cubic-bezier(.4, 0, .2, 1),
                  box-shadow 0.3s ease;
      box-shadow: 0 6px 18px rgba(63, 76, 60, 0.05);
    }
    .h-panel:hover:not(.open) {
      box-shadow: 0 10px 24px rgba(63, 76, 60, 0.12);
    }
    .h-panel.open {
      flex: 5;
      cursor: default;
      box-shadow: 0 14px 34px rgba(63, 76, 60, 0.14);
    }
    .h-label {
      position: absolute;
      top: 24px; left: 50%;
      transform: translateX(-50%);
      writing-mode: vertical-rl;
      color: var(--green);
      font-family: Georgia, serif;
      font-size: 26px;
      font-weight: 600;
      letter-spacing: -0.02em;
      line-height: 1.15;
      transition: font-size 0.4s ease, color 0.3s ease;
      max-height: calc(100% - 60px);
      overflow: hidden;
    }
    .h-panel.open .h-label {
      writing-mode: horizontal-tb;
      top: 24px;
      left: 26px;
      transform: none;
      font-size: 28px;
      font-weight: 500;
      max-height: none;
      line-height: 1.1;
    }
    .h-content {
      position: absolute;
      inset: 70px 26px 24px 26px;
      opacity: 0;
      transform: translateX(20px);
      transition: opacity 0.3s 0.25s ease,
                  transform 0.4s 0.25s cubic-bezier(.4, 0, .2, 1);
      pointer-events: none;
      overflow-y: auto;
    }
    .h-panel.open .h-content {
      opacity: 1;
      transform: translateX(0);
      pointer-events: auto;
    }
    .h-content p {
      color: #5a5a52;
      font-family: Arial, Helvetica, sans-serif;
      font-size: 14.5px;
      line-height: 1.65;
      margin: 0 0 12px;
    }
    .h-content strong { color: var(--green); font-weight: 600; }
    .h-indicator {
      position: absolute;
      top: 16px; right: 16px;
      width: 32px; height: 32px;
      display: grid; place-items: center;
      border-radius: var(--radius-sm);
      background: var(--sage);
      color: var(--green);
      font-family: Arial, Helvetica, sans-serif;
      font-size: 18px; font-weight: 500;
      transition: background 0.3s, color 0.3s;
    }
    .h-panel.open .h-indicator {
      background: var(--green);
      color: #fff;
    }
    .h-panel:not(.open) .h-indicator { opacity: 0.55; }

    /* === Philosophie === */
    .philosophy {
      padding: 60px 0; background: var(--green); color: #fffdf8;
    }
    .philosophy h2 { color: #fff; }
    .philosophy .lead {
      max-width: 820px;
      font-size: 19px; line-height: 1.6;
      color: rgba(255, 253, 248, 0.9);
      margin-bottom: 28px;
    }
    .roles {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      max-width: 100%;
      box-sizing: border-box;
    }
    .role {
      padding: 22px 24px;
      background: rgba(255, 253, 248, 0.06);
      border: 1px solid rgba(255, 253, 248, 0.18);
      border-radius: var(--radius-md);
    }
    .role h3 {
      color: #fff; font-family: Georgia, serif; font-weight: 400;
      font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px;
      text-transform: none;
    }
    .role ul {
      list-style: none; padding: 0; margin: 0;
      color: rgba(255, 253, 248, 0.85);
      font-family: Arial, Helvetica, sans-serif; font-size: 15px; line-height: 1.7;
    }
    .role li::before { content: "—"; color: var(--sage); margin-right: 8px; }
    .closing-line {
      max-width: 820px;
      margin: 32px auto 0;
      text-align: center;
      font-family: Georgia, serif;
      font-size: 22px;
      color: #fff;
      font-style: italic;
    }

    /* === Mobile Overrides === */
    @media (max-width: 800px) {
      .h-accordion {
        flex-direction: column;
        height: auto;
        gap: 12px;
      }
      .h-panel {
        flex: 0 0 auto;
        height: 64px;
        transition: height 0.5s cubic-bezier(.4, 0, .2, 1);
      }
      .h-panel.open { flex: 0 0 auto; height: auto; min-height: 64px; padding-bottom: 22px; }
      .h-label {
        position: static;
        transform: none;
        writing-mode: horizontal-tb;
        padding: 20px 60px 0 22px;
        white-space: normal;
        display: block;
        font-size: 18px;
        max-height: none;
        overflow: visible;
        font-weight: 600;
      }
      .h-panel.open .h-label {
        position: static;
        transform: none;
        writing-mode: horizontal-tb;
        font-size: 19px;
        padding: 20px 60px 0 22px;
      }
      .h-label br { display: none; }
      .h-label br + * { display: inline; }
      .h-content {
        position: static;
        opacity: 1;
        transform: none;
        max-height: 0;
        padding: 0 22px;
        overflow: hidden;
        transition: max-height 0.5s cubic-bezier(.4, 0, .2, 1),
                    padding 0.3s ease;
        pointer-events: auto;
        inset: auto;
      }
      .h-panel.open .h-content {
        max-height: 800px;
        padding: 12px 22px 0;
      }
      .h-indicator { top: 18px; right: 18px; }
    }
    @media (max-width: 760px) {
      .roles { grid-template-columns: 1fr; }
      .story p { font-size: 15.5px; line-height: 1.65; }
      .philosophy .lead { font-size: 16px; }
      .closing-line { font-size: 18px; }
    }

    /* Mobile: kompaktere Section-Paddings für Story / Motivation / Philosophy */
    @media (max-width: 800px) {
      .story { padding: 32px 0; }
      .motivation { padding: 28px 0; }
      .philosophy { padding: 32px 0; }
      .closing-line { margin-top: 22px; }
    }

    /* Motivation-Label: 2 Spalten vertikal (geschlossen), 1 Zeile horizontal (offen / mobile) */
    .h-label .ll1, .h-label .ll2 { display: block; }
    .h-panel.open .h-label .ll1,
    .h-panel.open .h-label .ll2 { display: inline; }
    .h-panel.open .h-label .ll2::before { content: " "; }
    .h-panel.open .h-content { inset: 80px 26px 24px 26px; }

    @media (max-width: 800px) {
      .h-label .ll1, .h-label .ll2 { display: inline; }
      .h-label .ll2::before { content: " "; }
    }
