/* ===========================================================
   SUMMIT — Textildruck & Veredelung
   Gemeinsames Stylesheet für alle Seiten
   Tokens sauber als --rosegold benannt (Wert = finales Roségold)
   =========================================================== */

:root {
  --espresso: #2B1F1A;
  --cream:    #F6F2EA;
  --cream-2:  #EFEAE0;
  --cream-3:  #E6DECE;

  /* Brand accent: Roségold (warm/metallic — NOT pink) */
  --rosegold:      #C9A48E;
  --rosegold-soft: #E8D4C4;
  --rosegold-deep: #A8836E;
  --caramel:    #C18A5A;
  --anthracite: #3A3A3A;

  --line:      rgba(43, 31, 26, 0.12);
  --line-soft: rgba(43, 31, 26, 0.08);
  --muted:     rgba(43, 31, 26, 0.62);

  --accent:      var(--rosegold);
  --accent-deep: var(--rosegold-deep);

  --font-display: 'Sora', system-ui, sans-serif;
  --font-body:    'Manrope', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--espresso);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; }

.shell { max-width: 1400px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 900px) { .shell { padding: 0 28px; } }

/* ─── nav ─── */
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 0 32px;
}
.brand { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.brand .logo-img { width: 64px; height: 64px; object-fit: contain; display: block; }
.brand .logo-text { display: flex; flex-direction: column; gap: 4px; line-height: 0.9; }
.brand .wordmark {
  font-family: var(--font-display); font-weight: 800; font-size: 26px;
  letter-spacing: -0.015em; color: var(--espresso); line-height: 1;
}
.brand .sub { font-size: 9.5px; letter-spacing: 0.24em; color: var(--muted); text-transform: uppercase; }

.navlinks { display: flex; gap: 56px; align-items: center; }
.navlinks a {
  position: relative; font-size: 15px; font-weight: 500;
  color: var(--espresso); text-decoration: none; padding-bottom: 6px;
}
.navlinks a.active::after {
  content: ""; position: absolute; left: 0; right: 30%; bottom: -2px;
  height: 2px; background: var(--accent);
}
.navlinks a:hover { color: var(--accent-deep); }

/* burger (mobile) */
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--espresso); margin: 5px auto; transition: .2s ease; }

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .navlinks {
    position: absolute; top: 92px; left: 0; right: 0; z-index: 40;
    flex-direction: column; gap: 0; align-items: stretch;
    background: var(--cream); border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    max-height: 0; overflow: hidden; transition: max-height .25s ease;
  }
  .navlinks.open { max-height: 360px; }
  .navlinks a { padding: 16px 28px; border-bottom: 1px solid var(--line-soft); }
  .navlinks a.active::after { display: none; }
  .navlinks a.active { color: var(--accent-deep); }
}

/* ─── hero ─── */
.hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px;
  align-items: center; padding: 24px 0 88px;
}
@media (max-width: 1080px) { .hero { grid-template-columns: 1fr; gap: 36px; } }
.eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--accent-deep); margin-bottom: 28px; }
h1.headline {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(48px, 5.6vw, 88px); line-height: 0.98;
  letter-spacing: -0.025em; margin: 0 0 28px; text-wrap: balance;
}
.accent-rule { width: 64px; height: 3px; background: var(--accent); margin: 0 0 28px; }
.lede { font-size: 17px; line-height: 1.55; max-width: 480px; color: rgba(43, 31, 26, 0.78); margin: 0 0 40px; }
.lede .claim { font-weight: 600; color: var(--espresso); }
.btn {
  display: inline-flex; align-items: center; gap: 18px;
  padding: 16px 28px; background: var(--accent); color: #fff; border: none;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer; text-decoration: none;
  transition: transform .12s ease, background .12s ease, box-shadow .2s ease;
}
.btn:hover { background: var(--accent-deep); transform: translateY(-1px); box-shadow: 0 8px 24px -12px rgba(43,31,26,.35); }
.btn .arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow { transform: translateX(4px); }
.btn .arrow svg { display: block; width: 24px; height: 12px; }
.hero-image-wrap { position: relative; aspect-ratio: 16 / 11; border-radius: 2px; overflow: hidden; background: var(--cream-2); }
.hero-image-wrap img, .card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ─── service cards ─── */
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: 80px; }
@media (max-width: 1080px) { .services { grid-template-columns: 1fr; } }
.card {
  display: grid; grid-template-columns: 1fr 1.1fr;
  background: var(--cream-2); border-radius: 4px; overflow: hidden;
  min-height: 340px; transition: transform .15s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(43,31,26,.35); }
