/* ════════════════════════════════════════════════
   F&C GmbH — flexo · converting
   Stylesheet (invertiert: dunkler Text auf hellem Grund)
   ════════════════════════════════════════════════ */

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

:root {
  --black: #383838;      /* Haupttext / dunkel */
  --white: #f0ede8;      /* heller Hintergrund */
  --pure: #ffffff;       /* reines Weiß */
  --grey: #888;          /* Sekundärtext */
  --line: #ddd;          /* helle Trennlinien */
  --line-d: #ccc;        /* etwas kräftigere Linie */
}

html { font-size: 16px; scroll-behavior: smooth; background: var(--white); overflow-x: hidden; }

body {
  background: var(--white);
  color: var(--black);
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 80px;
  height: 100px;
  background: var(--pure);
  border-bottom: 1px solid var(--line);
}

.nav-logo {
  display: flex; align-items: center;
  text-decoration: none;
  gap: 0;
}

.nav-logo-text { display: none; }

/* ── HAMBURGER ── */
.hamburger {
  width: 64px; height: 64px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 10px;
  cursor: pointer;
  background: none; border: none;
  padding: 6px;
  z-index: 400;
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--black);
  transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger span:nth-child(1) { width: 48px; }
.hamburger span:nth-child(2) { width: 34px; }
.hamburger span:nth-child(3) { width: 42px; }

.hamburger.open span:nth-child(1) { width: 48px; transform: translateY(12px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(12px); }
.hamburger.open span:nth-child(3) { width: 48px; transform: translateY(-12px) rotate(-45deg); }

/* ── MENU OVERLAY ── */
.menu-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: #fff;
  display: flex; flex-direction: column; justify-content: center;
  padding: 140px 80px 60px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-items { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: block;
  font-family: Arial, sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: 0.06em;
  color: var(--black);
  text-decoration: none;
  line-height: 1.1;
  border-bottom: 1px solid var(--line-d);
  padding: 18px 0;
  transition: color 0.25s, padding-left 0.3s;
  cursor: pointer;
  background: none; border-top: none; border-left: none; border-right: none;
  text-align: left;
  width: 100%;
}

.menu-item:first-child { border-top: 1px solid var(--line-d); }
.menu-item:hover { color: var(--grey); padding-left: 16px; }

.menu-item-sub {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2.5vw, 30px);
  letter-spacing: 0.15em;
  color: #999;
  display: block;
  margin-top: 2px;
  font-weight: 400;
  text-transform: uppercase;
}

.menu-footer {
  margin-top: auto;
  padding-top: 40px;
  display: flex; justify-content: space-between; align-items: flex-end;
  border-top: 1px solid var(--line-d);
}

.menu-footer-contact { font-size: 12px; letter-spacing: 0.1em; color: var(--grey); line-height: 1.7; }
.menu-footer-contact a { color: var(--grey); text-decoration: none; }
.menu-footer-contact a:hover { color: var(--black); }

.menu-footer-legal { display: flex; gap: 24px; }
.menu-footer-legal a, .menu-footer-legal button {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #aaa; text-decoration: none; background: none; border: none;
  cursor: pointer; font-family: Arial, sans-serif;
}
.menu-footer-legal a:hover, .menu-footer-legal button:hover { color: var(--grey); }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 140px 80px 60px;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/hero.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.0) brightness(1.15);
  transform: scale(1.02);
  animation: slowzoom 20s ease-in-out infinite alternate;
}

@keyframes slowzoom {
  from { transform: scale(1.0); }
  to   { transform: scale(1.06); }
}

.hero-noise {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(20,20,20,0.0) 0%,
    rgba(20,20,20,0.0) 35%,
    rgba(20,20,20,0.45) 62%,
    rgba(15,15,15,0.82) 88%,
    rgba(12,12,12,0.92) 100%
  );
  pointer-events: none;
}

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

