/* ============ Design Tokens ============ */
:root {
  --red: #d1020e;
  --red-dark: #a5010b;
  --red-tint: #fdeceb;
  --ink: #1a1a1c;
  --paper: #ffffff;
  --paper-warm: #f6f3ef;
  --body-text: #3a3b3e;
  --line: rgba(0,0,0,0.12);
  --line-soft: rgba(0,0,0,0.08);
}

/* ============ Reset & Base ============ */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Inter', -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, .font-display {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.font-mono { font-family: 'JetBrains Mono', 'Courier New', monospace; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .wrap { padding: 0 20px; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  .logo-track { animation: none !important; }
}

/* ============ Accessibility ============ */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--ink); color: var(--paper);
  padding: 12px 20px; border-radius: 2px; font-size: 14px; font-weight: 600;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }
a:focus-visible, button:focus-visible, summary:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--red); outline-offset: 3px;
}

/* ============ Header ============ */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 var(--line), 0 8px 24px rgba(0,0,0,.04);
}
header.site .wrap { display: flex; align-items: center; justify-content: space-between; height: 76px; }
header.site .logo img { height: 27px; width: auto; }
.header-actions { display: flex; align-items: center; gap: 10px; }

/* Mobil (< 1024px): Menü klappt sich weich unter dem Header auf */
nav.main {
  position: absolute; top: 100%; left: 0; right: 0;
  display: flex; flex-direction: column; align-items: stretch; gap: 4px;
  background: var(--paper); border-bottom: 1px solid var(--line);
  border-radius: 0 0 16px 16px; border-top: 3px solid var(--red);
  padding: 22px 24px 28px; max-height: calc(100vh - 76px); overflow-y: auto;
  box-shadow: 0 24px 48px rgba(0,0,0,.14);
  opacity: 0; visibility: hidden; transform: translateY(-6px); pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s;
}
nav.main.open { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
nav.main a {
  padding: 16px 4px; border-bottom: 1px solid var(--line-soft);
  font-size: 16px; font-weight: 600; letter-spacing: normal;
  color: var(--ink); transition: color .2s ease, padding-left .2s ease;
}
nav.main a:hover:not(.btn-outline), nav.main a:focus-visible:not(.btn-outline) { color: var(--red); padding-left: 8px; }
nav.main a.btn-outline, nav.main a.btn-outline:hover, nav.main a.btn-outline:focus-visible { color: var(--paper); }
nav.main a.btn-outline {
  border-bottom: none; margin-top: 20px; text-align: center; padding: 15px 4px;
  font-size: 14px; letter-spacing: .04em;
}
nav.main a.btn-outline:hover { padding-left: 4px; }

.nav-toggle {
  display: inline-flex; align-items: center; justify-content: center; position: relative;
  width: 44px; height: 44px; background: none; border: 1px solid var(--line);
  border-radius: 8px; cursor: pointer; flex-shrink: 0;
}
.nav-toggle .bar {
  position: absolute; left: 12px; width: 20px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: transform .25s ease, opacity .2s ease, top .25s ease;
}
.nav-toggle .bar:nth-child(1) { top: 16px; }
.nav-toggle .bar:nth-child(2) { top: 22px; }
.nav-toggle .bar:nth-child(3) { top: 28px; }
.nav-toggle.is-open .bar:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-toggle.is-open .bar:nth-child(2) { opacity: 0; }
.nav-toggle.is-open .bar:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* "Leistungen"-Untermenü: auf Mobil immer sichtbar eingerückt, kein Hover nötig */
.nav-dropdown { display: flex; flex-direction: column; }
.nav-dropdown > a { border-bottom: none; padding-bottom: 10px; color: var(--red); }
.nav-dropdown-menu {
  display: flex; flex-direction: column; gap: 2px; padding-left: 14px; margin: 0 0 8px;
  border-left: 2px solid var(--red-tint); border-bottom: 1px solid var(--line-soft); padding-bottom: 14px;
}
.nav-dropdown-menu a {
  border-bottom: none; padding: 9px 4px; font-size: 14px; font-weight: 500;
  text-transform: none; letter-spacing: normal; color: var(--body-text);
}
.nav-dropdown-menu a:hover { color: var(--red); padding-left: 8px; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  nav.main {
    display: flex; position: static; flex-direction: row; align-items: center;
    gap: 32px; background: none; border-bottom: none; border-top: none; border-radius: 0;
    padding: 0; max-height: none; overflow: visible; box-shadow: none;
    opacity: 1; visibility: visible; transform: none; pointer-events: auto; transition: none;
  }
  nav.main a { width: auto; padding: 0; border-bottom: none; position: relative; padding-bottom: 4px; }
  nav.main a::after {
    content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
    background: var(--red); transition: right .2s ease;
  }
  nav.main a:hover::after, nav.main a:focus-visible::after { right: 0; }
  nav.main a.btn-outline { margin-top: 0; padding: 10px 22px; }
  nav.main a.btn-outline::after { display: none; }

  .nav-dropdown { position: relative; flex-direction: row; }
  .nav-dropdown > a { padding-bottom: 0; color: var(--ink); }
  .nav-dropdown-menu {
    position: absolute; left: 0; top: 100%; width: 224px; flex-direction: column;
    background: var(--paper); border: 1px solid var(--line); border-radius: 10px;
    padding: 10px 0; margin-top: 8px; opacity: 0; visibility: hidden; transition: opacity .15s ease, transform .15s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,.14); transform: translateY(-4px);
  }
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
  /* Unsichtbare Brücke schließt die Lücke zwischen Trigger und Panel,
     damit die Hover-Kette beim Runterfahren mit der Maus nicht abreißt. */
  .nav-dropdown::before {
    content: ""; position: absolute; left: 0; right: 0; top: 100%; height: 8px;
  }
  .nav-dropdown-menu a { padding: 10px 20px; border-radius: 6px; margin: 0 6px; width: calc(100% - 12px); }
  .nav-dropdown-menu a:hover { background: var(--red-tint); color: var(--red); }
}