.card-text { padding: 32px 28px; display: flex; flex-direction: column; justify-content: space-between; }
.card-brand {
  font-family: var(--font-display); font-weight: 800; font-size: 32px;
  letter-spacing: -0.02em; line-height: 1; margin: 0 0 8px; color: var(--espresso);
}
.card-sub { font-family: var(--font-display); font-weight: 600; font-size: 22px; margin: 0; letter-spacing: -0.01em; }
.card-sub.rosegold { color: var(--accent); }
.card-sub.caramel  { color: var(--caramel); }
.card-sub.anthra   { color: var(--anthracite); }
.card-body { font-size: 14.5px; line-height: 1.5; color: rgba(43,31,26,.78); max-width: 26ch; margin: 22px 0 0; }
.card-claim {
  font-family: var(--font-display); font-weight: 600; font-size: 15px;
  color: var(--rosegold-deep); margin: 12px 0 0; max-width: 22ch; line-height: 1.35;
}
.card-link {
  display: inline-flex; align-items: center; gap: 14px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--espresso);
  text-decoration: none; margin-top: 24px;
}
.card-link svg { width: 20px; height: 10px; }
.card-link:hover { color: var(--accent-deep); }
.card-img { background: #ddd0c4; position: relative; }

/* ─── feature row ─── */
.feature-row {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 32px 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-bottom: 8px;
}
@media (max-width: 900px) { .feature-row { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.feature {
  display: grid; grid-template-columns: 44px 1fr; gap: 20px; align-items: center;
  padding: 0 24px; border-right: 1px solid var(--line-soft);
}
.feature:last-child { border-right: none; }
.feature:first-child { padding-left: 0; }
@media (max-width: 900px) { .feature { border-right: none; padding: 0; } }
.feature svg { width: 36px; height: 36px; }
.feature .feat-label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--espresso); font-weight: 600; }
.feature .feat-desc { font-size: 13.5px; line-height: 1.45; color: rgba(43,31,26,.65); margin-top: 4px; }

/* ─── sub-pages ─── */
.sub-page { padding: 24px 0 96px; }
.sub-page h2 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(40px, 4.5vw, 64px); letter-spacing: -0.02em; margin: 0 0 12px; line-height: 1;
  color: var(--accent-deep);
}
.sub-page .lede { max-width: 640px; margin-bottom: 56px; }

.technique-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 900px) { .technique-grid { grid-template-columns: 1fr; } }
.technique { background: var(--cream); padding: 36px 32px; min-height: 220px; display: flex; flex-direction: column; transition: background .2s ease; }
.technique:hover { background: var(--cream-2); }
.technique .num { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 24px; }
.technique .name { font-family: var(--font-display); font-weight: 700; font-size: 26px; letter-spacing: -0.01em; margin: 0 0 12px; }
.technique .desc { font-size: 14px; line-height: 1.55; color: rgba(43,31,26,.7); }

/* generic page mockup zone */
.mockup-zone {
  aspect-ratio: 16/7; background: var(--cream-2); border: 1px dashed var(--line);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.18em;
  color: var(--muted); text-transform: uppercase;
}

/* ─── about / team ─── */
.about-story { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; margin-bottom: 80px; }
@media (max-width: 900px) { .about-story { grid-template-columns: 1fr; gap: 32px; } }
.about-story .lead-q { font-family: var(--font-display); font-weight: 700; font-size: 30px; line-height: 1.2; letter-spacing: -0.015em; margin: 0; text-wrap: balance; }
.about-story .lead-q .hl { color: var(--accent); }
.about-story .body p { font-size: 16.5px; line-height: 1.65; color: rgba(43,31,26,.8); margin: 0 0 18px; max-width: 60ch; }
.about-story .body p:last-child { margin-bottom: 0; }

