/* ===========================================================
   learnandgrow-coaching — Stylesheet
   Palette:  Ink #24352A · Sage #6B9071 · Deep Blue #2E4C6D
             Gold #E3A23B · Paper #FBF8F1 · Card #F1EBDC
   Type:     Fraunces (Display) · Karla (Body/UI)
   =========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,500&family=Karla:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root{
  --ink: #24352A;
  --ink-soft: #4A5A4F;
  --sage: #6B9071;
  --sage-dark: #4F7355;
  --blue: #2E4C6D;
  --gold: #E3A23B;
  --paper: #FBF8F1;
  --card: #F1EBDC;
  --line: #DED4BE;
  --max: 1080px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }

body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 0.5em 0;
}

h1{ font-size: clamp(2.1rem, 4.5vw, 3.4rem); font-weight: 600; }
h2{ font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3{ font-size: 1.25rem; font-weight: 600; }

p{ margin: 0 0 1em 0; }
a{ color: var(--blue); text-decoration: none; }
a:hover{ color: var(--sage-dark); }

/* Focus visibility for accessibility */
a:focus-visible, button:focus-visible{
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow{
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--sage-dark);
}

/* ---------- Header / Nav ---------- */
.site-header{
  padding: 22px 0 18px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  position: relative;
  z-index: 200;
}
.site-header .wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.brand img{
  height: 52px;
  width: 52px;
  object-fit: contain;
}
.brand-name{
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--ink);
}
.brand-name span{
  display: block;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.03em;
}

