/* ============================================================
   Wäldchen Manufaktur – Stylesheet
   Mobile-first · WCAG 2.1 AA · Performance-optimiert
   Farbschema: Dunkel / Holz / Warm-Gold
   ============================================================ */

/* ── 1. Design Tokens ──────────────────────────────────────── */
:root {
  /* Brand – Dunkles Holz + warmes Gold */
  --c-primary:       #1a1a1a;
  --c-primary-mid:   #2a2a2a;
  --c-primary-light: #3d3d3d;

  --c-accent:        #c8a96e;   /* Warmes Holz-Gold */
  --c-accent-dark:   #b0903c;
  --c-accent-light:  #dfc99a;
  --c-accent-bg:     #f8f4ec;

  /* Neutrals */
  --c-bg:            #ffffff;
  --c-bg-alt:        #f5f2ed;   /* Warmes Offwhite */
  --c-bg-dark:       #1a1a1a;
  --c-bg-darker:     #111111;
  --c-text:          #2a2a2a;
  --c-text-mid:      #5a5a5a;
  --c-text-light:    #8a8a8a;
  --c-border:        #e0ddd6;
  --c-border-mid:    #c8c4bb;

  /* On-dark */
  --c-text-on-dark:  #f0ece4;
  --c-muted-on-dark: #a09888;

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Layout */
  --max-w:        1160px;
  --container-px: clamp(1rem, 5vw, 2.5rem);
  --section-py:   clamp(3.5rem, 8vw, 6rem);

  /* Typography – System fonts */
  --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
                  "Helvetica Neue", Arial, sans-serif;
  --font-heading: Georgia, "Times New Roman", serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  clamp(1.5rem, 3vw, 1.875rem);
  --text-4xl:  clamp(1.75rem, 4vw, 2.25rem);
  --text-5xl:  clamp(2rem, 5vw, 3rem);

  --lh-tight:   1.2;
  --lh-snug:    1.35;
  --lh-normal:  1.65;
  --lh-relaxed: 1.8;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.14);

  /* Radii */
  --radius-sm:   3px;
  --radius-md:   6px;
  --radius-lg:   10px;
  --radius-full: 9999px;

  /* Transitions */
  --t-fast: 150ms ease;
  --t-base: 280ms ease;

  /* Header */
  --header-h: 80px;
}

/* ── 2. Reset & Base ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1.5rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--c-accent-dark); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--c-accent); }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--c-primary);
  font-weight: 700;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); margin-bottom: var(--sp-6); }
h3 { font-size: var(--text-2xl); margin-bottom: var(--sp-4); font-weight: 600; }

p { margin-bottom: var(--sp-4); }
p:last-child { margin-bottom: 0; }

ul, ol { padding-left: var(--sp-6); }

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

/* ── 3. Skip Link ──────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--sp-4);
  background: var(--c-accent);
  color: var(--c-primary);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 1000;
}
.skip-link:focus { top: var(--sp-2); }

/* ── 4. Container ──────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}
.container-narrow { max-width: 780px; }

/* ── 5. Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: var(--sp-3) var(--sp-6);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--t-base);
  text-decoration: none;
  line-height: 1.4;
}
.btn-accent {
  background: var(--c-accent);
  color: var(--c-primary);
  border-color: var(--c-accent);
}
.btn-accent:hover {
  background: var(--c-accent-dark);
  border-color: var(--c-accent-dark);
  color: var(--c-primary);
}
.btn-outline {
  background: transparent;
  color: var(--c-accent);
  border-color: var(--c-accent);
}
.btn-outline:hover {
  background: var(--c-accent);
  color: var(--c-primary);
}
.btn-lg { padding: var(--sp-4) var(--sp-8); font-size: var(--text-base); }
.btn-sm { padding: var(--sp-2) var(--sp-4); font-size: var(--text-xs); }

.section-dark .btn-outline {
  color: var(--c-accent-light);
  border-color: var(--c-accent-light);
}
.section-dark .btn-outline:hover {
  background: var(--c-accent-light);
  color: var(--c-primary);
}

/* ── 6. Cookie Banner ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--c-bg-dark);
  color: var(--c-text-on-dark);
  padding: var(--sp-4) var(--container-px);
  z-index: 900;
  box-shadow: 0 -2px 12px rgba(0,0,0,.25);
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.cookie-text { flex: 1; min-width: 240px; font-size: var(--text-sm); }
.cookie-text p { margin: var(--sp-1) 0 0; color: var(--c-muted-on-dark); }
.cookie-text a { color: var(--c-accent-light); text-decoration: underline; }

/* ── 7. Header ─────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--c-bg-dark);
  height: var(--header-h);
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--c-text-on-dark);
  text-decoration: none;
}
.logo:hover { color: var(--c-accent-light); }
.logo-img { width: 52px; height: auto; }
.logo-text { line-height: 1.2; }
.logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.logo-name em { font-style: normal; color: var(--c-accent); }
.logo-sub {
  display: block;
  font-size: var(--text-xs);
  color: var(--c-muted-on-dark);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Navigation */
