/* mein-balkongarten.de - Stylesheet
   Clean, lesbar, AdSense-freundlich, mobile-first */

:root {
  --color-bg: #ffffff;
  --color-bg-soft: #f6f9f4;
  --color-bg-dark: #1c2620;
  --color-text: #1f2a23;
  --color-text-soft: #4a5b51;
  --color-text-inverse: #e8ede9;
  --color-text-inverse-soft: #a8b3ac;
  --color-primary: #3a7d44;
  --color-primary-dark: #285a31;
  --color-accent: #f4b942;
  --color-border: #e4ebe1;
  --color-border-dark: #354238;
  --color-link: #2b6a35;
  --color-link-hover: #1f4d27;

  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: Georgia, "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;

  --max-w: 720px;
  --max-w-wide: 1180px;
  --radius: 8px;
  --shadow-sm: 0 1px 2px rgba(20, 40, 25, .06);
  --shadow-md: 0 4px 14px rgba(20, 40, 25, .08);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

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

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

a { color: var(--color-link); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--color-link-hover); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-sans);
  line-height: 1.25;
  margin: 1.6em 0 .5em;
  color: var(--color-text);
}
h1 { font-size: 2rem; margin-top: .2em; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; }

/* ---- Layout ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 20px; }
.container-wide { max-width: var(--max-w-wide); margin: 0 auto; padding: 0 20px; }

/* ---- Header ---- */
.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(180%) blur(6px);
  background-color: rgba(255,255,255,.92);
}
.site-header .container-wide { padding: 0 20px; }
.header-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; padding: 12px 0 8px;
}
.header-ad-slot {
  flex: 1; min-height: 0;
  display: flex; align-items: center; justify-content: flex-end;
}
.ads-on .header-ad-slot { min-height: 90px; max-width: 728px; }
.site-nav { padding: 0 0 10px; }
.site-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--color-text); }
.site-logo img { height: 80px; width: auto; }
.site-logo span { font-weight: 700; font-size: 1.1rem; }
.site-nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px;
  justify-content: flex-start;
}
.site-nav a {
  text-decoration: none; color: var(--color-text);
  font-weight: 600; font-size: 1rem;
}
.site-nav a:hover { color: var(--color-primary); }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  font-size: 1.4rem; color: var(--color-text);
}

@media (max-width: 760px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; width: 100%; }
  .site-nav.open {
    display: block;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--color-bg); border-bottom: 1px solid var(--color-border);
    padding: 12px 20px 16px;
  }
  .site-nav ul { flex-direction: column; gap: 14px; }
  .site-header .container-wide { flex-wrap: wrap; position: relative; }
}

