/* ============================================================
   Bruni Fehse · Systemisches Coaching & Beratung
   Ruhige, persönliche Website — Palette und Welle nach dem
   realen Ladenfenster-Foto; Struktur und Visualisierungen nach
   Brunis Feedback-Vorlage (PPTX, 08/2026). Schriften lokal (DSGVO).
   ============================================================ */

/* ---------- Schriften (lokal, latin inkl. Umlaute) ---------- */

@font-face {
  font-family: "Literata";
  font-style: normal;
  font-weight: 200 700;
  font-display: swap;
  src: url("fonts/Literata-normal-200-700.woff2") format("woff2");
}
@font-face {
  font-family: "Literata";
  font-style: italic;
  font-weight: 200 700;
  font-display: swap;
  src: url("fonts/Literata-italic-200-700.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("fonts/AlegreyaSans-normal-400.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("fonts/AlegreyaSans-normal-500.woff2") format("woff2");
}
@font-face {
  font-family: "Alegreya Sans";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("fonts/AlegreyaSans-normal-700.woff2") format("woff2");
}

/* ---------- Grundwerte ---------- */

:root {
  --paper: #faf8f2;
  --white: #ffffff;
  --beige: #f1ebde;
  --sage-wash: #e8eedf;
  --sage: #b9c7a8;
  --sage-deep: #8fa383;
  --pine: #33503f;
  --pine-deep: #24392d;
  --ink: #2c362e;
  --ink-soft: #5a6753;

  --serif: "Literata", Georgia, "Times New Roman", serif;
  --sans: "Alegreya Sans", "Segoe UI", system-ui, sans-serif;

  --measure: 64ch;
  --space-section: clamp(5rem, 3.5rem + 5.5vw, 9rem);
  --radius-card: 22px;
  --radius-panel: 26px;
  --shadow-card: 0 16px 34px -22px rgba(36, 57, 45, 0.28);
}

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

html {
  scroll-padding-top: 5.5rem;
}
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.0625rem;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (min-width: 720px) {
  body {
    font-size: 1.125rem;
  }
}

::selection {
  background: var(--sage);
  color: var(--pine-deep);
}

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

/* ---------- Typografie ---------- */

h1,
h2,
h3 {
  color: var(--pine);
  line-height: 1.2;
  text-wrap: balance;
  margin: 0;
}

h1 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(1.9rem, 1.25rem + 2.7vw, 3.05rem);
  line-height: 1.14;
  letter-spacing: -0.005em;
}

h2 {
  font-family: var(--serif);
  font-size: clamp(1.85rem, 1.35rem + 1.9vw, 2.6rem);
  font-weight: 500;
  margin-block: 0 2rem;
}

h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  margin-block: 2.75rem 1rem;
}

p {
  margin-block: 0 1.4em;
}

a {
  color: var(--pine);
  text-decoration: underline;
  text-decoration-color: var(--sage-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition: text-decoration-color 0.25s ease;
}
a:hover {
  text-decoration-color: var(--pine);
}

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

/* Nummerierter Abschnitts-Kicker (aus der Kundinnen-Vorlage) */
.kicker {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 1.1rem;
}

/* Betonte Link-Zeile mit Pfeil */
.link-line {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
}
.link-line a {
  text-decoration-thickness: 1.5px;
}
.arrow {
  display: inline-block;
  margin-left: 0.3rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

main:focus {
  outline: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 100;
  background: var(--pine);
  color: #fff;
  font-family: var(--sans);
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 1rem;
}

/* ---------- Kopfbereich ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(51, 80, 63, 0.1);
}

.site-header__inner {
  max-width: 1160px;
  margin-inline: auto;
  padding: 0.9rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  color: var(--pine);
  text-decoration: none;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--ink);
  text-decoration: none;
  padding-block: 0.35rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.site-nav a:hover {
  color: var(--pine);
  border-bottom-color: var(--sage-deep);
}
.site-nav a[aria-current="true"] {
  color: var(--pine);
  border-bottom-color: var(--pine);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(51, 80, 63, 0.25);
  border-radius: 999px;
  padding: 0.55rem 0.7rem;
  cursor: pointer;
  color: var(--pine);
  line-height: 0;
}
.nav-toggle:hover {
  border-color: var(--pine);
}

@media (max-width: 880px) {
  .nav-toggle {
    display: inline-flex;
  }
  .site-nav {
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid rgba(51, 80, 63, 0.12);
    display: none;
    box-shadow: 0 18px 30px -22px rgba(36, 57, 45, 0.35);
  }
  .site-nav.is-open {
    display: block;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.75rem clamp(1.25rem, 4vw, 2.5rem) 1.25rem;
  }
  .site-nav a {
    display: block;
    font-size: 1.08rem;
    padding-block: 0.85rem;
    border-bottom: 1px solid rgba(51, 80, 63, 0.08);
  }
  .site-nav li:last-child a {
    border-bottom-color: transparent;
  }
}

/* ---------- Layout-Bausteine ---------- */

.container {
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2.5rem);
}

.prose {
  max-width: var(--measure);
}
.prose--center {
  margin-inline: auto;
}

section {
  padding-block: var(--space-section);
}

.surface-white {
  background: var(--white);
}
.surface-paper {
  background: var(--paper);
}
.surface-sage {
  background: var(--sage-wash);
}
.surface-beige {
  background: var(--beige);
}

/* Wellen-Übergang — Motiv des Ladenfensters */
.wave {
  background: var(--from);
  color: var(--to);
  line-height: 0;
}
.wave svg {
  display: block;
  width: 100%;
  height: clamp(42px, 6.5vw, 82px);
}
.wave--flip svg {
  transform: scaleX(-1);
}

/* ---------- Icons: dünne Linien, ein Duktus, Salbei ---------- */

.icon {
  display: inline-block;
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--sage-deep);
  flex: none;
}
.icon--inline {
  vertical-align: -0.22em;
  margin-right: 0.5rem;
}