.about-timeline { display: flex; gap: 0; flex-wrap: wrap; margin-bottom: 88px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.tl-item { flex: 1 1 0; min-width: 160px; padding: 28px 28px 28px 0; border-right: 1px solid var(--line-soft); }
.tl-item:last-child { border-right: none; }
.tl-item .yr { font-family: var(--font-display); font-weight: 800; font-size: 34px; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.tl-item .lbl { font-size: 14px; line-height: 1.45; color: rgba(43,31,26,.75); margin-top: 10px; }

.team-head { margin-bottom: 40px; }
.team-head h2 { font-size: clamp(32px, 3vw, 44px); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 32px; }
@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr; } }
.person { display: flex; flex-direction: column; }
.person .photo { aspect-ratio: 4 / 5; background: var(--cream-2); overflow: hidden; margin-bottom: 18px; border-radius: 3px; position: relative; }
.person .name { font-family: var(--font-display); font-weight: 700; font-size: 24px; letter-spacing: -0.015em; margin: 0; display: flex; align-items: baseline; gap: 10px; }
.person .name .yob { font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: var(--muted); letter-spacing: 0.02em; }
.person .role { font-family: var(--font-display); font-weight: 500; font-size: 15px; color: var(--accent); margin: 4px 0 0; }
.person .bio { font-size: 14.5px; line-height: 1.55; color: rgba(43,31,26,.75); margin: 12px 0 0; }
.person.is-dog .role { color: var(--caramel); }

.team-row-single { display: grid; grid-template-columns: 1fr; gap: 28px; margin-bottom: 32px; }
.person--row {
  flex-direction: row; gap: 28px; align-items: center;
  background: var(--cream-2); border-radius: 4px; padding: 24px; max-width: 100%;
}
.person--row .photo { width: 200px; flex-shrink: 0; margin-bottom: 0; aspect-ratio: 4/5; }
@media (max-width: 600px) { .person--row { flex-direction: column; align-items: flex-start; } .person--row .photo { width: 100%; } }