.btn-outline {
  background: var(--red); border: 1.5px solid var(--red); color: var(--paper);
  padding: 11px 24px; font-size: 14px; font-weight: 600; letter-spacing: normal;
  border-radius: 999px; transition: background .2s ease, border-color .2s ease, transform .15s ease;
  display: inline-block;
}
.btn-outline:hover { background: var(--red-dark); border-color: var(--red-dark); transform: translateY(-1px); }

/* ============ Buttons ============ */
.btn-primary {
  display: inline-block; background: var(--red); color: var(--paper);
  padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: 2px;
  border: none; cursor: pointer; transition: background .2s ease;
}
.btn-primary:hover { background: var(--red-dark); }
.btn-light {
  display: inline-block; background: var(--red); color: var(--paper);
  padding: 14px 28px; font-size: 14px; font-weight: 600; border-radius: 2px;
  transition: background .2s ease;
}
.btn-light:hover { background: var(--red-dark); }
.btn-arrow { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: var(--ink); }
.btn-arrow:hover { color: var(--red); }
.btn-arrow span { transition: transform .2s ease; }
.btn-arrow:hover span { transform: translateX(4px); }

/* ============ Hero (Homepage + Sub-pages) ============ */
.hero {
  position: relative; overflow: hidden; color: var(--ink);
  min-height: 100vh; display: flex; align-items: center;
  padding: 144px 0 96px; background: var(--paper-warm);
}
.hero-sub { min-height: auto; padding: 160px 0 80px; display: block; }
.hero-photo { position: absolute; inset: 0; z-index: 0; }
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: 68% 42%;
  filter: blur(1.5px) saturate(1.05);
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(255,255,255,.92) 0%, rgba(255,255,255,.78) 30%, rgba(255,255,255,.35) 58%, rgba(255,255,255,.08) 100%);
}
@media (max-width: 640px) {
  /* Auf schmalen Screens kann der Text über die volle Breite umbrechen —
     dort reicht der seitliche Verlauf allein nicht, zusätzliche Aufhellung. */
  .hero-photo::after { background: rgba(255,255,255,.85); }
}
.hero-inner { position: relative; z-index: 2; }
.eyebrow-dark {
  font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase;
  letter-spacing: .24em; color: var(--red); font-weight: 600; margin-bottom: 22px;
}
.hero h1 { font-size: clamp(40px, 6vw, 76px); line-height: 1.05; max-width: 16ch; color: var(--ink); }
.hero-sub h1 { font-size: clamp(36px, 5.4vw, 60px); max-width: 18ch; }
.hero h1 em, .hero h1 .accent { font-style: italic; font-weight: 500; color: var(--red); }
.hero .sub { margin-top: 28px; max-width: 520px; font-size: 17px; line-height: 1.65; color: var(--body-text); }
.hero .cta-row { display: flex; gap: 28px; align-items: center; flex-wrap: wrap; margin-top: 44px; }

