
:root {
    --ink: #1A1E2B;
    --ink-hoch: #232E42;   /* eine sichtbare Stufe heller, fuer den Wechsel */
    --paper: #F4EDE3;
    --ember: #C85A3A;
    --ember-deep: #B84F2E;
    --forest: #2D4A3E;
    --honey: #D9A679;
    /* Die Kicker-Zeilen sind klein und in Grossbuchstaben. Auf Forest kam Honey
       nur auf 4.48 und lag damit knapp unter der Lesbarkeitsgrenze. */
    --honey-hell: #DEAE84;
    --sand: #E8D5C4;
    --stone: #8A7B68;
    --dusk: #5A6B7D;
    --font-display: "Fraunces", Georgia, serif;
    --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
    --container: 1180px;
    --gutter: clamp(20px, 5vw, 56px);
}

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

.ki-office-page, .ki-office-page * { box-sizing: border-box; }

.ki-office-page {
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.62;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    scroll-behavior: smooth;
}

.ki-office-page img { max-width: 100%; height: auto; display: block; }
.ki-office-page a { color: inherit; }

.ki-office-page .container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }

.ki-office-page .section {
    padding: clamp(64px, 9vw, 128px) 0;
    position: relative;
    overflow: hidden;
}

/* Drei Sektionsfarben, und jede hat einen Job. Vorher waren #1A1E2B und
   #1F2939 so dicht beieinander, dass der Wechsel wie ein Fehler aussah statt
   wie Absicht. Jetzt liegt eine Stufe dazwischen, die man sieht. */
.ki-office-page .section.paper { background: var(--ink); color: var(--paper); }
.ki-office-page .section.sand { background: var(--ink-hoch); color: var(--paper); }
.ki-office-page .section.ink { background: var(--ink); color: var(--paper); }
.ki-office-page .section.forest { background: var(--forest); color: var(--paper); }

.ki-office-page .eyebrow {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey-hell);
    margin: 0 0 18px;
}

.ki-office-page h1, .ki-office-page h2, .ki-office-page h3, .ki-office-page h4 {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: -0.018em;
    margin: 0;
    text-wrap: balance;
}

.ki-office-page h1.display {
    font-size: clamp(30px, 4.6vw, 54px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.ki-office-page h2.display {
    font-size: clamp(30px, 4.4vw, 52px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.ki-office-page h3.section-title {
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.2;
    margin-bottom: 14px;
    color: var(--paper);
}

.ki-office-page h1 em, .ki-office-page h2 em, .ki-office-page h3 em, .ki-office-page .em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
    font-variation-settings: "opsz" 144;
}

.ki-office-page p {
    margin: 0 0 18px;
    font-size: clamp(16px, 1.2vw, 18px);
    line-height: 1.65;
    text-wrap: pretty;
}

.ki-office-page p strong { font-weight: 600; }

.ki-office-page p em.serif, .ki-office-page p .em-text {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
}

.ki-office-page .unter-headline {
    font-family: var(--font-display);
    font-size: clamp(21px, 2vw, 28px);
    line-height: 1.25;
    color: var(--honey);
    margin: -8px 0 20px;
    max-width: 720px;
}

.ki-office-page .lead {
    font-family: var(--font-body);
    font-style: normal;
    font-size: clamp(18px, 1.6vw, 22px);
    line-height: 1.5;
    color: var(--honey);
    margin-bottom: 32px;
    max-width: 720px;
    font-weight: 400;
    letter-spacing: -0.005em;
}

.ki-office-page .nav {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(26, 30, 43, 0.88);
    backdrop-filter: saturate(140%) blur(10px);
    -webkit-backdrop-filter: saturate(140%) blur(10px);
    border-bottom: 1px solid rgba(244, 237, 227, 0.08);
}

.ki-office-page .nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.ki-office-page .nav-brand {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--paper);
    text-decoration: none;
}

.ki-office-page .nav-brand em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    margin-left: 4px;
}

.ki-office-page .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ember);
    color: var(--paper);
    padding: 16px 30px;
    border-radius: 999px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15.5px;
    letter-spacing: 0.02em;
    transition: transform 0.15s ease, background 0.15s ease;
    border: 0;
    cursor: pointer;
    line-height: 1;
    text-align: center;
}

.ki-office-page .cta-btn:hover { background: var(--ember-deep); transform: translateY(-1px); }

.ki-office-page .cta-btn.compact { padding: 11px 20px; font-size: 13.5px; }

.ki-office-page .cta-btn .arrow { font-family: var(--font-display); font-style: italic; font-weight: 400; }

.ki-office-page .cta-microcopy {
    margin-top: 14px;
    font-size: 13px;
    color: var(--honey);
    letter-spacing: 0.04em;
}

.ki-office-page .hero {
    padding-top: clamp(56px, 9vw, 120px);
    padding-bottom: clamp(72px, 11vw, 140px);
    position: relative;
}

.ki-office-page .hero-pre {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(14px, 1.1vw, 16px);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 28px;
}

.ki-office-page .hero-pre .dot { color: var(--honey-hell); margin: 0 8px; }
.ki-office-page .hero h1 { max-width: 1000px; margin-bottom: 28px; }

.ki-office-page .gesichter-reihe {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.ki-office-page .gesichter { display: flex; }

.ki-office-page .gesichter img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--paper);
    margin-left: -12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.ki-office-page .gesichter img:first-child { margin-left: 0; }

.ki-office-page .gesichter-reihe p {
    margin: 0;
    font-size: 15px;
    line-height: 1.45;
    color: var(--honey);
}

.ki-office-page .hero-sub {
    max-width: 720px;
    margin: 0 0 32px;
    font-size: clamp(17px, 1.4vw, 20px);
    line-height: 1.55;
    color: var(--paper);
    opacity: 0.88;
}

.ki-office-page .hero-video {
    width: 100%;
    display: block;
    border-radius: 10px;
    background: #000;
}

.ki-office-page .video-huelle {
    position: relative;
    max-width: 460px;
    margin: 0 auto 32px;
}

.ki-office-page .video-knoepfe {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: flex;
    gap: 10px;
}

.ki-office-page .ton-knopf {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 0;
    border-radius: 999px;
    background: rgba(26, 30, 43, 0.78);
    color: #F4EDE3;
    font-family: inherit;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    backdrop-filter: blur(6px);
}

.ki-office-page .ton-knopf:hover { background: rgba(26, 30, 43, 0.92); }
.ki-office-page .ton-knopf.laeuft { opacity: 0; pointer-events: none; }
.ki-office-page .ton-symbol { font-size: 17px; line-height: 1; }

.ki-office-page .hero-bullets {
    list-style: none;
    margin: 0 0 40px;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    max-width: 640px;
}

.ki-office-page .hero-bullets.zwei-spalten {
    max-width: 940px;
    gap: 12px 40px;
}

@media (min-width: 820px) {
    .ki-office-page .hero-bullets.zwei-spalten { grid-template-columns: 1fr 1fr; }
}

.ki-office-page .hero-bullets li {
    position: relative;
    padding-left: 32px;
    font-size: 17px;
    line-height: 1.5;
    color: var(--paper);
}

.ki-office-page .hero-bullets li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 13px;
    width: 20px;
    height: 1.5px;
    background: var(--ember);
}

/* Farbig markierte Einzelwoerter im Hero-Untertitel. Honig statt Ember:
   Ember kaeme bei der Deckung des Untertitels nur auf Kontrast 3,3 und
   waere fuer Fliesstext zu schwach, Honig liegt bei 6,2. */
.ki-office-page .hero-sub .hebt { color: var(--honey); font-weight: 600; }

/* Der ganze Hero steht mittig, damit Text und Video auf einer Achse sitzen.
   Muss hinter den Regeln oben stehen: die setzen margin als Kurzform und
   wuerden ein frueheres margin-left:auto wieder ueberschreiben.
   Die Aufzaehlung bleibt innen linksbuendig, sonst tanzen die Striche. */
