/* ════════════════════════════════════════════════════════════
   DOMNANOVITS GMBH  ·  styles.css
   Mobile-first  ·  375 / 768 / 1024 breakpoints
════════════════════════════════════════════════════════════ */

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

:root {
  --ink:    #111110;  --ink-2:  #2A2A28;  --ink-3: #4A4A46;  --ink-4: #7A7A74;
  --paper:  #F5EFE6;  --paper-2:#EDE6DB;  --paper-3:#D8D0C5;
  --gold:   #C4954A;  --gold-2: #A67A38;  --gold-lt:#F0DEB8;
  --nav-h:  56px;
  --pad:    20px;          /* mobile gutter */
  --serif:  'Playfair Display', Georgia, serif;
  --sans:   'Barlow', sans-serif;
  --cond:   'Barlow Condensed', sans-serif;
  --ease:   cubic-bezier(.25,.46,.45,.94);
  --radius: 2px;
}

html { scroll-behavior: smooth; text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  /* Safe-area for notched phones */
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

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

/* Global focus-visible styles */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* Page transition */
.page { min-height: 100vh; padding-top: var(--nav-h); animation: pageFade .4s var(--ease) both; }
@keyframes pageFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* ════════════════════════════════════════════════════════════
   NAVIGATION  (mobile-first)
════════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: var(--ink);
  display: flex; align-items: center;
  padding: 0 var(--pad);
  border-bottom: 1px solid rgba(196,149,74,.2);
  padding-left: max(var(--pad), env(safe-area-inset-left));
  padding-right: max(var(--pad), env(safe-area-inset-right));
}

.nav-logo {
  display: flex; flex-direction: column; gap: 2px;
  text-decoration: none; margin-right: auto; flex-shrink: 0;
  /* Touch target */
  min-height: 44px; justify-content: center;
}
.nav-logo-name {
  font-family: var(--cond); font-size: 18px; font-weight: 700;
  letter-spacing: .1em; color: #fff; text-transform: uppercase; line-height: 1;
}
.nav-logo-sub {
  font-family: var(--cond); font-size: 9px; font-weight: 400;
  letter-spacing: .2em; color: var(--gold); text-transform: uppercase;
}

/* Desktop nav links — hidden on mobile */
.nav-links { display: none; list-style: none; }
.nav-cta   { display: none; }

/* ── Hamburger ─────────────────────────────────────────────── */
.nav-burger {
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  gap: 5px; width: 44px; height: 44px;
  background: none; border: none; cursor: pointer;
  margin-left: 8px; padding: 0; flex-shrink: 0;
  -webkit-tap-highlight-color: transparent;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: rgba(255,255,255,.85);
  transition: transform .3s var(--ease), opacity .2s, width .2s;
  transform-origin: center;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Nav Overlay ───────────────────────────────────── */
.nav-overlay {
  display: none;
  position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: var(--ink); z-index: 999;
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  padding: 16px var(--pad) env(safe-area-inset-bottom, 48px);
}
.nav-overlay.is-open { display: block; }
.nav-overlay ul { list-style: none; }
.nav-overlay-item { border-bottom: 1px solid rgba(255,255,255,.08); }
.nav-overlay-item > a,
.nav-overlay-item > span {
  display: flex; align-items: center;
  min-height: 52px; padding: 0;
  font-family: var(--cond); font-size: 17px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.88); text-decoration: none;
}
.nav-overlay-sub {
  padding: 0 0 12px 16px;
  display: flex; flex-direction: column;
}
.nav-overlay-sub a {
  display: flex; align-items: center;
  min-height: 44px;
  font-family: var(--cond); font-size: 14px; font-weight: 400;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.5); text-decoration: none;
  transition: color .15s;
}
.nav-overlay-sub a:hover,
.nav-overlay-sub a:focus-visible { color: var(--gold); }
.nav-overlay-cta {
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; margin-top: 24px;
  background: var(--gold); color: var(--ink);
  font-family: var(--cond); font-size: 14px; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  text-decoration: none;
}

/* ════════════════════════════════════════════════════════════
   HERO  (mobile)
════════════════════════════════════════════════════════════ */
.hero {
  position: relative; overflow: hidden;
  min-height: calc(100svh - var(--nav-h));
  background: var(--ink);
  display: flex; flex-direction: column;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px var(--pad) 100px;
  position: relative; z-index: 2;
  flex: 1;
}
.hero-eyebrow {
  font-family: var(--cond); font-size: 10px; font-weight: 500;
  letter-spacing: .26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
}
.hero-eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--gold); }
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 11vw, 56px);
  font-weight: 500; line-height: 1.05; color: #fff;
  margin-bottom: 20px;
}
.hero-h1 em { font-style: italic; color: var(--gold); }
.hero-body {
  font-size: 15px; line-height: 1.75;
  color: rgba(255,255,255,.6);
  margin-bottom: 32px;
}
.hero-actions { display: flex; flex-direction: column; gap: 10px; }
.hero-actions .btn-primary,
.hero-actions .btn-ghost { text-align: center; }

