/* ============================================================
   Natürlich Haus & Garten — Stylesheet 2026
   Modern, luftig, regional-naturnah
   Farben: Forest Green, Cream, Ochre + frisches Moosgrün
   ============================================================ */

:root {
  --green-deep: #1B3A2A;
  --green-mid: #2F5D3F;
  --green-soft: #5C8A6A;
  --green-fresh: #7BA88B;
  --cream: #F7F3EA;
  --cream-warm: #EFE7D6;
  --ochre: #C8A04F;
  --ochre-light: #E0C583;
  --ink: #16241C;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(27,58,42,0.06);
  --shadow-md: 0 8px 32px rgba(27,58,42,0.10);
  --shadow-lg: 0 20px 60px rgba(27,58,42,0.16);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Hanken Grotesk", "Segoe UI", Arial, sans-serif;
  --max-width: 1200px;
  --radius: 20px;
  --radius-sm: 12px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 28px; }
section { padding: 104px 0; }
@media (max-width: 720px) { section { padding: 64px 0; } .container { padding: 0 20px; } }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; color: var(--green-deep); line-height: 1.12; letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 6.5vw, 4.6rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-bottom: 0.6em; }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); margin-bottom: 0.4em; }
p { max-width: 65ch; }
.eyebrow { font-family: var(--font-body); font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ochre); font-weight: 700; margin-bottom: 0.8em; display: inline-flex; align-items: center; gap: 8px; }
.eyebrow::before { content: ""; width: 24px; height: 2px; background: var(--ochre); display: inline-block; }
.eyebrow.center { justify-content: center; }
.lead { font-size: 1.2rem; color: var(--green-mid); max-width: 60ch; }

/* ---------- Scroll reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,243,234,0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(27,58,42,0.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow-sm); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.logo { font-family: var(--font-display); font-weight: 700; font-size: 1.35rem; color: var(--green-deep); display: flex; align-items: center; gap: 10px; }
.logo-mark { width: 38px; height: 38px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .logo-sub { font-family: var(--font-body); font-weight: 600; font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ochre); margin-top: 3px; }

nav.main-nav ul { display: flex; gap: 34px; list-style: none; align-items: center; }
nav.main-nav a { font-weight: 600; font-size: 0.95rem; color: var(--green-mid); position: relative; padding: 6px 0; transition: color 0.2s; }
nav.main-nav a:hover, nav.main-nav a.active { color: var(--green-deep); }
nav.main-nav a.active::after { content: ""; position: absolute; left: 0; bottom: -3px; width: 100%; height: 2px; background: var(--ochre); border-radius: 2px; }
.nav-cta { background: var(--green-deep) !important; color: var(--white) !important; padding: 11px 22px; border-radius: 999px; font-weight: 700 !important; font-size: 0.9rem !important; transition: all 0.25s !important; }
.nav-cta:hover { background: var(--green-mid) !important; transform: translateY(-1px); box-shadow: var(--shadow-md); }
.nav-cta::after { display: none !important; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--green-deep); margin: 5px 0; transition: 0.3s; border-radius: 2px; }

@media (max-width: 860px) {
  .nav-toggle { display: block; z-index: 110; }
  nav.main-nav { position: fixed; inset: 0; background: var(--cream); display: flex; align-items: center; justify-content: center; transform: translateX(100%); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1); }
  nav.main-nav.open { transform: translateX(0); }
  nav.main-nav ul { flex-direction: column; gap: 28px; text-align: center; }
  nav.main-nav a { font-size: 1.3rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Schnittlinie ---------- */