.about-extras { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; margin-top: 4px; }
@media (max-width: 900px) { .about-extras { grid-template-columns: 1fr; } }
.nachwuchs { background: var(--cream-2); border-radius: 4px; padding: 32px 34px; display: flex; flex-direction: column; justify-content: center; }
.nachwuchs .k { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.nachwuchs .row { display: flex; gap: 40px; flex-wrap: wrap; }
.nachwuchs .kid .n { font-family: var(--font-display); font-weight: 700; font-size: 28px; letter-spacing: -0.015em; }
.nachwuchs .kid .y { font-family: var(--font-mono); font-size: 13px; color: var(--accent); margin-top: 4px; }
.nachwuchs .note { font-size: 14px; line-height: 1.55; color: rgba(43,31,26,.7); margin: 18px 0 0; max-width: 48ch; }
.heritage { background: var(--espresso); color: var(--cream); border-radius: 4px; padding: 32px 34px; display: flex; flex-direction: column; justify-content: center; }
.heritage .k { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.heritage .txt { font-family: var(--font-display); font-weight: 600; font-size: 19px; line-height: 1.35; letter-spacing: -0.01em; }
.heritage .sub { font-size: 13.5px; line-height: 1.55; color: rgba(246,242,234,.7); margin-top: 12px; }

/* ─── contact ─── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact-info .block { margin-bottom: 28px; }
.contact-info .k { font-size: 11px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.contact-info .v { font-size: 17px; line-height: 1.5; }
.contact-info a { color: var(--espresso); text-decoration: none; }
.contact-info a:hover { color: var(--accent-deep); }
.form { display: flex; flex-direction: column; gap: 18px; }
.form label { font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; display: block; }
.form input, .form textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--espresso);
  background: var(--cream-2); border: 1px solid var(--line); border-radius: 3px; padding: 13px 14px;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { resize: vertical; min-height: 130px; }

/* ─── rich sub-page sections (Veredelung / Werbetextilien) ─── */
.sub-section { margin-top: 80px; }
.sub-section > .eyebrow { margin-bottom: 14px; }
.sec-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(26px, 2.4vw, 34px); letter-spacing: -0.015em; margin: 0 0 16px; line-height: 1.05; color: var(--accent-deep); }
.sec-lede { font-size: 16px; line-height: 1.6; color: rgba(43,31,26,.78); max-width: 640px; margin: 0 0 32px; }

/* card grid (3-up) */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
@media (max-width: 900px) { .info-grid { grid-template-columns: 1fr; } }
.info-card { background: var(--cream-2); border-radius: 4px; padding: 26px 26px 28px; border-top: 3px solid var(--accent); }
.info-card .ic-k { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 14px; }
.info-card h4 { font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.01em; margin: 0 0 10px; }
.info-card p { font-size: 14px; line-height: 1.55; color: rgba(43,31,26,.72); margin: 0; }

/* brand chips */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { border: 1px solid var(--line); border-radius: 2px; padding: 10px 18px; font-size: 14px; font-weight: 500; color: var(--espresso); background: var(--cream); }
.chip.muted { color: var(--muted); border-style: dashed; }

/* process steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
.step { padding: 28px 24px 28px 0; border-right: 1px solid var(--line-soft); }
.step:last-child { border-right: none; }
@media (max-width: 900px) { .step { border-right: none; padding-right: 16px; } }
.step .sn { font-family: var(--font-mono); font-size: 11px; color: var(--accent); letter-spacing: 0.1em; margin-bottom: 12px; }
.step h4 { font-family: var(--font-display); font-weight: 700; font-size: 18px; margin: 0 0 6px; letter-spacing: -0.01em; }
.step p { font-size: 13.5px; line-height: 1.5; color: rgba(43,31,26,.68); margin: 0; }

/* stats row */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, 1fr); } }
.stat { padding: 28px 28px 28px 0; border-right: 1px solid var(--line-soft); }
.stat:last-child { border-right: none; }
@media (max-width: 900px) { .stat { border-right: none; } }
.stat .num { font-family: var(--font-display); font-weight: 800; font-size: 40px; letter-spacing: -0.02em; color: var(--accent); line-height: 1; }
.stat .lbl { font-size: 13.5px; line-height: 1.45; color: rgba(43,31,26,.7); margin-top: 10px; max-width: 22ch; }

/* CTA band */
.cta-band { background: var(--espresso); color: var(--cream); border-radius: 4px; padding: 48px 44px; margin-top: 80px; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.cta-band .cta-copy h3 { font-family: var(--font-display); font-weight: 700; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: -0.015em; margin: 0; max-width: 20ch; }
.cta-band .cta-copy p { font-size: 15px; line-height: 1.55; color: rgba(246,242,234,.72); margin: 10px 0 0; max-width: 48ch; }

/* ─── Team-Vorstellungen (ausführlich) ─── */
.members { display: flex; flex-direction: column; gap: 52px; margin-bottom: 40px; }
.member { display: grid; grid-template-columns: 300px 1fr; gap: 44px; align-items: start; }
@media (max-width: 760px) { .member { grid-template-columns: 1fr; gap: 20px; } }
.member-photo { aspect-ratio: 4 / 5; background: var(--cream-2); border-radius: 4px; overflow: hidden; position: relative; }
.member-photo img, .person .photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; display: block; }
.team-photo { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; display: block; border-radius: 4px; margin-bottom: 28px; background: var(--cream-2); }
.member .tag { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2vw, 28px); letter-spacing: -0.015em; color: var(--accent-deep); margin: 0 0 6px; line-height: 1.1; }
.member .m-name { font-family: var(--font-display); font-weight: 800; font-size: 24px; letter-spacing: -0.02em; margin: 0; display: flex; align-items: baseline; gap: 10px; }
.member .m-name .yob { font-family: var(--font-mono); font-size: 13px; font-weight: 400; color: var(--muted); }
.member .m-role { font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin: 6px 0 18px; }
.member .m-bio p { font-size: 15.5px; line-height: 1.7; color: rgba(43,31,26,.8); margin: 0 0 14px; max-width: 62ch; }
.member .m-bio p:last-child { margin-bottom: 0; }