/* ============ Spec Strip ============ */
.spec-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper-warm); }
.spec-grid { display: grid; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .spec-grid { grid-template-columns: repeat(4, 1fr); } }
.spec-item { padding: 24px 0 24px 24px; border-left: 1px solid var(--line); }
.spec-item:first-child { border-left: none; }
.spec-value { display: block; font-family: 'JetBrains Mono', monospace; font-size: 28px; font-weight: 600; color: var(--red); }
.spec-label { display: block; margin-top: 4px; font-size: 11px; text-transform: uppercase; letter-spacing: .16em; color: var(--body-text); }

/* ============ Sections ============ */
section { padding: 0; }
.section { padding: 96px 0; background: var(--paper); }
.section-dark { background: var(--paper-warm); color: var(--ink); }
.section-dim { background: var(--paper-warm); }
.eyebrow { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .2em; color: var(--red); font-weight: 600; margin-bottom: 16px; }
.section h2 { font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; letter-spacing: -0.02em; }
.section-head { max-width: 620px; margin-bottom: 56px; }
.section-head p { margin-top: 16px; font-size: 16px; line-height: 1.65; color: var(--body-text); }

.reveal { opacity: 0; transform: translateY(10px); transition: opacity .6s cubic-bezier(.16,1,.3,1), transform .6s cubic-bezier(.16,1,.3,1); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============ Service Rows (table-style) ============ */
.service-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid; grid-template-columns: 1fr; gap: 8px;
  border-bottom: 1px solid var(--line); padding: 28px 0;
}
@media (min-width: 640px) { .service-row { grid-template-columns: 1fr 1.6fr; gap: 40px; } }
.service-row h3 { font-family: 'JetBrains Mono', monospace; font-size: 14px; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--ink); }
.service-row h3 a:hover { color: var(--red); }
.service-row p { margin: 0; max-width: 52ch; font-size: 15px; line-height: 1.65; color: var(--body-text); }

/* ============ Anlass Grid (occasion tiles) ============ */
.anlass-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); }
@media (min-width: 640px) { .anlass-grid { grid-template-columns: repeat(4, 1fr); } }
.anlass-tile { background: var(--paper); padding: 28px; transition: background .2s ease; min-width: 0; }
.anlass-tile:hover { background: var(--red-tint); }
.anlass-tile .eyebrow { margin-bottom: 8px; font-size: 11px; }
.anlass-tile h3 {
  font-size: 15px; font-weight: 600; display: flex; align-items: center; gap: 8px;
  color: var(--ink); overflow-wrap: break-word; word-break: break-word; min-width: 0;
}
.anlass-tile span { transition: transform .2s ease; color: var(--red); flex-shrink: 0; }
.anlass-tile:hover span { transform: translateX(4px); }

/* ============ Motto ============ */
.motto { padding: 120px 0; text-align: center; }
.motto blockquote {
  margin: 0 auto; max-width: 15ch; font-family: 'Fraunces', serif; font-style: italic;
  font-size: clamp(32px, 4.8vw, 58px); line-height: 1.15; color: var(--ink);
}
.motto blockquote .accent { color: var(--red); }
.motto .cite { margin-top: 28px; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--body-text); }