/* ---- Breadcrumb ---- */
.breadcrumb {
  font-size: .88rem; color: var(--color-text-soft);
  padding: 14px 0 0;
}
.breadcrumb ol {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.breadcrumb li::after { content: "›"; margin-left: 6px; color: #b0bdb3; }
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb a { color: var(--color-text-soft); text-decoration: none; }
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb li[aria-current="page"] { color: var(--color-text); font-weight: 500; }

/* ---- Hero (Startseite) ---- */
.hero {
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  padding: 56px 0 32px;
  text-align: center;
}
.hero h1 { font-size: 2.4rem; margin-bottom: .3em; }
.hero p { font-size: 1.15rem; color: var(--color-text-soft); max-width: 580px; margin: 0 auto 1em; }

/* ---- Beitragsliste ---- */
.post-grid {
  display: grid; gap: 22px;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  padding: 32px 0 48px;
}
.post-card {
  display: flex; flex-direction: column;
  border: 1px solid var(--color-border); border-radius: var(--radius);
  padding: 20px; background: var(--color-bg);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.post-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: #d1ddc9; }
.post-card a { text-decoration: none; color: inherit; }
.post-card h2 { margin: 0 0 8px; font-size: 1.15rem; line-height: 1.3; }
.post-card h2 a { color: var(--color-text); }
.post-card h2 a:hover { color: var(--color-primary); }
.post-card .post-meta { font-size: .85rem; color: var(--color-text-soft); margin-bottom: 10px; }
.post-card .post-excerpt { font-size: .95rem; color: var(--color-text-soft); margin: 0; }

/* ---- Article + Sidebar Grid (Beitrags-Layout) ---- */
.post-layout {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1fr) 320px;
  padding: 24px 0 56px;
}
@media (max-width: 980px) {
  .post-layout { grid-template-columns: 1fr; gap: 24px; }
  .post-sidebar { order: 2; }
}

/* Article-Spalte */
.post-article header.post-header { margin-bottom: 28px; padding-top: 12px; }
.post-article h1 { font-size: 2.1rem; }
.post-article .post-meta { color: var(--color-text-soft); font-size: .92rem; margin-bottom: 8px; }
.post-content { font-family: var(--font-serif); font-size: 1.08rem; line-height: 1.7; }
.post-content h2, .post-content h3 { font-family: var(--font-sans); }
.post-content img { border-radius: var(--radius); margin: 1.5em auto; }
.post-content blockquote {
  border-left: 4px solid var(--color-primary);
  padding: .2em 1em; margin: 1.5em 0;
  color: var(--color-text-soft); font-style: italic;
}
.post-content ul, .post-content ol { padding-left: 1.4em; margin: 0 0 1em; }
.post-content li { margin-bottom: .4em; }
.post-content a { color: var(--color-link); }
.post-content table { border-collapse: collapse; width: 100%; margin: 1.5em 0; font-size: .95rem; }
.post-content th, .post-content td { border: 1px solid var(--color-border); padding: 8px 10px; text-align: left; }
.post-content th { background: var(--color-bg-soft); }

/* ---- Sidebar ---- */
.post-sidebar {
  display: flex; flex-direction: column; gap: 22px;
}
.sidebar-block {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px;
}
.sidebar-block h3 {
  margin: 0 0 12px; font-size: 1rem;
  color: var(--color-text); letter-spacing: .02em;
  text-transform: uppercase; font-weight: 600;
}
.sidebar-block ul { list-style: none; padding: 0; margin: 0; }
.sidebar-block li { margin-bottom: 10px; line-height: 1.35; }
.sidebar-block li:last-child { margin-bottom: 0; }
.sidebar-block a { text-decoration: none; color: var(--color-text); font-size: .93rem; }
.sidebar-block a:hover { color: var(--color-primary); text-decoration: underline; }

.sidebar-block.sidebar-cta {
  background: var(--color-bg-soft);
  border-color: #cde0c9;
}
.sidebar-block.sidebar-cta p { margin: 0; font-size: .92rem; color: var(--color-text-soft); }

/* Sticky-Sidebar auf Desktop */
@media (min-width: 981px) {
  .post-sidebar { position: sticky; top: 80px; align-self: flex-start; }
}

/* ---- AdSense slots: Default unsichtbar. Nur ads-on Mode zeigt Container. ---- */
.ad-slot { display: none; }
.ads-on .ad-slot {
  display: block;
  margin: 24px auto;
  text-align: center;
  border-radius: var(--radius);
}
.ads-on .ad-slot ins { display: block; }
.ads-on .ad-slot.ad-top     { min-height: 100px; max-width: 728px; }
.ads-on .ad-slot.ad-in      { min-height: 280px; max-width: 728px; }
.ads-on .ad-slot.ad-sidebar { min-height: 600px; padding-bottom: 10px; }
/* "Anzeige"-Label nur wenn Slots sichtbar UND echte Ad drin */
.ads-on .ad-slot:has(ins[data-adsbygoogle-status]):before {
  content: "Anzeige"; display: block;
  font-size: .7rem; color: #999;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 0 4px;
}

/* "Mehr lesen" */
.related-posts {
  margin-top: 40px; padding-top: 22px;
  border-top: 1px solid var(--color-border);
}
.related-posts h2 { font-size: 1.15rem; margin-top: 0; }
.related-posts ul { list-style: none; padding: 0; margin: 0; }
.related-posts li { margin-bottom: 8px; }

/* ---- Footer (modular) ---- */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-inverse-soft);
  margin-top: 64px;
  font-size: .92rem;
}
.footer-main {
  padding: 48px 0 28px;
}
.footer-main .container-wide {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 880px) {
  .footer-main .container-wide {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .footer-main .container-wide { grid-template-columns: 1fr; }
}
.footer-col h4 {
  color: var(--color-text-inverse); font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  margin: 0 0 14px; font-weight: 600;
}
.footer-col p { color: var(--color-text-inverse-soft); margin: 0 0 12px; line-height: 1.55; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 9px; }
.footer-col a {
  color: var(--color-text-inverse-soft);
  text-decoration: none;
  font-size: .93rem;
}
.footer-col a:hover { color: var(--color-text-inverse); }
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.footer-brand .footer-logo img {
  height: 36px; width: auto;
  filter: brightness(0) invert(1) opacity(.9);
}
.footer-brand .footer-logo span {
  font-weight: 700; color: var(--color-text-inverse); font-size: 1.05rem;
}
.footer-bottom {
  border-top: 1px solid var(--color-border-dark);
  padding: 18px 0;
  color: #7c8a82;
  font-size: .85rem;
}
.footer-bottom .container-wide {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}

/* ---- Utility ---- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.muted { color: var(--color-text-soft); }
.text-center { text-align: center; }

/* VG-Wort Pixel */
.vgwort-pixel { width: 1px; height: 1px; border: 0; }

/* ---- Print ---- */
@media print {
  .site-header, .site-footer, .ad-slot, .related-posts,
  .post-sidebar, .breadcrumb, .nav-toggle { display: none; }
  .post-layout { grid-template-columns: 1fr; padding: 0; }
  body { color: #000; }
  a { color: #000; text-decoration: none; }
}

/* ---- Hero Video (oben im Beitrag) ---- */
.post-hero-video {
  margin: 0 0 28px;
}
.video-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-md);
}
.video-wrap iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.video-source {
  margin: 6px 4px 0;
  font-size: .8rem;
  color: var(--color-text-soft);
}
.video-source a { color: var(--color-text-soft); text-decoration: underline; }
.video-source a:hover { color: var(--color-primary); }

/* FAQ-Block (Accordion-Style) */
.faq-section { margin: 36px 0; }
.faq-section > h2 {
  font-size: 1.5rem;
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-primary);
}
.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  margin-bottom: 10px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  overflow: hidden;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.faq-item:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.06);
  border-color: var(--color-primary);
}
.faq-item[open] {
  border-color: var(--color-primary);
  box-shadow: 0 3px 10px rgba(46,125,50,0.08);
}
.faq-item > summary {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--color-text);
  padding: 16px 48px 16px 18px;
  cursor: pointer;
  list-style: none;
  position: relative;
  user-select: none;
}
.faq-item > summary::-webkit-details-marker { display: none; }
.faq-item > summary::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  transform: translateY(-75%) rotate(45deg);
  transition: transform .2s ease;
}
.faq-item[open] > summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item > summary:hover { color: var(--color-primary); }
.faq-answer {
  padding: 0 18px 18px;
  color: var(--color-text-soft);
  line-height: 1.65;
}
.faq-answer p { margin: 0 0 10px; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { margin: 8px 0 0; padding-left: 22px; }
.faq-answer li { margin-bottom: 4px; }

/* ---- Further Reading: Authority + interne Links ---- */
.further-reading {
  margin: 40px 0 24px;
  padding: 24px;
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-primary);
}
.further-reading h2 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}
.further-reading ul {
  list-style: disc; padding-left: 1.3em; margin: 0;
}
.further-reading li {
  margin-bottom: 12px; line-height: 1.55;
  color: var(--color-text-soft);
}
.further-reading li a {
  color: var(--color-link); font-weight: 500;
}
.further-reading li:last-child { margin-bottom: 0; }