/* Team-Statement */
.team-statement { background: var(--cream-2); border-radius: 4px; padding: 44px 46px; }
.team-statement p { font-size: 17px; line-height: 1.7; color: rgba(43,31,26,.82); margin: 0 0 16px; max-width: 68ch; }
.team-statement p:last-child { margin-bottom: 0; }
@media (max-width: 600px) { .team-statement { padding: 30px 24px; } }

/* Anfahrtskarte */
.map { border-radius: 4px; overflow: hidden; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 360px; border: 0; display: block; }

/* Produktions-Streifen */
.prodstrip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
@media (max-width: 700px) { .prodstrip { grid-template-columns: repeat(2, 1fr); } }
.prodstrip img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 4px; display: block; background: var(--cream-2); }

/* ─── Teamshop ─── */
.shop-cta { display: flex; align-items: center; gap: 20px 28px; flex-wrap: wrap; margin: -24px 0 8px; }
.shop-cta .note { font-size: 14px; line-height: 1.5; color: rgba(43,31,26,.6); max-width: 34ch; }
.shop-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
@media (max-width: 820px) { .shop-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .shop-grid { grid-template-columns: 1fr; } }
.shop-card { background: var(--cream); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: inherit; transition: transform .2s ease, box-shadow .2s ease; }
.shop-card:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -24px rgba(43,31,26,.35); }
.shop-card .ph { aspect-ratio: 4 / 5; background: var(--cream-2); overflow: hidden; }
.shop-card .ph img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.shop-card:hover .ph img { transform: scale(1.04); }
.shop-card .meta { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; }
.shop-card .cat { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); }
.shop-card .pname { font-family: var(--font-display); font-weight: 700; font-size: 17px; letter-spacing: -0.01em; margin: 0; }
.shop-card .pnote { font-size: 13px; line-height: 1.45; color: rgba(43,31,26,.62); margin: 2px 0 0; }
.shop-card .go { margin-top: 8px; font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.08em; color: var(--accent); display: inline-flex; align-items: center; gap: 6px; }
.shop-note { font-size: 13.5px; line-height: 1.6; color: rgba(43,31,26,.6); margin: 18px 0 0; }

/* ─── Galerie ─── */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 10px; }
@media (max-width: 600px) { .gallery { grid-template-columns: repeat(2, 1fr); } }
.gallery-item { padding: 0; border: 0; background: var(--cream-2); cursor: pointer; overflow: hidden; border-radius: 3px; aspect-ratio: 1 / 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.gallery-item:hover img { transform: scale(1.05); }

/* Lightbox */
.lb { position: fixed; inset: 0; z-index: 200; background: rgba(20,14,11,.93); display: none; align-items: center; justify-content: center; }
.lb.open { display: flex; }
.lb img { max-width: 92vw; max-height: 86vh; object-fit: contain; border-radius: 2px; box-shadow: 0 20px 60px -20px rgba(0,0,0,.7); }
.lb-btn { position: absolute; background: rgba(246,242,234,.12); border: 0; color: #fff; width: 52px; height: 52px; border-radius: 50%; font-size: 22px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.lb-btn:hover { background: rgba(246,242,234,.25); }
.lb-close { top: 20px; right: 20px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }
.lb-count { position: absolute; bottom: 20px; left: 0; right: 0; text-align: center; color: rgba(246,242,234,.75); font-family: var(--font-mono); font-size: 12px; letter-spacing: .1em; }
@media (max-width: 600px) { .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-btn { width: 44px; height: 44px; } }

/* schwebender WhatsApp-Button */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 60;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.4); text-decoration: none;
  transition: transform .15s ease, box-shadow .2s ease;
}
.wa-float:hover { transform: translateY(-2px) scale(1.05); box-shadow: 0 14px 30px -8px rgba(0,0,0,.5); }
.wa-float svg { width: 32px; height: 32px; fill: #fff; }
@media (max-width: 600px) { .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; } }