/* ============ Why-us grid ============ */
.why-grid { display: grid; grid-template-columns: 1fr; border: 1px solid var(--line); }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(3, 1fr); } }
.why-card { padding: 36px; border-top: 1px solid var(--line); }
@media (min-width: 640px) {
  .why-card { border-top: none; border-left: 1px solid var(--line); }
  .why-card:first-child { border-left: none; }
}
.why-card .mark { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--red); font-weight: 700; }
.why-card h3 { margin-top: 12px; font-size: 18px; font-weight: 600; color: var(--ink); }
.why-card p { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--body-text); }

/* ============ Logo Marquee ============ */
.logos-section { background: var(--paper); padding: 48px 0; border-bottom: 1px solid var(--line); }
.logos-label { text-align: center; font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .2em; color: var(--body-text); margin-bottom: 28px; }
.logo-marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent); }
.logo-track { display: flex; align-items: center; gap: 64px; width: max-content; animation: marquee 70s linear infinite; }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-item { flex: 0 0 auto; height: 32px; display: flex; align-items: center; }
.logo-item img { height: 100%; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(1); opacity: .55; transition: filter .2s ease, opacity .2s ease; }
.logo-item img:hover { filter: grayscale(0); opacity: 1; }

/* ============ Referenzen Grid ============ */
.ref-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
@media (min-width: 640px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 900px) { .ref-grid { grid-template-columns: repeat(5, 1fr); } }
.ref-tile { background: var(--paper); height: 112px; display: flex; align-items: center; justify-content: center; padding: 24px; filter: grayscale(1); transition: filter .2s ease; }
.ref-tile:hover { filter: grayscale(0); }
.ref-tile img { max-height: 56px; width: auto; object-fit: contain; }

/* ============ Timeline (Über uns) ============ */
.timeline { border-left: 2px solid var(--red-tint); padding-left: 32px; }
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -37px; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--red); }
.tl-year { font-family: 'JetBrains Mono', monospace; font-size: 12px; font-weight: 700; color: var(--red); }
.tl-text { margin-top: 6px; max-width: 42ch; font-size: 15px; line-height: 1.6; color: var(--body-text); }

/* ============ FAQ Accordion ============ */
.faq-list { border-top: 1px solid var(--line); max-width: 74ch; }
.faq-list.compact details { padding: 12px 0; }
details.faq-item { border-bottom: 1px solid var(--line); padding: 22px 0; }
details.faq-item summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 17px; font-weight: 600; color: var(--ink);
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after { content: "+"; font-family: monospace; font-size: 20px; color: var(--red); flex-shrink: 0; transition: transform .2s ease; }
details.faq-item[open] summary::after { transform: rotate(45deg); }
details.faq-item p { margin: 12px 0 0; font-size: 15px; line-height: 1.6; color: var(--body-text); max-width: 60ch; }
.faq-group-label { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--red); margin: 24px 0 4px; font-weight: 700; }

/* ============ Legal pages ============ */
.legal-prose { max-width: 74ch; border-top: 1px solid var(--line); padding-top: 40px; }
.legal-prose h2 { font-size: 18px; font-weight: 600; margin: 32px 0 8px; color: var(--ink); }
.legal-prose h2:first-child { margin-top: 0; }
.legal-prose p { margin: 0 0 16px; font-size: 15px; line-height: 1.7; color: var(--body-text); }
.legal-prose ul { margin: 0 0 16px; padding-left: 20px; }
.legal-prose li { font-size: 15px; line-height: 1.7; color: var(--body-text); margin-bottom: 4px; }
.legal-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 40px; border-top: 1px solid var(--line); padding-top: 40px; margin-bottom: 40px; }
.legal-grid p { margin: 0 0 6px; font-size: 15px; color: var(--body-text); }
.legal-label { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--red); margin-bottom: 10px; font-weight: 700; }
.legal-name { font-family: 'Fraunces', serif; font-size: 19px; font-weight: 600; margin-bottom: 10px; color: var(--ink); }