nav.main-nav ul{
  list-style: none;
  display: flex;
  gap: 28px;
  margin: 0;
  padding: 0;
}
nav.main-nav a{
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a[aria-current="page"]{
  border-bottom-color: var(--gold);
  color: var(--ink);
}

/* ---------- Mobile nav toggle ---------- */
.nav-toggle{
  display: none;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle svg{ width: 22px; height: 22px; color: var(--ink); }
.nav-toggle .icon-close{ display: none; }
.nav-toggle[aria-expanded="true"] .icon-open{ display: none; }
.nav-toggle[aria-expanded="true"] .icon-close{ display: block; }

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.btn-primary{
  background: var(--sage);
  color: #fff;
  box-shadow: 0 4px 14px rgba(107,144,113,0.28);
}
.btn-primary:hover{
  background: var(--sage-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107,144,113,0.35);
}
.btn-ghost{
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-ghost:hover{
  border-color: var(--sage-dark);
  color: var(--sage-dark);
  transform: translateY(-2px);
}

/* ---------- Hero with "Lernweg" signature path ---------- */
.hero{
  position: relative;
  padding: 76px 0 96px 0;
  overflow: hidden;
}
.hero::before{
  content: '';
  position: absolute;
  top: -120px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(107,144,113,0.16) 0%, rgba(227,162,59,0.08) 45%, transparent 72%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
.hero .wrap{
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-copy p.lead{
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 46ch;
}
.hero-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 30px 0;
}
.hero-tags span{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px 8px 12px;
  border-radius: 999px;
  box-shadow: 0 2px 6px rgba(36,53,42,0.05);
}
.hero-tags svg{
  width: 18px;
  height: 18px;
  color: var(--sage-dark);
  flex-shrink: 0;
}
.hero-actions{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.lernweg-svg{ width: 100%; height: auto; display: block; }
.lernweg-svg .path-line{
  fill: none;
  stroke: var(--sage);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 6 10;
}
.lernweg-svg .node{ fill: var(--gold); }
.lernweg-svg .node.blue{ fill: var(--blue); }
.lernweg-svg .leaf{ fill: var(--sage); opacity: 0.85; }

/* Growing-tree hero illustration — recognizable silhouette + word callouts */
.tree-svg{ width: 100%; height: auto; display: block; max-width: 400px; margin: 0 auto; }
.tree-svg .trunk-shape{ fill: var(--sage-dark); }
.tree-svg .ground-shadow{ fill: var(--line); opacity: 0.5; }
.tree-svg .canopy circle{ fill: var(--sage); }
.tree-svg .canopy circle:nth-child(1){ opacity: 1; }
.tree-svg .canopy circle:nth-child(2){ opacity: 0.95; }
.tree-svg .canopy circle:nth-child(3){ opacity: 0.95; }
.tree-svg .canopy circle:nth-child(4){ opacity: 0.9; }
.tree-svg .canopy circle:nth-child(5){ opacity: 0.9; }
.tree-svg .canopy circle:nth-child(6){ opacity: 0.9; }
.tree-svg .node{ fill: var(--gold); }
.tree-svg .node.blue{ fill: var(--blue); }
.tree-svg .leader-line{
  stroke: var(--line);
  stroke-width: 1.5;
  stroke-dasharray: 2 4;
}
.tree-svg .word-leaf{
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 600;
  font-size: 19px;
  fill: var(--sage-dark);
}
.tree-svg .word-leaf.c-sage{ fill: var(--sage-dark); }
.tree-svg .word-leaf.c-gold{ fill: var(--gold); }
.tree-svg .word-leaf.c-blue{ fill: var(--blue); }
.tree-caption{
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--sage-dark);
  margin: 10px 0 0 0;
}

/* thin winding divider reused between sections, echoes hero path */
.path-divider{
  width: 100%;
  height: 34px;
  display: block;
  margin: 0 auto;
}
.path-divider path{
  fill: none;
  stroke: var(--line);
  stroke-width: 2;
}
.path-divider circle{ fill: var(--gold); }

/* ---------- Sections ---------- */
section{ padding: 64px 0; }
.section-alt{ background: var(--card); }
.section-head{ max-width: 640px; margin-bottom: 40px; }

.grid-3{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.grid-2{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 2px 10px rgba(36,53,42,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(36,53,42,0.10);
}
.card .icon{
  width: 42px; height: 42px;
  margin-bottom: 16px;
  color: var(--sage-dark);
}
.card h3{ margin-bottom: 10px; }
.card p{ color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 0; }

.quote-block{
  border-left: 3px solid var(--gold);
  padding-left: 22px;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink);
  margin: 40px 0;
}

/* ---------- About page portrait/frame ---------- */
.portrait-frame{
  background: var(--card);
  border-radius: 22px;
  padding: 34px;
  border: 1px solid var(--line);
}
.portrait-frame img{
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: contain;
  background: var(--paper);
  display: block;
  margin: 0 auto 20px auto;
  border: 1px solid var(--line);
}
.portrait-frame img.diana-photo{
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px auto;
  border: 3px solid var(--paper);
  box-shadow: 0 4px 16px rgba(36,53,42,0.12);
}
.timeline{
  border-left: 2px dashed var(--sage);
  margin-left: 8px;
  padding-left: 26px;
}
.timeline .step{ position: relative; padding-bottom: 28px; }
.timeline .step:last-child{ padding-bottom: 0; }
.timeline .step::before{
  content: '';
  position: absolute;
  left: -32px;
  top: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--paper);
}
.timeline h3{ margin-bottom: 4px; font-size: 1.05rem; }
.timeline p{ color: var(--ink-soft); margin-bottom: 0; font-size: 0.95rem; }

/* ---------- Contact ---------- */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.contact-card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 34px;
}
.contact-item{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-item:last-child{ margin-bottom: 0; }
.contact-item strong{ display: block; font-size: 0.85rem; color: var(--ink-soft); font-weight: 700; }
.contact-item a, .contact-item span{ font-size: 1.02rem; }

/* ---------- Footer ---------- */
footer{
  border-top: 1px solid var(--line);
  padding: 34px 0;
  background: var(--paper);
}
footer .wrap{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
footer .foot-links{
  display: flex;
  gap: 22px;
  list-style: none;
  padding: 0;
  margin: 0;
}
footer .foot-links a{ color: var(--ink-soft); font-size: 0.9rem; }
footer .copyright{ color: var(--ink-soft); font-size: 0.85rem; }

/* ---------- Legal pages ---------- */
.legal h2{ margin-top: 2em; }
.legal p, .legal li{ color: var(--ink-soft); }
.legal .updated{
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

/* ---------- Empathy quotes (problem recognition) ---------- */
.empathy-quotes{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.empathy-quote{
  position: relative;
  margin: 0;
  padding: 18px 22px 18px 50px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  color: var(--ink-soft);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-size: 1.02rem;
  box-shadow: 0 2px 8px rgba(36,53,42,0.04);
}
.empathy-quote::before{
  content: '„';
  position: absolute;
  left: 16px;
  top: 8px;
  font-family: 'Fraunces', serif;
  font-size: 2.2rem;
  font-style: normal;
  color: var(--gold);
  line-height: 1;
}

/* ---------- Trust bar ---------- */
.trust-bar{
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding-top: 28px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
}
.trust-item{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.trust-item svg{ width: 20px; height: 20px; color: var(--sage-dark); flex-shrink: 0; }

/* ---------- Card icons (hand-drawn style) ---------- */
.card-icon{
  width: 46px; height: 46px;
  margin-bottom: 16px;
  color: var(--sage-dark);
}
.card-icon svg{ width: 100%; height: 100%; }

/* ---------- Testimonials ---------- */
.testimonial{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px 26px 22px 26px;
  box-shadow: 0 2px 10px rgba(36,53,42,0.05);
  height: 100%;
}
.testimonial p.quote{
  font-family: 'Fraunces', serif;
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  margin-bottom: 16px;
}
.testimonial .author{
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--ink-soft);
}
.testimonial .author .dot{
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.testimonial.placeholder{
  border: 1px dashed var(--sage-dark);
  background: var(--card);
}
.testimonial.placeholder p.quote{ color: var(--gold); font-style: normal; font-family: 'Karla', sans-serif; font-size: 0.9rem; }

/* ---------- Photo placeholder ---------- */
.photo-placeholder{
  width: 100%;
  aspect-ratio: 4/5;
  max-width: 260px;
  margin: 0 auto 20px auto;
  border-radius: 20px;
  border: 2px dashed var(--sage-dark);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
}
.photo-placeholder svg{ width: 48px; height: 48px; color: var(--sage-dark); opacity: 0.6; }
.photo-placeholder span{ font-size: 0.82rem; color: var(--gold); font-weight: 600; }

/* ---------- Process steps (Ablauf) ---------- */
.process{
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
}
.process .proc-step{
  counter-increment: step;
  position: relative;
  padding: 0 0 34px 56px;
  border-left: 2px dashed var(--sage);
  margin-left: 17px;
}
.process .proc-step:last-child{ border-left-color: transparent; padding-bottom: 0; }
.process .proc-step::before{
  content: counter(step);
  position: absolute;
  left: -19px;
  top: -2px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.process h3{ margin-bottom: 6px; }
.process p{ color: var(--ink-soft); margin-bottom: 0; }

/* Compact process cards (Ablauf overview) */
.process-card{ text-align: left; }
.proc-num{
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.process-card h3{ font-size: 1.02rem; margin-bottom: 6px; }
.process-card p{ color: var(--ink-soft); font-size: 0.88rem; margin-bottom: 0; }

/* ---------- Pricing table ---------- */
.price-table{
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.price-table th, .price-table td{
  text-align: left;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}
.price-table th{
  background: var(--card);
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  color: var(--ink);
}
.price-table td{ color: var(--ink-soft); }
.price-table tr:last-child td{ border-bottom: none; }
.price-table .price-val{ color: var(--ink); font-weight: 700; }
.price-note{
  background: var(--card);
  border: 1px dashed var(--sage-dark);
  border-radius: 12px;
  padding: 16px 20px;
  font-size: 0.88rem;
  color: var(--ink-soft);
  margin-top: 16px;
}
.price-note strong{ color: var(--sage-dark); }

/* ---------- FAQ Accordion ---------- */
.faq-item{
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-bottom: 12px;
  background: var(--paper);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(36,53,42,0.04);
}
.faq-item summary{
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary::after{
  content: '';
  flex-shrink: 0;
  width: 12px; height: 12px;
  border-right: 2px solid var(--sage-dark);
  border-bottom: 2px solid var(--sage-dark);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  margin-top: -4px;
}
.faq-item[open] summary::after{ transform: rotate(-135deg); margin-top: 4px; }
.faq-item summary:hover{ background: var(--card); }
.faq-item .faq-answer{
  padding: 0 24px 22px 24px;
  color: var(--ink-soft);
  margin: 0;
}

/* ---------- Ask-a-question mini form ---------- */
.ask-question{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px 28px;
}

/* ---------- Certificates ---------- */
.cert-list{ list-style: none; padding: 0; margin: 0; }
.cert-list li{
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.cert-list li:last-child{ border-bottom: none; }
.cert-badge{
  flex-shrink: 0;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--sage-dark);
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.95rem;
}
.cert-list strong{ display: block; font-size: 0.98rem; }
.cert-list span{ color: var(--ink-soft); font-size: 0.88rem; }
.placeholder-text{ color: var(--gold); font-weight: 600; }

/* ---------- Contact form (mailto-based) ---------- */
/* ---------- Email fallback (below contact form) ---------- */
.email-fallback{
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  text-align: center;
}
.email-fallback p{
  font-size: 0.85rem;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.email-fallback-link{
  display: inline-block;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--sage-dark);
}
.email-fallback-link:hover{ color: var(--blue); }

.mode-toggle{
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
  background: var(--card);
  padding: 5px;
  border-radius: 12px;
}
.mode-btn{
  flex: 1;
  border: none;
  background: transparent;
  padding: 11px 14px;
  border-radius: 9px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.mode-btn.active{
  background: var(--paper);
  color: var(--sage-dark);
  box-shadow: 0 2px 6px rgba(36,53,42,0.08);
}
.mode-btn:hover:not(.active){ color: var(--ink); }

.contact-form{
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label{
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--ink-soft);
  display: block;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea{
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--paper);
  font-family: 'Karla', sans-serif;
  font-size: 0.98rem;
  color: var(--ink);
}
.contact-form textarea{ resize: vertical; min-height: 100px; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline: 2px solid var(--sage);
  outline-offset: 1px;
}
.contact-form .required::after{ content: " *"; color: var(--gold); }
.contact-form .form-hint{
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: -6px;
}
.contact-form button{ align-self: flex-start; }

/* ---------- Responsive ---------- */
@media (max-width: 860px){
  .hero .wrap{ grid-template-columns: 1fr; }
  .hero-visual{ order: -1; max-width: 280px; margin: 0 auto; }
  .grid-3{ grid-template-columns: 1fr; }
  .grid-2{ grid-template-columns: 1fr; }
  .contact-grid{ grid-template-columns: 1fr; }
  .price-table{ font-size: 0.88rem; }
  .price-table th, .price-table td{ padding: 10px 12px; }

  .site-header .wrap{ flex-wrap: nowrap; }
  .nav-toggle{ display: flex; }

  nav.main-nav{
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--paper);
    z-index: 100;
    display: none;
    flex-direction: column;
    padding: 90px 28px 28px 28px;
  }
  nav.main-nav.open{ display: flex; }
  nav.main-nav ul{
    flex-direction: column;
    gap: 4px;
  }
  nav.main-nav li{ border-bottom: 1px solid var(--line); }
  nav.main-nav a{
    display: block;
    padding: 16px 4px;
    font-family: 'Fraunces', serif;
    font-size: 1.15rem;
    font-weight: 500;
  }
  nav.main-nav a[aria-current="page"]{ color: var(--sage-dark); }
}

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