/* =========================================================================
   nilsbehrens.de  —  Design-System
   Editorial, ruhig, typografiegeführt. Selbst gehostete Fonts, keine Remotes.
   ========================================================================= */

/* ---------- Fonts (lokal, WOFF2) ---------- */
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/newsreader-400.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/newsreader-500.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/newsreader-600.woff2") format("woff2");
}
@font-face {
  font-family: "Newsreader";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/newsreader-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/inter-400.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/inter-500.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/inter-600.woff2") format("woff2");
}

/* ---------- Tokens ---------- */
:root {
  --sand:        #E8E2D4;
  --sand-light:  #EFEADF;
  --surface:     #EBE6DB;
  --ink:         #1A1A1A;
  --green:       #3A5A40;
  --green-dark:  #2E4633;
  --taupe:       #746E60;
  --taupe-light: #A89F8C;

  --font-serif: "Newsreader", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --container: 1160px;
  --gutter: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(4.5rem, 11vh, 8.5rem);
  --radius: 4px;
  --radius-lg: 8px;
  --line: 1px solid var(--taupe-light);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 72px;
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 0.97rem + 0.2vw, 1.075rem);
  line-height: 1.65;
  color: var(--ink);
  background: var(--sand);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--green); text-decoration: none; }
a:hover { color: var(--green-dark); }

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

::selection { background: var(--green); color: var(--sand-light); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-wrap: balance;
}

.h1 {
  font-size: clamp(2.6rem, 1.5rem + 4.6vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}
.h2 {
  font-size: clamp(2rem, 1.3rem + 2.6vw, 3.1rem);
}
.h3 {
  font-size: clamp(1.3rem, 1.1rem + 0.8vw, 1.6rem);
  line-height: 1.15;
}

.lead {
  font-size: clamp(1.12rem, 1.02rem + 0.5vw, 1.4rem);
  line-height: 1.55;
  color: var(--taupe);
  max-width: 40ch;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green);
}

.muted { color: var(--taupe); }
.serif-italic { font-family: var(--font-serif); font-style: italic; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section {
  padding-block: var(--section-y);
  border-top: var(--line);
  scroll-margin-top: var(--header-h);
}
.section--plain { border-top: none; }
.section--sand-light { background: var(--sand-light); }
.section--surface { background: var(--surface); }

.section-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 62ch;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-index {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-index::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--taupe-light);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-pad-y: 0.85em;
  --btn-pad-x: 1.6em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
  padding: var(--btn-pad-y) var(--btn-pad-x);
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color 0.25s var(--ease), color 0.25s var(--ease),
              border-color 0.25s var(--ease), transform 0.25s var(--ease);
  text-align: center;
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--green);
  color: var(--sand-light);
  border-color: var(--green);
}
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); color: var(--sand-light); }

.btn--ghost {
  background: transparent;
  color: var(--green);
  border-color: var(--taupe-light);
}
.btn--ghost:hover { border-color: var(--green); background: rgba(58,90,64,0.06); color: var(--green-dark); }

.btn--small { font-size: 0.85rem; --btn-pad-y: 0.7em; --btn-pad-x: 1.2em; }
.btn--block { width: 100%; }

.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-weight: 500;
  color: var(--green);
}
.link-arrow .arrow { transition: transform 0.25s var(--ease); }
.link-arrow:hover .arrow { transform: translateX(3px); }

/* =========================================================================
   Header / Nav
   ========================================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: color-mix(in srgb, var(--sand) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: var(--line);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.brand img { width: 34px; height: 34px; }
.brand span { line-height: 1; }

.nav {
  display: flex;
  align-items: center;
  gap: clamp(1.2rem, 2.4vw, 2.4rem);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  list-style: none;
  padding: 0;
}
.nav-list a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  padding: 0.4rem 0;
  position: relative;
  transition: color 0.2s var(--ease);
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s var(--ease);
}
.nav-list a:hover { color: var(--green); }
.nav-list a:hover::after,
.nav-list a[aria-current="true"]::after { transform: scaleX(1); }
.nav-list a[aria-current="true"] { color: var(--green); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--ink);
  margin-right: -8px;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

@media (max-width: 860px) {
  :root { --header-h: 64px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--sand-light);
    border-bottom: var(--line);
    padding: 0.5rem var(--gutter) 1.5rem;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
    box-shadow: 0 24px 40px -28px rgba(26,26,26,0.35);
  }
  .nav[data-open="true"] {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
  }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .nav-list li { border-bottom: var(--line); }
  .nav-list a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    font-family: var(--font-serif);
  }
  .nav-list a::after { display: none; }
  .nav-cta { margin-top: 1.4rem; }
  .nav-cta .btn { width: 100%; }
}

/* =========================================================================
   Hero
   ========================================================================= */