.hero-title {
  font-family: Arial, sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-title-sub {
  display: inline-block;
  font-size: clamp(32px, 5vw, 72px);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-left: 24px;
  font-weight: 400;
  line-height: 1;
  vertical-align: baseline;
  opacity: 0.85;
}

.hero-subtitle {
  font-family: Arial, sans-serif;
  font-size: clamp(16px, 2vw, 26px);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 32px;
}

.hero-title-en { display: none; }

.hero-rule { width: 60px; height: 2px; background: var(--white); margin-bottom: 28px; }

.hero-sub { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; max-width: 900px; }
.hero-sub p { font-size: 17px; line-height: 1.75; color: #aaa; }
.hero-sub p strong { color: var(--white); font-weight: 400; }

.hero-scroll {
  position: absolute; right: 40px; bottom: 60px;
  font-size: 9px; letter-spacing: 0.4em; text-transform: uppercase;
  color: var(--grey);
  writing-mode: vertical-rl;
  animation: fadeup 3s ease infinite;
}

@keyframes fadeup {
  0%,100% { opacity: 0.3; transform: translateY(6px); }
  50% { opacity: 1; transform: translateY(0); }
}

/* ── TICKER ── */
.ticker {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line-d);
  overflow: hidden; padding: 16px 0;
  white-space: nowrap;
  background: var(--pure);
}

.ticker-inner {
  display: inline-block;
  animation: ticker 25s linear infinite;
  font-size: 11px; letter-spacing: 0.3em; color: var(--grey);
}

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── SERVICES LIST ── */
.services-grid {
  background: #E3E3E3;
  border-top: 1px solid var(--line-d);
}

.service-card {
  display: grid;
  grid-template-columns: 60px 280px 1fr 1fr;
  gap: 0;
  align-items: start;
  padding: 48px 40px;
  border-bottom: 1px solid var(--line-d);
  position: relative;
  transition: background 0.3s;
}

.service-card:hover { background: #d8d8d8; }

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; bottom: 0; width: 2px;
  background: var(--black);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.45s ease;
}

.service-card:hover::before { transform: scaleY(1); }

.service-num { font-size: 15px; letter-spacing: 0.25em; color: var(--grey); padding-top: 6px; }

.service-title-block { padding-right: 40px; }

.service-name-de {
  font-family: Arial, sans-serif;
  font-size: 28px; letter-spacing: 0.04em;
  color: var(--black); line-height: 1;
  margin-bottom: 6px;
}

.service-name-en { font-size: 22px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--grey); }

.service-text-de {
  font-size: 16px; line-height: 1.8; color: #555;
  padding-right: 40px;
  border-left: 1px solid var(--line-d);
  padding-left: 32px;
}

.service-text-en {
  font-size: 16px; line-height: 1.8; color: #777;
  border-left: 1px solid var(--line-d);
  padding-left: 32px;
}

.service-desc { display: none; }

/* ── ABOUT SECTION ── */
.section {
  border-bottom: 1px solid var(--line-d);
  padding: 80px 40px;
  background: #EBEBEB;
}

.section-header {
  display: grid; grid-template-columns: 80px 1fr; gap: 40px;
  align-items: start; margin-bottom: 60px;
}

.section-num { font-family: Arial, sans-serif; font-size: 80px; line-height: 1; color: var(--black); }

.section-label { font-size: 16px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); margin-bottom: 16px; }

.section-title {
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--black);
}

.section-en {
  font-size: 22px; color: var(--grey); margin-top: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.section-body { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin-left: 120px; }

.body-de, .body-en { font-size: 17px; line-height: 1.85; color: #555; }
.body-de { border-left: 1px solid var(--line-d); padding-left: 28px; }
.body-en { border-left: 1px solid var(--line-d); padding-left: 28px; color: #555; }

.tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase;
  color: #555; border: 1px solid var(--line-d); padding: 5px 12px;
  margin-bottom: 20px;
}

/* ── CTA ── */
.cta-section {
  padding: 160px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--black);
}

.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../img/cta.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%) contrast(1.1) brightness(0.45);
  transform: scale(1.03);
  animation: slowzoom 22s ease-in-out infinite alternate;
}

