/* =============================================
   Harder Schreinerei AG - Website Redesign
   Farbpalette: Eichenholz + Anthrazit + Cremweiss
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  /* Primary - Warmes Eichenholz */
  --oak: #8B6914;
  --oak-light: #C4973B;
  --oak-warm: #A37B1E;
  --oak-dark: #6B4F0E;
  --oak-deep: #4A3609;

  /* Secondary - Anthrazit */
  --anthracite: #2C2C2C;
  --anthracite-light: #404040;
  --anthracite-mid: #363636;

  /* Neutral - Cremweiss Palette */
  --white: #FFFFFF;
  --cream: #FBF8F3;
  --cream-warm: #F5EDE0;
  --sand: #E8DFD0;
  --warm-gray: #B5AD9E;
  --mid-gray: #8A8379;
  --dark-gray: #5A554E;
  --text: #2C2824;

  /* Accent */
  --wood-red: #7A3B2E;
  --moss: #5A6B4A;
  --success: #4A7A5A;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(44, 40, 36, 0.08);
  --shadow-md: 0 4px 12px rgba(44, 40, 36, 0.1);
  --shadow-lg: 0 8px 30px rgba(44, 40, 36, 0.12);
  --shadow-xl: 0 16px 50px rgba(44, 40, 36, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 6rem 0;
  --container-width: 1200px;
  --header-height: 80px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--anthracite);
  line-height: 1.2;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.25rem;
}

p {
  color: var(--dark-gray);
  line-height: 1.8;
  font-size: 1.05rem;
}

/* --- Container --- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* --- Section Badge --- */
.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oak);
  padding: 0.4rem 1rem;
  background: rgba(139, 105, 20, 0.08);
  border-radius: 100px;
  margin-bottom: 1rem;
}

.section-badge svg {
  width: 16px;
  height: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  white-space: nowrap;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn:hover svg {
  transform: translateX(3px);
}

.btn-primary {
  background: var(--oak);
  color: var(--white);
  border-color: var(--oak);
}

.btn-primary:hover {
  background: var(--oak-dark);
  border-color: var(--oak-dark);
  box-shadow: 0 4px 16px rgba(139, 105, 20, 0.3);
}

.btn-secondary {
  background: transparent;
  color: var(--anthracite);
  border-color: var(--sand);
}

.btn-secondary:hover {
  border-color: var(--oak);
  color: var(--oak);
}

.btn-white {
  background: var(--white);
  color: var(--anthracite);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--cream);
  box-shadow: var(--shadow-md);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
}

/* --- Header / Navigation --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 223, 208, 0.6);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--anthracite);
  text-decoration: none;
}

.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--oak);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.logo-icon svg {
  width: 24px;
  height: 24px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text .company-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--anthracite);
}

.logo-text .company-sub {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--warm-gray);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-main a {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: 6px;
  transition: all var(--transition-fast);
}

.nav-main a:hover,
.nav-main a.active {
  color: var(--oak);
  background: rgba(139, 105, 20, 0.06);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--anthracite);
}

.nav-phone svg {
  width: 16px;
  height: 16px;
  color: var(--oak);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--anthracite);
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44, 44, 44, 0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav-overlay.active {
  opacity: 1;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 999;
  transition: right var(--transition-base);
  overflow-y: auto;
  padding: 2rem;
}

.mobile-nav.active {
  right: 0;
}

.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 2rem;
}

.mobile-nav-close button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--anthracite);
}

.mobile-nav-close button svg {
  width: 24px;
  height: 24px;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-nav-links a {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark-gray);
  border-radius: 8px;
  transition: all var(--transition-fast);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background: rgba(139, 105, 20, 0.06);
  color: var(--oak);
}

.mobile-nav-cta {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.mobile-nav-cta .btn {
  width: 100%;
  justify-content: center;
}

.mobile-nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  justify-content: center;
  font-weight: 600;
  color: var(--anthracite);
}

.mobile-nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--oak);
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--anthracite);
  margin-top: var(--header-height);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44, 44, 44, 0.85) 0%, rgba(44, 44, 44, 0.4) 60%, rgba(139, 105, 20, 0.2) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.hero-inner {
  max-width: 680px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(139, 105, 20, 0.2);
  border: 1px solid rgba(196, 151, 59, 0.3);
  border-radius: 100px;
  color: var(--oak-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: clamp(2.5rem, 5vw, 3.8rem);
}

.hero h1 span {
  color: var(--oak-light);
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 550px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

.hero-stat {
  text-align: left;
}

.hero-stat .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--oak-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.hero-stat .stat-label {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.03em;
}

/* --- Page Hero (Unterseiten) --- */
.page-hero {
  background: linear-gradient(135deg, var(--anthracite) 0%, var(--anthracite-light) 100%);
  padding: 8rem 0 4rem;
  margin-top: var(--header-height);
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.15rem;
  max-width: 600px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--oak-light);
}

