/* ============================================================
   Stadler Verpackung – Website Stylesheet
   Eine Datei, alle Seiten. Bewusst schlank und robust gehalten.
   ============================================================ */

/* ---------- Schriften (lokal, DSGVO-konform) ---------- */
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("fonts/inter-latin-400-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/inter-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Inter"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/inter-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 500; font-display: swap;
  src: url("fonts/cormorant-garamond-latin-500-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("fonts/cormorant-garamond-latin-600-normal.woff2") format("woff2");
}
@font-face {
  font-family: "Cormorant Garamond"; font-style: normal; font-weight: 700; font-display: swap;
  src: url("fonts/cormorant-garamond-latin-700-normal.woff2") format("woff2");
}

:root {
  --ink:        #1c2b27;   /* dunkles Grün-Schwarz, Haupttext */
  --ink-soft:   #3a4a44;
  --bg:         #f6f6f3;   /* helles Neutralweiß (kein Creme) */
  --surface:    #ffffff;   /* reines Weiß für Karten */
  --surface-2:  #edece7;   /* helles neutrales Band */
  --gold:       #b08d57;   /* Messing/Gold Akzent */
  --gold-dark:  #7a6034;
  --muted:      #595951;
  --line:       #e6e3db;
  --shadow:     0 8px 30px rgba(28, 43, 39, 0.08);
  --radius:     14px;
  --maxw:       1140px;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a { color: var(--gold-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  letter-spacing: .2px;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1.1em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin: 0 0 .8em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  padding: .85em 1.6em;
  border-radius: 50px;
  border: 1.5px solid var(--gold-dark);
  cursor: pointer;
  transition: all .2s ease;
  text-decoration: none;
}
.btn-primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-primary:hover { background: #2e463f; border-color: #2e463f; color: #fff; text-decoration: none; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--gold-dark); color: var(--gold-dark); text-decoration: none; }
/* Nav-CTA folgt dem Primärstil (Dunkelgrün) */
.nav-cta .btn-primary { background: var(--ink); border-color: var(--ink); color: #fff; }
.nav-cta .btn-primary:hover { background: #2e463f; border-color: #2e463f; color: #fff; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 246, 243, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; flex-direction: column; line-height: 1; text-decoration: none; }
.brand:hover { text-decoration: none; }
.brand-logo { height: 36px; width: auto; display: block; }
@media (max-width: 560px) { .brand-logo { height: 30px; } }

/* Wortmarke (Logo als Text, farbgleich zur Seite) */
.brand-wordmark {
  font-family: var(--sans); font-weight: 700; font-size: 1.5rem;
  letter-spacing: -.3px; line-height: 1; color: var(--ink);
  display: inline-block; white-space: nowrap;
}
.brand-wordmark .bw-gold { color: var(--gold); }
.brand:hover .brand-wordmark { color: var(--ink); }
@media (max-width: 560px) { .brand-wordmark { font-size: 1.26rem; } }
.brand .brand-name {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink);
  letter-spacing: .5px;
}
.brand .brand-sub {
  font-family: var(--sans); font-size: .62rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--gold-dark); margin-top: 4px;
}

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; margin: 0; padding: 0; }
.nav-links > li { position: relative; }
.nav-links a {
  display: block; padding: 10px 14px; color: var(--ink); font-weight: 500;
  font-size: .96rem; border-radius: 8px;
}
.nav-links a:hover { background: var(--surface-2); text-decoration: none; color: var(--gold-dark); }
.nav-links a.active { color: var(--gold-dark); }

/* Dropdown */
.has-drop > a::after { content: "›"; display: inline-block; transform: rotate(90deg); margin-left: 6px; font-size: .9em; color: var(--gold-dark); }
.dropdown {
  position: absolute; top: calc(100% + 4px); left: 0;
  min-width: 240px; background: var(--surface);
  border: 1px solid var(--line); border-radius: 12px; box-shadow: var(--shadow);
  padding: 8px; list-style: none; margin: 0;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: all .18s ease;
}
.has-drop:hover .dropdown, .has-drop:focus-within .dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown a { padding: 9px 12px; font-size: .92rem; border-radius: 7px; }

.nav-cta { margin-left: 10px; }

/* Hamburger */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 44px; height: 44px; padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; border-radius: 2px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0;
  background:
    linear-gradient(160deg, rgba(28,43,39,.85), rgba(28,43,39,.6)),
    radial-gradient(circle at 80% 20%, var(--surface-2), transparent 60%),
    var(--ink);
  color: #fff;
  overflow: hidden;
}
.hero .container { position: relative; z-index: 2; max-width: 820px; }
.hero .eyebrow { color: #e7cfa6; }
.hero h1 { color: #fff; margin-bottom: .35em; }
.hero p.lead { font-size: 1.2rem; color: rgba(255,255,255,.9); max-width: 640px; }
.hero .btn-row { margin-top: 1.8em; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,.1); }

/* Split-Hero (Text links, Bild rechts) */
.hero .container.hero-split {
  max-width: var(--maxw);
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center;
}
.hero-media img {
  width: 100%; height: auto; display: block;
  border-radius: 16px; box-shadow: 0 24px 60px rgba(0, 0, 0, .42);
}
@media (max-width: 900px) {
  .hero .container.hero-split { grid-template-columns: 1fr; gap: 30px; }
  .hero-media img { max-height: 360px; object-fit: cover; object-position: center; }
}

/* Page hero (kleiner, für Unterseiten) */
.page-hero {
  background: linear-gradient(160deg, rgba(28,43,39,.92), rgba(28,43,39,.78)), var(--ink);
  color: #fff; padding: clamp(54px, 8vw, 88px) 0;
}
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.88); max-width: 640px; font-size: 1.12rem; margin-bottom: 0; }
.breadcrumb { font-size: .82rem; color: rgba(255,255,255,.7); margin-bottom: 1.1em; }
.breadcrumb a { color: rgba(255,255,255,.85); }

/* ---------- Sections ---------- */
section { padding: clamp(56px, 8vw, 96px) 0; }
section.tight { padding: clamp(40px, 6vw, 64px) 0; }
.section-head { max-width: 720px; margin-bottom: 2.6em; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-surface { background: var(--surface); }
.bg-soft { background: var(--surface-2); }

.lead { font-size: 1.18rem; color: var(--ink-soft); }

/* ---------- Grid / Cards ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { margin-bottom: .35em; }
.card p { color: var(--muted); font-size: .98rem; margin-bottom: 0; }
.card .icon {
  width: 46px; height: 46px; border-radius: 10px; background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
  color: var(--gold-dark);
}
.card .icon svg { width: 24px; height: 24px; }
a.card { color: inherit; text-decoration: none; display: flex; flex-direction: column; height: 100%; }
a.card:hover { text-decoration: none; }
a.card h3 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
a.card p { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
a.card .more { color: var(--gold-dark); font-weight: 600; font-size: .92rem; margin-top: 14px; display: inline-block; }
a.card .more:last-child { margin-top: auto; padding-top: 14px; }

/* Feature row (Text + Liste) */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.checklist { list-style: none; padding: 0; margin: 1.2em 0 0; }
.checklist li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--ink-soft); }
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  color: var(--gold-dark); font-weight: 700;
}

