/* ============================================================
   GORDON VIERGUTZ THEME – gordon.css
   Farbwelt: Seriös & Professionell | Navy + Weiß + Akzentblau
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Barlow:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties ────────────────────────────────── */
:root {
  --navy:       #1B3A5C;
  --navy-dark:  #0F2338;
  --navy-mid:   #2C5282;
  --blue:       #2563EB;
  --blue-light: #EBF4FF;
  --white:      #FFFFFF;
  --off-white:  #F8FAFC;
  --grey-100:   #F1F5F9;
  --grey-200:   #E2E8F0;
  --grey-400:   #94A3B8;
  --grey-600:   #475569;
  --grey-800:   #1E293B;
  --text:       #111827;
  --muted:      #64748B;

  --font-heading: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Barlow', system-ui, sans-serif;

  --radius:     6px;
  --radius-lg:  12px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,.14);
  --transition: .25s ease;

  --max-width:  1200px;
  --section-v:  80px;
}

/* ── Base ─────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--navy-dark);
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .75rem; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: .6rem; }
h3 { font-size: clamp(1.15rem, 2.5vw, 1.5rem); margin-bottom: .5rem; }
h4 { font-size: 1.15rem; font-family: var(--font-body); font-weight: 700; }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.5rem; margin-bottom: 1rem; }
li { margin-bottom: .35rem; }

.text-muted  { color: var(--muted); }
.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }

/* ── Layout Utilities ─────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: var(--section-v) 0; }
.section-pad-sm { padding: 48px 0; }
.bg-light { background: var(--off-white); }
.bg-navy  { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-primary:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-color: var(--white);
}
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 22px; font-size: .875rem; }

/* ── Navigation ───────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.site-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-dark);
  text-decoration: none;
  line-height: 1.2;
}
.site-logo span { display: block; font-size: .75rem; font-family: var(--font-body); font-weight: 400; color: var(--muted); letter-spacing: .08em; text-transform: uppercase; }
.site-logo:hover { color: var(--navy-dark); }

/* Desktop nav */
.primary-nav { display: flex; align-items: center; gap: 2rem; list-style: none; margin: 0; padding: 0; }
.primary-nav > li { position: relative; }
.primary-nav > li > a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--grey-800);
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .5rem 0;
  border-bottom: 2px solid transparent;
  transition: all var(--transition);
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: var(--blue);
  border-bottom-color: var(--blue);
}
/* Dropdown */
.primary-nav .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: .5rem 0;
  list-style: none;
  margin: 0;
}
.primary-nav li:hover .sub-menu { display: block; }
.primary-nav .sub-menu a {
  display: block;
  padding: .65rem 1.25rem;
  font-size: .875rem;
  font-weight: 500;
  color: var(--grey-800);
  transition: all var(--transition);
}
.primary-nav .sub-menu a:hover { background: var(--blue-light); color: var(--blue); }
.nav-cta { margin-left: 1rem; }

/* Mobile burger */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-dark); transition: all var(--transition); }
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero Section ─────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(37,99,235,.25) 0%, transparent 65%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(37,99,235,.25);
  color: #93C5FD;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  border: 1px solid rgba(147,197,253,.3);
}
.hero h1 { color: var(--white); font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 1.25rem; }
.hero-lead { font-size: 1.15rem; color: rgba(255,255,255,.8); margin-bottom: 2rem; font-weight: 300; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-linkedin {
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  text-decoration: none;
  transition: color var(--transition);
}
.hero-linkedin:hover { color: rgba(255,255,255,.9); }
.hero-linkedin svg { flex-shrink: 0; }

.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-avatar {
  width: 340px;
  height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 4px solid rgba(255,255,255,.15);
}
.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--blue);
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: .875rem;
  font-weight: 600;
  box-shadow: var(--shadow-md);
  line-height: 1.4;
  max-width: 180px;
}
.hero-badge strong { display: block; font-size: 1.1rem; }

/* ── Section Labels ───────────────────────────────────────── */
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: .75rem;
}
.section-intro { max-width: 640px; color: var(--muted); font-size: 1.05rem; }
.section-intro.centered { margin: 0 auto; text-align: center; }