.hero-image {
  position: absolute; inset: 0; z-index: 0;
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .22;
}
.hero-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--ink) 40%, rgba(17,17,16,.45) 100%);
}
.hero-stats {
  position: absolute; bottom: 24px; left: var(--pad); z-index: 3;
  display: flex; gap: 24px;
}
.hero-stat-num {
  font-family: var(--cond); font-size: 30px; font-weight: 700;
  color: #fff; line-height: 1;
}
.hero-stat-num span { color: var(--gold); }
.hero-stat-label {
  font-family: var(--cond); font-size: 9px; font-weight: 400;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(255,255,255,.45); margin-top: 4px;
}
/* Placeholder */
.hero-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg,#2A2A28 0%,#1A1A18 100%);
  display: flex; align-items: center; justify-content: center;
}
.hero-img-placeholder span {
  font-family: var(--cond); font-size: 11px;
  letter-spacing: .2em; color: rgba(255,255,255,.15); text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════════════ */
.btn-primary {
  font-family: var(--cond); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  border: none; padding: 0 28px;
  min-height: 48px; line-height: 48px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-primary:hover { background: var(--gold-2); }
.btn-primary:active { background: var(--gold-2); transform: scale(.98); }

.btn-ghost {
  font-family: var(--cond); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  background: transparent; color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.25);
  padding: 0 28px;
  min-height: 48px; line-height: 46px;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s;
  -webkit-tap-highlight-color: transparent;
}
.btn-ghost:hover  { border-color: var(--gold); color: var(--gold); }
.btn-ghost:active { border-color: var(--gold); transform: scale(.98); }

/* ════════════════════════════════════════════════════════════
   SECTIONS  (mobile)
════════════════════════════════════════════════════════════ */
.section       { padding: 48px var(--pad); }
.section-alt   { background: var(--paper-2); }
.section-dark  { background: var(--ink); }
.section-cta   { padding: 40px var(--pad); text-align: center; }
.section-cta .btn-primary { width: 100%; max-width: 360px; }
.section-contact-top { padding-top: 40px; }
.section-meta  { padding: 28px var(--pad); }
.section-video { padding: 48px var(--pad); }

.section-label {
  font-family: var(--cond); font-size: 10px; font-weight: 500;
  letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.section-label::before { content: ''; width: 24px; height: 1px; background: var(--gold); }
.section-label-center { justify-content: center; }
.section-label-center::before { display: none; }

.section-title {
  font-family: var(--serif);
  font-size: clamp(26px, 8vw, 44px);
  font-weight: 500; line-height: 1.1;
  color: var(--ink); margin-bottom: 20px;
}
.section-title.white { color: #fff; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title-md { font-size: clamp(24px, 6vw, 36px); }
.section-title-centered { text-align: center; margin-bottom: 32px; }

.section-intro {
  font-size: 16px; line-height: 1.8;
  color: var(--ink-3); margin-bottom: 40px;
}
.section-intro.white { color: rgba(255,255,255,.6); }

/* PAGE HEADER  (mobile) */
.page-header {
  background: var(--ink);
  padding: 40px var(--pad) 32px;
  border-bottom: 1px solid rgba(196,149,74,.18);
}
.page-header-inner { max-width: 820px; }
.page-header-h1 {
  font-family: var(--serif);
  font-size: clamp(28px, 8vw, 52px);
  font-weight: 500; color: #fff;
  line-height: 1.08; margin-bottom: 16px;
}
.page-header-h1 em { font-style: italic; color: var(--gold); }
.page-header-sub {
  font-size: 15px; color: rgba(255,255,255,.55);
  line-height: 1.75;
}

/* ════════════════════════════════════════════════════════════
   CONTENT  (mobile-stacked)
════════════════════════════════════════════════════════════ */
.content-split { display: flex; flex-direction: column; gap: 28px; }
/* Image first on mobile */
.content-split > div:last-child { order: -1; }

.content-img {
  width: 100%; aspect-ratio: 16/9;
  object-fit: cover;
}
.lead-text {
  font-family: var(--serif); font-size: 19px; font-weight: 400;
  line-height: 1.5; color: var(--ink); margin-bottom: 20px;
}
.body-text {
  font-size: 16px; line-height: 1.8;
  color: var(--ink-3); margin-bottom: 16px;
}
.body-text:last-child { margin-bottom: 0; }
.highlight-box {
  border-left: 3px solid var(--gold);
  padding: 16px 20px; margin: 24px 0;
  background: var(--paper-2);
}
.highlight-box p {
  font-family: var(--serif); font-size: 16px;
  font-style: italic; color: var(--ink-2); line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   SERVICES GRID  (mobile: 1-col)
════════════════════════════════════════════════════════════ */
.services-grid { display: flex; flex-direction: column; border-top: 1px solid var(--paper-3); }
.service-card {
  padding: 28px var(--pad);
  border-bottom: 1px solid var(--paper-3);
  text-decoration: none; color: inherit; display: block;
  -webkit-tap-highlight-color: transparent;
  position: relative; overflow: hidden;
  transition: background .2s;
}
.service-card:last-child { border-bottom: none; }
.service-card:hover,
.service-card:focus-visible { background: var(--paper-2); }
.service-num {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .2em; color: var(--gold); margin-bottom: 12px; display: block;
}
.service-title {
  font-family: var(--serif); font-size: 20px; font-weight: 500;
  line-height: 1.2; color: var(--ink); margin-bottom: 10px;
}
.service-body {
  font-size: 15px; line-height: 1.7; color: var(--ink-4); margin-bottom: 16px;
}
.service-arrow {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
}
.service-arrow::after { content: '→'; }

/* ════════════════════════════════════════════════════════════
   ABOUT STRIP  (mobile: stacked)
════════════════════════════════════════════════════════════ */
.about-strip { display: flex; flex-direction: column; }
.about-strip-image { height: 240px; overflow: hidden; position: relative; }
.about-strip-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.about-strip-content {
  padding: 40px var(--pad);
  background: var(--ink);
}
.generations-row {
  display: flex; flex-direction: column;
  margin-top: 28px; border-top: 1px solid rgba(255,255,255,.1);
}
.gen-item { padding: 16px 0 0; border-top: 1px solid rgba(255,255,255,.08); }
.gen-item:first-child { border-top: none; }
.gen-year {
  font-family: var(--cond); font-size: 24px; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.gen-name {
  font-family: var(--cond); font-size: 13px; font-weight: 500;
  letter-spacing: .08em; color: rgba(255,255,255,.85); margin-top: 4px;
}
.gen-role {
  font-family: var(--sans); font-size: 13px;
  color: rgba(255,255,255,.38); margin-top: 2px;
}

/* ════════════════════════════════════════════════════════════
   TIMELINE  (mobile: single column)
════════════════════════════════════════════════════════════ */
.timeline-wrap { padding: 48px var(--pad); }
.timeline-track { position: relative; padding-left: 32px; }
.timeline-track::before {
  content: ''; position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 1px; background: var(--paper-3);
}
.timeline-item { position: relative; padding-bottom: 40px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: -26px; top: 6px;
  width: 13px; height: 13px; border-radius: 50%;
  background: var(--paper); border: 2px solid var(--gold);
}
.timeline-dot.filled { background: var(--gold); }
.timeline-year {
  font-family: var(--cond); font-size: 11px; font-weight: 600;
  letter-spacing: .16em; color: var(--gold); text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); margin-bottom: 10px; line-height: 1.25;
}
.timeline-body { font-size: 15px; color: var(--ink-3); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════
   MATERIALS  (mobile: 1-col)
════════════════════════════════════════════════════════════ */
.materials-grid { margin-top: 40px; border: 1px solid var(--paper-3); }
.material-item {
  padding: 24px var(--pad);
  border-bottom: 1px solid var(--paper-3);
}
.material-item:last-child { border-bottom: none; }
.material-name {
  font-family: var(--cond); font-size: 16px; font-weight: 700;
  letter-spacing: .06em; color: var(--ink); margin-bottom: 6px;
}
.material-desc { font-size: 14px; color: var(--ink-4); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   PRODUCTS GRID  (mobile: 2-col)
════════════════════════════════════════════════════════════ */
.products-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2px; margin-top: 40px;
}
.product-cell { aspect-ratio: 1; overflow: hidden; position: relative; background: var(--ink-2); }
.product-cell img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s var(--ease);
}
.product-cell:hover img { transform: scale(1.06); }
.product-cell-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px 12px 10px;
  background: linear-gradient(transparent, rgba(17,17,16,.88));
  font-family: var(--cond); font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; color: #fff;
  /* Always visible on mobile (no hover) */
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════
   TEAM  (mobile: 1-col)
════════════════════════════════════════════════════════════ */
.team-grid { display: flex; flex-direction: column; gap: 32px; margin-top: 40px; }
.team-card { }
.team-card-img-placeholder {
  width: 100%; aspect-ratio: 4/3; max-height: 260px;
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px;
}
.team-initials {
  font-family: var(--cond); font-size: 44px; font-weight: 700;
  color: rgba(255,255,255,.12); letter-spacing: .05em;
}
.team-name {
  font-family: var(--serif); font-size: 22px; font-weight: 500;
  color: var(--ink); margin-bottom: 4px;
}
.team-role {
  font-family: var(--cond); font-size: 11px; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.team-bio { font-size: 15px; color: var(--ink-3); line-height: 1.75; }

/* ════════════════════════════════════════════════════════════
   SPECS TABLE  (mobile: stacked)
════════════════════════════════════════════════════════════ */
.specs-table { width: 100%; border-collapse: collapse; margin-top: 32px; }
.specs-table-flush { margin-top: 0; }
.specs-table tr { border-bottom: 1px solid var(--paper-3); display: flex; flex-direction: column; padding: 12px 0; }
.specs-table tr:last-child { border-bottom: none; }
.specs-table td { padding: 0; font-size: 15px; width: 100% !important; }
.specs-table td:first-child {
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 4px; padding-right: 0;
}
.specs-table td:last-child { color: var(--ink-2); }

/* ════════════════════════════════════════════════════════════
   CERT STRIP  (mobile: 2-col grid)
════════════════════════════════════════════════════════════ */
.cert-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--paper-3); margin-top: 40px;
}
.cert-item {
  padding: 20px 16px;
  border-right: 1px solid var(--paper-3);
  border-bottom: 1px solid var(--paper-3);
  display: flex; flex-direction: column; gap: 6px;
}
.cert-item:nth-child(even) { border-right: none; }
.cert-item:nth-last-child(-n+2) { border-bottom: none; }
.cert-label {
  font-family: var(--cond); font-size: 9px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.cert-value {
  font-family: var(--serif); font-size: 18px; font-weight: 500; color: var(--ink);
}
.cert-sub { font-size: 12px; color: var(--ink-4); }

/* ════════════════════════════════════════════════════════════
   QUOTE BLOCK  (mobile)
════════════════════════════════════════════════════════════ */
.quote-block {
  padding: 40px var(--pad);
  background: var(--ink);
}
.quote-mark {
  font-family: var(--serif); font-size: 64px; line-height: .5;
  color: var(--gold); opacity: .35; user-select: none;
  margin-bottom: -8px; display: block;
}
.quote-text {
  font-family: var(--serif);
  font-size: clamp(17px, 5vw, 24px);
  font-style: italic; font-weight: 400;
  color: #fff; line-height: 1.5;
}
.quote-text cite {
  display: block; margin-top: 20px;
  font-family: var(--cond); font-size: 10px; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  font-style: normal; color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   PROCESS STEPS  (mobile: 2-col)
════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--paper-3); margin-top: 40px;
}
.process-step {
  padding: 24px 16px;
  border-right: 1px solid var(--paper-3);
  border-bottom: 1px solid var(--paper-3);
}
.process-step:nth-child(even) { border-right: none; }
.process-step:last-child,
.process-step:nth-last-child(2):nth-child(odd) { border-bottom: none; }
.process-step-num {
  font-family: var(--cond); font-size: 32px; font-weight: 700;
  color: var(--paper-3); line-height: 1; margin-bottom: 10px;
}
.process-step-title {
  font-family: var(--cond); font-size: 13px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--ink); margin-bottom: 8px;
}
.process-step-body { font-size: 13px; color: var(--ink-4); line-height: 1.65; }

/* ════════════════════════════════════════════════════════════
   LEISTUNGEN CARDS  (mobile: 1-col)
════════════════════════════════════════════════════════════ */
.leistungen-cards {
  display: flex; flex-direction: column;
  gap: 3px; margin-top: 40px;
}
.leistung-card {
  position: relative; overflow: hidden;
  min-height: 220px; display: flex; align-items: flex-end;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.leistung-card-bg { position: absolute; inset: 0; background: var(--ink-2); }
.leistung-card-bg img {
  width: 100%; height: 100%; object-fit: cover; opacity: .42;
  transition: opacity .4s;
}
.leistung-card:hover .leistung-card-bg img { opacity: .65; }
.leistung-card-content {
  position: relative; z-index: 2;
  padding: 24px var(--pad);
  background: linear-gradient(transparent, rgba(17,17,16,.92));
  width: 100%;
}
.leistung-card-title {
  font-family: var(--serif); font-size: 24px; font-weight: 500;
  color: #fff; margin-bottom: 6px; line-height: 1.2;
}
.leistung-card-sub {
  font-family: var(--cond); font-size: 11px; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); display: flex; align-items: center; gap: 8px;
}
.leistung-card-sub::after { content: '→'; }

/* ════════════════════════════════════════════════════════════
   TWO COL TEXT  (mobile: 1-col)
════════════════════════════════════════════════════════════ */
.two-col-text { display: flex; flex-direction: column; gap: 20px; }
.two-col-mb { margin-bottom: 32px; }

/* ════════════════════════════════════════════════════════════
   KUNDEN STRIP  (mobile)
════════════════════════════════════════════════════════════ */
.kunden-strip {
  padding: 28px var(--pad);
  background: var(--paper-2);
  display: flex; flex-direction: column; gap: 16px; align-items: flex-start;
}
.kunden-label {
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold);
}
.kunden-divider { display: none; }
.kunden-strip .btn-primary { width: 100%; text-align: center; }

/* ════════════════════════════════════════════════════════════
   CONTACT  (mobile: stacked)
════════════════════════════════════════════════════════════ */
.contact-grid {
  display: flex; flex-direction: column;
  margin-top: 40px;
}
.contact-info {
  background: var(--ink); padding: 36px var(--pad);
  display: flex; flex-direction: column; gap: 28px;
  order: 2;
}
.contact-info-label {
  font-family: var(--cond); font-size: 10px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 6px;
}
.contact-info-value {
  font-size: 16px; color: rgba(255,255,255,.75); line-height: 1.65;
}
.contact-info-value a { color: var(--gold); text-decoration: none; }
.contact-info-value a:hover { text-decoration: underline; }

.contact-form { background: var(--paper-2); padding: 36px var(--pad); order: 1; }
.form-row { margin-bottom: 20px; }
.form-label {
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-3); display: block; margin-bottom: 8px;
}
.form-input, .form-textarea, select.form-input {
  width: 100%; background: #fff;
  border: 1px solid var(--paper-3);
  padding: 14px 16px;
  /* CRITICAL: 16px prevents iOS auto-zoom */
  font-family: var(--sans); font-size: 16px; color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  border-radius: 0; /* removes iOS rounding */
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, select.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,149,74,.15);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit {
  font-family: var(--cond); font-size: 12px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  background: var(--gold); color: var(--ink);
  border: none; padding: 0;
  min-height: 52px; line-height: 52px;
  cursor: pointer; width: 100%;
  transition: background .2s;
  -webkit-tap-highlight-color: transparent;
}
.form-submit:hover { background: var(--gold-2); }
.form-submit:active { background: var(--gold-2); transform: scale(.99); }
.form-success { display: none; text-align: center; padding: 40px 0; }