.hero {
  padding-top: clamp(2.5rem, 6vh, 5rem);
  padding-bottom: var(--section-y);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4.5rem);
}
.hero-copy { max-width: 34ch; }
.hero .eyebrow { display: block; margin-bottom: 1.4rem; }
.hero h1 { margin-bottom: 1.6rem; }
.hero .lead { max-width: 46ch; margin-bottom: 2.2rem; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Illustration: Tinte auf Sand. Heller Bildhintergrund wird per multiply
   exakt auf die Sand-Hintergrundfarbe der Website gezogen. Keine Maske,
   damit die natürlichen Proportionen erhalten bleiben. */
.hero-visual {
  position: relative;
  align-self: center;
  display: flex;
  justify-content: center;
}
.hero-visual .illu {
  width: 100%;
  max-width: 560px;
  height: auto;
  mix-blend-mode: multiply;
  /* grayscale + Aufhellung: der cremefarbene Bildhintergrund wird zu Weiß,
     multipliziert mit --sand ergibt exakt die Website-Hintergrundfarbe. */
  filter: grayscale(1) brightness(1.14) contrast(1.03);
}

@media (max-width: 780px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-visual .illu { max-width: 420px; }
  .hero-copy { max-width: none; }
}

/* ---------- Drei Wege (Kacheln) ---------- */
.paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
}
.path-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: clamp(1.5rem, 3vw, 2.1rem);
  background: var(--surface);
  border: var(--line);
  border-radius: var(--radius-lg);
  color: var(--ink);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.path-card:hover {
  transform: translateY(-4px);
  border-color: var(--green);
  box-shadow: 0 22px 40px -30px rgba(46,70,51,0.5);
}
.path-card .path-icon { color: var(--green); }
.path-card .path-icon svg { width: 30px; height: 30px; }
.path-card h3 { font-size: 1.35rem; }
.path-card p { color: var(--taupe); font-size: 0.98rem; }
.path-card .link-arrow { margin-top: auto; font-size: 0.9rem; }

@media (max-width: 720px) {
  .paths { grid-template-columns: 1fr; }
}

/* ---------- Trust bar ---------- */
.trust {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(3rem, 6vw, 4.5rem);
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: var(--line);
}
.trust p { color: var(--taupe); max-width: 70ch; font-size: 0.98rem; }
.trust .trust-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--taupe-light);
}
.trust-media {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.8rem;
  align-items: center;
}
.trust-media span {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink);
  opacity: 0.75;
}

/* =========================================================================
   Generic content pieces
   ========================================================================= */
.prose p { max-width: 62ch; }
.prose p + p { margin-top: 1.1rem; }

.callout {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: var(--surface);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.callout p { max-width: 60ch; color: var(--ink); }

/* Pills / tag lists */
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
}
.pills li {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-dark);
  padding: 0.5em 1em;
  background: var(--sand-light);
  border: 1px solid var(--taupe-light);
  border-radius: 100px;
}
.section--sand-light .pills li { background: var(--surface); }

.label-sm {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--taupe);
  margin-bottom: 1rem;
}

/* Theme cards (Speaker) */
.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
.theme-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--sand-light);
  border: var(--line);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.section--surface .theme-card { background: var(--sand-light); }
.theme-card:hover { border-color: var(--green); box-shadow: 0 22px 40px -32px rgba(46,70,51,0.45); }
.theme-card .theme-icon { color: var(--green); }
.theme-card .theme-icon svg { width: 28px; height: 28px; }
.theme-card h3 { font-size: 1.3rem; }
.theme-card > p { color: var(--taupe); font-size: 0.98rem; }
.theme-card ul {
  list-style: none;
  padding: 0;
  margin-top: 0.2rem;
  display: grid;
  gap: 0.55rem;
  border-top: var(--line);
  padding-top: 1rem;
}
.theme-card ul li {
  position: relative;
  padding-left: 1.3rem;
  font-size: 0.94rem;
  color: var(--ink);
}
.theme-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.62em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
}
.theme-card--wide { grid-column: 1 / -1; }
.theme-card--corporate,
.section--surface .theme-card--corporate {
  background: var(--green);
  border-color: var(--green);
  color: var(--sand-light);
}
.theme-card--corporate h3 { color: var(--sand-light); }
.theme-card--corporate p { color: color-mix(in srgb, var(--sand-light) 82%, transparent); }
.theme-card--corporate .theme-icon { color: var(--sand-light); }