/* ── Service Cards (Two Column) ───────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 40px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blue);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: transparent; }
.service-card:hover::before { transform: scaleY(1); }
.service-card .card-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue);
}
.service-card h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.service-card p { color: var(--muted); margin-bottom: 1.5rem; font-size: .95rem; }
.card-items { list-style: none; padding: 0; margin: 0 0 1.75rem; }
.card-items li {
  padding: .4rem 0;
  font-size: .9rem;
  color: var(--grey-600);
  border-bottom: 1px solid var(--grey-100);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.card-items li::before { content: '→'; color: var(--blue); font-weight: 700; flex-shrink: 0; }

/* ── Stats / Zahlen ───────────────────────────────────────── */
.stats-strip {
  background: var(--navy);
  padding: 60px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.stat-item .stat-label {
  font-size: .875rem;
  color: rgba(255,255,255,.6);
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.stat-item .stat-number em {
  font-style: normal;
  color: #93C5FD;
}

/* ── Trust / LinkedIn ─────────────────────────────────────── */
.trust-block {
  background: var(--blue-light);
  border: 1px solid rgba(37,99,235,.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  align-items: center;
  gap: 32px;
}
.trust-block .linkedin-btn {
  background: #0077B5;
  color: var(--white);
  border-color: #0077B5;
  flex-shrink: 0;
}
.trust-block .linkedin-btn:hover { background: #005885; border-color: #005885; color: var(--white); }

/* ── Two-Column Teaser ────────────────────────────────────── */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}
.teaser-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}
.teaser-card:hover { box-shadow: var(--shadow-lg); }
.teaser-card .teaser-img {
  height: 220px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.3);
  font-size: 4rem;
}
.teaser-card .teaser-body { padding: 28px; }
.teaser-card h3 { font-size: 1.25rem; margin-bottom: .5rem; }
.teaser-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.5rem; }

/* ── Blog Preview ─────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.blog-card .blog-thumb {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 3rem;
  overflow: hidden;
}
.blog-card .blog-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 1; }
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-cat {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: .5rem;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: .5rem; line-height: 1.35; }
.blog-card p { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.blog-card .blog-meta { font-size: .8rem; color: var(--grey-400); }

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0;
  text-align: center;
}
.cta-strip h2 { color: var(--white); margin-bottom: .75rem; }
.cta-strip p { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--grey-800);
  color: rgba(255,255,255,.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .site-logo { color: var(--white); font-size: 1.15rem; }
.footer-brand .site-logo span { color: rgba(255,255,255,.4); }
.footer-brand p { font-size: .9rem; margin-top: 1rem; line-height: 1.6; color: rgba(255,255,255,.55); }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: .5rem; }
.footer-col ul li a { color: rgba(255,255,255,.55); font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .825rem;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.45); }
.footer-bottom a:hover { color: var(--white); }
.footer-links { display: flex; gap: 1.5rem; }

/* ── Über-Seite ───────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.about-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-photo img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-photo-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.2);
  font-size: 6rem;
}
.kompetenz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.kompetenz-item {
  background: var(--off-white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  padding: 20px;
}
.kompetenz-item .k-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.kompetenz-item h4 { font-size: .95rem; margin-bottom: .25rem; }
.kompetenz-item p { font-size: .875rem; color: var(--muted); margin: 0; }

/* ── Leistungen Page ──────────────────────────────────────── */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.leistung-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.leistung-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.leistung-card .l-icon {
  width: 64px; height: 64px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}
.leistung-card h3 { margin-bottom: .75rem; }
.leistung-card p { color: var(--muted); font-size: .95rem; margin-bottom: 1.75rem; }