/* placeholder image */
.ph {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(135deg, rgba(43,31,26,0.05) 0 14px, rgba(43,31,26,0.025) 14px 28px);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.16em;
  color: var(--muted); text-transform: uppercase; pointer-events: none; text-align: center; padding: 8px;
}

/* ─── footer ─── */
footer.foot { margin-top: 24px; padding: 56px 0 40px; border-top: 1px solid var(--line); }
.foot-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 36px; }
@media (max-width: 900px) { .foot-inner { grid-template-columns: 1fr 1fr; } }
.foot-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.foot-brand img { width: 56px; height: 56px; object-fit: contain; }
.foot-brand .wm { font-family: var(--font-display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; }
.foot-desc { font-size: 14px; line-height: 1.55; color: rgba(43,31,26,.7); max-width: 280px; margin: 0; }
.foot h4 { font-size: 10.5px; letter-spacing: 0.24em; text-transform: uppercase; margin: 0 0 16px; color: var(--muted); font-weight: 600; }
.foot ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.foot a { color: var(--espresso); text-decoration: none; font-size: 14px; }
.foot a:hover { color: var(--accent-deep); }
.foot .hours { font-size: 14px; color: rgba(43,31,26,.7); }
.foot-bottom {
  border-top: 1px solid var(--line-soft); padding-top: 24px;
  display: flex; justify-content: space-between;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted);
}

/* ─── per-area accent themes (CI sub-brands) ─── */
/* Druck = Roségold (default), Veredelung = Caramel, Promo = Anthracite */
body.area-veredelung { --accent: var(--caramel);    --accent-deep: #A6724A; }
body.area-promo      { --accent: var(--anthracite); --accent-deep: #1F1F1F; }

/* Promo-Akzent (Anthracite) hat auf dem dunklen CTA-Band zu wenig Kontrast
   → dort ein heller Button mit Espresso-Text */
body.area-promo .cta-band .btn { background: var(--cream); color: var(--espresso); }
body.area-promo .cta-band .btn:hover { background: #fff; transform: translateY(-1px); }

/* a soft accent wash some sections can use */
.tint { background: var(--rosegold-soft); }
body.area-veredelung .tint { background: #EAD7C4; }
body.area-promo .tint { background: var(--cream-2); }

/* ─── „Eine Marke. Drei Bereiche." strip (Home) ─── */
.bereiche { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; background: var(--line); border: 1px solid var(--line); }
@media (max-width: 760px) { .bereiche { grid-template-columns: 1fr; } }
.bereich { background: var(--cream); padding: 32px 30px; display: flex; flex-direction: column; min-height: 190px; text-decoration: none; transition: background .15s ease; border-top: 3px solid transparent; }
.bereich:hover { background: var(--cream-2); }
.bereich .bk { font-family: var(--font-display); font-weight: 800; font-size: 26px; letter-spacing: -0.02em; color: var(--espresso); line-height: 1; }
.bereich .bn { font-family: var(--font-display); font-weight: 600; font-size: 20px; margin: 4px 0 0; letter-spacing: -0.01em; }
.bereich .bd { font-size: 14px; line-height: 1.5; color: rgba(43,31,26,.72); margin: 14px 0 0; }
.bereich .bl { margin-top: auto; padding-top: 18px; font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; display: inline-flex; align-items: center; gap: 10px; }
.bereich .bl svg { width: 18px; height: 9px; }
.bereich--druck { border-top-color: var(--rosegold); }
.bereich--druck .bn, .bereich--druck .bl { color: var(--rosegold-deep); }
.bereich--veredelung { border-top-color: var(--caramel); }
.bereich--veredelung .bn, .bereich--veredelung .bl { color: var(--caramel); }
.bereich--promo { border-top-color: var(--anthracite); }
.bereich--promo .bn, .bereich--promo .bl { color: var(--anthracite); }