/* ---- Post-Card mit Bild oben ---- */
.post-card { padding: 0; overflow: hidden; }
.post-card-img {
  display: block; width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--color-bg-soft);
  overflow: hidden;
  text-decoration: none;
}
.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-body { padding: 18px 20px 20px; }
.post-card-body h2 { margin: 0 0 8px; font-size: 1.1rem; line-height: 1.3; }
.post-card-body h2 a { color: var(--color-text); text-decoration: none; }
.post-card-body h2 a:hover { color: var(--color-primary); }

/* AdSense-Slot-Regeln stehen oben im .ad-slot Block. */


/* ---- Megamenu Dropdown unter "Beiträge" ---- */
.has-dropdown { position: relative; }
.has-dropdown > a { display: inline-flex; align-items: center; gap: 4px; }
.has-dropdown > a::after {
  content: "▾"; font-size: .7em; color: #b0bdb3; margin-left: 2px;
}
.dropdown-panel {
  position: absolute; top: 100%; left: 0; transform: translateY(8px);
  min-width: 340px;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 14px;
  opacity: 0; visibility: hidden;
  transition: opacity .15s, visibility .15s, transform .15s;
  z-index: 60;
}
.dropdown-panel-wide { width: 560px; max-width: 90vw; }
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown-panel h4 {
  margin: 0 0 8px; font-size: .75rem; color: var(--color-text-soft);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 600;
}
.dropdown-panel ul { list-style: none; padding: 0; margin: 0; }
.dropdown-panel li { margin-bottom: 4px; }
.dropdown-panel a {
  display: block; padding: 8px 10px; border-radius: 6px;
  color: var(--color-text); text-decoration: none; font-size: .92rem;
  line-height: 1.35; transition: background .12s;
}
.dropdown-panel a:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.dropdown-panel .dropdown-all {
  margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--color-border);
}
.dropdown-panel .dropdown-all a {
  font-weight: 500; color: var(--color-primary); font-size: .9rem;
}