.contact-meta {
  display: flex; flex-direction: column;
  gap: 20px; padding: 28px var(--pad);
}
.meta-divider { display: none; }

/* ════════════════════════════════════════════════════════════
   FOOTER  (mobile: 2-col)
════════════════════════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid rgba(196,149,74,.18);
  padding: 40px var(--pad) 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
footer > div:first-child { grid-column: span 2; }
.footer-brand-name {
  font-family: var(--cond); font-size: 17px; font-weight: 700;
  letter-spacing: .1em; color: #fff; text-transform: uppercase; margin-bottom: 6px;
}
.footer-brand-tag {
  font-family: var(--cond); font-size: 9px; letter-spacing: .2em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
}
.footer-brand-text {
  font-size: 13px; color: rgba(255,255,255,.38); line-height: 1.7;
}
.footer-col-title {
  font-family: var(--cond); font-size: 10px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; }
.footer-links a {
  font-size: 14px; color: rgba(255,255,255,.45);
  text-decoration: none;
  /* Ensure 44px touch target */
  display: flex; align-items: center; min-height: 36px;
  transition: color .15s;
}
.footer-links a:hover { color: rgba(255,255,255,.85); }
.footer-links a:focus-visible { color: var(--gold); }
.footer-bottom {
  background: var(--ink);
  padding: 16px var(--pad) max(16px, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255,255,255,.05);
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; }
.footer-legal a {
  font-size: 12px; color: rgba(255,255,255,.25);
  text-decoration: none; min-height: 44px;
  display: flex; align-items: center;
  transition: color .15s;
}
.footer-legal a:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════════
   HERITAGE STRIP  (generationen.html)
