/* ============================================
   STEIMKER OBJEKTPFLEGE — Design Tokens
   ============================================ */
:root {
  /* Color — abgeleitet vom Logo-Tannengrün */
  --ink:        #2E4A3C;   /* logo-tannengrün - header/footer/dark sections */
  --ink-soft:   #3a5a48;
  --paper:      #F7F5F1;   /* warmes off-white - main background */
  --sand:       #E8E2D6;   /* sandbeige - alternating sections */
  --rust:       #C8633A;   /* terracotta - primary accent / CTA */
  --rust-dark:  #A8502E;
  --pine:       #4A6B57;   /* helleres grün - secondary accent / hover */
  --line:       #D8D2C3;   /* hairline borders on sand */
  --line-dark:  #41614F;   /* hairline borders on ink */
  --white:      #FFFFFF;

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Scale */
  --step--1: clamp(0.83rem, 0.8rem + 0.1vw, 0.9rem);
  --step-0:  clamp(1rem, 0.95rem + 0.2vw, 1.1rem);
  --step-1:  clamp(1.2rem, 1.1rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.5rem, 1.3rem + 0.8vw, 1.9rem);
  --step-3:  clamp(1.9rem, 1.6rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.4rem, 1.9rem + 2.2vw, 3.6rem);
  --step-5:  clamp(3rem, 2.2rem + 3.6vw, 5rem);

  --container: 1140px;
  --radius: 3px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

h1 { font-size: var(--step-5); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); }
h4 { font-size: var(--step-1); }

p { max-width: 60ch; }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--rust);
  outline-offset: 3px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 12px;
}

.logo {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--paper);
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.15;
}
.logo span {
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rust);
}
.logo-text { display: flex; flex-direction: column; }
.logo img.logo-mark {
  height: 44px;
  width: auto;
  display: block;
}
.footer-brand .logo img.logo-mark { height: 52px; }

.main-nav { display: flex; align-items: center; gap: 24px; }

.main-nav ul {
  display: flex;
  gap: 20px;
  list-style: none;
}

.main-nav a {
  color: var(--paper);
  font-size: var(--step--1);
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--rust);
  transition: width 0.25s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--rust); }

.header-phone {
  color: var(--paper);
  font-weight: 600;
  font-size: var(--step--1);
  white-space: nowrap;
  border: 1px solid var(--line-dark);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.header-phone:hover { border-color: var(--rust); color: var(--rust); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--paper);
  width: 40px; height: 40px;
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--rust);
  color: var(--white);
}
.btn-primary:hover { background: var(--rust-dark); }

.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(247,245,241,0.35);
}
.btn-ghost-light:hover { border-color: var(--paper); }

.btn-ghost-dark {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost-dark:hover { background: var(--ink); color: var(--paper); }

/* ============================================
   HERO
   ============================================ */
.hero {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}

.hero .container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 22px;
}
.hero-eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--rust);
}

.hero h1 {
  color: var(--paper);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--rust);
}

.hero p.lede {
  color: #C5D0C9;
  font-size: var(--step-1);
  max-width: 46ch;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-meta {
  display: flex;
  gap: 32px;
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  flex-wrap: wrap;
}
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta strong { font-family: var(--font-display); font-size: var(--step-1); color: var(--paper); }
.hero-meta span { font-size: var(--step--1); color: #9FB3A6; }

/* Seasonal wheel signature element */
.season-wheel {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1;
  margin: 0 auto;
}
.season-wheel svg { width: 100%; height: 100%; }
.season-wheel .hub-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 130px;
}
.season-wheel .hub-label .hub-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #9FB3A6;
  display: block;
  margin-bottom: 4px;
}
.season-wheel .hub-label strong {
  font-family: var(--font-display);
  font-size: var(--step-0);
  color: var(--paper);
  display: block;
  line-height: 1.2;
}

.season-node {
  position: absolute;
  width: 124px;
  text-align: center;
  transform: translate(-50%, -50%);
}
.season-node .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rust);
  margin: 0 auto 8px;
}
.season-node .label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--paper);
  display: block;
}
.season-node .sub {
  font-size: 0.74rem;
  color: #9FB3A6;
  display: block;
}