.schnittlinie { width: 100%; height: 40px; display: block; overflow: visible; }
.schnittlinie path { fill: none; stroke: var(--ochre); stroke-width: 2.5; stroke-linecap: round; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 15px 30px; border-radius: 999px; font-weight: 700; font-size: 0.98rem; transition: all 0.25s cubic-bezier(0.16,1,0.3,1); border: 2px solid transparent; cursor: pointer; font-family: var(--font-body); }
.btn-primary { background: var(--ochre); color: var(--green-deep); box-shadow: var(--shadow-sm); }
.btn-primary:hover { background: var(--ochre-light); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { border-color: rgba(255,255,255,0.55); color: var(--white); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-outline.on-light { border-color: var(--green-deep); color: var(--green-deep); }
.btn-outline.on-light:hover { background: var(--green-deep); color: var(--white); }
.btn-green { background: var(--green-deep); color: var(--white); }
.btn-green:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 100% at 80% 0%, var(--green-mid) 0%, var(--green-deep) 60%);
  color: var(--white); overflow: hidden;
  padding-top: 100px; padding-bottom: 0;
}
.hero::before { content: ""; position: absolute; top: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(200,160,79,0.18) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; padding-bottom: 100px; position: relative; z-index: 2; }
.hero h1 { color: var(--white); }
.hero h1 .accent { color: var(--ochre-light); font-style: italic; }
.hero .lead { color: rgba(247,243,234,0.9); margin-top: 1.3em; }
.hero-actions { margin-top: 2.2em; display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badges { display: flex; gap: 20px; margin-top: 2.6em; flex-wrap: wrap; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; font-weight: 600; color: rgba(247,243,234,0.92); }
.hero-badge .dot { width: 9px; height: 9px; border-radius: 50%; background: var(--ochre); flex-shrink: 0; box-shadow: 0 0 0 4px rgba(200,160,79,0.2); }

.hero-collage { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 12px; border-radius: var(--radius); overflow: hidden; height: 520px; box-shadow: var(--shadow-lg); }
.hero-collage img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.6s; }
.hero-collage img:hover { transform: scale(1.04); }
.hero-collage img:first-child { grid-row: 1 / 3; }
@media (max-width: 860px) {
  .hero .container { grid-template-columns: 1fr; padding-bottom: 64px; gap: 40px; }
  .hero-collage { grid-template-columns: 2fr 1fr; height: 300px; order: -1; }
}

/* ---------- Trust bar (regional) ---------- */
.trust-bar { background: var(--green-deep); color: var(--cream); padding: 22px 0; }
.trust-bar .container { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; }
.trust-item svg { flex-shrink: 0; }
@media (max-width: 720px) { .trust-bar .container { gap: 24px; } .trust-item { font-size: 0.85rem; } }

/* ---------- Section heads ---------- */
.section-head { max-width: 720px; margin-bottom: 64px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Cards ---------- */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 960px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .card-grid { grid-template-columns: 1fr; } }
.card { background: var(--white); border-radius: var(--radius); padding: 36px 32px; border: 1px solid rgba(27,58,42,0.06); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card .icon { width: 52px; height: 52px; border-radius: 16px; background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); color: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; font-size: 1.4rem; }
.card p { font-size: 0.97rem; color: var(--green-mid); }

/* ---------- Alt / deep sections ---------- */
.section-alt { background: var(--cream-warm); }
.section-deep { background: radial-gradient(120% 100% at 20% 0%, var(--green-mid) 0%, var(--green-deep) 65%); color: var(--cream); position: relative; overflow: hidden; }
.section-deep h2, .section-deep h3 { color: var(--white); }
.section-deep .lead { color: rgba(247,243,234,0.9); }

/* ---------- Split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split.reverse .split-image { order: 2; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 36px; } .split.reverse .split-image { order: -1; } }
.split-image img { border-radius: var(--radius); width: 100%; object-fit: cover; aspect-ratio: 3/4; box-shadow: var(--shadow-md); }
.split-image.landscape img { aspect-ratio: 4/3; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; text-align: center; }
.stats .stat strong { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4.5vw, 3rem); color: var(--ochre-light); font-weight: 700; }
.stats .stat span { font-size: 0.88rem; color: rgba(247,243,234,0.85); font-weight: 600; }
@media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 36px; } }

/* ---------- Service rows ---------- */
.service-row { display: grid; grid-template-columns: 68px 1fr; gap: 28px; padding: 32px 0; border-top: 1px solid rgba(27,58,42,0.1); align-items: start; }
.service-row:first-child { border-top: none; }
.service-row .icon { width: 60px; height: 60px; border-radius: 18px; background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.service-row h3 { margin-bottom: 0.4em; }
.service-row p { color: var(--green-mid); font-size: 0.98rem; }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .price-grid { grid-template-columns: 1fr; } }
.price-card { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid rgba(27,58,42,0.06); box-shadow: var(--shadow-sm); transition: transform 0.3s, box-shadow 0.3s; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.featured { border: 2px solid var(--ochre); position: relative; }
.price-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--green-deep); margin: 0.4em 0; font-weight: 700; }
.price-card .price small { font-family: var(--font-body); font-size: 0.9rem; font-weight: 600; color: var(--green-mid); }
.price-card ul { list-style: none; margin-top: 18px; }
.price-card ul li { padding: 9px 0 9px 28px; font-size: 0.94rem; color: var(--green-mid); border-top: 1px solid rgba(27,58,42,0.07); position: relative; }
.price-card ul li:first-child { border-top: none; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--ochre); font-weight: 700; }

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; } }
.testimonial { background: var(--white); border-radius: var(--radius); padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; }
.testimonial .stars { color: var(--ochre); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial .quote { font-style: italic; color: var(--ink); font-size: 1.02rem; line-height: 1.7; margin-bottom: 20px; }
.testimonial .author { display: flex; align-items: center; gap: 12px; }
.testimonial .avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--green-soft), var(--green-fresh)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-family: var(--font-display); }
.testimonial .author-info strong { display: block; color: var(--green-deep); font-size: 0.95rem; }
.testimonial .author-info span { font-size: 0.82rem; color: var(--green-soft); }
.testimonial.placeholder-note { border: 2px dashed var(--ochre); background: var(--cream); }
.testimonial.placeholder-note .quote { color: var(--green-soft); }