════════════════════════════════════════════════════════════ */
.heritage-strip {
  display: flex; flex-direction: column;
}
.heritage-strip .strip-img-block { height: 260px; }
.heritage-text {
  background: var(--ink-2);
  padding: 40px var(--pad);
  display: flex; flex-direction: column; justify-content: center;
}
.heritage-text p {
  font-family: var(--serif);
  font-size: clamp(18px, 5vw, 26px);
  color: #fff; line-height: 1.45; font-weight: 400;
}

/* ════════════════════════════════════════════════════════════
   IMAGE STACK  (fertigung, montage)
════════════════════════════════════════════════════════════ */
.img-stack { display: flex; flex-direction: column; gap: 3px; }
.stack-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }

/* ════════════════════════════════════════════════════════════
   TAMPONDRUCK PLACEHOLDER
════════════════════════════════════════════════════════════ */
.tampon-placeholder {
  background: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
  min-height: 220px;
}

/* ════════════════════════════════════════════════════════════
   VIDEO SECTION
════════════════════════════════════════════════════════════ */
.video-inner { max-width: 960px; margin: 0 auto; }
.video-wrap {
  position: relative; width: 100%;
  background: #0a0a09;
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0,0,0,.45);
}
.video-wrap::before { content: ''; display: block; height: 3px; background: var(--gold); }
.video-wrap::after  { content: ''; display: block; height: 3px; background: var(--gold); }
.video-el { display: block; width: 100%; max-height: 56vw; object-fit: contain; background: #0a0a09; }

/* Strip image */
.strip-img-block { overflow: hidden; }
.strip-img-block img { width: 100%; height: 100%; object-fit: cover; }

/* ════════════════════════════════════════════════════════════
   ████  TABLET  ≥ 768px  ████
════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --nav-h: 64px; --pad: 40px; }

  /* Nav: show desktop links */
  .nav-links { display: flex; }
  .nav-cta   { display: inline-block; }
  .nav-burger { display: none; }
  .nav-overlay { display: none !important; }

  .nav-logo-name { font-size: 19px; }
  .nav-item { position: relative; }
  .nav-link {
    font-family: var(--cond); font-size: 11px; font-weight: 500;
    letter-spacing: .13em; text-transform: uppercase;
    color: rgba(255,255,255,.65); text-decoration: none;
    padding: 0 14px; height: var(--nav-h);
    display: flex; align-items: center;
    cursor: pointer; border: none; background: none;
    transition: color .2s; white-space: nowrap;
  }
  .nav-link:hover, .nav-link.active { color: var(--gold); }
  .nav-item:hover .nav-dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .nav-dropdown {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    background: var(--ink-2); border-top: 2px solid var(--gold);
    list-style: none; padding: 8px 0;
    opacity: 0; pointer-events: none; transform: translateY(-6px);
    transition: opacity .2s var(--ease), transform .2s var(--ease);
    box-shadow: 0 16px 40px rgba(0,0,0,.35);
  }
  .nav-dropdown a {
    display: flex; align-items: center; min-height: 44px;
    padding: 0 24px;
    font-family: var(--cond); font-size: 11px; font-weight: 400;
    letter-spacing: .1em; text-transform: uppercase;
    color: rgba(255,255,255,.6); text-decoration: none;
    transition: color .15s, background .15s, padding-left .15s;
  }
  .nav-dropdown a:hover { color: var(--gold); background: rgba(255,255,255,.04); padding-left: 28px; }
  .nav-cta {
    font-family: var(--cond); font-size: 11px; font-weight: 600;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--ink); background: var(--gold);
    padding: 10px 20px; margin-left: 20px;
    text-decoration: none; white-space: nowrap;
    transition: background .2s;
  }
  .nav-cta:hover { background: var(--gold-2); }

  /* Hero: 2-col */
  .hero {
    display: grid; grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - var(--nav-h));
  }
  .hero-content {
    padding: 72px var(--pad) 120px;
    justify-content: center;
    flex: initial;
  }
  .hero-eyebrow { font-size: 11px; margin-bottom: 24px; }
  .hero-h1 { font-size: clamp(38px, 4.5vw, 62px); margin-bottom: 24px; }
  .hero-body { font-size: 15px; margin-bottom: 40px; max-width: 420px; }
  .hero-actions { flex-direction: row; gap: 12px; }
  .hero-actions .btn-primary,
  .hero-actions .btn-ghost { text-align: left; }
  .hero-image {
    position: relative; overflow: hidden;
  }
  .hero-image img { width: 100%; height: 100%; opacity: .42; }
  .hero-image::after {
    background: linear-gradient(to right, var(--ink) 0%, rgba(17,17,16,.15) 70%);
  }
  .hero-stats { left: var(--pad); bottom: 40px; gap: 40px; }
  .hero-stat-num { font-size: 40px; }
  .hero-stat-label { font-size: 10px; }

  /* Sections */
  .section       { padding: 72px var(--pad); }
  .section-cta   { padding: 56px var(--pad); }
  .section-cta .btn-primary { width: auto; }
  .section-meta  { padding: 36px var(--pad); }
  .section-contact-top { padding-top: 52px; }
  .section-video { padding: 72px var(--pad); }

  .page-header  { padding: 56px var(--pad) 48px; }
  .page-header-sub { font-size: 16px; }
  .section-intro { margin-bottom: 52px; }

  /* Content split: 2-col */
  .content-split {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 56px; align-items: center;
  }
  .content-split > div:last-child { order: 0; }
  .content-img { aspect-ratio: 4/3; }

  /* Services: 2-col */
  .services-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--paper-3); }
  .service-card {
    padding: 40px 28px 36px;
    border-right: 1px solid var(--paper-3);
    border-bottom: none;
  }
  .service-card:nth-child(even) { border-right: none; }
  .service-card:nth-child(n+3) { border-top: 1px solid var(--paper-3); }

  /* About strip: 2-col */
  .about-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; }
  .about-strip-image { height: auto; }
  .about-strip-content { padding: 64px var(--pad); }
  .generations-row { flex-direction: row; margin-top: 40px; }
  .gen-item { padding: 20px 24px 0 0 !important; border-top: none !important; border-left: none; }
  .gen-item + .gen-item { border-left: 1px solid rgba(255,255,255,.1) !important; padding-left: 24px !important; }

  /* Timeline: 2-col intro */
  .timeline-wrap { padding: 64px var(--pad); }
  .timeline-track { padding-left: 56px; }
  .timeline-track::before { left: 14px; }
  .timeline-dot { left: -46px; }

  /* Materials: 2-col */
  .materials-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .material-item { border-right: 1px solid var(--paper-3); border-bottom: 1px solid var(--paper-3); }
  .material-item:nth-child(even) { border-right: none; }
  .material-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Products: 3-col */
  .products-grid { grid-template-columns: repeat(3,1fr); }
  .product-cell-label { opacity: 0; transition: opacity .3s; }
  .product-cell:hover .product-cell-label { opacity: 1; }

  /* Team: 3-col */
  .team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 36px; }
  .team-card-img-placeholder { aspect-ratio: 3/4; max-height: none; }

  /* Specs table: horizontal again */
  .specs-table tr { flex-direction: row; padding: 0; }
  .specs-table td { padding: 16px 0; width: auto !important; }
  .specs-table td:first-child { width: 180px !important; padding-right: 20px; margin-bottom: 0; font-size: 11px; }
  .specs-table tr:hover { background: var(--paper-2); }

  /* Cert strip: 4-col row */
  .cert-strip { display: flex; }
  .cert-item { flex: 1; padding: 28px 32px; border-right: 1px solid var(--paper-3); border-bottom: none; }
  .cert-item:nth-child(even) { border-right: 1px solid var(--paper-3); }
  .cert-item:last-child { border-right: none; }
  .cert-item:nth-last-child(-n+2) { border-bottom: none; }
  .cert-label { font-size: 10px; }
  .cert-value { font-size: 19px; }

  /* Process steps: 5-col on tablet... actually 3-col */
  .process-steps { grid-template-columns: repeat(3,1fr); }
  .process-step:nth-child(odd)  { border-right: 1px solid var(--paper-3); }
  .process-step:nth-child(even) { border-right: none; }
  .process-step:nth-child(3) { border-right: none; }
  .process-step:nth-child(n+4) { border-bottom: none; }
  .process-step:nth-last-child(-n+3) { border-bottom: none; }
  .process-step { padding: 28px 20px; }
  .process-step-body { font-size: 13px; }

  /* Quote */
  .quote-block { padding: 64px var(--pad); display: flex; flex-direction: row; gap: 48px; align-items: flex-start; }
  .quote-mark { font-size: 96px; display: inline; margin-bottom: 0; flex-shrink: 0; }

  /* Leistungen: 2-col */
  .leistungen-cards { display: grid; grid-template-columns: 1fr 1fr; }
  .leistung-card { min-height: 300px; }
  .leistung-card-content { padding: 28px 32px; }

  /* Two col text */
  .two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }

  /* Kunden strip */
  .kunden-strip {
    flex-direction: row; align-items: center;
    padding: 36px var(--pad); gap: 40px;
  }
  .kunden-divider { display: block; height: 1px; background: var(--paper-3); flex: 1; }
  .kunden-strip .btn-primary { width: auto; }

  /* Contact */
  .contact-grid { display: grid; grid-template-columns: 1fr 1fr; }
  .contact-info { padding: 48px var(--pad); order: 0; }
  .contact-form { padding: 48px var(--pad); order: 0; }
  .form-input, .form-textarea { font-size: 14px; } /* 14px OK on non-iOS or zoomed */
  .contact-meta { flex-direction: row; align-items: center; gap: 48px; padding: 36px var(--pad); }
  .meta-divider { display: block; height: 40px; width: 1px; background: var(--paper-3); }

  /* Footer: 2-col (keeps brand full width) */
  footer { padding: 48px var(--pad) 36px; }
  .footer-bottom {
    flex-direction: row; padding: 18px var(--pad);
    align-items: center; gap: 0;
  }
  .footer-legal { flex-wrap: nowrap; gap: 24px; }
  .footer-links a { min-height: 32px; }

  /* Heritage strip */
  .heritage-strip { display: grid; grid-template-columns: 1fr 1fr; min-height: 380px; }
  .heritage-strip .strip-img-block { height: auto; }
  .heritage-text { padding: 60px var(--pad); }

  /* Img stack */
  .stack-img { aspect-ratio: 16/9; }

  /* Video */
  .video-el { max-height: 480px; }
}