/* ============ Blog ============ */
.blog-list { border-top: 1px solid var(--line); max-width: 74ch; }
.blog-item { display: block; border-bottom: 1px solid var(--line); padding: 32px 0; }
.blog-item:hover h2 { color: var(--red); }
.blog-date { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--body-text); }
.blog-item h2 { margin-top: 8px; font-size: 21px; font-weight: 600; transition: color .2s ease; color: var(--ink); }
.blog-item p { margin-top: 8px; max-width: 60ch; font-size: 15px; line-height: 1.6; color: var(--body-text); }
.blog-article p { font-size: 16px; line-height: 1.75; margin: 0 0 20px; color: var(--body-text); }
.blog-back { font-family: 'JetBrains Mono', monospace; font-size: 12px; text-transform: uppercase; letter-spacing: .14em; color: var(--red); font-weight: 700; }
.blog-back:hover { text-decoration: underline; }

/* ============ Kontakt ============ */
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: 56px; }
@media (min-width: 1024px) { .kontakt-grid { grid-template-columns: 1fr 1fr; } }
.kontakt-details { margin-top: 40px; border-top: 1px solid var(--line); padding-top: 32px; }
.kontakt-details .row { margin-bottom: 20px; }
.kontakt-details .row:last-child { margin-bottom: 0; }
.kontakt-details a:hover { color: var(--red); }
.mailto-box {
  border: 1px solid var(--line); padding: 32px; background: var(--paper-warm);
}
.mailto-box p { font-size: 15px; line-height: 1.7; color: var(--body-text); margin: 0 0 20px; }

/* ============ Footer ============ */
footer.site { background: var(--paper-warm); color: var(--ink); border-top: 1px solid var(--line); }
.partners-row {
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  border-bottom: 1px solid var(--line); padding: 20px 0;
}
@media (min-width: 640px) {
  .partners-row { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 10px 28px; }
}
.partners-row .flabel { font-family: 'JetBrains Mono', monospace; font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: var(--red); font-weight: 700; }
.partners-row a { font-size: 13px; color: var(--body-text); }
.partners-row a:hover { color: var(--red); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 24px 0; }
.footer-bottom p { margin: 0; font-size: 13px; color: var(--body-text); }
.footer-links { display: flex; gap: 24px; font-size: 13px; }
.footer-links a { color: var(--body-text); }
.footer-links a:hover { color: var(--red); }

/* ============ 404 ============ */
.notfound { min-height: 60vh; display: flex; align-items: center; background: var(--paper); }

/* ============ Zurück-Link ============ */
.back-nav { border-bottom: 1px solid var(--line); background: var(--paper); }
.back-nav .wrap { padding-top: 14px; padding-bottom: 14px; }
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; color: var(--body-text);
  transition: color .2s ease;
}
.back-link:hover { color: var(--red); }
.back-nav.hidden { display: none; }
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 65;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--red); color: var(--paper); border: 1px solid var(--red);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none; transform: translateY(12px);
  box-shadow: 0 10px 24px rgba(209,2,14,.25);
  transition: opacity .3s ease, transform .3s ease, background .2s ease, border-color .2s ease;
}
.to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--red-dark); border-color: var(--red-dark); }
.to-top svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }
@media (max-width: 640px) { .to-top { right: 16px; bottom: 130px; width: 44px; height: 44px; } }

/* ============ Cookie-Banner ============ */
.cookie-banner {
  position: fixed; left: 50%; bottom: 16px; z-index: 70;
  width: calc(100% - 32px); max-width: 600px; transform: translateX(-50%);
  background: var(--paper); color: var(--ink);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 22px 24px; box-shadow: 0 20px 48px rgba(0,0,0,.18);
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner p { margin: 0 0 16px; font-size: 14px; line-height: 1.6; color: var(--body-text); }
.cookie-banner a { color: var(--red); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-actions button { font-size: 13.5px; padding: 10px 18px; cursor: pointer; }
.cookie-actions .btn-ghost {
  background: none; border: 1px solid var(--line); color: var(--ink);
  border-radius: 2px; font-weight: 600; transition: border-color .2s ease;
}
.cookie-actions .btn-ghost:hover { border-color: var(--ink); }