/* ---------- Before/After Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 720px) { .gallery-grid { grid-template-columns: 1fr; } }
.ba-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.ba-images { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; position: relative; }
.ba-images .ba-img { position: relative; aspect-ratio: 4/3; }
.ba-images .ba-img img { width: 100%; height: 100%; object-fit: cover; }
.ba-img .ba-label { position: absolute; top: 12px; left: 12px; background: rgba(27,58,42,0.85); color: var(--cream); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px; }
.ba-img .ba-label.after { background: var(--ochre); color: var(--green-deep); }
.ba-placeholder { aspect-ratio: 4/3; background: repeating-linear-gradient(135deg, var(--cream-warm), var(--cream-warm) 14px, #e3d8bf 14px, #e3d8bf 28px); display: flex; align-items: center; justify-content: center; color: var(--green-mid); font-size: 0.82rem; font-weight: 600; text-align: center; padding: 16px; }
.ba-caption { padding: 20px 24px; }
.ba-caption h4 { font-family: var(--font-display); color: var(--green-deep); font-size: 1.1rem; margin-bottom: 4px; }
.ba-caption p { font-size: 0.9rem; color: var(--green-mid); }

/* ---------- CTA banner ---------- */
.cta-banner { background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); color: var(--white); border-radius: var(--radius); padding: 56px; display: flex; justify-content: space-between; align-items: center; gap: 36px; flex-wrap: wrap; box-shadow: var(--shadow-md); position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; top: -30%; right: -5%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,160,79,0.2) 0%, transparent 70%); border-radius: 50%; }
.cta-banner h2 { color: var(--white); margin-bottom: 0.3em; position: relative; }
.cta-banner p { color: rgba(247,243,234,0.9); position: relative; }
.cta-banner .btn { position: relative; }