.ki-office-page .hero { text-align: center; }
.ki-office-page .hero h1,
.ki-office-page .hero-sub,
.ki-office-page .hero-bullets { margin-left: auto; margin-right: auto; }
.ki-office-page .hero-bullets li { text-align: left; }
.ki-office-page .hero .gesichter-reihe { justify-content: center; }

.ki-office-page .hero-ghost {
    position: absolute;
    right: -8vw;
    bottom: -8vw;
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(240px, 38vw, 520px);
    line-height: 0.85;
    color: rgba(217, 166, 121, 0.10);
    pointer-events: none;
    user-select: none;
    font-variation-settings: "opsz" 144;
    font-weight: 400;
}

.ki-office-page .section-head { max-width: 820px; margin-bottom: 48px; }

.ki-office-page .twocol { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.ki-office-page .twocol > * { min-width: 0; }

.ki-office-page .pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 32px; }

.ki-office-page .pillar {
    padding: 24px 28px;
    border-left: 2px solid var(--ember);
    background: rgba(244, 237, 227, 0.04);
}

.ki-office-page .pillar h4 { font-size: 17px; margin-bottom: 6px; font-weight: 600; color: var(--paper); }

.ki-office-page .pillar h4 em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
}

.ki-office-page .pillar p { font-size: 15px; margin: 0; line-height: 1.55; color: var(--paper); }

.ki-office-page .about-layout { display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: start; }

.ki-office-page .about-image {
    width: 100%;
    max-width: 360px;
    border-radius: 6px;
    overflow: hidden;
    background: rgba(244, 237, 227, 0.06);
    aspect-ratio: 4 / 5;
}

.ki-office-page .about-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 28%; }

.ki-office-page .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }

.ki-office-page .compare-col h4 { font-size: 17px; margin-bottom: 14px; font-weight: 600; color: var(--honey); }
.ki-office-page .compare-col ul { list-style: none; margin: 0; padding: 0; }

.ki-office-page .compare-col li {
    padding: 12px 0 12px 28px;
    border-top: 1px solid rgba(244, 237, 227, 0.14);
    position: relative;
    font-size: 15.5px;
    line-height: 1.5;
    color: var(--paper);
}

.ki-office-page .compare-col li:last-child { border-bottom: 1px solid rgba(244, 237, 227, 0.14); }

.ki-office-page .compare-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 21px;
    width: 16px;
    height: 1.5px;
    background: var(--honey);
}

.ki-office-page .value-table { width: 100%; border-collapse: collapse; margin: 32px 0 40px; font-size: 16px; }

.ki-office-page .value-table tr { border-bottom: 1px solid rgba(244, 237, 227, 0.12); }
.ki-office-page .value-table tr:first-child { border-top: 1px solid rgba(244, 237, 227, 0.12); }

.ki-office-page .value-table td { padding: 16px 8px; line-height: 1.5; color: var(--paper); }

.ki-office-page .value-table td:last-child {
    text-align: right;
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    white-space: nowrap;
}

.ki-office-page .value-table .total td { padding-top: 22px; padding-bottom: 22px; font-weight: 600; font-size: 18px; color: var(--paper); }
.ki-office-page .value-table .total td:last-child { color: var(--honey); font-style: italic; font-size: 22px; }

.ki-office-page .value-summary {
    background: rgba(244, 237, 227, 0.06);
    border: 1px solid rgba(244, 237, 227, 0.14);
    padding: 32px 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.ki-office-page .value-summary .label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 4px;
}

.ki-office-page .value-summary .price {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 44px;
    line-height: 1;
    color: var(--paper);
    font-weight: 400;
}

.ki-office-page .value-summary .price small {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    color: var(--honey);
    margin-left: 8px;
}

.ki-office-page .fit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 32px; }

.ki-office-page .fit-col {
    background: rgba(244, 237, 227, 0.06);
    border-radius: 8px;
    padding: 32px;
    border-top: 4px solid var(--ember);
}

.ki-office-page .fit-col.no { border-top-color: var(--stone); }

.ki-office-page .fit-col h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--honey);
}

.ki-office-page .fit-col.no h4 { color: var(--honey); opacity: 0.75; }
.ki-office-page .fit-col ul { list-style: none; margin: 0; padding: 0; }

.ki-office-page .fit-col li {
    padding: 10px 0 10px 28px;
    position: relative;
    font-size: 15.5px;
    line-height: 1.5;
    border-top: 1px solid rgba(244, 237, 227, 0.12);
    color: var(--paper);
}

.ki-office-page .fit-col li:first-child { border-top: 0; padding-top: 0; }
.ki-office-page .fit-col li:first-child::before { top: 9px; }

.ki-office-page .fit-col li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 19px;
    width: 16px;
    height: 1.5px;
    background: var(--ember);
}

.ki-office-page .fit-col.no li::before { background: var(--honey); opacity: 0.6; }

.ki-office-page .pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 40px 0 28px; }

.ki-office-page .price-card {
    background: rgba(244, 237, 227, 0.06);
    border: 1px solid rgba(244, 237, 227, 0.14);
    color: var(--paper);
    padding: 32px 26px;
    border-radius: 10px;
    text-align: center;
    position: relative;
}

.ki-office-page .price-card.featured {
    background: var(--ember);
    color: var(--paper);
    transform: translateY(-6px);
}

.ki-office-page .price-card .tag {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--honey);
    margin-bottom: 12px;
}

.ki-office-page .price-card.featured .tag { color: var(--paper); opacity: 0.9; }

.ki-office-page .price-card .amount {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 46px;
    line-height: 1;
    font-weight: 400;
    margin-bottom: 6px;
}

.ki-office-page .price-card .sub { font-size: 13.5px; color: var(--honey); margin-bottom: 0; }
.ki-office-page .price-card.featured .sub { color: var(--paper); opacity: 0.9; }

.ki-office-page .faq { max-width: 820px; }
.ki-office-page .faq-item { border-top: 1px solid rgba(244, 237, 227, 0.15); padding: 0; }
.ki-office-page .faq-item:last-child { border-bottom: 1px solid rgba(244, 237, 227, 0.15); }

.ki-office-page .faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 22px 36px 22px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--paper);
    position: relative;
    line-height: 1.4;
}

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

.ki-office-page .faq-item summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ember);
    font-size: 28px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.ki-office-page .faq-item[open] summary::after { content: "−"; }

.ki-office-page .faq-item .answer {
    padding: 0 0 24px;
    font-size: 16px;
    line-height: 1.62;
    color: var(--honey);
    max-width: 700px;
}

.ki-office-page .final-cta { text-align: center; }
.ki-office-page .final-cta h2 { max-width: 760px; margin-left: auto; margin-right: auto; }
.ki-office-page .final-cta .lead { max-width: 640px; margin-left: auto; margin-right: auto; }

.ki-office-page .ps-box {
    background: rgba(244, 237, 227, 0.06);
    border-left: 3px solid var(--ember);
    padding: 28px 32px;
    border-radius: 4px;
    max-width: 760px;
}

.ki-office-page .ps-box p { font-size: 16px; margin-bottom: 14px; color: var(--paper); }
.ki-office-page .ps-box p:last-child { margin-bottom: 0; }

.ki-office-page .ps-box .signature {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--ember);
    font-size: 22px;
    margin-top: 18px;
}

.ki-office-page .site-footer { background: var(--ink); color: var(--paper); padding: 48px 0 36px; }

.ki-office-page .footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.ki-office-page .footer-inner p { margin: 0 0 6px; font-size: 14px; }

.ki-office-page .footer-inner .handle {
    color: var(--honey);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-size: 12px;
}

.ki-office-page .footer-inner .legal { font-size: 12px; color: var(--honey); letter-spacing: 0.08em; }

.ki-office-page .footer-inner .legal a {
    color: var(--honey);
    text-decoration: none;
    margin-left: 14px;
}

.ki-office-page .footer-inner .legal a:hover { text-decoration: underline; }

.ki-office-page .team-section { position: relative; }
.ki-office-page .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 24px; }