/* ============================================
   SECTIONS — general
   ============================================ */
section { padding: 88px 0; }
.section-sand { background: var(--sand); }
.section-ink { background: var(--ink); color: var(--paper); }
.section-ink h2, .section-ink h3, .section-ink h4 { color: var(--paper); }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; color: #555B62; font-size: var(--step-0); }
.section-ink .section-head p { color: #B9BDC3; }

.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.service-card {
  background: var(--paper);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 0.2s ease;
}
.service-card:hover { background: var(--white); }

.service-card .num {
  font-family: var(--font-display);
  font-size: var(--step--1);
  color: var(--rust);
  font-weight: 600;
}

.service-card h4 { margin-top: 4px; }
.service-card p { font-size: var(--step--1); color: #555B62; }

.service-card .icon-wrap {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pine);
}
.service-card .icon-wrap svg { width: 100%; height: 100%; }

.service-card .more {
  margin-top: auto;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-top: 10px;
}
.service-card .more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.service-card:hover .more svg { transform: translateX(3px); }

/* ============================================
   VALUES (about page)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 48px;
}
.value-item { display: flex; gap: 20px; }
.value-item .icon-wrap {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
}
.value-item .icon-wrap svg { width: 22px; height: 22px; }
.value-item h4 { margin-bottom: 6px; }
.value-item p { font-size: var(--step--1); color: #555B62; }

/* ============================================
   SPLIT / IMAGE-TEXT
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse > *:first-child { order: 2; }

.placeholder-img {
  background: var(--ink);
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(247,245,241,0.04) 0px, rgba(247,245,241,0.04) 2px, transparent 2px, transparent 14px);
}
.placeholder-img .ph-label {
  position: relative;
  z-index: 1;
  color: #9FB3A6;
  font-size: var(--step--1);
  text-align: center;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.placeholder-img .ph-label svg { width: 32px; height: 32px; opacity: 0.6; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: var(--rust);
  color: var(--white);
  padding: 64px 0;
}
.cta-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-band h3 { color: var(--white); margin-bottom: 6px; }
.cta-band p { color: rgba(255,255,255,0.85); }
.cta-band .btn-primary { background: var(--ink); }
.cta-band .btn-primary:hover { background: #1d2026; }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--ink);
  color: #9FB3A6;
  padding: 64px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: var(--step--1); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a { font-size: var(--step--1); transition: color 0.2s ease; }
.footer-col a:hover { color: var(--rust); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.footer-socials a:hover { border-color: var(--rust); color: var(--rust); }
.footer-socials svg { width: 15px; height: 15px; }

/* ============================================
   PAGE HEADER (for subpages)
   ============================================ */
.page-header {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 56px;
}
.page-header .eyebrow { margin-bottom: 14px; display: block; }
.page-header h1 { font-size: var(--step-4); color: var(--paper); }
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: var(--step--1);
  color: #9FB3A6;
  margin-top: 18px;
}
.breadcrumb a:hover { color: var(--rust); }

/* ============================================
   FAQ
   ============================================ */