.breadcrumb svg {
  width: 14px;
  height: 14px;
}

/* --- Stats Bar --- */
.stats-bar {
  background: var(--cream);
  padding: 3rem 0;
  border-bottom: 1px solid var(--sand);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 1rem;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--oak);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--mid-gray);
  font-weight: 500;
}

/* --- Section Styles --- */
.section {
  padding: var(--section-padding);
}

.section-light {
  background: var(--cream);
}

.section-dark {
  background: var(--anthracite);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-header p {
  margin-top: 1rem;
  color: var(--mid-gray);
  font-size: 1.1rem;
}

.section-header-left {
  max-width: 600px;
  margin-bottom: 3rem;
}

.section-header-left p {
  margin-top: 1rem;
  color: var(--mid-gray);
}

/* --- Service Cards --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--oak);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-4px);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-icon {
  width: 56px;
  height: 56px;
  background: rgba(139, 105, 20, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--oak);
}

.service-card-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.25rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--oak);
  transition: gap var(--transition-fast);
}

.service-card .card-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.service-card:hover .card-link svg {
  transform: translateX(4px);
}

/* --- Portfolio / Project Grid --- */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.portfolio-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--anthracite);
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
  opacity: 0.9;
}

.portfolio-card:hover img {
  transform: scale(1.05);
  opacity: 0.6;
}

.portfolio-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(44, 44, 44, 0.9) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: all var(--transition-base);
}

.portfolio-card:hover .portfolio-card-overlay {
  background: linear-gradient(180deg, transparent 20%, rgba(44, 44, 44, 0.95) 100%);
}

.portfolio-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--oak-light);
  margin-bottom: 0.5rem;
}

.portfolio-card-overlay h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.portfolio-card-overlay p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* --- Feature / Content Split --- */
.content-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.content-split.reverse {
  direction: rtl;
}

.content-split.reverse > * {
  direction: ltr;
}

.content-image {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}

.content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.content-text h2 {
  margin-bottom: 1rem;
}

.content-text p {
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.feature-list-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.feature-list-item svg {
  width: 22px;
  height: 22px;
  color: var(--oak);
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.feature-list-item span {
  font-size: 0.95rem;
  color: var(--dark-gray);
}

/* --- Testimonial --- */
.testimonial-section {
  background: var(--cream);
  padding: var(--section-padding);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--sand);
}

.testimonial-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--oak);
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--oak);
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--oak);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--anthracite);
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--mid-gray);
}