.ki-office-page .team-card {
    background: rgba(244, 237, 227, 0.06);
    border: 1px solid rgba(244, 237, 227, 0.12);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ki-office-page .team-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.ki-office-page .team-portrait {
    aspect-ratio: 4 / 5;
    background: linear-gradient(135deg, #2D3548 0%, var(--forest) 100%);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.ki-office-page .team-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.ki-office-page .team-portrait::before {
    content: attr(data-initial);
    position: absolute;
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
    font-size: 280px;
    line-height: 0.78;
    color: rgba(217, 166, 121, 0.34);
    left: -8px;
    bottom: -50px;
    font-variation-settings: "opsz" 144;
    z-index: 1;
    user-select: none;
}

.ki-office-page .team-portrait::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 55%, rgba(26, 30, 43, 0.25) 100%);
    z-index: 3;
    pointer-events: none;
}

.ki-office-page .team-body { padding: 22px 24px 26px; }

.ki-office-page .team-body h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 24px;
    line-height: 1.1;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
    color: var(--paper);
}

.ki-office-page .team-body h4 em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
}

.ki-office-page .team-role {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 11.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--honey);
    margin: 0 0 14px;
}

.ki-office-page .team-task {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 15px;
    line-height: 1.55;
    color: var(--paper);
    margin: 0;
    font-weight: 400;
}

.ki-office-page .timeline { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; }

.ki-office-page .tl-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 28px;
    padding: 22px 0;
    border-top: 1px solid rgba(244, 237, 227, 0.12);
    align-items: baseline;
}

.ki-office-page .tl-item:first-child { border-top: 0; }

.ki-office-page .tl-week {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--honey);
}

.ki-office-page .tl-body h4 {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 19px;
    line-height: 1.25;
    margin: 0 0 6px;
    color: var(--paper);
}

.ki-office-page .tl-body h4 em {
    font-family: var(--font-display);
    font-style: italic;
    color: var(--honey);
    font-weight: 400;
}

.ki-office-page .tl-body p { font-size: 15px; line-height: 1.55; color: var(--paper); margin: 0; }

.ki-office-page .checkout-embed { margin: 40px auto 24px; max-width: 720px; text-align: left; }

.ki-office-page .checkout-embed #stripe-checkout {
    background: #FFFFFF;
    color: var(--ink);
    border-radius: 14px;
    padding: 10px 6px;
    min-height: 320px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}
.ki-office-page .ck-lade, .ki-office-page .ck-fallback {
    margin: 0; padding: 40px 24px; text-align: center; font-size: 15px; color: var(--ink);
}
.ki-office-page .ck-fallback a { color: var(--ember); text-decoration: underline; }
.ki-office-page .ck-takt {
    display: inline-flex; margin: 0 auto 18px; padding: 4px; border-radius: 999px;
    border: 1px solid rgba(244,237,227,0.22); background: rgba(244,237,227,0.06);
}
.ki-office-page .ck-takt-knopf {
    appearance: none; border: 0; background: transparent; cursor: pointer; font: inherit;
    padding: 9px 18px; border-radius: 999px; color: rgba(244,237,227,0.7); font-size: 14px; font-weight: 500;
}
.ki-office-page .ck-takt-knopf span { font-size: 12px; color: #D9A679; margin-left: 6px; }
.ki-office-page .ck-takt-knopf.ist-aktiv { background: var(--paper); color: var(--ink); }
.ki-office-page .ck-takt-knopf.ist-aktiv span { color: var(--ember); }

.ki-office-page #checkout { scroll-margin-top: 80px; }

.no-floatcta {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 200;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    background: #C85A3A;
    color: #F4EDE3;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.15;
    padding: 11px 22px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.38);
    transition: transform .2s ease, opacity .2s ease;
}