@media (max-width: 720px) {
  .cards { grid-template-columns: 1fr; }
}

/* Sub-blocks with a heading rule */
.subblock { margin-top: clamp(2.5rem, 5vw, 4rem); }
.subblock > .label-sm { display: flex; align-items: center; gap: 0.75rem; }
.subblock > .label-sm::after {
  content: ""; flex: 1; height: 1px; background: var(--taupe-light);
}

/* Placeholder note (sichtbare Leerstelle für [Platzhalter]) */
.placeholder {
  border: 1px dashed var(--taupe-light);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.4rem;
  color: var(--taupe);
  font-size: 0.92rem;
  background: repeating-linear-gradient(
    -45deg,
    transparent, transparent 10px,
    color-mix(in srgb, var(--taupe-light) 12%, transparent) 10px,
    color-mix(in srgb, var(--taupe-light) 12%, transparent) 20px
  );
}
.placeholder strong { color: var(--ink); font-weight: 600; }

/* Testimonials placeholder grid */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.quote-card {
  padding: 1.6rem;
  border: 1px dashed var(--taupe-light);
  border-radius: var(--radius-lg);
  color: var(--taupe);
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 160px;
}
.quote-card .q-mark {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  line-height: 0.6;
  color: var(--taupe-light);
}
@media (max-width: 720px) { .quote-grid { grid-template-columns: 1fr; } }

/* Definition rows (formats, clients) */
.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  list-style: none;
  padding: 0;
}
.taglist li {
  font-size: 0.95rem;
  color: var(--ink);
}
.taglist li:not(:last-child)::after {
  content: "·";
  margin-left: 0.75rem;
  color: var(--taupe-light);
}

/* =========================================================================
   Beratung — 3-Schritt-Grafik
   ========================================================================= */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  counter-reset: step;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.step {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  background: var(--sand-light);
  border: var(--line);
  border-radius: var(--radius-lg);
}
.section--surface .step { background: var(--sand-light); }
.step-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--green);
  line-height: 1;
  display: block;
  margin-bottom: 0.8rem;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.step p { color: var(--taupe); font-size: 0.95rem; }
.step-track {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.4rem 0 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--taupe);
}
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 780px) { .two-col { grid-template-columns: 1fr; gap: 2.5rem; } }

/* =========================================================================
   Medien
   ========================================================================= */
.book {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.book-cover {
  position: relative;
}
.book-cover img {
  width: 100%;
  max-width: 340px;
  border-radius: var(--radius);
  box-shadow:
    0 2px 4px rgba(26,26,26,0.08),
    0 30px 60px -30px rgba(26,26,26,0.5);
}
.book-body h3 { font-size: clamp(1.7rem, 1.3rem + 1.4vw, 2.3rem); margin-bottom: 0.4rem; }
.book-body .subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--taupe);
  margin-bottom: 1.2rem;
}
.book-body p { max-width: 54ch; margin-bottom: 1.4rem; }
.book-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
  border-left: 3px solid var(--green);
  padding-left: 1.1rem;
  margin: 1.4rem 0 1.8rem;
}
.book-quote cite { display: block; font-style: normal; font-family: var(--font-sans); font-size: 0.85rem; color: var(--taupe); margin-top: 0.5rem; }
@media (max-width: 720px) {
  .book { grid-template-columns: 1fr; gap: 2rem; }
  .book-cover { max-width: 260px; }
}

.media-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  margin-top: clamp(2.5rem, 5vw, 4rem);
}
@media (max-width: 780px) { .media-split { grid-template-columns: 1fr; } }