.nav-list {
  display: flex;
  list-style: none;
  gap: var(--sp-1);
  padding: 0;
}
.nav-link {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  color: var(--c-text-on-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: all var(--t-fast);
}
.nav-link:hover,
.nav-link.active {
  color: var(--c-accent);
}

/* Dropdown */
.nav-item-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--c-bg-dark);
  border: 1px solid var(--c-primary-light);
  border-radius: var(--radius-md);
  padding: var(--sp-2) 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-lg);
}
.nav-item-dropdown:hover .dropdown,
.nav-item-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: var(--sp-2) var(--sp-4);
  color: var(--c-muted-on-dark);
  font-size: var(--text-sm);
  transition: all var(--t-fast);
}
.dropdown a:hover {
  color: var(--c-accent);
  background: rgba(255,255,255,.05);
}

/* Hamburger */
.nav-toggle { display: none; }

/* ── 8. Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: var(--c-bg-darker);
  background-image: url('images/shou-sugi-ban-holzfassade-erfurt.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,.85) 0%, rgba(26,26,26,.7) 50%, rgba(10,10,10,.8) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding: var(--sp-16) 0;
}
.hero h1 {
  color: var(--c-text-on-dark);
  margin-bottom: var(--sp-6);
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.hero-sub {
  color: var(--c-muted-on-dark);
  font-size: var(--text-xl);
  line-height: var(--lh-snug);
  margin-bottom: var(--sp-8);
}
.hero-cta {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.hero .btn-outline {
  color: var(--c-text-on-dark);
  border-color: rgba(255,255,255,.3);
}
.hero .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* Badges */
.hero-badges {
  display: flex;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.badge {
  display: inline-block;
  padding: var(--sp-1) var(--sp-3);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-accent);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-full);
  opacity: .8;
}

/* ── 9. Sections ───────────────────────────────────────────── */
.section {
  padding: var(--section-py) 0;
}
.section-alt {
  background: var(--c-bg-alt);
}
.section-dark {
  background: var(--c-bg-dark);
  color: var(--c-text-on-dark);
}
.section-dark h2,
.section-dark h3 {
  color: var(--c-text-on-dark);
}
.section-dark p {
  color: var(--c-muted-on-dark);
}
.section-dark strong {
  color: var(--c-text-on-dark);
}
.section-dark a {
  color: var(--c-accent-light);
}
.section-dark a:hover {
  color: var(--c-accent);
}

.section-intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.section-title {
  text-align: center;
}
.section-subtitle {
  text-align: center;
  color: var(--c-text-mid);
  font-size: var(--text-lg);
  margin-top: calc(var(--sp-4) * -1);
  margin-bottom: var(--sp-10);
}

.overline {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-accent);
  margin-bottom: var(--sp-3);
}
.section-dark .overline { color: var(--c-accent-light); }

/* ── 10. Grid Layouts ──────────────────────────────────────── */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}
@media (min-width: 768px) {
  .grid-2col {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
  }
  .grid-reverse .image-block { order: -1; }
}

.image-block img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ── 11. Services Grid ─────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}
.service-card {
  background: var(--c-bg);
  padding: var(--sp-8);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-border);
  transition: all var(--t-base);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--c-accent);
}
.service-icon {
  color: var(--c-accent);
  margin-bottom: var(--sp-4);
}
.service-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.service-card h3 a {
  color: var(--c-primary);
  text-decoration: none;
}
.service-card h3 a:hover {
  color: var(--c-accent-dark);
}
.service-card p {
  color: var(--c-text-mid);
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}

/* ── 12. Checklist ─────────────────────────────────────────── */
.check-list {
  list-style: none;
  padding: 0;
  margin: var(--sp-4) 0 var(--sp-6);
}
.check-list li {
  position: relative;
  padding-left: var(--sp-8);
  margin-bottom: var(--sp-3);
  line-height: var(--lh-snug);
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 18px;
  height: 18px;
  background: var(--c-accent);
  border-radius: 50%;
  opacity: .2;
}
.check-list li::after {
  content: "✓";
  position: absolute;
  left: 4px;
  top: 0.15em;
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--c-accent-dark);
}
.section-dark .check-list li::before { background: var(--c-accent-light); opacity: .2; }
.section-dark .check-list li::after { color: var(--c-accent-light); }

