/* ============================================
   MK Chatty — Design System
   Palette: Tannengrün-Editorial, kein Tech-Neon
   ============================================ */

:root {
  /* Color */
  --ink: #14241c;          /* fast-schwarzes Grün für Text */
  --pine: #1f4d3a;          /* Haupt-Grün, satt, nicht neon */
  --pine-deep: #143329;     /* dunkleres Grün für Hover/Akzent */
  --moss: #5b8c6e;          /* mittleres Grün für sekundäre Akzente */
  --paper: #fdfdfb;         /* warmes Weiß, kein reines #fff */
  --paper-dim: #f3f4ef;     /* leicht getöntes Weiß für Sektionen */
  --paper-dim-gradient: #14241c; /* dunkler Flächenton für Sektionen */
  --line: #d9ddd2;          /* dezente Trennlinien */
  --signal: #ff6b4a;        /* einziger Warnfarbe-Akzent für CTA-Highlight, sparsam */

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', 'SF Mono', monospace;

  /* Spacing scale */
  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6.5rem;
}

* { box-sizing: border-box; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: 1.4rem; }

p { margin: 0; }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 var(--sp-3);
}

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 2px;
  border-radius: 2px;
}

/* ===================== HEADER / NAV ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253, 253, 251, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled {
  box-shadow: 0 8px 30px -20px rgba(20, 36, 28, 0.35);
}

/* ===================== SCROLL-REVEAL ===================== */
body.js-reveal .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
body.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-2) var(--sp-3);
  max-width: 1140px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  flex-shrink: 0;
  white-space: nowrap;
}

.logo-mark {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--pine);
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: -3px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 6px 0 0;
  border-color: var(--pine) transparent transparent transparent;
  transform: rotate(135deg);
}
.logo-mark::before {
  content: '';
  position: absolute;
  top: 9px;
  left: 7px;
  width: 16px;
  height: 3px;
  background: var(--paper);
  box-shadow: 0 5px 0 var(--paper);
  border-radius: 2px;
}

.nav-links {
  display: flex;
  gap: var(--sp-3);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav-links a {
  position: relative;
  padding: 0.2rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--pine);
  transition: width 0.25s ease;
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--pine);
  color: var(--paper) !important;
  padding: 0.65rem 1.3rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--pine-deep); transform: translateY(-1px); }
.nav-cta-mobile { display: none; }

.nav-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links { 
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    gap: var(--sp-2);
    padding: var(--sp-3);
    border-bottom: 1px solid var(--line);
    transform: translateY(-100vh);
    pointer-events: none;
    transition: transform 0.25s ease;
    z-index: 49;
  }
  .nav-links.open { transform: translateY(0); pointer-events: auto; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.4rem;
  }
  .nav-toggle span {
    width: 22px; height: 2px;
    background: var(--ink);
  }
  .nav-cta { display: none; }
  .nav-links .nav-cta-mobile { display: inline-flex; }
}

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.97rem;
  padding: 0.85rem 1.7rem;
  border-radius: 100px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-primary {
  background: var(--pine);
  color: var(--paper);
}
.btn-primary:hover { background: var(--pine-deep); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* ===================== HERO ===================== */
.hero {
  padding: var(--sp-6) 0 var(--sp-5);
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}

.hero-grid > * {
  min-width: 0;
}

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hero { padding-top: var(--sp-4); }
}

.hero-eyebrow { margin-bottom: var(--sp-2); }

.hero h1 { margin-bottom: var(--sp-3); }
.hero h1 em {
  font-style: normal;
  color: var(--pine);
  position: relative;
}

.hero-lede {
  font-size: 1.18rem;
  color: #3c4f44;
  max-width: 46ch;
  margin-bottom: var(--sp-4);
}

.hero-actions {
  display: flex;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-4);
}

.hero-meta {
  display: flex;
  gap: var(--sp-4);
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--moss);
}