@media (max-width: 760px) {
  .dropdown-panel { position: static; transform: none; min-width: 0; width: 100%; box-shadow: none; padding: 8px 0; }
  .has-dropdown > a::after { display: none; }
}

/* ---- Beitrags-Meta: Autor ---- */
.post-byline {
  color: var(--color-text-soft);
  font-size: .92rem;
  margin: 2px 0 4px;
}
.post-byline strong { color: var(--color-text); font-weight: 500; }


/* ---- Megamenu: Beitrags-Cards mit Bild ---- */
.dropdown-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.dropdown-card {
  display: flex; gap: 10px;
  padding: 6px; border-radius: 6px;
  text-decoration: none; color: inherit;
  transition: background .12s;
}
.dropdown-card:hover { background: var(--color-bg-soft); color: var(--color-primary); }
.dropdown-card .thumb {
  flex: 0 0 70px; width: 70px; height: 44px;
  border-radius: 4px; overflow: hidden;
  background: var(--color-bg-soft);
}
.dropdown-card .thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.dropdown-card .title {
  font-size: .85rem; line-height: 1.3; color: var(--color-text);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.dropdown-card:hover .title { color: var(--color-primary); }
.dropdown-item-loading { padding: 12px; color: var(--color-text-soft); font-size: .9rem; }
@media (max-width: 600px) {
  .dropdown-grid { grid-template-columns: 1fr; }
  .dropdown-panel-wide { width: 100%; }
}

/* ---- Post-Header: Datum + Autor nebeneinander ---- */
.post-header-meta {
  display: flex; align-items: center; flex-wrap: wrap;
  gap: 10px;
  color: var(--color-text-soft); font-size: .92rem;
  margin: 4px 0 8px;
}
.post-header-meta .sep { color: #b0bdb3; }
.post-header-meta strong { color: var(--color-text); font-weight: 500; }

@media (max-width: 760px) {
  .header-top { flex-wrap: wrap; }
  .header-ad-slot { display: none; }
}

/* ---- Wiki: Lead-Box "Auf einen Blick" ---- */
.wiki-lead {
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin: 18px 0 28px;
}
.wiki-lead h2 {
  margin: 0 0 8px; font-size: .8rem;
  text-transform: uppercase; letter-spacing: .12em;
  color: var(--color-primary);
}
.wiki-lead p { margin: 0; font-size: 1.05rem; line-height: 1.55; color: var(--color-text); }

/* Wiki-Index Grid */
.wiki-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  padding: 24px 0 48px;
}
.wiki-entry-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 18px 20px;
  text-decoration: none; color: inherit;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.wiki-entry-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: #cde0c9;
}
.wiki-entry-card h3 {
  margin: 0 0 6px; font-size: 1.1rem; color: var(--color-text);
}
.wiki-entry-card p {
  margin: 0; font-size: .9rem; color: var(--color-text-soft);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

/* === Startseite: Mehr-Laden-Button === */
.load-more-wrap { text-align: center; margin: 28px 0 8px; }
.btn-load-more {
  display: inline-block;
  padding: 12px 28px;
  background: var(--color-primary);
  color: #fff;
  border: 0;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(46,125,50,0.18);
  transition: background .15s ease, transform .15s ease;
}
.btn-load-more:hover { background: var(--color-primary-dark); transform: translateY(-1px); }
.btn-load-more:active { transform: translateY(0); }
.btn-load-more[hidden] { display: none; }

/* === Startseite: Projekttext Laura Fee === */
.about-laura {
  margin: 56px auto 16px;
  max-width: 760px;
}
.about-laura-inner {
  background: var(--color-bg-soft);
  border-left: 4px solid var(--color-primary);
  border-radius: 12px;
  padding: 28px 32px 22px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.about-laura-inner h2 {
  font-size: 1.6rem;
  margin: 0 0 14px;
  color: var(--color-primary);
}
.about-laura-inner p {
  margin: 0 0 14px;
  line-height: 1.7;
  font-size: 1.02rem;
}
.about-laura-inner p:last-of-type { margin-bottom: 0; }
.about-laura-inner a { color: var(--color-primary); text-decoration: underline; text-underline-offset: 2px; }
.laura-sign {
  margin-top: 18px !important;
  font-style: italic;
  color: var(--color-text-soft);
}
.laura-sign strong { color: var(--color-text); font-style: normal; }
@media (max-width: 600px) {
  .about-laura-inner { padding: 20px 18px; }
  .about-laura-inner h2 { font-size: 1.35rem; }
}

/* === Personal Hero (Laura Fee) === */
.hero-personal {
  padding: 56px 0 48px;
  background: linear-gradient(180deg, var(--color-bg-soft) 0%, var(--color-bg) 100%);
  text-align: left;
}
.hero-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 44px;
  align-items: center;
}
.hero-portrait {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  overflow: hidden;
  border: 6px solid #fff;
  box-shadow: 0 8px 30px rgba(46,125,50,0.18);
  background: var(--color-bg-soft);
}
.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}
.hero-text { max-width: 560px; }
.hero-eyebrow {
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .15em;
  color: var(--color-primary);
  font-weight: 600;
  margin: 0 0 8px;
}
.hero-text h1 {
  font-size: 2.6rem;
  margin: 0 0 14px;
  line-height: 1.1;
  color: var(--color-text);
}
.hero-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text-soft);
  margin: 0 0 24px;
  max-width: 520px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s ease, transform .15s ease, border-color .15s ease;
}
.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 6px rgba(46,125,50,0.2);
}
.btn-primary:hover {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}
@media (max-width: 760px) {
  .hero-personal { padding: 36px 0 32px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
    justify-items: center;
  }
  .hero-portrait { width: 200px; height: 200px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-lead { font-size: 1.02rem; margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
}

/* === Garten-Spruch === */
.quote-section {
  padding: 56px 20px;
  background: var(--color-bg);
}
.garten-quote {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  border: 0;
  padding: 0;
}
.garten-quote p {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.4;
  color: var(--color-text);
  font-style: italic;
  margin: 0 0 18px;
  position: relative;
}
.garten-quote p::before, .garten-quote p::after {
  content: '"';
  color: var(--color-primary);
  font-size: 2.2rem;
  font-weight: 700;
  display: inline-block;
  vertical-align: -.15em;
  padding: 0 .15em;
  font-style: normal;
}
.garten-quote footer {
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: .12em;
}
@media (max-width: 600px) {
  .quote-section { padding: 36px 20px; }
  .garten-quote p { font-size: 1.35rem; }
}