/* ── 13. Portfolio Grid ────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-6);
  margin-top: var(--sp-8);
}
.portfolio-item {
  display: block;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-bg);
  box-shadow: var(--shadow-sm);
  transition: all var(--t-base);
  text-decoration: none;
  color: inherit;
}
.portfolio-item:hover,
.portfolio-item:focus-visible {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.portfolio-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform var(--t-base);
}
.portfolio-item:hover img,
.portfolio-item:focus-visible img {
  transform: scale(1.03);
}
.portfolio-item .portfolio-caption,
.portfolio-item figcaption {
  display: block;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text-mid);
}
.portfolio-item:hover .portfolio-caption,
.portfolio-item:focus-visible .portfolio-caption {
  color: var(--c-text);
}

/* ── 14. Values Grid ───────────────────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--sp-8);
  margin-top: var(--sp-8);
}
.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
}
.value-card h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-3);
}
.value-card p {
  color: var(--c-text-mid);
  font-size: var(--text-sm);
}

/* ── 15. FAQ ───────────────────────────────────────────────── */
.faq-list {
  margin-top: var(--sp-8);
}
.faq-item {
  border-bottom: 1px solid var(--c-border);
  padding: var(--sp-5) 0;
}
.faq-item:first-child {
  border-top: 1px solid var(--c-border);
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: var(--sp-10);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--text-2xl);
  font-weight: 300;
  color: var(--c-accent);
  transition: transform var(--t-base);
}
.faq-item[open] summary::after {
  content: "−";
}
.faq-item summary h3 {
  display: inline;
  font-family: var(--font-body);
  font-size: var(--text-lg);
  font-weight: 600;
  margin: 0;
}
.faq-item p {
  margin-top: var(--sp-4);
  color: var(--c-text-mid);
  line-height: var(--lh-relaxed);
}

/* ── 16. CTA Section ───────────────────────────────────────── */
.section-cta {
  background: var(--c-bg-dark);
  text-align: center;
  color: var(--c-text-on-dark);
}
.section-cta h2 {
  color: var(--c-text-on-dark);
}
.section-cta p {
  color: var(--c-muted-on-dark);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto var(--sp-8);
}
.cta-actions {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}
.section-cta .btn-outline {
  color: var(--c-text-on-dark);
  border-color: rgba(255,255,255,.3);
}
.section-cta .btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

/* ── 17. Page Hero (Subpages) ──────────────────────────────── */
.page-hero {
  background: var(--c-bg-dark);
  padding: calc(var(--sp-16) + var(--header-h)) 0 var(--sp-12);
  margin-top: calc(var(--header-h) * -1);
  color: var(--c-text-on-dark);
}
.page-hero h1 {
  color: var(--c-text-on-dark);
  margin-bottom: var(--sp-4);
}
.page-hero-sub {
  color: var(--c-muted-on-dark);
  font-size: var(--text-xl);
}

/* Breadcrumb */
.breadcrumb ol {
  display: flex;
  list-style: none;
  padding: 0;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  margin-bottom: var(--sp-6);
}
.breadcrumb li + li::before {
  content: "›";
  margin-right: var(--sp-2);
  color: var(--c-muted-on-dark);
}
.breadcrumb a { color: var(--c-accent-light); }
.breadcrumb [aria-current] { color: var(--c-muted-on-dark); }

/* ── 18. Contact Page ──────────────────────────────────────── */
.contact-info-block {
  margin-bottom: var(--sp-8);
}
.contact-info-block h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  margin-bottom: var(--sp-2);
  color: var(--c-accent-dark);
}
.contact-big {
  font-size: var(--text-3xl);
  font-weight: 700;
  font-family: var(--font-heading);
}
.contact-big a {
  color: var(--c-primary);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--sp-2) 0;
}
.hours-table td {
  padding: var(--sp-2) 0;
  border-bottom: 1px solid var(--c-border);
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 600;
}

/* ── 19. Forms ─────────────────────────────────────────────── */
.contact-form { margin-top: var(--sp-6); }
.form-group { margin-bottom: var(--sp-5); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--c-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  font-family: var(--font-body);
  border: 1px solid var(--c-border-mid);
  border-radius: var(--radius-sm);
  background: var(--c-bg);
  color: var(--c-text);
  transition: border-color var(--t-fast);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--c-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,169,110,.2);
}
.form-group textarea { resize: vertical; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--text-sm);
  line-height: var(--lh-snug);
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 2px;
  flex-shrink: 0;
}
.form-hint {
  margin-top: var(--sp-4);
  font-size: var(--text-sm);
  color: var(--c-text-light);
}