/* ===================== HERO ENTRANCE ANIMATION ===================== */
@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow,
.hero h1,
.hero-lede,
.hero-actions,
.hero-meta,
.chat-demo-wrap,
.page-hero .eyebrow,
.page-hero h1,
.page-hero .hero-lede {
  animation: heroIn 0.7s ease both;
}
.hero-eyebrow, .page-hero .eyebrow { animation-delay: 0s; }
.hero h1, .page-hero h1 { animation-delay: 0.08s; }
.hero-lede, .page-hero .hero-lede { animation-delay: 0.16s; }
.hero-actions { animation-delay: 0.24s; }
.hero-meta { animation-delay: 0.32s; }
.chat-demo-wrap { animation-delay: 0.2s; }

/* Chat demo — signature element */
.chat-demo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.chat-demo-label {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--moss);
  text-align: right;
}

.chat-demo {
  background: var(--ink);
  border-radius: 18px;
  padding: 0;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 30px 60px -20px rgba(20, 36, 28, 0.35);
}

.chat-demo-live {
  min-height: 900px;
  height: 900px;
  padding: 0;
  overflow: hidden;
}

@media (max-width: 880px) {
  .chat-demo-label { text-align: left; }
  .chat-demo { min-height: 320px; }
  .chat-demo-live { height: 680px; min-height: 680px; }
}

@media (max-width: 640px) {
  .chat-demo-live { height: 520px; min-height: 520px; }
}

.chat-demo-bar {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding-bottom: 0.7rem;
  margin-bottom: 0.3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.chat-demo-bar .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--moss);
  opacity: 0.5;
}
.chat-demo-bar span.label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  margin-left: 0.5rem;
}

.bubble {
  max-width: 80%;
  padding: 0.7rem 1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  opacity: 0;
  animation: bubbleIn 0.5s ease forwards;
}
.bubble.user {
  align-self: flex-end;
  background: var(--pine);
  color: var(--paper);
  border-radius: 14px 14px 4px 14px;
}
.bubble.bot {
  align-self: flex-start;
  background: rgba(255,255,255,0.08);
  color: #e7ede9;
  border-radius: 14px 14px 14px 4px;
}
.bubble.b1 { animation-delay: 0.2s; }
.bubble.b2 { animation-delay: 1s; }
.bubble.b3 { animation-delay: 2.1s; }
.bubble.b4 { animation-delay: 3.2s; }

@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.typing-dots {
  display: inline-flex;
  gap: 3px;
  align-self: flex-start;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.08);
  border-radius: 14px 14px 14px 4px;
  opacity: 0;
  animation: bubbleIn 0.4s ease forwards;
  animation-delay: 1.6s;
}
.typing-dots span {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--moss);
  animation: blink 1.1s infinite ease-in-out;
}
.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }
@keyframes blink { 0%, 80%, 100% { opacity: 0.25; } 40% { opacity: 1; } }

/* ===================== SECTIONS ===================== */
section { padding: var(--sp-5) 0; }

.section-dim { background: var(--paper-dim-gradient); }
.section-dim .eyebrow { color: var(--moss); }
.section-dim h2 { color: var(--paper); }
.section-dim .section-head p { color: rgba(253, 253, 251, 0.72); }
.section-dim .card h3 { color: var(--ink); }
.section-dim .process-step { border-top-color: rgba(255,255,255,0.15); }
.section-dim .process-step h3 { color: var(--paper); }
.section-dim .process-step p { color: rgba(253, 253, 251, 0.72); }
.section-dim .process-step::before { color: var(--moss); }

.section-head {
  max-width: 56ch;
  margin-bottom: var(--sp-4);
}
.section-head h2 { margin-top: 0.6rem; }
.section-head p {
  margin-top: var(--sp-2);
  color: #3c4f44;
  font-size: 1.07rem;
}

