/* =========================================================
   Selbst gehostete Schriften — keine Drittanbieter-Anfragen,
   keine Übertragung an Google, daher kein Consent-Banner nötig.
   ========================================================= */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/fraunces-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/fraunces-italic.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-display: swap;
  font-weight: 100 900;
  src: url('fonts/inter-normal.woff2') format('woff2');
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}

:root {
    --paper: #F5F1E8;
    --paper-deep: #EFE9DB;
    --ink: #1A1A1A;
    --ink-soft: #4A4843;
    --ink-mute: #8B8779;
    --rule: #D9D1BD;
    --accent: #6B5B3A;
    --maxw: 1080px;
    --gutter: clamp(24px, 5vw, 72px);
  }

  * { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.7;
    font-optical-sizing: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }

  .serif {
    font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
    font-weight: 400;
    letter-spacing: -0.01em;
  }

  ::selection { background: var(--ink); color: var(--paper); }

  /* Sticky mini nav */
  .nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 50;
    background: rgba(245, 241, 232, 0);
    backdrop-filter: blur(0);
    border-bottom: 1px solid transparent;
    transition: background .35s ease, backdrop-filter .35s ease, border-color .35s ease;
  }
  .nav.is-stuck {
    background: rgba(245, 241, 232, 0.85);
    backdrop-filter: saturate(160%) blur(14px);
    -webkit-backdrop-filter: saturate(160%) blur(14px);
    border-bottom: 1px solid var(--rule);
  }
  .nav-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 14px var(--gutter);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .brand {
    font-family: "Fraunces", serif;
    font-size: 16px;
    letter-spacing: -0.01em;
  }
  .brand span { color: var(--ink-mute); }
  .nav-links {
    display: none;
    gap: 28px;
    font-size: 14px;
    color: var(--ink-soft);
  }
  .nav-links a {
    color: inherit;
    text-decoration: none;
    transition: color .2s;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    font-size: 14px;
    padding: 8px 16px;
    border: 1px solid var(--ink);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    transition: background .2s, color .2s;
  }
  .nav-cta:hover { background: var(--ink); color: var(--paper); }
  @media (min-width: 900px) {
    .nav-links { display: flex; }
  }

  /* Layout */
  main { padding-top: 0; }
  section {
    padding: clamp(72px, 10vw, 140px) var(--gutter);
  }
  .container {
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .narrow { max-width: 720px; }

  /* Section labels */
  .label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-bottom: 28px;
  }
  .label::before {
    content: "";
    display: inline-block;
    width: 24px;
    height: 1px;
    background: var(--ink-mute);
  }

  /* Headings */
  h1, h2, h3 { margin: 0; }
  h1 {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(48px, 8.5vw, 104px);
    line-height: 1.02;
    letter-spacing: -0.035em;
    margin-bottom: 28px;
  }
  h2 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: clamp(32px, 4.6vw, 52px);
    line-height: 1.12;
    letter-spacing: -0.022em;
    margin-bottom: 32px;
    max-width: 22ch;
  }
  h3 {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: clamp(20px, 2.4vw, 24px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
  }

  p { margin: 0 0 1.1em; }
  p.lead {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(20px, 2.5vw, 26px);
    line-height: 1.45;
    color: var(--ink-soft);
    letter-spacing: -0.005em;
    max-width: 38ch;
  }

  /* Hero */
  .hero {
    padding-top: clamp(140px, 18vh, 220px);
    padding-bottom: clamp(80px, 10vw, 140px);
    position: relative;
    overflow: hidden;
  }
  .hero-inner {
    max-width: var(--maxw);
    margin: 0 auto;
  }
  .hero h1 .em {
    font-style: italic;
    font-weight: 300;
  }
  .hero-sub {
    max-width: 30ch;
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.4;
    color: var(--ink-soft);
    letter-spacing: -0.005em;
    margin-bottom: 44px;
  }
  .cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 28px;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--ink);
    color: var(--paper);
    padding: 16px 28px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: -0.005em;
    transition: transform .2s ease, background .2s ease;
  }
  .btn:hover { background: #000; transform: translateY(-1px); }
  .btn .arrow { transition: transform .25s ease; }
  .btn:hover .arrow { transform: translateX(4px); }

  .link-secondary {
    color: var(--ink-soft);
    text-decoration: none;
    font-size: 15px;
    border-bottom: 1px solid var(--rule);
    padding-bottom: 2px;
    transition: color .2s, border-color .2s;
  }
  .link-secondary:hover {
    color: var(--ink);
    border-color: var(--ink);
  }

  .hero-figure {
    margin-top: clamp(72px, 9vw, 110px);
    position: relative;
  }
  .hero-figure img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
  }

  /* Section dividers */
  .rule {
    height: 1px;
    background: var(--rule);
    max-width: var(--maxw);
    margin: 0 auto;
  }

  /* Two-column */
  .two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
  }
  @media (min-width: 860px) {
    .two-col { grid-template-columns: 0.85fr 1fr; gap: 96px; }
    .two-col .col-side { position: sticky; top: 100px; }
  }

  /* Problem section */
  .problem p {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(22px, 2.8vw, 30px);
    line-height: 1.42;
    color: var(--ink);
    letter-spacing: -0.012em;
    max-width: 32ch;
    margin-bottom: 1em;
  }
  .problem p:last-child { margin-bottom: 0; }
  .problem .accent {
    color: var(--ink-mute);
  }
  .problem .closing {
    border-left: 1px solid var(--ink);
    padding-left: 28px;
    margin-top: 1.6em;
  }

  /* Service description */
  .service-figure {
    margin-top: 56px;
  }
  .service-figure img {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: multiply;
  }
  .service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
  }
  .service-list li {
    padding: 18px 0;
    border-top: 1px solid var(--rule);
    display: flex;
    gap: 20px;
    font-size: 17px;
    color: var(--ink-soft);
    line-height: 1.55;
  }
  .service-list li:last-child { border-bottom: 1px solid var(--rule); }
  .service-list .marker {
    flex: 0 0 auto;
    width: 6px;
    height: 6px;
    background: var(--ink);
    border-radius: 50%;
    margin-top: 11px;
  }
  .service-out {
    margin-top: 36px;
    display: grid;
    gap: 24px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 720px) {
    .service-out { grid-template-columns: 1fr 1fr; gap: 40px; }
  }
  .service-out p {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: 22px;
    line-height: 1.45;
    color: var(--ink);
    margin: 0;
    letter-spacing: -0.01em;
  }
  .service-out p.subtle { color: var(--ink-mute); }

  /* Leverage section */
  .leverage-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid var(--rule);
  }
  @media (min-width: 760px) {
    .leverage-grid { grid-template-columns: 1fr 1fr; }
  }
  .leverage-item {
    padding: 36px 0;
    border-bottom: 1px solid var(--rule);
  }
  @media (min-width: 760px) {
    .leverage-item { padding: 44px 32px 44px 0; }
    .leverage-item:nth-child(even) { padding-left: 32px; border-left: 1px solid var(--rule); padding-right: 0; }
  }
  .leverage-num {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 17px;
    color: var(--ink-mute);
    margin-bottom: 14px;
  }
  .leverage-item p {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
    margin: 0;
  }

  /* Process */
  .process {
    background: var(--paper-deep);
  }
  .process-intro {
    max-width: 38ch;
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(20px, 2.3vw, 24px);
    line-height: 1.45;
    color: var(--ink-soft);
    margin-bottom: 72px;
    letter-spacing: -0.005em;
  }
  .process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 28px;
    padding: 36px 0;
    border-top: 1px solid var(--rule);
    align-items: baseline;
  }
  .process-step:last-of-type { border-bottom: 1px solid var(--rule); }
  @media (min-width: 720px) {
    .process-step { grid-template-columns: 120px 220px 1fr; gap: 48px; }
  }
  .process-num {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 28px;
    color: var(--ink-mute);
    letter-spacing: -0.01em;
  }
  .process-title {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 19px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .process-desc {
    color: var(--ink-soft);
    font-size: 16px;
    line-height: 1.65;
    grid-column: 1 / -1;
    margin-top: -8px;
  }
  @media (min-width: 720px) {
    .process-desc { grid-column: 3; margin-top: 0; }
  }
  .process-footer {
    margin-top: 56px;
    font-family: "Fraunces", serif;
    font-style: italic;
    font-weight: 300;
    font-size: 19px;
    color: var(--ink-mute);
  }

  /* Negative space – what we're not */
  .not {
    text-align: left;
  }
  .not h2 { color: var(--ink); }
  .not-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 32ch;
  }
  .not-list li {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.45;
    color: var(--ink-mute);
    padding: 16px 0;
    border-bottom: 1px solid var(--rule);
    letter-spacing: -0.008em;
  }
  .not-list li:first-child { border-top: 1px solid var(--rule); }
  .not-close {
    margin-top: 28px;
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.45;
    color: var(--ink);
    letter-spacing: -0.008em;
    max-width: 32ch;
  }

  /* Fit – qualification */
  .fit-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .fit-list li {
    padding: 20px 0;
    border-top: 1px solid var(--rule);
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: 18px;
    align-items: start;
  }
  .fit-list li:last-child { border-bottom: 1px solid var(--rule); }
  .check {
    color: var(--accent);
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 18px;
    line-height: 1.6;
  }
  .fit-list li p {
    margin: 0;
    color: var(--ink-soft);
    font-size: 17px;
    line-height: 1.6;
  }

  /* CTA */
  .cta {
    background: var(--ink);
    color: var(--paper);
  }
  .cta .label { color: rgba(245,241,232,0.6); }
  .cta .label::before { background: rgba(245,241,232,0.6); }
  .cta h2 { color: var(--paper); }
  .cta p {
    color: rgba(245,241,232,0.75);
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(20px, 2.4vw, 26px);
    line-height: 1.45;
    max-width: 38ch;
  }
  .cta .btn {
    background: var(--paper);
    color: var(--ink);
    margin-top: 16px;
  }
  .cta .btn:hover { background: #fff; }
  .cta .link-secondary {
    color: rgba(245,241,232,0.7);
    border-color: rgba(245,241,232,0.3);
  }
  .cta .link-secondary:hover { color: var(--paper); border-color: var(--paper); }

  .cta-footer-note {
    font-style: italic;
    font-family: "Fraunces", serif;
    font-weight: 300;
    color: rgba(245,241,232,0.6);
    font-size: 17px;
    margin-top: 28px;
  }

  /* Contact form */
  .contact-form {
    margin-top: 56px;
    display: grid;
    gap: 22px;
    grid-template-columns: 1fr;
  }
  @media (min-width: 680px) {
    .contact-form { grid-template-columns: 1fr 1fr; }
    .contact-form .full { grid-column: 1 / -1; }
  }
  .field { display: flex; flex-direction: column; gap: 8px; }
  .field label {
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245,241,232,0.55);
  }
  .field input,
  .field select,
  .field textarea {
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(245,241,232,0.3);
    color: var(--paper);
    font-family: inherit;
    font-size: 16px;
    padding: 12px 0;
    outline: none;
    transition: border-color .2s;
    border-radius: 0;
  }
  .field input:focus,
  .field select:focus,
  .field textarea:focus { border-bottom-color: var(--paper); }
  .field textarea { min-height: 96px; resize: vertical; font-family: inherit; }
  .field select { color: var(--paper); }
  .field select option { color: var(--ink); background: var(--paper); }
  .checkbox-field {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(245,241,232,0.7);
    line-height: 1.55;
  }
  .checkbox-field input { accent-color: var(--paper); margin-top: 4px; }
  .submit-row {
    display: flex;
    justify-content: flex-start;
    margin-top: 12px;
  }

  /* Footer */
  footer {
    background: var(--paper);
    color: var(--ink-mute);
    padding: 56px var(--gutter) 48px;
    font-size: 14px;
    border-top: 1px solid var(--rule);
  }
  .footer-inner {
    max-width: var(--maxw);
    margin: 0 auto;
    display: grid;
    gap: 28px;
    grid-template-columns: 1fr;
    align-items: end;
  }
  @media (min-width: 720px) {
    .footer-inner { grid-template-columns: 1fr auto; }
  }
  .footer-brand {
    font-family: "Fraunces", serif;
    font-size: 18px;
    color: var(--ink);
    letter-spacing: -0.01em;
  }
  .footer-links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
  }
  .footer-links a {
    color: var(--ink-soft);
    text-decoration: none;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--ink); }

  /* Subtle entrance */
  .fade {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .9s ease, transform .9s ease;
  }
  .fade.in {
    opacity: 1;
    transform: none;
  }

  @media (prefers-reduced-motion: reduce) {
    .fade { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
  }

  /* Brand logo */
  .brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }
  .brand img {
    height: clamp(20px, 4.6vw, 28px);
    width: auto;
    display: block;
  }
  .footer-brand {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s ease;
  }
  .footer-brand:hover { opacity: 0.72; }
  .footer-brand img {
    height: 34px;
    width: auto;
    display: block;
  }

  /* Keep header tidy on small screens so logo + CTA never collide */
  @media (max-width: 600px) {
    .nav-inner { gap: 12px; }
    .nav-cta { font-size: 13px; padding: 7px 12px; }
  }

  /* Legal pages (Impressum, Datenschutz) */
  .legal {
    padding-top: clamp(120px, 16vh, 180px);
    padding-bottom: clamp(72px, 10vw, 120px);
  }
  .legal h1 {
    font-family: "Fraunces", serif;
    font-weight: 300;
    font-size: clamp(40px, 6.5vw, 68px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .legal-intro {
    color: var(--ink-mute);
    font-size: 15px;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
  }
  .legal-block {
    padding-top: 36px;
    margin-top: 36px;
    border-top: 1px solid var(--rule);
  }
  .legal-block:first-of-type { border-top: 0; margin-top: 40px; padding-top: 0; }
  .legal-block h2 {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: clamp(19px, 2.2vw, 23px);
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0 0 14px;
    max-width: none;
  }
  .legal-block p { margin: 0 0 0.5em; color: var(--ink-soft); }
  .legal-block p:last-child { margin-bottom: 0; }
  .legal-block address {
    font-style: normal;
    color: var(--ink);
    line-height: 1.7;
  }
  .legal-block a { color: var(--ink); text-decoration: underline; text-underline-offset: 3px; }
  .legal-block a:hover { color: var(--accent); }
  .legal-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 56px;
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
  }
  .legal-back:hover { color: var(--ink); }

  .legal-block ul {
    margin: 0.4em 0 0;
    padding-left: 1.1em;
    color: var(--ink-soft);
  }
  .legal-block ul li { margin: 0 0 0.35em; }
  .legal-block ul li:last-child { margin-bottom: 0; }

  /* Zwei-Klick-Einbettung (Drittinhalte laden erst nach Consent-Klick) */
  .embed-gate {
    margin-top: 56px;
    border: 1px solid rgba(245,241,232,0.25);
    border-radius: 14px;
    padding: clamp(24px, 4vw, 40px);
    background: rgba(245,241,232,0.04);
  }
  .embed-gate-title {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--paper);
    margin: 0 0 12px;
  }
  .embed-gate-note {
    color: rgba(245,241,232,0.7);
    font-size: 15px;
    line-height: 1.6;
    margin: 0 0 22px;
    max-width: 62ch;
  }
  .embed-gate-note a {
    color: var(--paper);
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .embed-frame {
    margin-top: 56px;
    border-radius: 14px;
    overflow: hidden;
    background: var(--paper);
  }
  .embed-frame iframe {
    width: 100%;
    min-height: 540px;
    border: 0;
    display: block;
  }

  /* Sprach-Umschaltung in der Nav */
  .lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--ink-mute);
    margin-right: 8px;
  }
  .lang-switch span[aria-current],
  .lang-switch a {
    padding: 4px 2px;
    text-decoration: none;
    color: var(--ink-mute);
    transition: color 0.2s ease;
  }
  .lang-switch span[aria-current] {
    color: var(--ink);
  }
  .lang-switch a:hover { color: var(--ink); }
  .lang-switch::before {
    content: "";
    display: inline-block;
    width: 1px;
    height: 14px;
    background: var(--rule);
    margin-right: 4px;
  }
  @media (max-width: 720px) {
    .lang-switch { margin-right: 4px; gap: 6px; }
    .lang-switch::before { display: none; }
  }

  /* Hinweis auf den Rechtsseiten: Übersetzung nicht rechtlich bindend */
  .legal-translation-note {
    font-size: 13px;
    color: var(--ink-mute);
    background: rgba(26,26,26,0.04);
    border-left: 2px solid var(--rule-strong);
    padding: 10px 14px;
    margin: 24px 0 8px;
    line-height: 1.55;
  }
  .legal-translation-note a { color: var(--ink); }