/* ════════════════════════════════════════════════════════════
   ████  DESKTOP  ≥ 1024px  ████
════════════════════════════════════════════════════════════ */
@media (min-width: 1024px) {
  :root { --nav-h: 72px; --pad: 80px; }

  nav { padding: 0 var(--pad); }
  .nav-logo-name { font-size: 20px; }
  .nav-logo-sub  { font-size: 10px; }
  .nav-link { font-size: 12px; padding: 0 18px; }
  .nav-cta  { padding: 10px 22px; margin-left: 24px; }

  /* Hero */
  .hero-content { padding: 80px 64px 140px var(--pad); }
  .hero-h1 { font-size: clamp(44px, 5vw, 68px); }
  .hero-stats { left: var(--pad); gap: 48px; }
  .hero-stat-num { font-size: 44px; }

  /* Sections */
  .section  { padding: 96px var(--pad); }
  .section-cta { padding: 64px var(--pad); }
  .section-meta { padding: 40px var(--pad); }
  .section-contact-top { padding-top: 64px; }
  .section-video { padding: 80px var(--pad); }
  .page-header { padding: 72px var(--pad) 64px; }
  .section-intro { margin-bottom: 64px; }

  .quote-block { padding: 80px var(--pad); gap: 56px; }
  .quote-mark  { font-size: 110px; }
  .kunden-strip { padding: 40px var(--pad); }
  .contact-meta { padding: 40px var(--pad); gap: 56px; }
  .meta-divider { height: 48px; }

  /* Content split */
  .content-split { gap: 80px; }
  .content-img { aspect-ratio: 4/3; transition: transform .6s var(--ease); }
  .content-img:hover { transform: scale(1.02); }

  /* Services: 4-col */
  .services-grid { grid-template-columns: repeat(4,1fr); }
  .service-card { padding: 48px 32px 40px; }
  .service-card:nth-child(n+3) { border-top: none; }
  .service-card:nth-child(even) { border-right: 1px solid var(--paper-3); }
  .service-card:last-child { border-right: none; }
  .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease); }
  .service-card:hover::after { transform: scaleX(1); }
  .service-arrow { transition: gap .2s; }
  .service-card:hover .service-arrow { gap: 14px; }

  /* About strip */
  .about-strip { min-height: 560px; }
  .about-strip-content { padding: 80px 72px; }
  .gen-item + .gen-item { padding-left: 28px !important; }
  .gen-year { font-size: 28px; }

  /* Timeline: 2-col layout */
  .timeline-wrap {
    display: grid; grid-template-columns: 260px 1fr; gap: 80px;
    padding: 80px var(--pad);
  }
  .timeline-track { padding-left: 64px; }
  .timeline-track::before { left: 16px; }
  .timeline-dot { left: -53px; transition: transform .2s; }
  .timeline-item:hover .timeline-dot { transform: scale(1.3); }
  .timeline-h3 { font-size: 24px; }

  /* Materials: 4-col */
  .materials-grid { grid-template-columns: repeat(4,1fr); }
  .material-item { border-right: 1px solid var(--paper-3); border-bottom: none; }
  .material-item:last-child { border-right: none; }
  .material-item:nth-child(n) { border-bottom: none; }
  .material-item:hover { background: var(--paper-3); }

  /* Cert strip */
  .cert-item { padding: 36px 40px; }
  .cert-value { font-size: 20px; }
  .cert-item:hover { background: var(--paper-2); }

  /* Process: 5-col */
  .process-steps { grid-template-columns: repeat(5,1fr); }
  .process-step { padding: 36px 24px; border-right: 1px solid var(--paper-3); border-bottom: none; }
  .process-step:nth-child(odd)  { border-right: 1px solid var(--paper-3); }
  .process-step:nth-child(even) { border-right: 1px solid var(--paper-3); }
  .process-step:last-child { border-right: none; }
  .process-step:hover { background: var(--paper-2); }
  .process-step-num { font-size: 40px; transition: color .2s; }
  .process-step:hover .process-step-num { color: var(--gold-lt); }

  /* Leistungen */
  .leistung-card { min-height: 340px; }
  .leistung-card-content { padding: 32px 40px; transform: translateY(4px); transition: transform .3s var(--ease); }
  .leistung-card:hover .leistung-card-content { transform: translateY(0); }
  .leistung-card-bg img { transition: opacity .4s, transform .6s var(--ease); }
  .leistung-card:hover .leistung-card-bg img { transform: scale(1.05); }
  .leistung-card-sub { transition: gap .2s; }
  .leistung-card:hover .leistung-card-sub { gap: 14px; }

  /* Contact */
  .contact-info { padding: 56px; }
  .contact-form { padding: 56px; }
  .form-input, .form-textarea { font-size: 14px; }

  /* Footer: 4-col */
  footer { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; padding: 60px var(--pad) 40px; }
  footer > div:first-child { grid-column: auto; }
  .footer-bottom { padding: 20px var(--pad); }
  .footer-links a { font-size: 13px; min-height: auto; }
  .footer-links a:hover { padding-left: 4px; }

  /* Heritage strip */
  .heritage-strip { min-height: 420px; }
  .heritage-text { padding: 72px 64px; }

  /* Kunden strip */
  .kunden-strip { padding: 40px var(--pad); }
}

.tampon-deco{font-family:var(--serif);font-size:clamp(22px,6vw,36px);color:rgba(255,255,255,.15);line-height:1.2}

/* Utility: body-text mit Farb-Override */
.body-text-dark{font-size:16px;line-height:1.8;color:var(--ink-2);margin-bottom:20px}
.contact-success-title{font-family:var(--serif);font-size:22px;font-weight:500;color:var(--ink);margin-bottom:8px}
.meta-info-text{font-size:15px;color:var(--ink-3)}
.meta-info-label{font-family:var(--cond);font-size:10px;font-weight:500;letter-spacing:.22em;text-transform:uppercase;color:var(--gold);margin-bottom:6px}