.no-floatcta:hover { transform: translateY(-2px); opacity: .94; color: #F4EDE3; }

.ki-office-page .no-cta-mid { text-align: center; margin-top: 48px; }
.ki-office-page .section-head { max-width: 1040px; }

.ki-office-page.anim-ready .no-reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.ki-office-page.anim-ready .no-reveal.in { opacity: 1; transform: none; }
.ki-office-page.anim-ready .section-head { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.ki-office-page.anim-ready .section-head.in { opacity: 1; transform: none; }

@media (max-width: 900px) {
    .ki-office-page .twocol { grid-template-columns: 1fr; gap: 24px; }
    .ki-office-page .pillars { grid-template-columns: 1fr; }
    .ki-office-page .about-layout { grid-template-columns: 1fr; gap: 32px; }
    .ki-office-page .about-image { max-width: 280px; margin: 0 auto; order: -1; }
    .ki-office-page .compare-grid { grid-template-columns: 1fr; }
    .ki-office-page .fit-grid { grid-template-columns: 1fr; }
    .ki-office-page .pricing { grid-template-columns: 1fr; }
    .ki-office-page .price-card.featured { transform: none; }
    .ki-office-page .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
    .ki-office-page .no-tried, .ki-office-page .no-day, .ki-office-page .no-testi, .ki-office-page .no-spotlight { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .ki-office-page { font-size: 16px; }
    .ki-office-page .cta-btn { padding: 14px 22px; font-size: 14.5px; }
    .ki-office-page .cta-btn.compact { padding: 10px 16px; font-size: 12.5px; }
    .ki-office-page .team-grid { grid-template-columns: 1fr; gap: 20px; }
    .ki-office-page .value-summary { flex-direction: column; align-items: flex-start; }
    .ki-office-page .value-summary .price { font-size: 36px; }
    .ki-office-page .hero-ghost { font-size: 60vw; }
    .ki-office-page .tl-item { grid-template-columns: 1fr; gap: 4px; }
    .ki-office-page .fit-col { padding: 24px; }
    .ki-office-page .value-table td { padding: 14px 6px; font-size: 14.5px; }
    .no-floatcta { right: 10px; bottom: 10px; padding: 9px 16px; font-size: 14px; }
}


/* === Team-Gitter mit zwoelf Portraits ===
   Achtung: In dieser Seite sind ALLE Sektionsfarben dunkel, auch .sand
   (#1F2939). Text muss deshalb hell sein, sonst steht Blau auf Blau. */
.ki-office-page .tm-gitter { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
@media (max-width: 900px) { .ki-office-page .tm-gitter { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 620px) { .ki-office-page .tm-gitter { grid-template-columns: repeat(2, 1fr); gap: 14px; } }
.ki-office-page .tm-karte {
  position: relative;
  background: rgba(244,237,227,0.06); border: 1px solid rgba(244,237,227,0.14);
  border-radius: 16px; overflow: hidden; transition: transform .3s ease, background .3s ease;
}
/* Bonus-Schild auf den zwei Karten am Ende. Honig auf Ink, damit es als
   Zugabe liest und nicht als Warnung. */
.ki-office-page .tm-bonus {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  padding: 5px 12px; border-radius: 999px;
  background: #D9A679; color: #1A1E2B;
  font-size: 12px; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
}
.ki-office-page .tm-karte:hover { transform: translateY(-4px); background: rgba(244,237,227,0.10); }
.ki-office-page .tm-karte img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: center 20%; display: block; }
.ki-office-page .tm-text { padding: 16px 18px 20px; }
.ki-office-page .tm-text h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 24px; margin: 0 0 2px; color: #F4EDE3;
}
.ki-office-page .tm-rolle { font-size: 13px; letter-spacing: 0.02em; color: #D9A679; margin: 0 0 8px; }
.ki-office-page .tm-was { font-size: 14.5px; line-height: 1.55; color: rgba(244,237,227,0.76); margin: 0; }
/* Das Sternchen am Namen. Honig statt Papierweiss, damit es als Verweis
   liest und nicht wie ein Tippfehler im Namen. */
.ki-office-page .tm-stern { color: #D9A679; font-weight: 400; }

/* Der Kostenhinweis sitzt in der Karte selbst, nicht als Fussnote unter dem
   Gitter. Abgesetzt durch eine feine Linie, damit er nicht als Teil der
   Beschreibung gelesen wird. */
.ki-office-page .tm-hinweis {
  margin: 12px 0 0; padding-top: 10px;
  border-top: 1px solid rgba(244,237,227,0.14);
  font-size: 13px; line-height: 1.45; color: rgba(244,237,227,0.62);
}

/* === Die vier Grundlagen === */
.ki-office-page .gr-gitter { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
@media (max-width: 1100px) { .ki-office-page .gr-gitter { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px) { .ki-office-page .gr-gitter { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ki-office-page .gr-gitter { grid-template-columns: 1fr; } }
.ki-office-page .gr-karte {
  background: rgba(244,237,227,0.07); border: 1px solid rgba(244,237,227,0.16);
  border-radius: 16px; padding: 26px 24px 28px; transition: transform .3s ease, background .3s ease;
}
.ki-office-page .gr-karte:hover { transform: translateY(-4px); background: rgba(244,237,227,0.11); }
.ki-office-page .gr-nr {
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 30px;
  color: #D9A679; line-height: 1; display: block; margin-bottom: 14px;
}
.ki-office-page .gr-karte h3 {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 23px;
  color: #F4EDE3; margin: 0 0 10px; line-height: 1.2;
}
.ki-office-page .gr-karte p { font-size: 15.5px; line-height: 1.6; color: rgba(244,237,227,0.78); margin: 0; }
.ki-office-page .gr-fuss {
  max-width: 820px; margin: 34px auto 0; text-align: center;
  font-size: 16px; line-height: 1.65; color: rgba(244,237,227,0.72);
}

/* === Die drei Stufen === */
.ki-office-page .st-gitter { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
@media (max-width: 900px) { .ki-office-page .st-gitter { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; } }
.ki-office-page .st-karte {
  position: relative; background: rgba(244,237,227,0.06); border: 1px solid rgba(244,237,227,0.16);
  border-radius: 18px; padding: 30px 26px 32px;
}
.ki-office-page .st-hervor { border-color: #D9A679; border-width: 1.5px; background: rgba(217,166,121,0.09); }
.ki-office-page .st-fahne {
  position: absolute; top: -12px; left: 26px; background: #C85A3A; color: #F4EDE3;
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600;
  padding: 5px 12px; border-radius: 999px;
}
.ki-office-page .st-name {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 26px;
  color: #F4EDE3; margin: 0 0 6px; line-height: 1.15;
}
.ki-office-page .st-fuer {
  font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 15px;
  color: rgba(244,237,227,0.7); margin: 0 0 18px; line-height: 1.4;
}
.ki-office-page .st-preis {
  font-size: 40px; font-weight: 600; color: #F4EDE3; margin: 0; line-height: 1;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.ki-office-page .st-preis span { display: block; font-size: 14px; font-weight: 400; color: rgba(244,237,227,0.62); margin-top: 6px; letter-spacing: 0; }
.ki-office-page .st-regulaer { font-size: 13.5px; color: rgba(244,237,227,0.6); margin: 8px 0 20px; font-variant-numeric: tabular-nums; }
.ki-office-page .st-regulaer s { text-decoration-color: #C85A3A; text-decoration-thickness: 1.5px; }
.ki-office-page .st-liste { list-style: none; margin: 0; padding: 0; }
.ki-office-page .st-liste li {
  position: relative; padding-left: 24px; margin: 11px 0; font-size: 15.5px;
  line-height: 1.5; color: rgba(244,237,227,0.86);
}
.ki-office-page .st-liste li::before {
  content: ""; position: absolute; left: 4px; top: 0.55em;
  width: 7px; height: 7px; border-radius: 50%; background: #D9A679;
}
/* Die zwei Bonus-Zeilen setzen sich vom Rest ab: eigene Linie darueber,
   damit klar ist, wo das Enthaltene aufhoert und die Zugabe anfaengt. */
.ki-office-page .st-liste li.st-bonus {
  color: #D9A679;
}
/* Nur die erste Bonus-Zeile bekommt die Linie: die, vor der noch eine
   normale steht. :first-of-type traefe hier das erste li ueberhaupt. */
.ki-office-page .st-liste li:not(.st-bonus) + li.st-bonus {
  margin-top: 16px; padding-top: 16px;
  border-top: 1px solid rgba(244,237,227,0.16);
}
/* Der Punkt muss mit dem Abstand nach unten ruecken, sonst haengt er an der Linie. */
.ki-office-page .st-liste li:not(.st-bonus) + li.st-bonus::before { top: calc(16px + 0.55em); }
.ki-office-page .st-fuss {
  text-align: center; margin: 30px auto 0; font-size: 15.5px; color: rgba(244,237,227,0.82);
}
.ki-office-page .st-legal {
  max-width: 820px; margin: 14px auto 0; text-align: center;
  font-size: 13.5px; line-height: 1.6; color: rgba(244,237,227,0.55);
}

/* === Vergleichstabelle der drei Stufen === */
.ki-office-page .vt-huelle { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 0 -4px; padding: 0 4px; }
.ki-office-page .vt { width: 100%; min-width: 700px; border-collapse: collapse; }
.ki-office-page .vt th, .ki-office-page .vt td {
  padding: 12px 14px; text-align: left; border-bottom: 1px solid rgba(244,237,227,0.10);
  font-size: 15.5px; color: rgba(244,237,227,0.88);
}
.ki-office-page .vt thead th {
  font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 19px; color: #F4EDE3;
  text-align: center; vertical-align: bottom; padding-bottom: 16px;
  border-bottom: 2px solid rgba(244,237,227,0.22); line-height: 1.2;
}
.ki-office-page .vt thead th:first-child { border-bottom-color: rgba(244,237,227,0.10); }
.ki-office-page .vt thead th span {
  display: block; font-family: 'Inter', sans-serif; font-size: 14px; font-weight: 600;
  color: #D9A679; margin-top: 8px; font-variant-numeric: tabular-nums;
}
.ki-office-page .vt th.vt-mitte, .ki-office-page .vt td:nth-child(3) { background: rgba(217,166,121,0.10); }
.ki-office-page .vt td:first-child { width: 42%; }
.ki-office-page .vt td:not(:first-child) { text-align: center; width: 19.3%; }
.ki-office-page .vt-gruppe td {
  font-size: 11.5px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600;
  color: #D9A679; padding-top: 28px; padding-bottom: 8px; background: none;
  border-bottom: 1px solid rgba(244,237,227,0.20);
}
.ki-office-page .vt-ja { color: #A8C6B2; font-weight: 700; font-size: 18px; }
.ki-office-page .vt-nein { color: rgba(244,237,227,0.26); font-size: 17px; }
.ki-office-page .vt-wert { font-variant-numeric: tabular-nums; font-weight: 600; font-size: 14.5px; }

/* === Preisleiste im Checkout === */
.ki-office-page .ck-stufen { max-width: 460px; margin: 0 auto 16px; }
.ki-office-page .ck-zeile {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px; width: 100%;
  padding: 13px 18px; border: 1px solid rgba(244,237,227,0.16); border-radius: 12px; margin-bottom: 10px;
  background: transparent; cursor: pointer; font: inherit; text-align: left; appearance: none;
  transition: border-color .18s ease, background .18s ease;
}
.ki-office-page .ck-zeile:hover { border-color: rgba(217,166,121,0.6); }
.ki-office-page .ck-zeile:focus-visible { outline: 2px solid #D9A679; outline-offset: 2px; }
.ki-office-page .ck-zeile::before {
  content: ""; width: 16px; height: 16px; border-radius: 50%; flex: 0 0 16px; align-self: center;
  border: 2px solid rgba(244,237,227,0.4); box-sizing: border-box;
}
.ki-office-page .ck-hervor::before { border-color: #D9A679; background: radial-gradient(circle, #D9A679 0 45%, transparent 50%); }
.ki-office-page .ck-zeile .ck-name { flex: 1; }
.ki-office-page .ck-hervor { border-color: #D9A679; background: rgba(217,166,121,0.10); }
.ki-office-page .ck-name { font-size: 16px; color: #F4EDE3; }
.ki-office-page .ck-preis { font-size: 22px; font-weight: 600; color: #F4EDE3; font-variant-numeric: tabular-nums; white-space: nowrap; }
.ki-office-page .ck-preis i { font-style: normal; font-size: 13px; font-weight: 400; color: rgba(244,237,227,0.62); }
.ki-office-page .ck-hinweis {
  max-width: 520px; margin: 0 auto 22px; text-align: center;
  font-size: 14px; line-height: 1.6; color: rgba(244,237,227,0.66);
}


/* Portrait in der Ueber-mich-Sektion */
.ki-office-page .ich-foto { width: 132px; margin: 0 auto 20px; }
.ki-office-page .ich-foto img {
  width: 132px; height: 132px; border-radius: 50%; object-fit: cover; object-position: center 22%;
  display: block; box-shadow: 0 0 0 2px rgba(217,166,121,0.5);
}

/* Haken und Kreuz deutlich trennen, damit das Auge sie nicht verwechselt.
   Muss td mitnehmen, sonst gewinnt die allgemeine Zellenfarbe weiter oben. */
.ki-office-page .vt td.vt-ja {
  color: #8FD3A8; font-weight: 700; font-size: 20px;
}
.ki-office-page .vt td.vt-nein {
  color: #E08A6E; font-size: 18px; opacity: 0.9;
}

/* Knopf und Fenster fuers Cutting-Studio */
.ki-office-page .vt-mehr {
  appearance: none; border: 1px solid rgba(217,166,121,0.55); background: none; cursor: pointer;
  color: #D9A679; font: inherit; font-size: 12.5px; padding: 3px 10px; border-radius: 999px;
  margin-left: 8px; white-space: nowrap; transition: background .2s ease;
}
.ki-office-page .vt-mehr:hover { background: rgba(217,166,121,0.16); }
.ct-fenster {
  position: fixed; inset: 0; background: rgba(10,12,18,0.72); z-index: 999;
  display: flex; align-items: center; justify-content: center; padding: 24px;
}
.ct-fenster[hidden] { display: none; }
.ct-karte {
  position: relative; background: var(--ink-hoch); border: 1px solid rgba(244,237,227,0.18);
  border-radius: 18px; padding: 34px 32px 30px; max-width: 560px; width: 100%;
  max-height: 84vh; overflow-y: auto;
  font-family: 'Inter', -apple-system, sans-serif; color: #F4EDE3;
}
.ct-karte .eyebrow { font-size: 11.5px; letter-spacing: 0.16em; text-transform: uppercase; color: #D9A679; margin: 0 0 10px; }
.ct-karte h3 { font-family: 'Fraunces', Georgia, serif; font-weight: 400; font-size: 30px; margin: 0 0 16px; }
.ct-karte p { font-size: 16px; line-height: 1.65; color: rgba(244,237,227,0.86); margin: 0 0 14px; }
.ct-liste { list-style: none; margin: 0 0 18px; padding: 0; }
.ct-liste li { position: relative; padding-left: 24px; margin: 9px 0; font-size: 15.5px; line-height: 1.55; color: rgba(244,237,227,0.86); }
.ct-liste li::before { content: ""; position: absolute; left: 4px; top: 0.6em; width: 7px; height: 7px; border-radius: 50%; background: #D9A679; }
.ct-fuss { font-size: 14.5px; color: rgba(244,237,227,0.66); margin: 0; }
.ct-zu {
  position: absolute; top: 14px; right: 16px; appearance: none; border: none; background: none;
  color: rgba(244,237,227,0.7); font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.ct-zu:hover { color: #F4EDE3; }

/* --- Einblick ins Studio (Screenshots) --------------------------------- */
.ki-office-page .einblick-gitter {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}

@media (min-width: 860px) {
    .ki-office-page .einblick-gitter { grid-template-columns: 1fr 1fr; }
    .ki-office-page .einblick-gross { grid-column: 1 / -1; }
}

.ki-office-page .einblick-gitter figure {
    margin: 0;
    background: rgba(244, 237, 227, 0.05);
    border: 1px solid rgba(244, 237, 227, 0.14);
    border-radius: 12px;
    padding: 14px;
}

.ki-office-page .einblick-gitter img {
    width: 100%;
    border-radius: 8px;
    display: block;
}

.ki-office-page .einblick-gitter figcaption {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--honey);
}

/* --- Weg: Studio zu Profil zu Anfrage ---------------------------------- */
.ki-office-page .weg-reihe {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
}

@media (min-width: 900px) {
    .ki-office-page .weg-reihe { flex-direction: row; align-items: center; gap: 12px; }
    .ki-office-page .weg-stufe { flex: 1; }
}

.ki-office-page .weg-stufe {
    background: rgba(244, 237, 227, 0.07);
    border: 1px solid rgba(244, 237, 227, 0.16);
    border-radius: 12px;
    padding: 28px 26px;
}

.ki-office-page .weg-nr {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 30px;
    color: var(--honey);
    display: block;
    margin-bottom: 12px;
}

.ki-office-page .weg-stufe h3 {
    font-size: 23px;
    margin-bottom: 10px;
    color: var(--paper);
}

.ki-office-page .weg-stufe p { margin: 0; font-size: 16.5px; line-height: 1.55; }

.ki-office-page .weg-pfeil {
    font-size: 30px;
    color: var(--honey);
    text-align: center;
    line-height: 1;
    flex: 0 0 auto;
}

@media (max-width: 899px) {
    .ki-office-page .weg-pfeil { transform: rotate(90deg); }
}

/* --- Kauf-Knöpfe in den Preiskarten ------------------------------------ */
.ki-office-page .st-knopf {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 24px;
}

.ki-office-page .st-knopf-fuss {
    margin: 12px 0 0;
    font-size: 13px;
    text-align: center;
    color: var(--honey-hell);
}

/* ===================================================================== */
/* Umbau 19.08.2026: kompakter Hero, Attrappe, Chat-Schnipsel, Schlussblock */
/* ===================================================================== */

/* Hero enger, damit das Video auf dem Handy ohne Scrollen im Bild ist */
.ki-office-page .hero { padding-top: clamp(28px, 5vw, 64px); padding-bottom: clamp(56px, 8vw, 100px); }
.ki-office-page .hero-pre { margin-bottom: 14px; }
.ki-office-page .hero h1 { margin-bottom: 14px; }
.ki-office-page .hero-sub { margin-bottom: 22px; }
.ki-office-page .no-herovisual { margin-bottom: 34px; }
.ki-office-page .hero-bullets { margin-bottom: 28px; }
@media (max-width: 640px) {
  .ki-office-page .hero { padding-top: 20px; }
  .ki-office-page .hero-pre { font-size: 12px; letter-spacing: 0.14em; margin-bottom: 10px; }
  .ki-office-page h1.display { font-size: 29px; }
  .ki-office-page .hero-sub { font-size: 16px; margin-bottom: 16px; }
  .ki-office-page .hero-bullets li { font-size: 15px; }
}

/* --- Attrappe: so sieht es aus, wenn du dich einloggst --- */
.ki-office-page .am-rahmen { max-width: 1060px; margin: 0 auto; position: relative; }
.ki-office-page .am-fenster {
  display: grid; grid-template-columns: 250px 1fr; gap: 0;
  background: #F6F0E4; border-radius: 20px; overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45); border: 1px solid rgba(244,237,227,0.18);
  text-align: left; color: #2A3348;
}
.ki-office-page .am-leiste { background: #F1EADA; border-right: 1px solid rgba(20,32,58,0.12); padding: 22px 16px; }
.ki-office-page .am-marke { text-align: center; padding-bottom: 14px; border-bottom: 1px solid rgba(20,32,58,0.12); }
.ki-office-page .am-marke .am-name { font-family: var(--font-display); font-size: 20px; letter-spacing: 0.08em; text-transform: uppercase; color: #14203A; line-height: 1.2; }
.ki-office-page .am-marke .am-slogan { font-family: var(--font-display); font-style: italic; font-size: 14px; color: #3A455C; margin-top: 10px; }
.ki-office-page .am-marke .am-slogan b { color: #A87B2F; font-weight: 650; }
.ki-office-page .am-werkzeuge { display: flex; gap: 5px; margin: 14px 0 6px; }
.ki-office-page .am-wz { flex: 1; text-align: center; font-size: 10.5px; padding: 8px 3px; border-radius: 10px; border: 1px solid rgba(20,32,58,0.14); color: #14203A; }
.ki-office-page .am-wz.aktiv { background: linear-gradient(120deg,#EFD9A7,#DDBB70); border-color: transparent; font-weight: 650; }
.ki-office-page .am-label { font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; font-weight: 700; color: #A87B2F; margin: 14px 0 6px; padding-top: 11px; border-top: 1px solid rgba(20,32,58,0.14); }
.ki-office-page .am-zeile { display: flex; align-items: center; gap: 9px; padding: 5px 6px; border-radius: 11px; }
.ki-office-page .am-zeile img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; object-position: center 20%; flex: none; }
.ki-office-page .am-zeile .am-wer { font-size: 14px; font-weight: 650; color: #14203A; line-height: 1.15; }
.ki-office-page .am-zeile .am-was { font-size: 11.5px; color: #2A3348; line-height: 1.25; }
.ki-office-page .am-flaeche { padding: 28px 30px; }
.ki-office-page .am-karte { background: #fff; border-radius: 14px; padding: 18px 20px; box-shadow: 0 3px 16px rgba(20,32,58,0.08); margin-bottom: 16px; }
.ki-office-page .am-karte.dunkel { background: linear-gradient(130deg,#131E38,#1D2C50); color: #F4EDE3; }
.ki-office-page .am-karte h5 { font-family: var(--font-display); font-size: 18px; font-weight: 500; margin: 0 0 6px; color: #14203A; }
.ki-office-page .am-karte.dunkel h5 { color: #F4EDE3; }
.ki-office-page .am-karte p { font-size: 13.5px; line-height: 1.5; margin: 0; color: #2A3348; }
.ki-office-page .am-karte.dunkel p { color: rgba(244,237,227,0.85); }
.ki-office-page .am-gold-rand { border: 1px solid #D9B25F; }
.ki-office-page .am-fokus { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 13px; }
.ki-office-page .am-chip { font-size: 12.5px; padding: 7px 13px; border-radius: 999px; border: 1px solid rgba(244,237,227,0.35); color: rgba(244,237,227,0.9); }
.ki-office-page .am-chip.aktiv { background: linear-gradient(120deg,#EFD9A7,#DDBB70); color: #14203A; border-color: transparent; font-weight: 650; }
.ki-office-page .am-slides { display: flex; gap: 9px; margin: 14px 0 6px; overflow: hidden; }
.ki-office-page .am-slide { flex: 0 0 96px; width: 96px; height: 120px; border-radius: 9px; object-fit: cover; box-shadow: 0 2px 10px rgba(20,32,58,0.16); border: 1px solid rgba(20,32,58,0.08); }
.ki-office-page .am-slide:first-child { border: 1px solid #D9B25F; }
.ki-office-page .am-freigabe { display: flex; gap: 10px; align-items: center; margin-top: 12px; flex-wrap: wrap; }
.ki-office-page .am-freigabe input { flex: 1; min-width: 190px; padding: 10px 14px; border-radius: 999px; border: 1px solid rgba(20,32,58,0.2); background: #FBF8F1; color: #2A3348; font-family: inherit; font-size: 12.5px; pointer-events: none; }
.ki-office-page .am-knopf { display: inline-block; background: linear-gradient(120deg,#E9CE96,#D2A94F); color: #14203A; font-size: 13px; font-weight: 650; padding: 9px 18px; border-radius: 999px; white-space: nowrap; }
.ki-office-page .am-zwei { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.ki-office-page .am-zwei .am-karte { margin-bottom: 0; }
.ki-office-page .am-liste { list-style: none; margin: 10px 0 0; padding: 0; }
.ki-office-page .am-liste li { font-size: 13px; color: #2A3348; padding: 6px 0; border-top: 1px solid rgba(20,32,58,0.09); display: flex; justify-content: space-between; gap: 10px; }
.ki-office-page .am-liste li:first-child { border-top: none; }
.ki-office-page .am-liste li span { flex: none; color: #6B7384; }
.ki-office-page .am-liste li b { color: #14203A; font-weight: 600; text-align: right; }
@media (max-width: 900px) {
  .ki-office-page .am-fenster { grid-template-columns: 1fr; }
  .ki-office-page .am-leiste { display: none; }
  .ki-office-page .am-flaeche { padding: 18px 16px; }
  .ki-office-page .am-zwei { grid-template-columns: 1fr; }
  .ki-office-page .am-slide { flex-basis: 72px; width: 72px; height: 90px; }
}

/* --- Kundenstimmen als Chat-Schnipsel --- */
.ki-office-page .chat-reihe { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; max-width: 900px; margin: 44px auto 0; align-items: start; }
@media (max-width: 760px) { .ki-office-page .chat-reihe { grid-template-columns: 1fr; } }
.ki-office-page .chat { margin: 0; border-radius: 18px; padding: 16px 16px 14px; text-align: left; }
.ki-office-page .chat-kopf { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; }
.ki-office-page .chat-kopf b { display: block; font-size: 14px; font-weight: 600; line-height: 1.2; }
.ki-office-page .chat-kopf small { display: block; font-size: 12px; opacity: 0.7; margin-top: 2px; }
.ki-office-page .chat-avatar { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 15px; flex: none; }
.ki-office-page .chat-blase { position: relative; border-radius: 16px; padding: 10px 14px 12px; font-size: 15px; line-height: 1.5; max-width: 92%; }
.ki-office-page .chat-zeit { display: block; text-align: right; font-size: 11px; opacity: 0.65; margin-top: 4px; }
.ki-office-page .chat-zeit i { font-style: normal; margin-left: 3px; color: #53BDEB; }
.ki-office-page .chat-status { margin: 6px 0 0; font-size: 12px; opacity: 0.6; text-align: right; }

/* WhatsApp: Hintergrund wie die Tapete, Blase in dem bekannten Hellgrün */
.ki-office-page .chat-whatsapp { background: #E5DDD5 url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='40' height='40'><circle cx='20' cy='20' r='1.2' fill='%23d6cdc3'/></svg>"); color: #111B21; }
.ki-office-page .chat-whatsapp .chat-avatar { background: #25D366; color: #fff; }
.ki-office-page .chat-whatsapp .chat-blase { background: #DCF8C6; border-top-left-radius: 4px; box-shadow: 0 1px 1px rgba(0,0,0,0.12); }

/* Instagram-Direktnachricht: weiß, graue Blase, Verlauf-Avatar */
.ki-office-page .chat-insta { background: #FFFFFF; color: #262626; border: 1px solid #DBDBDB; }
.ki-office-page .chat-insta .chat-avatar { background: linear-gradient(45deg,#F9CE34,#EE2A7B,#6228D7); color: #fff; }
.ki-office-page .chat-insta .chat-blase { background: #EFEFEF; border-top-left-radius: 4px; }

/* Telegram: heller Himmel, weiße Blase (für die dritte Stimme) */
.ki-office-page .chat-telegram { background: #D3E2EE; color: #000; }
.ki-office-page .chat-telegram .chat-avatar { background: #2AABEE; color: #fff; }
.ki-office-page .chat-telegram .chat-blase { background: #FFFFFF; border-top-left-radius: 4px; box-shadow: 0 1px 2px rgba(0,0,0,0.1); }

/* --- Schlussblock: kurze Entscheidungshilfe --- */
.ki-office-page .ck-hilfe { max-width: 720px; margin: 0 auto 36px; font-size: 16px; line-height: 1.65; color: rgba(244,237,227,0.82); }
.ki-office-page .ck-hilfe b { color: #F4EDE3; font-weight: 600; }

/* Handy-Navigation: Untertitel weg, Knopf schlanker, damit der Hero oben beginnt */
@media (max-width: 640px) {
  .ki-office-page .nav-brand em { display: none; }
  .ki-office-page .nav .cta-btn.compact { padding: 9px 14px; font-size: 13px; white-space: nowrap; }
}

/* Sechs Chat-Schnipsel: drei Spalten ab 1000px, sonst zwei, auf dem Handy eine */
@media (min-width: 1000px) { .ki-office-page .chat-reihe { grid-template-columns: repeat(3, minmax(0, 1fr)); max-width: 1120px; gap: 22px; } }

/* === Digital Warmth · Zusatz-Komponenten (no- Präfix) === */
.ki-office-page { --no-paper:#F4EDE3; --no-ember:#C85A3A; --no-forest:#2D4A3E; --no-honey:#D9A679;
  --no-veil:rgba(244,237,227,0.06); --no-veil-2:rgba(244,237,227,0.10); --no-line:rgba(244,237,227,0.14); }

.ki-office-page .no-prose { max-width: 720px; }
.ki-office-page .no-prose p { font-size: 18px; line-height: 1.7; color: var(--no-paper); margin: 0 0 18px; }
.ki-office-page .no-lead-ink { font-size: 22px; line-height: 1.5; color: var(--no-paper); font-weight: 500; }
.ki-office-page .no-ember { color: var(--no-ember); }

/* Tried cards: 3 Spalten am Rechner, 2 auf dem Tablet, untereinander auf dem Handy.
   Die Spaltenzahl steht nur HIER. Vorher stand weiter oben eine zweite Definition
   samt Media-Queries, und weil diese Zeile spaeter kam, gewann auf dem Handy
   wieder die Mehrspaltigkeit (19.08. auf dem iPhone: drei gequetschte Spalten). */
.ki-office-page .no-tried { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 44px; }
/* Doppelte Klasse mit Absicht: der Onepage-Body bringt einen eigenen <style>-Block
   mit, der NACH dieser Datei laedt und .no-tried erneut auf drei Spalten setzt.
   Die hoehere Spezifitaet hier gewinnt unabhaengig von der Ladereihenfolge. */
@media (max-width: 980px) { .ki-office-page .no-tried.no-tried { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ki-office-page .no-tried.no-tried { grid-template-columns: 1fr; } }
.ki-office-page .no-card { background: var(--no-veil); border: 1px solid var(--no-line); border-radius: 14px; padding: 30px; transition: transform .3s ease, background .3s ease; }
.ki-office-page .no-card:hover { transform: translateY(-4px); background: var(--no-veil-2); }
.ki-office-page .no-card .no-num { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-size: 32px; color: var(--no-honey); line-height: 1; display: block; margin-bottom: 12px; }
.ki-office-page .no-card h4 { margin: 0 0 12px; font-size: 19px; color: var(--no-paper); }
.ki-office-page .no-card p { margin: 0; font-size: 15px; line-height: 1.6; color: rgba(244,237,227,0.78); }
.ki-office-page .no-tried-close { margin-top: 38px; font-size: 20px; color: var(--no-paper); max-width: 760px; }

/* Florian Spotlight */
.ki-office-page .no-spotlight { display: grid; grid-template-columns: 1fr 0.85fr; gap: 56px; align-items: center; }

/* Animierte Workflow-Leiste */
.ki-office-page .no-flow { margin: 40px 0 8px; padding: 24px 26px 30px; background: var(--no-veil); border: 1px solid var(--no-line); border-radius: 14px; overflow: hidden; }
.ki-office-page .no-flow-stops { display: flex; justify-content: space-between; gap: 8px; }
.ki-office-page .no-flow-stops span { font-size: 13px; color: var(--no-honey); font-weight: 500; letter-spacing: .02em; }
.ki-office-page .no-flow-track { position: relative; height: 2px; background: rgba(244,237,227,0.18); margin: 22px 6px 0; border-radius: 2px; }
.ki-office-page .no-flow-dot { position: absolute; top: 50%; left: 0; width: 12px; height: 12px; border-radius: 50%; background: var(--no-ember); transform: translate(-50%,-50%); box-shadow: 0 0 0 6px rgba(200,90,58,0.18); animation: noTravel 4.4s cubic-bezier(.65,0,.35,1) infinite; }
@keyframes noTravel { 0%{left:0; opacity:0} 8%{opacity:1} 90%{opacity:1} 100%{left:100%; opacity:0} }

/* Tagesblöcke */
.ki-office-page .no-day { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin: 40px 0 0; }
.ki-office-page .no-dayblock { background: var(--no-veil); border: 1px solid var(--no-line); border-radius: 14px; padding: 26px 28px; transition: transform .3s ease, background .3s ease; }
.ki-office-page .no-dayblock:hover { transform: translateY(-4px); background: var(--no-veil-2); }
.ki-office-page .no-dayblock .no-time { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--no-honey); font-weight: 600; margin: 0 0 10px; }
.ki-office-page .no-dayblock p { margin: 0; font-size: 16px; line-height: 1.6; color: var(--no-paper); }
.ki-office-page .no-day-punch { font-size: 22px; color: var(--no-paper); max-width: 760px; margin-top: 24px; }

/* Zeitersparnis */
.ki-office-page .no-ba { margin-top: 40px; border: 1px solid var(--no-line); border-radius: 14px; overflow: hidden; }
.ki-office-page .no-ba-head, .ki-office-page .no-ba-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; align-items: center; }
.ki-office-page .no-ba-head > div { padding: 16px 24px; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 600; }
.ki-office-page .no-ba-head { background: rgba(244,237,227,0.08); color: var(--no-paper); }
.ki-office-page .no-ba-head .no-after { color: var(--no-honey); }
.ki-office-page .no-ba-row > div { padding: 18px 24px; font-size: 15px; border-top: 1px solid var(--no-line); }
.ki-office-page .no-ba-row .no-task { color: var(--no-paper); }
.ki-office-page .no-ba-row .no-before { color: rgba(244,237,227,0.55); }
.ki-office-page .no-ba-row .no-after { color: var(--no-honey); font-weight: 600; }
.ki-office-page .no-ba-total { display:flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-top: 26px; padding: 24px 28px; background: var(--no-forest); color: var(--no-paper); border-radius: 14px; }
.ki-office-page .no-ba-total .no-big { font-family:'Fraunces',Georgia,serif; font-style:italic; font-size: 30px; color: var(--no-honey); }
.ki-office-page .no-ba-note { font-size: 13px; color: rgba(244,237,227,0.55); margin-top: 14px; }

/* Stats */
.ki-office-page .no-stats { display:flex; gap: 48px; flex-wrap: wrap; margin-top: 36px; }
.ki-office-page .no-stats .no-stat .no-n { font-family:'Fraunces',Georgia,serif; font-style:italic; font-size: 44px; line-height:1; color:var(--no-honey); display:block; }
.ki-office-page .no-stats .no-stat .no-l { font-size: 13px; color:rgba(244,237,227,0.7); margin-top: 8px; display:block; max-width: 170px; }

/* Testimonials */
.ki-office-page .no-testi { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 44px; }
.ki-office-page .no-quote { background:var(--no-veil); border:1px solid var(--no-line); border-radius:14px; padding: 28px; display:flex; flex-direction:column; transition: transform .3s ease, background .3s ease; border-top: 3px solid var(--no-ember); position:relative; }
.ki-office-page .no-quote:hover { transform: translateY(-4px); background: var(--no-veil-2); }
.ki-office-page .no-quote .no-mark { font-family:'Fraunces',Georgia,serif; font-style:italic; font-size: 46px; color: var(--honey-hell); line-height: 0.4; height: 24px; }
.ki-office-page .no-quote p { font-size: 16px; line-height: 1.6; color:var(--no-paper); margin: 16px 0 18px; }
.ki-office-page .no-quote .no-by { font-size: 13.5px; letter-spacing: 0.04em; color: var(--honey-hell); margin-top:auto; }
.ki-office-page .no-person { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.ki-office-page .no-person .no-by { margin-top: 0; }
.ki-office-page .no-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--no-ember); flex: 0 0 auto; }
.ki-office-page .no-quote:nth-child(3n+2) { border-top-color: var(--no-honey); }
.ki-office-page .no-quote:nth-child(3n) { border-top-color: var(--no-forest); }
.ki-office-page .no-quote:nth-child(3n+2) .no-mark { color: var(--no-honey); }
.ki-office-page .no-quote:nth-child(3n) .no-mark { color: #5E8C77; }

/* Hero ghost animation */
.ki-office-page .hero-ghost { animation: noGhost 9s ease-in-out infinite alternate; }
@keyframes noGhost { from{ opacity:.45; transform: translateY(0) rotate(0deg); } to{ opacity:.8; transform: translateY(-14px) rotate(5deg); } }

/* Staggered reveal */
.ki-office-page.anim-ready .no-testi .no-quote:nth-child(3n+2) { transition-delay: .08s; }
.ki-office-page.anim-ready .no-testi .no-quote:nth-child(3n) { transition-delay: .16s; }
.ki-office-page.anim-ready .no-tried .no-card:nth-child(2) { transition-delay: .08s; }
.ki-office-page.anim-ready .no-tried .no-card:nth-child(3) { transition-delay: .16s; }

/* Tiefe in dunklen Flächen */
.ki-office-page .section.ink, .ki-office-page .section.forest {
  background-image: radial-gradient(60% 80% at 82% 18%, rgba(200,90,58,0.14) 0%, rgba(217,166,121,0.06) 38%, rgba(26,30,43,0) 70%);
}

/* Cutting-Studio Bonus */
.ki-office-page .cs-head { text-align: center; margin: 0 0 48px; }
.ki-office-page .cs-kicker { font-size: 13px; letter-spacing: 0.3em; text-transform: uppercase; font-weight: 600; color: var(--no-honey); margin: 0 0 16px; }
.ki-office-page .cs-title { font-family: 'Fraunces', Georgia, serif; font-style: italic; font-weight: 400; font-size: clamp(42px, 6vw, 74px); line-height: 1.05; margin: 0 0 16px; background: linear-gradient(180deg, #F2DDBE 0%, #D9A679 52%, #B37C49 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ki-office-page .cs-spark { font-style: normal; font-size: 0.36em; vertical-align: 0.95em; margin-left: 10px; -webkit-text-fill-color: #D9A679; }
.ki-office-page .cs-sub { font-size: 19px; color: var(--no-paper); opacity: 0.85; margin: 0; }
.ki-office-page .cs-visual { text-align: center; }
.ki-office-page .cs-phone { position: relative; width: min(240px, 72%); margin: 0 auto; aspect-ratio: 9 / 17.5; border-radius: 34px; border: 1px solid rgba(217,166,121,0.45); background: #10131D; padding: 10px; box-shadow: 0 30px 70px rgba(0,0,0,0.55), 0 0 90px rgba(217,166,121,0.16); }
.ki-office-page .cs-phone::before { content: ""; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); width: 34%; height: 15px; background: #10131D; border-radius: 0 0 12px 12px; z-index: 3; }
.ki-office-page .cs-screen { position: relative; width: 100%; height: 100%; border-radius: 26px; overflow: hidden; background: radial-gradient(120% 90% at 30% 12%, rgba(45,74,62,0.9) 0%, #161A26 58%, #10131D 100%); display: flex; flex-direction: column; align-items: center; justify-content: center; }
.ki-office-page .cs-play { width: 54px; height: 54px; border-radius: 50%; background: rgba(244,237,227,0.1); border: 1px solid rgba(244,237,227,0.35); position: relative; margin-bottom: 26px; }
.ki-office-page .cs-play::after { content: ""; position: absolute; left: 55%; top: 50%; transform: translate(-50%,-50%); border-style: solid; border-width: 9px 0 9px 15px; border-color: transparent transparent transparent var(--no-paper); }
.ki-office-page .cs-caption { background: rgba(16,19,29,0.85); border: 1px solid rgba(244,237,227,0.14); border-radius: 10px; padding: 10px 14px; font-weight: 700; font-size: 13.5px; line-height: 1.4; color: var(--no-paper); text-transform: uppercase; letter-spacing: 0.04em; max-width: 84%; }
.ki-office-page .cs-caption em { font-style: normal; color: var(--no-honey); }
.ki-office-page .cs-progress { position: absolute; left: 14px; right: 14px; bottom: 14px; height: 3px; border-radius: 3px; background: rgba(244,237,227,0.18); overflow: hidden; }
.ki-office-page .cs-progress span { display: block; height: 100%; border-radius: 3px; background: var(--no-honey); animation: csFill 5s ease-in-out infinite alternate; }
@keyframes csFill { from { width: 22%; } to { width: 88%; } }
.ki-office-page .cs-note { margin: 22px 0 0; font-size: 12.5px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; color: var(--no-honey); }
@media (max-width: 820px) { .ki-office-page .cs-visual { margin-top: 36px; } }

/* Preis-Duo im Final-CTA */
.ki-office-page .pricing.pricing-duo { display: block; max-width: 720px; margin-left: auto; margin-right: auto; }

/* Hero visual */
.ki-office-page .no-herovisual { margin: 0 auto 52px; }
.ki-office-page .no-herovisual img { width: 100%; height: auto; display: block; border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.40); }


/* ---------------------------------------------------------------------------
   Vergleichstabelle auf dem Handy (20.08.2026)
   Am Rechner passt die volle Tabelle. Auf dem Handy war nur die erste Spalte
   sichtbar und niemand ahnte, dass man wischen kann. Jetzt: drei Stufen-Knoepfe
   ueber der Tabelle, es ist genau eine Stufen-Spalte sichtbar, darunter ein
   Kauf-Knopf fuer die gewaehlte Stufe. Gesteuert ueber data-stufe an .vt-huelle
   (2 = Reels, 3 = Studio, 4 = PRO), gesetzt im HTML und per Knopf-Script.
--------------------------------------------------------------------------- */
.ki-office-page .vt-schalter, .ki-office-page .vt-kauf { display: none; }
@media (max-width: 760px) {
  .ki-office-page .vt-schalter { display: flex; gap: 8px; margin: 20px 0 10px; }
  .ki-office-page .vt-schalter button {
    flex: 1 1 0; padding: 12px 6px 10px; border-radius: 12px; cursor: pointer;
    border: 1px solid rgba(244,237,227,0.25); background: transparent;
    color: var(--paper, #f4ede3); font: inherit; font-size: 15px; line-height: 1.25;
  }
  .ki-office-page .vt-schalter button span { display: block; font-size: 13px; opacity: .75; margin-top: 2px; }
  .ki-office-page .vt-schalter button.aktiv {
    border-color: var(--honey, #d9a679); background: rgba(217,166,121,0.16);
    color: var(--honey, #d9a679); font-weight: 600;
  }
  .ki-office-page .vt-kauf {
    display: block; text-align: center; margin: 0 0 18px;
  }
  .ki-office-page .vt { min-width: 0; }
  .ki-office-page .vt th:not(:first-child), .ki-office-page .vt td:not(:first-child) { display: none; }
  .ki-office-page .vt-huelle[data-stufe="2"] th:nth-child(2), .ki-office-page .vt-huelle[data-stufe="2"] td:nth-child(2),
  .ki-office-page .vt-huelle[data-stufe="3"] th:nth-child(3), .ki-office-page .vt-huelle[data-stufe="3"] td:nth-child(3),
  .ki-office-page .vt-huelle[data-stufe="4"] th:nth-child(4), .ki-office-page .vt-huelle[data-stufe="4"] td:nth-child(4) { display: table-cell; }
  .ki-office-page .vt td:first-child { width: auto; }
  .ki-office-page .vt td:not(:first-child) { width: 88px; }
  /* Gruppenzeilen (colspan 4) bleiben eine Zelle und damit sichtbar. */
}

/* Zeile ueber dem eingebetteten Stripe-Fenster (alle Bildschirmgroessen).
   Stripes eigene graue Kopfzeile im weissen Fenster ist nicht steuerbar,
   deshalb steht Sinas Ansprache hier drueber. */
.ki-office-page .ck-vor {
  text-align: center; margin: 26px 0 14px; font-size: 19px; color: var(--paper, #f4ede3);
}
.ki-office-page .ck-vor em {
  font-family: 'Fraunces', Georgia, serif; font-style: italic; color: var(--honey, #d9a679);
}