/* ---------- Page header ---------- */
.page-header { background: radial-gradient(120% 100% at 80% 0%, var(--green-mid) 0%, var(--green-deep) 60%); color: var(--white); padding: 80px 0 68px; position: relative; overflow: hidden; }
.page-header::before { content: ""; position: absolute; top: -20%; right: -5%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(200,160,79,0.15) 0%, transparent 70%); border-radius: 50%; }
.page-header h1 { color: var(--white); position: relative; }
.page-header .lead { color: rgba(247,243,234,0.9); margin-top: 0.9em; position: relative; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-info-item .icon { width: 48px; height: 48px; border-radius: 14px; background: linear-gradient(135deg, var(--green-deep), var(--green-mid)); color: var(--cream); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-family: var(--font-body); color: var(--green-deep); font-size: 1.02rem; margin-bottom: 3px; }
.contact-info-item p, .contact-info-item a { font-size: 0.96rem; color: var(--green-mid); }

form.contact-form { display: flex; flex-direction: column; gap: 20px; background: var(--white); padding: 40px; border-radius: var(--radius); box-shadow: var(--shadow-md); }
form.contact-form label { font-size: 0.85rem; font-weight: 700; color: var(--green-deep); margin-bottom: 7px; display: block; }
form.contact-form input, form.contact-form select, form.contact-form textarea { width: 100%; padding: 13px 16px; border: 1.5px solid rgba(27,58,42,0.15); border-radius: var(--radius-sm); font-family: var(--font-body); font-size: 0.96rem; background: var(--cream); color: var(--ink); transition: border-color 0.2s, box-shadow 0.2s; }
form.contact-form input:focus, form.contact-form select:focus, form.contact-form textarea:focus { outline: none; border-color: var(--ochre); box-shadow: 0 0 0 3px rgba(200,160,79,0.15); background: var(--white); }
form.contact-form textarea { resize: vertical; min-height: 130px; }
.form-status { padding: 14px; border-radius: var(--radius-sm); font-size: 0.9rem; font-weight: 600; text-align: center; display: none; }
.form-status.success { background: #e3f0e5; color: #2F5D3F; display: block; }
.form-status.error { background: #fbe8e8; color: #a03030; display: block; }

.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 8px; }
.map-embed iframe { width: 100%; height: 320px; border: 0; display: block; }

/* ---------- WhatsApp float ---------- */
.whatsapp-float { position: fixed; bottom: 22px; right: 22px; z-index: 90; width: 52px; height: 52px; border-radius: 50%; background: #25D366; box-shadow: 0 4px 14px rgba(37,211,102,0.32); display: flex; align-items: center; justify-content: center; transition: transform 0.25s, box-shadow 0.25s; opacity: 0.92; }
.whatsapp-float:hover { transform: scale(1.06); opacity: 1; box-shadow: 0 6px 20px rgba(37,211,102,0.42); }
.whatsapp-float svg { width: 28px; height: 28px; }
@media (max-width: 600px) { .whatsapp-float { width: 48px; height: 48px; bottom: 18px; right: 18px; } .whatsapp-float svg { width: 26px; height: 26px; } }

/* ---------- Footer ---------- */
footer.site-footer { background: var(--green-deep); color: var(--cream); padding: 68px 0 32px; }
footer.site-footer .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 44px; margin-bottom: 48px; }
@media (max-width: 860px) { footer.site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 560px) { footer.site-footer .footer-grid { grid-template-columns: 1fr; } }
footer.site-footer h4 { color: var(--ochre); font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase; font-family: var(--font-body); font-weight: 700; margin-bottom: 16px; }
footer.site-footer .logo { color: var(--white); margin-bottom: 14px; }
footer.site-footer p, footer.site-footer a { font-size: 0.93rem; color: rgba(247,243,234,0.82); }
footer.site-footer ul { list-style: none; }
footer.site-footer ul li { margin-bottom: 10px; }
footer.site-footer ul li a:hover { color: var(--ochre); }
.footer-hours { font-size: 0.9rem; }
.footer-hours strong { color: var(--cream); display: block; margin-bottom: 4px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; font-size: 0.8rem; color: rgba(247,243,234,0.55); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- Accessibility ---------- */
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; animation: none !important; } }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 2px solid var(--ochre); outline-offset: 2px; }

/* ---------- Legal / Rechtsseiten ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; margin-top: 44px; margin-bottom: 0.5em; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 { font-size: 1.15rem; margin-top: 28px; }
.legal-content p, .legal-content li { color: var(--green-mid); font-size: 0.98rem; margin-bottom: 12px; max-width: 100%; }
.legal-content ul { padding-left: 22px; margin-bottom: 16px; }
.legal-content li { margin-bottom: 8px; }
.legal-content a { color: var(--green-deep); font-weight: 600; text-decoration: underline; }
.legal-content strong { color: var(--green-deep); }
.legal-box { background: var(--white); border-radius: var(--radius); padding: 32px 36px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.legal-note { background: var(--cream-warm); border-left: 4px solid var(--ochre); padding: 16px 20px; border-radius: 8px; font-size: 0.9rem; color: var(--green-mid); margin: 20px 0; }
.legal-date { font-size: 0.85rem; color: var(--green-soft); margin-top: 40px; font-style: italic; }

/* ---------- Teaser cards (Home) ---------- */
.teaser-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }
.teaser-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s; display: flex; flex-direction: column; }
.teaser-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.teaser-img { aspect-ratio: 3/2; overflow: hidden; }
.teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.teaser-card:hover .teaser-img img { transform: scale(1.05); }
.teaser-body { padding: 28px 28px 32px; display: flex; flex-direction: column; flex: 1; }
.teaser-body h3 { margin-bottom: 0.5em; }
.teaser-body p { font-size: 0.95rem; color: var(--green-mid); flex: 1; }
.teaser-link { margin-top: 18px; color: var(--green-deep); font-weight: 700; font-size: 0.92rem; transition: gap 0.2s; display: inline-block; }
.teaser-card:hover .teaser-link { color: var(--ochre); }