.stat-row { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 2em; }
.stat .num { font-family: var(--serif); font-size: 2.6rem; color: var(--gold-dark); line-height: 1; }
.stat .lbl { font-size: .9rem; color: var(--muted); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--ink), #14201d);
  color: #fff; text-align: center; border-radius: 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.85); max-width: 560px; margin: 0 auto 1.6em; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq details {
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  padding: 4px 22px; margin-bottom: 14px;
}
.faq summary {
  cursor: pointer; font-weight: 600; font-size: 1.18rem; padding: 18px 0;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-dark); font-size: 1.5rem; font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { color: var(--muted); padding-bottom: 18px; margin: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info p { margin-bottom: .4em; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-item .ci-icon { color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
.contact-item .ci-icon svg { width: 22px; height: 22px; display: block; }
.contact-item .ci-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin: 0; }
.contact-item .ci-value { font-size: 1.08rem; color: var(--ink); margin: 0; font-weight: 500; }

.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink-soft); }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; background: var(--surface); color: var(--ink);
  transition: border-color .2s;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--gold-dark); }
.form-note { font-size: .82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.82); padding: 64px 0 28px; }
.site-footer a { color: rgba(255,255,255,.82); }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-grid h4 { font-family: var(--sans); font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: #e7cfa6; margin: 0 0 16px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 9px; font-size: .94rem; }
.footer-brand .brand-name { font-family: var(--serif); font-size: 1.5rem; color: #fff; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.6); margin-top: 12px; max-width: 280px; }
.footer-badge { display: inline-block; margin-top: 14px; font-size: .78rem; border: 1px solid rgba(255,255,255,.25); border-radius: 50px; padding: 5px 14px; color: rgba(255,255,255,.75); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: rgba(255,255,255,.55); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 12px 24px 24px; box-shadow: var(--shadow);
    max-height: calc(100vh - 74px); overflow-y: auto;
    transform: translateY(-120%); transition: transform .28s ease; visibility: hidden;
  }
  .nav-open .nav-links { transform: translateY(0); visibility: visible; }
  .nav-links a { padding: 14px 8px; border-radius: 8px; font-size: 1.05rem; }
  .nav-cta { margin: 14px 0 0; }
  .nav-cta .btn { display: block; text-align: center; }
  .dropdown {
    position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none;
    border: none; border-left: 2px solid var(--line); border-radius: 0;
    margin: 4px 0 4px 12px; padding: 0;
  }
  .has-drop > a::after { display: none; }
  .split, .contact-grid, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .stat-row { gap: 28px; }
  .hero .btn-row .btn { width: 100%; text-align: center; }
}

/* ---------- Bilder ---------- */
.feature-img {
  width: 100%; height: auto; display: block;
  aspect-ratio: 4 / 3; object-fit: cover;
  border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.card-img {
  width: calc(100% + 60px); height: auto; display: block;
  aspect-ratio: 3 / 2; object-fit: cover;
  margin: -30px -30px 20px; border-radius: 0;
}
.card { overflow: hidden; }
/* Blogübersicht: einheitlich quadratische Vorschaubilder, damit Hoch- und
   Querformat-Fotos gleich wirken und Tragetaschen nicht als schmaler Streifen erscheinen. */
.blog-cards .card-img { aspect-ratio: 1 / 1; }

/* ---------- Rechtstexte ---------- */
.legal-content { max-width: 820px; margin: 0 auto; }
.legal-content h2 { margin-top: 1.5em; }
.legal-content h3 { margin-top: 1.1em; font-size: 1.12rem; }
.legal-content p, .legal-content li { color: var(--ink-soft); text-align: justify; hyphens: auto; -webkit-hyphens: auto; }
.legal-content li { text-align: left; }
.footer-legal a { white-space: nowrap; }

/* ---------- Barrierefreiheit ---------- */
.skip-link {
  position: absolute; left: 8px; top: -48px; z-index: 1000;
  background: var(--ink); color: #fff; padding: 10px 16px;
  border-radius: 8px; text-decoration: none; font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus { top: 8px; color: #fff; text-decoration: none; }
main:focus { outline: none; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 3px solid var(--gold-dark);
  outline-offset: 2px;
  border-radius: 3px;
}

/* ---------- Vergleichstabellen (GEO) ---------- */
.table-wrap { overflow-x: auto; margin-top: 1.4em; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: .96rem; min-width: 480px; }
.cmp-table th, .cmp-table td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; vertical-align: top; color: var(--ink-soft); }
.cmp-table thead th { background: var(--surface-2); color: var(--ink); font-weight: 600; }
.cmp-table th[scope="row"] { background: var(--bg); color: var(--ink); font-weight: 600; }

/* ---------- Autorenbox (E-E-A-T) ---------- */
.author-box { display: flex; gap: 16px; align-items: flex-start; background: var(--surface-2); border-radius: 12px; padding: 18px 20px; margin: 2.4em 0 0; }
.author-box .author-mark { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 50%; background: var(--ink); color: var(--gold); font-family: var(--serif); font-weight: 700; font-size: 1.5rem; display: flex; align-items: center; justify-content: center; }
.author-box p { margin: 0; }
.author-box .author-name { font-weight: 600; color: var(--ink); }
.author-box .author-bio { color: var(--ink-soft); font-size: .94rem; margin-top: .3em; }

/* ---------- Auf-den-Punkt-Box (AEO/GEO) ---------- */
.tldr { background: var(--surface-2); border-left: 4px solid var(--gold-dark); border-radius: 10px; padding: 16px 20px; margin: 0 0 1.9em; }
.tldr p { margin: 0; color: var(--ink-soft); }
.tldr strong { color: var(--ink); }

/* ---------- Artikelbilder (Blog) ---------- */
figure.post-cover { margin: 0 0 1.6em; }
figure.post-cover img { width: 100%; aspect-ratio: 16 / 9; max-height: 320px; object-fit: cover; display: block; border-radius: 14px; box-shadow: var(--shadow); }
figure.article-img { margin: 1.9em 0; }
figure.article-img img { width: 100%; height: auto; display: block; border-radius: 12px; box-shadow: var(--shadow); }
figure.article-img figcaption { color: var(--muted); font-size: .88rem; margin-top: .6em; text-align: center; }

/* ---------- Instagram-Feed ---------- */
.ig-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 1.6em; }
.ig-item { position: relative; display: block; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 12px; background: var(--surface-2); }
.ig-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s ease; }
.ig-item:hover img { transform: scale(1.06); }
@media (max-width: 900px) { .ig-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* ---------- Sanfte Einblendung beim Scrollen ---------- */
/* .reveal wird nur per JS gesetzt – ohne JS bleibt alles sichtbar. */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.in { opacity: 1; transform: none; }
}

/* ---------- Cookie-Consent-Banner ---------- */
/* Wird per JS injiziert (script.js). Erscheint nur ohne gespeicherte Wahl. */
.cookie-consent {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: var(--surface);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -8px 30px rgba(28, 43, 39, 0.12);
  transform: translateY(100%);
  transition: transform .3s ease;
}
.cookie-consent.is-visible { transform: translateY(0); }
.cookie-consent-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-consent-text { flex: 1; min-width: 240px; }
.cookie-consent-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 .25em;
}
.cookie-consent-text p {
  font-size: .92rem;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
  max-width: 560px;
}
.cookie-consent-text a { color: var(--gold-dark); text-decoration: underline; }
.cookie-consent-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  font-family: var(--sans);
  font-size: .92rem;
  font-weight: 500;
  padding: 11px 24px;
  border-radius: 8px;
  border: 1px solid var(--gold);
  cursor: pointer;
  transition: background .2s ease, color .2s ease;
}
.cookie-btn-decline { background: transparent; color: var(--gold-dark); }
.cookie-btn-decline:hover { background: var(--surface-2); }
.cookie-btn-accept { background: var(--gold); color: #fff; }
.cookie-btn-accept:hover { background: var(--gold-dark); }

@media (max-width: 640px) {
  .cookie-consent-inner { padding: 16px 18px; gap: 14px; }
  .cookie-consent-actions { width: 100%; }
  .cookie-btn { flex: 1; padding: 12px 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .cookie-consent { transition: none; }
}

/* ---------- Lead-Hero mit Anfrageformular (Landingpages) ---------- */
.page-hero.hero-lead .container {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px;
  align-items: center; max-width: var(--maxw);
}
.page-hero .ph-claim {
  font-family: var(--serif); font-size: clamp(1.5rem, 3vw, 1.9rem); line-height: 1.18;
  color: #fff; font-weight: 600; margin: .15em 0 .55em; max-width: none;
}
.page-hero .ph-chips { list-style: none; padding: 0; margin: 1.3em 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.page-hero .ph-chips li {
  font-size: .82rem; color: rgba(255,255,255,.9);
  border: 1px solid rgba(255,255,255,.28); border-radius: 999px; padding: 5px 12px;
}
.page-hero .ph-chips li.ph-chip-gold { color: #e7cfa6; border-color: rgba(176,141,87,.6); }
.page-hero .ph-clients { margin-top: 1.4em; padding-top: 1.1em; border-top: 1px solid rgba(255,255,255,.16); }
.page-hero .ph-clients-label { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 5px; }
.page-hero .ph-clients-list { font-size: .92rem; color: rgba(255,255,255,.82); }

.lead-form-card {
  background: var(--surface); color: var(--ink); border-radius: var(--radius);
  padding: 24px; box-shadow: 0 24px 60px rgba(0,0,0,.32);
}
.lead-form-card .lf-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 600; margin: 0 0 2px; color: var(--ink); }
.lead-form-card .lf-sub { font-size: .9rem; color: var(--muted); margin: 0 0 18px; }
.lead-form-card .form-field { margin-bottom: 14px; }
.lead-form-card .lf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.lead-form-card .form-field select {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: 10px;
  font-family: var(--sans); font-size: 1rem; background: var(--surface); color: var(--ink); transition: border-color .2s;
}
.lead-form-card .form-field select:focus { outline: none; border-color: var(--gold-dark); }
.lead-form-card .lf-consent { display: flex; gap: 10px; align-items: flex-start; margin-top: 4px; }
.lead-form-card .lf-consent input { width: auto; margin-top: 5px; }
.lead-form-card .lf-consent label { font-weight: 400; font-size: .86rem; color: var(--muted); }
.lead-form-card .lf-error { background: #fbeaea; color: #a3271f; padding: 10px 14px; border-radius: 8px; font-size: .9rem; margin-bottom: 1em; }
.lead-form-card .lf-alt { font-size: .85rem; color: var(--muted); text-align: center; margin: 12px 0 0; }
@media (max-width: 900px) {
  .page-hero.hero-lead .container { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .lead-form-card .lf-row { grid-template-columns: 1fr; gap: 0; }
}
.lead-form-card input[type="text"],
.lead-form-card input[type="email"],
.lead-form-card input[type="tel"],
.lead-form-card textarea {
  background-color: #fff !important;
  color: var(--ink) !important;
  -webkit-text-fill-color: var(--ink) !important;
  opacity: 1;
}
.lead-form-card input::placeholder,
.lead-form-card textarea::placeholder {
  color: #8a8a82 !important;
  -webkit-text-fill-color: #8a8a82 !important;
}