/* ---------- Hero ---------- */

.hero {
  padding-block: clamp(2.5rem, 2rem + 4vh, 5rem);
}

.hero__grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  min-height: min(74svh, 44rem);
}
@media (min-width: 880px) {
  .hero__grid {
    grid-template-columns: 1.08fr 0.92fr;
  }
}

.hero__location {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin: 1.4rem 0 0;
}

.hero__quotebox {
  margin: 1.9rem 0 0;
  background: var(--sage-wash);
  border-radius: var(--radius-panel);
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.5rem, 3.5vw, 2.5rem);
}
.hero__quotebox p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.25rem, 1rem + 1.1vw, 1.65rem);
  line-height: 1.5;
  color: var(--pine);
  margin: 0;
  text-wrap: balance;
}

.hero__action {
  margin: 2.1rem 0 0;
}

.hero__tagline {
  font-family: var(--sans);
  font-size: 0.98rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin: 2.4rem 0 0;
}

.hero__figure {
  margin: 0;
  position: relative;
  max-width: 440px;
  width: 100%;
  justify-self: center;
}
@media (min-width: 880px) {
  .hero__figure {
    justify-self: end;
  }
}
.hero__figure::before {
  content: "";
  position: absolute;
  inset: 5% -6% -4% auto;
  width: 100%;
  background: var(--sage);
  opacity: 0.5;
  border-radius: var(--radius-panel);
  z-index: 0;
}
.hero__figure img {
  position: relative;
  z-index: 1;
  border-radius: var(--radius-panel);
}

/* Ein ruhiger Auftritt beim Laden — die einzige Animation der Seite */
@media (prefers-reduced-motion: no-preference) {
  .hero .rise {
    opacity: 0;
    transform: translateY(14px);
    animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  }
  .hero .rise--2 {
    animation-delay: 0.15s;
  }
  .hero .rise--3 {
    animation-delay: 0.3s;
  }
  @keyframes rise {
    to {
      opacity: 1;
      transform: none;
    }
  }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  background: var(--pine);
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: 0.015em;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.btn:hover {
  background: var(--pine-deep);
}
.btn .arrow {
  margin-left: 0.45rem;
}

.cta-row {
  margin-top: 2.75rem;
  text-align: center;
}

/* ---------- Zitat-Panels (aus der Vorlage: ruhige, getönte Boxen) ---------- */

.quote-panel {
  margin: clamp(2.75rem, 2rem + 3vw, 4.5rem) auto;
  max-width: 46rem;
  border-radius: var(--radius-panel);
  padding: clamp(1.75rem, 3vw, 2.6rem) clamp(1.75rem, 4vw, 3rem);
  background: var(--sage-wash);
}
.quote-panel--white {
  background: var(--white);
  box-shadow: var(--shadow-card);
}
.quote-panel--beige {
  background: var(--beige);
}
.quote-panel p {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(1.3rem, 1.05rem + 1.2vw, 1.75rem);
  line-height: 1.5;
  color: var(--pine);
  text-align: center;
  text-wrap: balance;
  margin: 0;
}
.quote-panel cite {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.92rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.8rem;
}
.quote-panel--lead p {
  font-size: clamp(1.45rem, 1.1rem + 1.6vw, 2.1rem);
}

/* ---------- Zweispalter ---------- */

.split {
  display: grid;
  gap: clamp(2.75rem, 5vw, 5.5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .split {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

/* ---------- Mein Weg: Punkt-Timeline (Vorlage Folie 3) ---------- */

.timeline {
  margin: 0;
  position: relative;
  padding-left: 1.9rem;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 2px;
  background: var(--sage);
}
.timeline .tl-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 1.5rem 0 0;
  position: relative;
}
.timeline .tl-label:first-child {
  margin-top: 0;
}
.timeline .tl-label::before {
  content: "";
  position: absolute;
  left: -1.9rem;
  top: 0.28em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--pine);
  border: 2px solid var(--paper);
  box-shadow: 0 0 0 2px var(--sage);
}
.timeline dd {
  margin: 0.15rem 0 0;
  line-height: 1.55;
}

.aside-label {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pine);
  margin: 0 0 1.5rem;
}

/* ---------- Anlässe: 4 Karten (Vorlage Folie 6) ---------- */

.cards {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-block: 2.75rem;
}
@media (min-width: 720px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.1rem;
  align-items: center;
}
.card__num {
  grid-row: span 2;
  align-self: start;
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 50%;
  background: var(--sage-wash);
  color: var(--pine);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  display: grid;
  place-items: center;
}
.card h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin: 0;
  align-self: end;
}
.card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