/* Logic/feature grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 880px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
}

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: var(--sp-3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -24px rgba(20, 36, 28, 0.2);
}
.section-dim .card { background: var(--paper); }

.card-icon {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(31, 77, 58, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-2);
  color: var(--pine);
}
.card-icon svg { transition: transform 0.25s ease; }
.card:hover .card-icon svg { transform: scale(1.12) rotate(-4deg); }

.card h3 { margin-bottom: 0.5rem; }
.card p { color: #3c4f44; font-size: 0.96rem; }

/* Process / Schritte — echte Reihenfolge, daher Nummerierung gerechtfertigt */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  counter-reset: step;
}
@media (max-width: 880px) {
  .process { grid-template-columns: 1fr; }
}
.process-step {
  position: relative;
  padding-top: var(--sp-3);
  border-top: 2px solid var(--line);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--pine);
  display: block;
  margin-bottom: 0.6rem;
}
.process-step h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }
.process-step p { color: #3c4f44; font-size: 0.93rem; }

/* ===================== PRICING ===================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}
@media (max-width: 880px) {
  .pricing-grid { grid-template-columns: 1fr; }
}

.pricing-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-3);
  align-items: stretch;
}
@media (max-width: 1080px) {
  .pricing-grid-3 { grid-template-columns: 1fr; }
}

.price-card {
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 18px;
  padding: var(--sp-4);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px -28px rgba(31, 77, 58, 0.25);
}

.price-card.featured {
  border-color: var(--pine);
  position: relative;
  box-shadow: 0 25px 50px -25px rgba(31, 77, 58, 0.25);
}

.price-tag {
  position: absolute;
  top: -13px;
  right: var(--sp-4);
  background: var(--pine);
  color: var(--paper);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

.price-card .eyebrow { margin-bottom: 0.4rem; }
.price-card h3 { font-size: 1.6rem; margin-bottom: 0.3rem; }
.price-card .price-sub { color: #5d6d63; font-size: 0.93rem; margin-bottom: var(--sp-3); }

.price-numbers {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: var(--sp-1);
  flex-wrap: wrap;
}
.price-big {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--ink);
}
.price-onrequest {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--pine);
}
.price-plus {
  color: var(--moss);
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.price-monthly {
  font-family: var(--font-display);
  font-size: 1.5rem;
}
.price-monthly span {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #5d6d63;
  font-weight: 400;
}

.price-vat {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: #5d6d63;
}

.price-divider { height: 1px; background: var(--line); margin: var(--sp-3) 0; }

.price-features {
  list-style: none;
  margin: 0 0 var(--sp-3) 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-grow: 1;
}
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.94rem;
  color: var(--ink);
}
.price-features li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: 0.2rem;
  border-radius: 50%;
  background: var(--pine);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/10px no-repeat;
}

.price-note {
  font-size: 0.83rem;
  color: #5d6d63;
  margin-top: var(--sp-4);
}

/* ===================== TEAM ===================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; }
}
.team-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: var(--sp-4);
}
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pine), var(--moss));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: var(--sp-3);
}
.team-card h3 { margin-bottom: 0.2rem; }
.team-role {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--moss);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--sp-2);
  display: block;
}
.team-card p.bio { color: #3c4f44; font-size: 0.95rem; }

/* ===================== CTA BAND ===================== */
.cta-band {
  background: var(--ink);
  border-radius: 22px;
  padding: var(--sp-5) var(--sp-4);
  text-align: center;
  color: var(--paper);
}
.cta-band h2 { color: var(--paper); margin-bottom: var(--sp-2); }
.cta-band p { color: rgba(253,253,251,0.7); max-width: 50ch; margin: 0 auto var(--sp-3); }
.cta-band .btn-primary { background: var(--paper); color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--moss); color: var(--paper); }