/* ── Kontakt ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form .form-group { margin-bottom: 1.25rem; }
.contact-form label {
  display: block;
  font-size: .875rem;
  font-weight: 600;
  color: var(--grey-800);
  margin-bottom: .4rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form .privacy-check { display: flex; gap: .75rem; align-items: flex-start; }
.contact-form .privacy-check input { width: auto; margin-top: 3px; }
.contact-form .privacy-check label { font-weight: 400; font-size: .85rem; color: var(--muted); margin: 0; }
.contact-info { padding: 36px; background: var(--off-white); border-radius: var(--radius-lg); border: 1px solid var(--grey-200); }
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.25rem; align-items: flex-start; }
.contact-item .c-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1rem;
}
.contact-item .c-text strong { display: block; font-size: .875rem; font-weight: 600; margin-bottom: .15rem; }
.contact-item .c-text span { font-size: .9rem; color: var(--muted); }

/* ── Page Hero ────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 72px 0 64px;
}
.page-hero .page-eyebrow {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #93C5FD;
  margin-bottom: .75rem;
}
.page-hero h1 { color: var(--white); font-size: clamp(1.75rem, 4vw, 2.5rem); }
.page-hero .page-lead { color: rgba(255,255,255,.7); font-size: 1.05rem; margin-top: .75rem; max-width: 600px; }
.breadcrumb { display: flex; gap: .5rem; font-size: .825rem; color: rgba(255,255,255,.45); margin-bottom: 1.25rem; list-style: none; padding: 0; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb li + li::before { content: '/'; margin-right: .5rem; }

/* ── Handelsvertretung Page ───────────────────────────────── */
.ug-header {
  display: flex; gap: 16px; align-items: center; margin-bottom: 2rem;
}
.ug-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--navy);
  color: var(--white);
  font-size: .8rem;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
}
.process-steps { counter-reset: step; margin-top: 32px; }
.process-step {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--grey-100);
}
.process-step:last-child { border: none; margin-bottom: 0; padding-bottom: 0; }
.step-num {
  counter-increment: step;
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}
.step-body h4 { margin-bottom: .3rem; font-size: 1rem; }
.step-body p { margin: 0; font-size: .925rem; color: var(--muted); }

/* ── 404 / misc ───────────────────────────────────────────── */
.page-404 { text-align: center; padding: 120px 0; }
.page-404 .error-code { font-size: 8rem; font-family: var(--font-heading); color: var(--grey-200); line-height: 1; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-image-wrap { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-v: 56px; }
  .primary-nav, .nav-cta { display: none; }
  .primary-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    padding: 1.5rem;
    border-top: 1px solid var(--grey-200);
    box-shadow: var(--shadow-lg);
    gap: .25rem;
    align-items: flex-start;
  }
  .nav-cta.open { display: flex; padding: .5rem 1.5rem 1.5rem; }
  .menu-toggle { display: flex; }
  .primary-nav .sub-menu { display: block; position: static; border: none; box-shadow: none; padding-left: 1rem; }
  .services-grid,
  .teaser-grid,
  .about-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .kompetenz-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-block { flex-direction: column; }
  .hero { padding: 72px 0 60px; }
  .hero-btns { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .leistungen-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ── WP Alignment Classes ─────────────────────────────────── */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { margin: 1.5rem auto; text-align: center; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: .85rem; color: var(--muted); margin-top: .5rem; }

/* ── Fade-in scroll animation ─────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .5s ease, transform .5s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Staggered delay for grid children */
.services-grid .service-card:nth-child(2),
.blog-grid .blog-card:nth-child(2),
.leistungen-grid .leistung-card:nth-child(2) { transition-delay: .1s; }
.blog-grid .blog-card:nth-child(3),
.leistungen-grid .leistung-card:nth-child(3) { transition-delay: .2s; }

/* ── Header scrolled state ────────────────────────────────── */
.site-header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.10); }

/* ── Entry content (Blog, Impressum, generic pages) ──────── */
.entry-content h2 { margin-top: 2rem; }
.entry-content h3 { margin-top: 1.5rem; }
.entry-content ul, .entry-content ol { margin-bottom: 1rem; }
.entry-content a { color: var(--blue); text-decoration: underline; }
.entry-content blockquote {
  border-left: 4px solid var(--blue);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--blue-light);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic;
  color: var(--navy);
}

/* ── Impressum / Datenschutz ─────────────────────────────── */
.legal-content { max-width: 860px; line-height: 1.85; }
.legal-content h2 { font-size: 1.3rem; margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--grey-200); }
.legal-content address { font-style: normal; }