.cta-section::before {
  content: 'F&C';
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 40vw; line-height: 1;
  color: #0e0e0e;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  user-select: none;
}

.cta-content { position: relative; z-index: 2; }

.cta-label { font-size: 16px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey); margin-bottom: 24px; }

.cta-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1; letter-spacing: 0.05em;
  color: var(--white); margin-bottom: 8px;
}

.cta-headline-en {
  font-family: Arial, sans-serif;
  font-size: clamp(18px, 2.5vw, 32px);
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 48px;
}

.cta-btn {
  display: inline-block;
  font-family: Arial, sans-serif;
  font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--black);
  background: var(--white);
  padding: 18px 44px;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-btn:hover {
  background: transparent; color: var(--white);
  outline: 1px solid var(--white);
}

/* ── JOBS / STELLENANGEBOTE ── */
.jobs-section {
  background: var(--pure);
  border-top: 1px solid var(--line);
}

.jobs-head {
  padding: 64px 80px 0;
}

.jobs-head .section-label { margin-bottom: 12px; }

.jobs-head-title {
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--black);
}

.jobs-head-en {
  font-size: 20px; color: var(--grey); margin-top: 8px;
  letter-spacing: 0.1em; text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  margin-top: 48px;
}

.job-item {
  padding: 56px 48px 56px 80px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  transition: background 0.3s;
}