.podcast-card {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--green);
  color: var(--sand-light);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
  justify-content: center;
}
.podcast-cover {
  width: clamp(110px, 26%, 150px);
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  box-shadow: 0 18px 30px -20px rgba(0,0,0,0.6);
  flex-shrink: 0;
}
.podcast-head {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.podcast-head .podcast-titles { display: flex; flex-direction: column; gap: 0.35rem; }
.podcast-card .eyebrow { color: color-mix(in srgb, var(--sand-light) 75%, transparent); }
.podcast-card h3 { color: var(--sand-light); font-size: 2rem; letter-spacing: 0.02em; }
.podcast-card p { color: color-mix(in srgb, var(--sand-light) 85%, transparent); max-width: 40ch; }
.podcast-card .btn--ghost { color: var(--sand-light); border-color: color-mix(in srgb, var(--sand-light) 45%, transparent); align-self: flex-start; }
.podcast-card .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--sand-light); color: var(--sand-light); }

.column-list {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0;
}
.column-list li { border-bottom: var(--line); }
.column-list li:first-child { border-top: var(--line); }
.column-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 0.2rem;
  color: var(--ink);
  font-weight: 500;
  transition: padding 0.25s var(--ease), color 0.25s var(--ease);
}
.column-list a:hover { color: var(--green); padding-left: 0.6rem; }
.column-list a .arrow { color: var(--green); flex-shrink: 0; }

/* =========================================================================
   Über mich
   ========================================================================= */
.about {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.about-photo img {
  width: 100%;
  border-radius: var(--radius-lg);
  filter: saturate(0.92);
}
.about-photo figcaption {
  font-size: 0.8rem;
  color: var(--taupe);
  margin-top: 0.6rem;
}
.about-body p { max-width: 56ch; }
.cred-list {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0;
  display: grid;
  gap: 0;
}
.cred-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  padding: 0.85rem 0;
  border-bottom: var(--line);
  font-size: 0.98rem;
}
.cred-list li:first-child { border-top: var(--line); }
.cred-list li .check {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.15em;
}
.cred-list li .check svg { width: 18px; height: 18px; }
.personal-note {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--ink);
  margin: 1.6rem 0;
  max-width: 50ch;
}
@media (max-width: 780px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 380px; }
}

/* =========================================================================
   Formulare  (Anfragen + Newsletter)
   ========================================================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 780px) { .form-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.1rem;
}
.field label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.field .req { color: var(--green); }
.input, .select, .textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--sand-light);
  border: 1.5px solid var(--taupe-light);
  border-radius: var(--radius);
  padding: 0.8em 0.9em;
  width: 100%;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.section--surface .input,
.section--surface .select,
.section--surface .textarea { background: var(--sand); }
.input::placeholder, .textarea::placeholder { color: var(--taupe-light); }
.input:focus, .select:focus, .textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,90,64,0.14);
}
.textarea { min-height: 140px; resize: vertical; }
.select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23746E60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9em center;
  padding-right: 2.4em;
}
.form-actions { margin-top: 0.6rem; }
.form-note { font-size: 0.82rem; color: var(--taupe); margin-top: 1rem; }
.form-note a { text-decoration: underline; text-underline-offset: 2px; }

.contact-aside {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: var(--line);
}
.section--surface .contact-aside { background: var(--sand-light); }
.contact-aside h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.contact-aside p { color: var(--taupe); margin-bottom: 1.2rem; max-width: 36ch; }
.contact-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 500;
  font-size: 1.05rem;
  margin-bottom: 0.7rem;
}
.contact-line svg { width: 18px; height: 18px; color: var(--green); flex-shrink: 0; }

/* Newsletter block */
.newsletter {
  background: var(--green);
  color: var(--sand-light);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.5rem);
}
.newsletter--full { }
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.newsletter h2, .newsletter h3 { color: var(--sand-light); }
.newsletter .eyebrow { color: color-mix(in srgb, var(--sand-light) 72%, transparent); margin-bottom: 0.9rem; display:block; }
.newsletter p { color: color-mix(in srgb, var(--sand-light) 86%, transparent); max-width: 42ch; }
.newsletter-title { font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.3rem); margin-bottom: 0.8rem; }