/* ===================== FOOTER ===================== */
.site-footer {
  border-top: 1px solid var(--line);
  padding: var(--sp-4) 0 var(--sp-3);
  margin-top: var(--sp-5);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-3);
}
.footer-links {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #5d6d63;
}
.footer-links a:hover { color: var(--pine); }
.footer-bottom {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: #8b968e;
  padding-top: var(--sp-2);
  border-top: 1px solid var(--line);
}

/* ===================== GENERIC PAGE HEADER (Über uns, Preise, Kontakt etc) ===================== */
.page-hero {
  padding: var(--sp-5) 0 var(--sp-3);
}
.page-hero h1 { margin-bottom: var(--sp-2); }
.page-hero .hero-lede { margin-bottom: 0; }

/* ===================== CONTACT FORM ===================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.form-group {
  margin-bottom: var(--sp-3);
}
.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group .hint {
  display: block;
  font-size: 0.8rem;
  color: #5d6d63;
  margin-top: 0.3rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.97rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s ease;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--pine);
  outline: none;
}
.form-group textarea { min-height: 130px; resize: vertical; }

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: #3c4f44;
}
.checkbox-row input { width: auto; margin-top: 0.2rem; }

.contact-info-card {
  background: var(--paper-dim-gradient);
  border-radius: 16px;
  padding: var(--sp-4);
  height: fit-content;
}
.contact-info-card .info-row {
  display: flex;
  gap: 0.8rem;
  margin-bottom: var(--sp-3);
  align-items: flex-start;
}
.contact-info-card .info-row .ico {
  color: var(--moss);
  flex-shrink: 0;
  margin-top: 0.1rem;
}
.contact-info-card .info-row strong { display: block; font-size: 0.85rem; color: var(--paper); }
.contact-info-card .info-row span.val { color: rgba(253, 253, 251, 0.72); font-size: 0.93rem; }

.form-status {
  margin-top: var(--sp-2);
  font-size: 0.9rem;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  display: none;
}
.form-status.show { display: block; }
.form-status.ok { background: rgba(31,77,58,0.08); color: var(--pine-deep); }
.form-status.err { background: rgba(255,107,74,0.1); color: #b94a32; }

/* ===================== LEGAL PAGES ===================== */
.legal-content {
  max-width: 760px;
}
.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--sp-4);
  margin-bottom: var(--sp-2);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-size: 1.1rem;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
}
.legal-content p, .legal-content li {
  color: #3c4f44;
  font-size: 0.97rem;
  margin-bottom: var(--sp-2);
}
.legal-content ul { padding-left: 1.3rem; }
.legal-content strong { color: var(--ink); }
.legal-toc {
  background: var(--paper-dim-gradient);
  border-radius: 14px;
  padding: var(--sp-3);
  margin-bottom: var(--sp-4);
}
.legal-toc .eyebrow { margin-bottom: 0.6rem; display: block; color: var(--moss); }
.legal-toc ol {
  margin: 0;
  padding-left: 1.2rem;
  columns: 2;
  font-size: 0.9rem;
  color: var(--paper);
}
@media (max-width: 600px) {
  .legal-toc ol { columns: 1; }
}
.legal-toc a { color: var(--paper); }
.legal-toc a:hover { color: var(--moss); }

/* ===================== NEUES MONOGRAMM LOGO ===================== */
.logo-new {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  background: linear-gradient(135deg, #1f4d3a, #0d2218);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6b4a, #5b8c6e);
  opacity: 0.7;
}

.logo-monogram {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  font-size: 22px;
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 1;
  background: linear-gradient(160deg, #d4e8dc 0%, #ffffff 50%, #9fc9b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-bottom: 2px;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1;
}

.logo-text-mk {
  font-family: 'Fraunces', 'Georgia', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}

.logo-text-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--moss);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  line-height: 1;
}

/* ===================== SKIP LINK ===================== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--pine);
  color: var(--paper);
  padding: 0.5rem 1rem;
  z-index: 100;
  font-size: 0.9rem;
}
.skip-link:focus {
  top: 0;
}