.form-message {
  margin-top: var(--sp-4);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  line-height: var(--lh-snug);
}
.form-message-error {
  background: #fbecec;
  color: #8a2721;
  border: 1px solid #e9b7b5;
}
.form-message-pending {
  background: var(--c-bg-alt);
  color: var(--c-text);
  border: 1px solid var(--c-border-mid);
}

.form-success {
  text-align: center;
  padding: var(--sp-8) var(--sp-4);
  background: var(--c-bg-alt);
  border-radius: var(--radius-md);
}
.form-success h3 {
  color: #2a7d3f;
  margin-bottom: var(--sp-3);
}

/* ── 20. Legal Pages ───────────────────────────────────────── */
.legal-content h2 {
  font-size: var(--text-2xl);
  margin-top: var(--sp-10);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--c-border);
}
.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-content h3 {
  font-size: var(--text-lg);
  font-family: var(--font-body);
  margin-top: var(--sp-6);
}
.legal-content ul {
  margin-bottom: var(--sp-4);
}
.legal-content li {
  margin-bottom: var(--sp-2);
}

/* ── 21. Placeholder Images ────────────────────────────────── */
.placeholder-image {
  background: var(--c-bg-alt);
  border: 2px dashed var(--c-border-mid);
  border-radius: var(--radius-md);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-8);
}
.placeholder-image span {
  font-size: var(--text-lg);
  color: var(--c-text-light);
  font-weight: 500;
}
.placeholder-note {
  background: var(--c-accent-bg);
  border: 1px solid var(--c-accent);
  border-radius: var(--radius-md);
  padding: var(--sp-4) var(--sp-6);
  margin-top: var(--sp-8);
  text-align: center;
}
.placeholder-note p {
  font-size: var(--text-sm);
  color: var(--c-text-mid);
  margin: 0;
}

/* ── 22. Footer ────────────────────────────────────────────── */
.site-footer {
  background: var(--c-bg-darker);
  color: var(--c-muted-on-dark);
  padding: var(--sp-16) 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-10);
}
.footer-heading {
  display: block;
  color: var(--c-text-on-dark);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-4);
}
.footer-heading-mt { margin-top: var(--sp-6); }

.footer-col p {
  font-size: var(--text-sm);
  line-height: var(--lh-relaxed);
}
.footer-col a {
  color: var(--c-muted-on-dark);
  transition: color var(--t-fast);
}
.footer-col a:hover { color: var(--c-accent-light); }

.footer-col ul {
  list-style: none;
  padding: 0;
}
.footer-col li {
  margin-bottom: var(--sp-2);
}
.footer-col li a {
  font-size: var(--text-sm);
}

.social-links {
  display: flex;
  gap: var(--sp-4);
}
.social-links a {
  font-size: var(--text-sm);
  font-weight: 500;
}

.footer-bottom {
  margin-top: var(--sp-12);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
}
.footer-bottom nav {
  display: flex;
  gap: var(--sp-6);
}
.footer-bottom nav a {
  color: var(--c-muted-on-dark);
}

/* ── 23. Service Detail (Leistungen-Seite) ─────────────────── */
.service-detail h3 {
  margin-top: var(--sp-8);
}

/* ── 24. Fade-in Animation ─────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── 25. Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --header-h: 68px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
  }
  .hamburger,
  .hamburger::before,
  .hamburger::after {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-text-on-dark);
    border-radius: 2px;
    transition: all var(--t-base);
  }
  .hamburger {
    position: relative;
  }
  .hamburger::before,
  .hamburger::after {
    content: "";
    position: absolute;
    left: 0;
  }
  .hamburger::before { top: -7px; }
  .hamburger::after  { top:  7px; }

  /* Open state */
  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--c-bg-dark);
    padding: var(--sp-8) var(--container-px);
    transform: translateX(100%);
    transition: transform var(--t-base);
    overflow-y: auto;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .nav-list {
    flex-direction: column;
    gap: 0;
  }
  .nav-link {
    font-size: var(--text-lg);
    padding: var(--sp-4) 0;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }

  /* Mobile dropdown */
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 var(--sp-4);
    display: none;
  }
  .nav-item-dropdown.open .dropdown {
    display: block;
  }
  .dropdown a {
    padding: var(--sp-2) 0;
  }

  .hero {
    min-height: 70vh;
  }
  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .grid-2col {
    gap: var(--sp-8);
  }
  .grid-reverse .image-block { order: 0; }

  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }
  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    text-align: center;
  }
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* ── 26. Print ─────────────────────────────────────────────── */
@media print {
  .site-header,
  .cookie-banner,
  .skip-link,
  .section-cta { display: none; }
  body { color: #000; background: #fff; }
  a { color: #000; text-decoration: underline; }
}