.ml-form { display: flex; flex-direction: column; gap: 0.7rem; }
.ml-row { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.ml-form input[type="email"] {
  flex: 1 1 220px;
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.85em 1em;
  border-radius: var(--radius);
  border: 1.5px solid color-mix(in srgb, var(--sand-light) 45%, transparent);
  background: color-mix(in srgb, var(--sand-light) 12%, transparent);
  color: var(--sand-light);
}
.ml-form input[type="email"]::placeholder { color: color-mix(in srgb, var(--sand-light) 60%, transparent); }
.ml-form input[type="email"]:focus {
  outline: none;
  border-color: var(--sand-light);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
}
.ml-form .btn--primary {
  background: var(--sand-light);
  color: var(--green-dark);
  border-color: var(--sand-light);
  flex-shrink: 0;
}
.ml-form .btn--primary:hover { background: var(--sand); color: var(--green-dark); border-color: var(--sand); }
.ml-consent { font-size: 0.78rem; color: color-mix(in srgb, var(--sand-light) 78%, transparent); max-width: 46ch; }
.ml-consent a { color: var(--sand-light); text-decoration: underline; text-underline-offset: 2px; }
.ml-message {
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--sand-light);
  background: color-mix(in srgb, var(--sand-light) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--sand-light) 40%, transparent);
  border-radius: var(--radius);
  padding: 0.85rem 1rem;
  max-width: 46ch;
}
.ml-message--ok strong { color: var(--sand-light); }
.ml-message a { color: var(--sand-light); text-decoration: underline; text-underline-offset: 2px; }

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

/* =========================================================================
   Footer
   ========================================================================= */
.site-footer {
  background: var(--ink);
  color: var(--sand);
  padding-block: clamp(3rem, 7vw, 5rem) 2rem;
}
.site-footer a { color: var(--sand); }
.site-footer a:hover { color: #fff; }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(232,226,212,0.16);
}
.footer-brand .footer-mark {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin-bottom: 1.2rem;
}
.footer-brand .footer-mark img { width: 40px; height: 40px; filter: invert(1) brightness(1.6); }
.footer-tagline {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sand);
  line-height: 1.15;
  max-width: 20ch;
}
.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-light);
  margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 0.7rem; }
.footer-col a { font-size: 0.95rem; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 0.4rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(232,226,212,0.24);
  border-radius: 50%;
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-social a:hover { background: rgba(232,226,212,0.12); border-color: var(--sand); }
.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--taupe-light);
}
.footer-bottom nav { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer-bottom a { color: var(--taupe-light); }
.footer-bottom a:hover { color: var(--sand); }

@media (max-width: 780px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 520px) {
  .footer-top { grid-template-columns: 1fr; gap: 2.2rem; }
}

/* =========================================================================
   Legal / simple pages
   ========================================================================= */
.page-hero {
  padding-top: clamp(3rem, 8vh, 6rem);
  padding-bottom: clamp(2rem, 5vw, 3.5rem);
}
.legal { max-width: 72ch; padding-bottom: var(--section-y); }
.legal h1 { font-size: clamp(2.2rem, 1.6rem + 2vw, 3rem); margin-bottom: 2rem; }
.legal h2 {
  font-size: 1.3rem;
  margin-top: 2.4rem;
  margin-bottom: 0.7rem;
  padding-top: 1.6rem;
  border-top: var(--line);
}
.legal h2:first-of-type { border-top: none; padding-top: 0; }
.legal p { margin-bottom: 1rem; color: var(--ink); }
.legal p.addr { line-height: 1.5; }
.legal a { text-decoration: underline; text-underline-offset: 2px; }
.legal .note {
  font-size: 0.85rem;
  color: var(--taupe);
  background: var(--surface);
  border-radius: var(--radius);
  padding: 0.9rem 1.1rem;
  margin: 1rem 0 1.6rem;
}

/* Danke page */
.thanks {
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--section-y) var(--gutter);
}
.thanks-inner { max-width: 46ch; display: grid; gap: 1.3rem; justify-items: center; }
.thanks-badge {
  width: 64px; height: 64px;
  display: grid; place-items: center;
  background: var(--green);
  color: var(--sand-light);
  border-radius: 50%;
}
.thanks-badge svg { width: 30px; height: 30px; }
.thanks h1 { font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem); }
.thanks p { color: var(--taupe); }

/* Utilities */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.stack-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.6rem; }
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute;
  left: 0.75rem; top: -3rem;
  z-index: 200;
  background: var(--green);
  color: var(--sand-light);
  padding: 0.6rem 1rem;
  border-radius: var(--radius);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 0.75rem; color: var(--sand-light); }

/* Reveal on scroll — nur aktiv wenn JS vorhanden (.js), sonst immer sichtbar */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.js .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}