/* --- CTA Section --- */
.cta-section {
  background: linear-gradient(135deg, var(--anthracite) 0%, #1a1a1a 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -200px;
  top: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 105, 20, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Text + Image Module --- */
.text-image-module {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: var(--section-padding);
}

.text-image-module.reverse {
  direction: rtl;
}

.text-image-module.reverse > * {
  direction: ltr;
}

.text-image-content h2 {
  margin-bottom: 1rem;
}

.text-image-content p {
  margin-bottom: 1.5rem;
}

.text-image-visual {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.text-image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Image Gallery Grid --- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44, 44, 44, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
  color: var(--white);
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay svg {
  width: 32px;
  height: 32px;
}

/* --- Timeline --- */
.timeline {
  position: relative;
  padding-left: 3rem;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--sand);
}

.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -3rem;
  top: 0.4rem;
  width: 12px;
  height: 12px;
  background: var(--oak);
  border-radius: 50%;
  border: 3px solid var(--cream);
  transform: translateX(-5px);
}

.timeline-item .timeline-year {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--oak);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.timeline-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.timeline-item p {
  font-size: 0.95rem;
}

/* --- FAQ Accordion --- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: 10px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--anthracite);
  font-family: var(--font-body);
  transition: color var(--transition-fast);
}

.faq-question:hover {
  color: var(--oak);
}

.faq-question svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--oak);
}

.faq-item.active .faq-question svg {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--cream);
  border-radius: 10px;
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  background: rgba(139, 105, 20, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--oak);
  flex-shrink: 0;
}

.contact-info-card .info-icon svg {
  width: 22px;
  height: 22px;
}

.contact-info-card h4 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--mid-gray);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--anthracite);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--sand);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--oak);
  box-shadow: 0 0 0 3px rgba(139, 105, 20, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* --- Map Section --- */
.map-section {
  height: 400px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--sand);
}

.map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--mid-gray);
}

.map-placeholder svg {
  width: 48px;
  height: 48px;
}

/* --- Footer --- */
.site-footer {
  background: var(--anthracite);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--oak-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.4);
  transition: color var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--oak-light);
}

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--sand);
  transition: all var(--transition-base);
}

.team-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--cream-warm);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--oak);
}

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}

.team-card .role {
  font-size: 0.9rem;
  color: var(--oak);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.team-card p {
  font-size: 0.9rem;
}

.team-card .email-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--oak);
  font-weight: 500;
}

.team-card .email-link svg {
  width: 14px;
  height: 14px;
}

/* --- Lehrstellen / Career --- */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.benefit-card {
  padding: 2rem;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--sand);
  text-align: center;
}

.benefit-card svg {
  width: 40px;
  height: 40px;
  color: var(--oak);
  margin-bottom: 1rem;
}

.benefit-card h4 {
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
}

/* --- Reference / Badge --- */
.highlight-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(139, 105, 20, 0.08);
  border: 1px solid rgba(139, 105, 20, 0.15);
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--oak);
}

.highlight-badge svg {
  width: 20px;
  height: 20px;
}

/* --- Process Steps --- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: step;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(139, 105, 20, 0.15);
  margin-bottom: 1rem;
  line-height: 1;
}

.process-step h4 {
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.9rem;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 4rem 0;
    --header-height: 70px;
  }

  .nav-main,
  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: block;
  }

  .mobile-nav-overlay {
    display: block;
  }

  .hero {
    min-height: 80vh;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .content-split,
  .text-image-module,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .content-split.reverse,
  .text-image-module.reverse {
    direction: ltr;
  }

  .services-grid,
  .testimonials-grid,
  .portfolio-grid,
  .gallery-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

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

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

  .process-steps {
    grid-template-columns: 1fr;
  }

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

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.6rem;
  }

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

  .stat-item .stat-number {
    font-size: 2.2rem;
  }
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-oak { color: var(--oak); }
.text-white { color: var(--white); }
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }

/* Wood grain texture pattern (subtle) */
.wood-texture {
  position: relative;
}

.wood-texture::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 20px,
    rgba(139, 105, 20, 0.02) 20px,
    rgba(139, 105, 20, 0.02) 21px
  );
  pointer-events: none;
}

/* Divider with wood accent */
.wood-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--oak), var(--oak-light));
  border-radius: 2px;
  margin: 1rem 0;
}

.wood-divider-center {
  margin: 1rem auto;
}

/* --- Print --- */
@media print {
  .site-header,
  .site-footer,
  .cta-section {
    display: none;
  }
}