.job-item:last-child { border-right: none; }
.job-item:hover { background: #f0f0f0; }

.job-icon {
  width: 52px; height: 52px;
  margin-bottom: 28px;
  color: #888;
  transition: color 0.3s;
}

.job-item:hover .job-icon { color: #333; }
.job-icon svg { width: 100%; height: 100%; }

.job-label {
  font-family: Arial, sans-serif;
  font-size: 22px; letter-spacing: 0.08em;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.15;
}

.job-label-sub {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px; letter-spacing: 0.15em;
  color: #888;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 4px;
}

.job-text {
  font-size: 14px; line-height: 1.85;
  color: #666;
}

.job-text a { color: #666; text-decoration: none; transition: color 0.2s; }
.job-text a:hover { color: #111; }

.job-tag {
  display: inline-block;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: #555; border: 1px solid var(--line-d); padding: 4px 10px;
  margin-top: 16px;
}

/* ── FOOTER ── */
footer {
  background: var(--pure);
  border-top: 1px solid var(--line);
}

.footer-contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.footer-contact-item {
  padding: 56px 48px 56px 80px;
  border-right: 1px solid var(--line);
  display: flex; flex-direction: column; align-items: flex-start;
  text-align: left;
  transition: background 0.3s;
}

.footer-contact-item:last-child { border-right: none; }
.footer-contact-item:hover { background: #f0f0f0; }

.footer-icon { width: 52px; height: 52px; margin-bottom: 28px; color: #888; transition: color 0.3s; }
.footer-contact-item:hover .footer-icon { color: #333; }
.footer-icon svg { width: 100%; height: 100%; }

.footer-contact-label {
  font-family: Arial, sans-serif;
  font-size: 22px; letter-spacing: 0.08em;
  color: #333;
  margin-bottom: 18px;
  line-height: 1.15;
}

.footer-label-sub {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 14px; letter-spacing: 0.15em;
  color: #888;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 4px;
}

.footer-contact-text { font-size: 14px; line-height: 1.85; color: #666; }
.footer-contact-text a { color: #666; text-decoration: none; transition: color 0.2s; }
.footer-contact-text a:hover { color: #111; }

.footer-bottom {
  padding: 28px 80px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.15em; color: #888;
}

.footer-bottom a { color: #888; text-decoration: none; }
.footer-bottom a:hover { color: var(--black); }

.footer-links { display: flex; gap: 32px; }

/* ── MODAL ── */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(56,56,56,0.55);
  overflow-y: auto;
}

.modal-overlay.active { display: flex; align-items: flex-start; justify-content: center; padding: 60px 20px; }

.modal {
  background: var(--pure);
  border: 1px solid var(--line-d);
  max-width: 800px; width: 100%;
  padding: 60px;
  position: relative;
}

.modal-close {
  position: absolute; top: 24px; right: 24px;
  background: none; border: none; color: var(--grey);
  font-family: Arial, sans-serif; font-size: 11px;
  letter-spacing: 0.2em; cursor: pointer;
  text-transform: uppercase;
}

.modal-close:hover { color: var(--black); }

.modal h2 {
  font-family: Arial, sans-serif;
  font-size: 48px; letter-spacing: 0.05em;
  color: var(--black); margin-bottom: 40px;
}

.modal p, .modal li { font-size: 15px; line-height: 1.9; color: #555; margin-bottom: 16px; }

.modal h3 {
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--grey); margin: 36px 0 14px;
  border-top: 1px solid var(--line);
  background: var(--pure); padding-top: 24px;
}

.modal ul { padding-left: 20px; }
.modal a { color: #666; }

/* ── LOGO IMAGE ── */
.nav-logo-img {
  height: 76px; width: auto;
  display: block;
  opacity: 1;
}

/* ── SPECIALIZATION ── */
.spec-section {
  border-bottom: 1px solid var(--line-d);
  background: #fff;
}

.spec-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  padding: 80px 80px;
  align-items: start;
}

.spec-left { padding-right: 80px; border-right: 1px solid var(--line-d); }

.spec-eyebrow {
  font-size: 16px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--grey); margin-bottom: 24px;
  display: block;
}

.spec-headline {
  font-family: Arial, sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0; letter-spacing: 0.04em;
  color: var(--black); margin-bottom: 12px;
}

.spec-sub {
  font-size: 22px; letter-spacing: 0.1em;
  color: var(--grey); text-transform: uppercase;
  font-family: Arial, sans-serif;
}

.spec-list { list-style: none; padding: 0; margin: 0; padding-left: 60px; }

.spec-list li {
  display: flex;
  flex-direction: column;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-d);
}

.spec-list li:first-child { border-top: 1px solid var(--line-d); }

.spec-de { font-size: 17px; color: var(--black); letter-spacing: 0.02em; line-height: 1.3; }
.spec-en { font-size: 16px; color: var(--grey); letter-spacing: 0.08em; margin-top: 4px; text-transform: uppercase; }

/* ── PHOTO STRIP ── */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-bottom: 1px solid var(--line-d);
  height: 400px;
  padding: 40px 80px;
  overflow: hidden;
  background: #E3E3E3;
  width: 100%;
  box-sizing: border-box;
}

.photo-strip-item { overflow: hidden; position: relative; border-radius: 2px; }

.photo-strip-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05) brightness(1);
  display: block;
  transition: transform 0.8s ease;
}

.photo-strip-item:hover img { transform: scale(1.04); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .spec-inner { grid-template-columns: 1fr; padding: 60px 24px; }
  .spec-left { border-right: none; border-bottom: 1px solid var(--line-d); padding-right: 0; padding-bottom: 40px; margin-bottom: 40px; }
  .spec-list { padding-left: 0; }
  .service-card { grid-template-columns: 40px 1fr; grid-template-rows: auto auto; gap: 16px 0; }
  .service-title-block { grid-column: 2; }
  .service-text-de { grid-column: 1 / -1; border-left: none; padding-left: 40px; }
  .service-text-en { grid-column: 1 / -1; border-left: none; padding-left: 40px; margin-top: 12px; }
  .section-body { grid-template-columns: 1fr; margin-left: 0; }
  .jobs-head { padding: 48px 24px 0; }
}

@media (max-width: 768px) {
  .photo-strip { grid-template-columns: 1fr; height: auto; padding: 24px; gap: 16px; }
  .photo-strip-item { height: 240px; }
  .nav-logo-img { height: 56px; }
}

@media (max-width: 600px) {
  nav { padding: 10px 24px; height: 88px; }
  .nav-logo-img { height: 52px; }
  .hero { padding: 108px 24px 50px; }
  .hero-title { font-size: clamp(52px, 14vw, 72px); line-height: 0.92; }
  .hero-subtitle { font-size: 14px; letter-spacing: 0.1em; }
  .hero-sub { grid-template-columns: 1fr; gap: 28px; }
  .hero-sub p { font-size: 16px; }
  .service-card { padding: 32px 24px; }
  .section { padding: 60px 24px; }
  .body-de, .body-en { font-size: 16px; }
  .footer-contact, .jobs-grid { grid-template-columns: 1fr; }
  .footer-contact-item, .job-item { border-right: none; border-bottom: 1px solid var(--line); padding: 48px 24px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .modal { padding: 40px 24px; }
  .menu-overlay { padding: 100px 24px 40px; }
  .menu-item { font-size: clamp(28px, 7vw, 40px); }
  .menu-footer { flex-direction: column; gap: 24px; align-items: flex-start; }
}

/* ════════════════════════════════════════════════
   KIRBY-ERGÄNZUNGEN — Unterseiten & "Mehr"-Links
   ════════════════════════════════════════════════ */

/* "Mehr erfahren" Links auf der Startseite */
.service-more, .section-more {
  padding: 40px 80px;
  border-top: 1px solid var(--line-d);
}
.section-more { padding: 40px 0 0; border-top: none; margin-top: 40px; }

.service-more-link {
  font-family: Arial, sans-serif;
  font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--black); text-decoration: none;
  border-bottom: 1px solid var(--black); padding-bottom: 4px;
  transition: opacity 0.2s;
}
.service-more-link:hover { opacity: 0.55; }

/* ── UNTERSEITEN ── */
.subpage { padding-top: 100px; background: var(--white); }

.subpage-hero {
  padding: 80px 80px 40px;
  border-bottom: 1px solid var(--line-d);
}
.subpage-title {
  font-family: Arial, sans-serif;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1; letter-spacing: 0.04em;
  color: var(--black); margin-top: 12px;
}
.subpage-title-en {
  font-size: 20px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--grey); margin-top: 10px;
}

.subpage-intro {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px;
  padding: 60px 80px;
  border-bottom: 1px solid var(--line-d);
}
.subpage-intro .body-de { border-left: 1px solid var(--line-d); padding-left: 28px; }
.subpage-intro .body-en { border-left: 1px solid var(--line-d); padding-left: 28px; }

/* Leistungen-Detailseite */
.leistungen-detail { padding: 0 80px; }
.leistung-block {
  display: grid;
  grid-template-columns: 60px 1fr 320px;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--line-d);
  align-items: start;
}
.leistung-texts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 20px;
}
.leistung-texts .body-de, .leistung-texts .body-en {
  border-left: 1px solid var(--line-d); padding-left: 24px;
}
.leistung-img img {
  width: 100%; height: 220px; object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  border-radius: 2px;
}

/* Maschinen / PDF */
.maschinen-download { padding: 60px 80px; }
.pdf-meta { margin-top: 18px; font-size: 13px; letter-spacing: 0.1em; color: var(--grey); }

/* Generische Blocks */
.subpage-blocks { padding: 60px 80px; max-width: 900px; }
.subpage-blocks h2 { font-family: Arial, sans-serif; font-size: 32px; margin: 32px 0 16px; color: var(--black); }
.subpage-blocks p { font-size: 17px; line-height: 1.85; color: #555; margin-bottom: 16px; }
.subpage-blocks ul { padding-left: 22px; margin-bottom: 16px; }
.subpage-blocks img { max-width: 100%; height: auto; margin: 24px 0; filter: grayscale(100%); }

.subpage-back { padding: 48px 80px 80px; }

@media (max-width: 900px) {
  .subpage-hero, .subpage-intro, .leistungen-detail, .maschinen-download,
  .subpage-blocks, .subpage-back, .service-more { padding-left: 24px; padding-right: 24px; }
  .subpage-intro, .leistung-texts { grid-template-columns: 1fr; }
  .leistung-block { grid-template-columns: 40px 1fr; }
  .leistung-img { grid-column: 1 / -1; }
  .leistung-img img { height: 280px; }
}