/* ---------- Ablauf: Fakten-Karten + Gesprächs-Stepper (Folie 7) ---------- */

.fact-cards {
  display: grid;
  gap: clamp(1.1rem, 2vw, 1.6rem);
  margin-block: 2.75rem;
}
@media (min-width: 720px) {
  .fact-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.fact-card {
  background: var(--sage-wash);
  border-radius: var(--radius-card);
  padding: 1.4rem 1.6rem;
  line-height: 1.5;
}
.fact-card .icon {
  display: block;
  width: 1.35rem;
  height: 1.35rem;
  margin-bottom: 0.7rem;
  color: var(--pine);
}
.fact-card .label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.3rem;
}
.fact-card .more {
  margin: 0.55rem 0 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.stepper-block {
  margin-block: 3.25rem;
}

.stepper {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 1.6rem;
}
.stepper .step-name {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--pine);
  margin: 0;
}
.stepper .step-q {
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0.25rem 0 0;
}

.stepper li {
  position: relative;
}
.stepper li::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--pine);
}
.stepper li:not(:last-child)::after {
  content: "";
  position: absolute;
  background: var(--sage);
}

/* Mobil: vertikale Linie mit Punkten */
@media (max-width: 859.98px) {
  .stepper li {
    padding-left: 2.1rem;
  }
  .stepper li::before {
    left: 0.15rem;
    top: 0.28em;
  }
  .stepper li:not(:last-child)::after {
    left: calc(0.15rem + 6.5px);
    top: calc(0.28em + 17px);
    bottom: -1.5rem;
    width: 2px;
  }
}

/* Desktop: horizontale Reihe, Punkte auf einer verbundenen Linie */
@media (min-width: 860px) {
  .stepper {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.25rem;
  }
  .stepper li {
    padding-top: 2.3rem;
    text-align: center;
  }
  .stepper li::before {
    left: 50%;
    transform: translateX(-50%);
    top: 0;
  }
  .stepper li:not(:last-child)::after {
    top: 6.5px;
    height: 2px;
    left: calc(50% + 14px);
    right: calc(-50% - 1.25rem + 14px);
  }
}

/* ---------- Kontakt ---------- */

.contact-grid {
  display: grid;
  gap: clamp(2.75rem, 5vw, 5rem);
  align-items: start;
}
@media (min-width: 960px) {
  .contact-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  }
}

.contact-mail {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 1.75rem 0;
}

.form-card {
  background: var(--white);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
  padding: clamp(1.75rem, 4vw, 2.75rem);
}
.form-card .aside-label {
  margin-bottom: 1.75rem;
}

.form-field {
  margin-bottom: 1.7rem;
}
.form-field label {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--pine);
  margin-bottom: 0.3rem;
}
.form-field .optional {
  color: var(--ink-soft);
  font-weight: 400;
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid rgba(51, 80, 63, 0.3);
  border-radius: 0;
  padding: 0.45rem 0.1rem;
  font-family: var(--serif);
  font-size: 1.02rem;
  line-height: 1.5;
  color: var(--ink);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--ink-soft);
  opacity: 1;
}
.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-bottom: 2px solid var(--pine);
  background: rgba(232, 238, 223, 0.45);
}
.form-field textarea {
  resize: vertical;
  min-height: 7.5rem;
}

.form-note {
  font-family: var(--sans);
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 1.3rem 0 0;
}

/* ---------- Fußbereich ---------- */

.site-footer {
  background: var(--pine-deep);
  color: var(--sage-wash);
  padding-block: 3.5rem 2.75rem;
}
.site-footer a {
  color: var(--sage-wash);
  text-decoration-color: var(--sage-deep);
}
.site-footer a:hover {
  text-decoration-color: var(--sage-wash);
}
.footer-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem 3rem;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 0 0.3rem;
}
.footer-meta {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--sage);
  margin: 0;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.75rem;
  font-family: var(--sans);
  font-size: 0.95rem;
  align-items: center;
}
.footer-links .icon {
  width: 1rem;
  height: 1rem;
  color: var(--sage);
  margin-right: 0.4rem;
}
.footer-copy {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(232, 238, 223, 0.18);
  font-family: var(--sans);
  font-size: 0.88rem;
  color: var(--sage);
}

/* ---------- Rechtsseiten ---------- */

.legal-main {
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.legal-main h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 1.5rem + 2vw, 2.8rem);
  font-weight: 500;
  letter-spacing: 0;
  margin-bottom: 2.25rem;
}
.legal-main h2 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-block: 2.75rem 1rem;
}
.placeholder {
  border: 1px dashed var(--sage-deep);
  border-radius: 12px;
  background: var(--sage-wash);
  padding: 1.25rem 1.5rem;
  margin-block: 1.5rem;
}
.placeholder p {
  margin: 0;
}
.placeholder .todo {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pine);
  margin-bottom: 0.5rem;
}