.faq-list { display: flex; flex-direction: column; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  color: var(--ink);
}
.faq-q .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  position: relative;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: "";
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.faq-q .plus::before { width: 11px; height: 1.5px; }
.faq-q .plus::after { width: 1.5px; height: 11px; transition: opacity 0.2s ease; }
.faq-item.open .faq-q .plus { background: var(--rust); border-color: var(--rust); transform: rotate(180deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-item.open .faq-q .plus::after { opacity: 0; }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner { padding: 0 0 26px; color: #555B62; max-width: 70ch; }

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.contact-info-item:first-child { padding-top: 0; }
.contact-info-item .icon-wrap {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--rust);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-item .icon-wrap svg { width: 19px; height: 19px; }
.contact-info-item h4 { font-size: var(--step-0); margin-bottom: 4px; }
.contact-info-item p, .contact-info-item a { font-size: var(--step--1); color: #555B62; }
.contact-info-item a:hover { color: var(--rust); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
}
.form-group input, .form-group textarea, .form-group select {
  font-family: var(--font-body);
  font-size: var(--step-0);
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  resize: vertical;
}
.form-group textarea { min-height: 120px; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--rust);
}
.form-group input[type="file"] {
  padding: 10px 14px;
  font-size: var(--step--1);
  color: #555B62;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--step--1);
  color: var(--white);
  background: var(--ink);
  border: none;
  border-radius: var(--radius);
  padding: 8px 14px;
  margin-right: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.form-group input[type="file"]::file-selector-button:hover { background: var(--pine); }
.form-note { font-size: 0.8rem; color: #9FB3A6; margin-top: -4px; }
.form-success {
  display: none;
  background: var(--sand);
  border: 1px solid var(--pine);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: var(--step--1);
  margin-bottom: 18px;
  color: var(--pine);
  font-weight: 600;
}
.form-success.visible { display: block; }

.form-error {
  display: none;
  background: #FBEAE3;
  border: 1px solid var(--rust);
  border-radius: var(--radius);
  padding: 16px 18px;
  font-size: var(--step--1);
  margin-bottom: 18px;
  color: var(--rust-dark);
  font-weight: 600;
}
.form-error.visible { display: block; }

/* ============================================
   MAP PLACEHOLDER
   ============================================ */
.map-block {
  margin-top: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .season-wheel { max-width: 320px; margin-top: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.reverse > *:first-child { order: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 760px) {
  .main-nav ul { display: none; }
  .nav-toggle { display: flex; align-items: center; justify-content: center; }
  .header-phone span.txt { display: none; }
  section { padding: 64px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band .container { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px; }
}

/* Mobile nav drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--ink);
  z-index: 200;
  display: flex;
  flex-direction: column;
  padding: 20px 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-shrink: 0; }
.mobile-nav .logo img.logo-mark { height: 34px; }
.mobile-nav-close { background: none; border: none; color: var(--paper); width: 40px; height: 40px; cursor: pointer; }
.mobile-nav ul { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.mobile-nav ul li a { font-family: var(--font-display); font-size: var(--step-1); color: var(--paper); display: block; padding: 4px 0; }
.mobile-nav a.active { color: var(--rust); }
.mobile-nav-phone { margin-top: 24px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.15); flex-shrink: 0; }
.mobile-nav-phone a { font-family: var(--font-body); font-size: var(--step-0); color: var(--rust); font-weight: 600; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   BLOG
   ============================================ */

/* Übersichtsseite – Kachelraster */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.blog-card:hover { box-shadow: 0 6px 24px rgba(46,74,60,0.10); transform: translateY(-2px); }

.blog-card-img {
  background: var(--ink);
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
}
.blog-card-img .ph-label { gap: 8px; }
.blog-card-img .ph-label svg { width: 24px; height: 24px; }

.blog-card-body { padding: 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.blog-card-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: #9FB3A6;
}
.blog-card-meta .tag {
  background: var(--sand);
  color: var(--pine);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.blog-card h3 { font-size: var(--step-1); margin: 0; }
.blog-card h3 a { color: var(--ink); transition: color 0.2s ease; }
.blog-card h3 a:hover { color: var(--rust); }
.blog-card p { font-size: var(--step--1); color: #555B62; flex: 1; }
.blog-card .read-more {
  margin-top: 8px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--rust);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  align-self: flex-start;
}
.blog-card .read-more svg { width: 14px; height: 14px; transition: transform 0.2s ease; }
.blog-card:hover .read-more svg { transform: translateX(3px); }

/* Artikel-Seite */
.article-header {
  background: var(--ink);
  color: var(--paper);
  padding: 64px 0 56px;
}
.article-header .eyebrow { margin-bottom: 14px; display: block; }
.article-header h1 { font-size: var(--step-4); color: var(--paper); max-width: 800px; }
.article-meta {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
  flex-wrap: wrap;
}
.article-meta .tag {
  background: var(--rust);
  color: var(--white);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
}
.article-meta .date { font-size: var(--step--1); color: #9FB3A6; }
.article-meta .readtime { font-size: var(--step--1); color: #9FB3A6; }

/* Artikel-Inhalt */
.article-body { max-width: 740px; }
.article-body h2 { font-size: var(--step-2); margin: 48px 0 16px; }
.article-body h3 { font-size: var(--step-1); margin: 32px 0 12px; }
.article-body p { color: #3a3f3c; line-height: 1.85; margin-bottom: 18px; max-width: 68ch; }
.article-body ul, .article-body ol {
  margin: 0 0 18px 1.4em;
  color: #3a3f3c;
  line-height: 1.85;
}
.article-body li { margin-bottom: 8px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body .callout {
  background: var(--sand);
  border-left: 3px solid var(--rust);
  padding: 18px 22px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 28px 0;
  font-size: var(--step--1);
  color: #3a3f3c;
}
.article-body .callout strong { color: var(--rust); }

/* Blog-Teaser auf Startseite */
.blog-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

/* Ratgeber-Link auf Leistungsseite */
.ratgeber-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--pine);
  border: 1px solid var(--pine);
  padding: 9px 16px;
  border-radius: var(--radius);
  transition: background 0.2s ease, color 0.2s ease;
}
.ratgeber-link:hover { background: var(--pine); color: var(--white); }
.ratgeber-link svg { width: 14px; height: 14px; }

@media (max-width: 980px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-teaser-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-teaser-grid { grid-template-columns: 1fr; }
}

/* ============================================
   FOTO-UPLOAD (Kontaktformular)
   ============================================ */
.photo-upload-area {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  background: var(--paper);
}
.photo-upload-area:hover,
.photo-upload-area.drag-over {
  border-color: var(--rust);
  background: #FEF8F5;
}
.upload-label {
  font-size: var(--step--1);
  font-weight: 600;
  color: var(--ink);
}
.upload-sub {
  font-size: 0.76rem;
  color: #9FB3A6;
}
.upload-btn {
  margin-top: 8px;
  background: var(--ink);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 8px 18px;
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}
.upload-btn:hover { background: var(--ink-soft); }
.upload-btn:disabled {
  background: var(--line);
  color: #9FB3A6;
  cursor: not-allowed;
}

/* Vorschau-Raster */
.photo-preview-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.photo-preview-grid:empty { display: none; }

.photo-thumb {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--sand);
}
.photo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-thumb-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  transition: background 0.15s ease;
}
.photo-thumb-remove:hover { background: var(--rust); }

@media (max-width: 480px) {
  .photo-preview-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ============================================
   DROPDOWN NAVIGATION
   ============================================ */
.main-nav ul li { position: relative; }

.nav-dropdown {
  display: none !important;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 32px rgba(46,74,60,0.13);
  min-width: 240px;
  z-index: 200;
  padding: 8px 0;
  list-style: none;
}

.has-dropdown.open .nav-dropdown {
  display: block !important;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--line);
}

.nav-dropdown::after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid var(--white);
}

.nav-dropdown li a {
  display: block;
  padding: 9px 18px;
  font-size: 0.85rem;
  color: var(--ink);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown li a:hover {
  background: var(--paper);
  color: var(--rust);
}

/* Dropdown öffnet sich per JS-Toggle (Klick) */

.has-dropdown > a {
  cursor: pointer;
}

/* kein ::after Pfeil – gleicher Look wie alle anderen Nav-Punkte */

@media (max-width: 900px) {
  .nav-dropdown { display: none !important; }
}

/* ── Mobile Nav Untermenü (Click-Toggle) ─────────────────── */
.mobile-submenu {
  display: none;
  list-style: none;
  padding: 6px 0 6px 16px;
  margin: 4px 0 4px;
}
.mobile-submenu.open { display: block; }
.mobile-submenu li a {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  opacity: 0.8;
  padding: 5px 0 !important;
  display: block;
}
.mobile-sub-toggle {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
}
.mobile-sub-arrow {
  font-size: 1.1rem;
  transition: transform 0.2s;
  display: inline-block;
}
.mobile-has-sub.open .mobile-sub-arrow {
  transform: rotate(90deg);
}
