/* ============================================================
   NIKKI SERVICE — Schlüsseldienst & Schuhdienst Sankt Augustin
   Design-System + Komponenten
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Farben */
  --bg:        #0b1622;
  --bg-2:      #0e1d2e;
  --surface:   #122438;
  --surface-2: #16293f;
  --paper:     #f6f8fb;
  --paper-2:   #ffffff;

  --brass:     #d3aa57;
  --brass-2:   #b98f3e;
  --action:    #16a34a;
  --action-2:  #12833c;
  --whatsapp:  #25d366;
  --whatsapp-2:#1da851;

  --ink:       #0b1622;
  --ink-soft:  #2a3b4d;
  --muted:     #5b6b7b;
  --muted-2:   #8a99a8;
  --line:      rgba(255,255,255,.08);
  --line-dark: rgba(11,22,34,.10);

  --star:      #f7b500;

  /* Maße */
  --maxw: 1200px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.55);
  --shadow-soft: 0 12px 30px -12px rgba(11,22,34,.18);

  /* Typo */
  --font-display: "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-text: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}
body {
  font-family: var(--font-text);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.12; font-weight: 700; letter-spacing: -.02em; }
ul { list-style: none; padding: 0; }

/* ---------- Layout-Helfer ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 22px; }
.section { padding-block: clamp(56px, 9vw, 110px); }
.section--dark { background: var(--bg); color: #eaf0f6; }
.section--alt { background: var(--paper-2); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase; color: var(--brass);
}
.section--dark .eyebrow { color: var(--brass); }
.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.7rem); margin: 14px 0 12px; }
.section-sub { color: var(--muted); font-size: 1.05rem; }
.section--dark .section-sub { color: #a9bccf; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--action);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 26px; border-radius: 999px; border: 0;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: #fff; background: var(--bg);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  box-shadow: 0 12px 26px -12px rgba(22,163,74,.5);
  white-space: normal; text-align: center; max-width: 100%;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--call { background: var(--brass); color: #1a1206; box-shadow: 0 12px 26px -12px rgba(211,170,87,.55); }
.btn--call:hover { background: var(--brass-2); }
.btn--wa { background: var(--whatsapp); box-shadow: 0 12px 26px -12px rgba(37,211,102,.6); }
.btn--wa:hover { background: var(--whatsapp-2); }
/* WhatsApp = nur Logo, runder Icon-Button, immer neben dem Haupt-Button */
.btn--wa-icon { background: var(--whatsapp); color: #fff; width: 56px; height: 56px; padding: 0; border-radius: 50%; flex: 0 0 auto; align-self: center; box-shadow: 0 12px 26px -12px rgba(37,211,102,.55); }
.btn--wa-icon svg { width: 27px; height: 27px; }
.btn--wa-icon:hover { background: var(--whatsapp-2); }
.btn--ghost {
  background: transparent; color: inherit;
  border: 1.5px solid currentColor; box-shadow: none; opacity: .9;
}
.btn--ghost:hover { opacity: 1; background: rgba(255,255,255,.06); }
.btn--gold { background: var(--brass); color: #1a1206; box-shadow: 0 12px 26px -12px rgba(211,170,87,.6); }
.btn--gold:hover { background: var(--brass-2); }
.btn--lg { padding: 17px 32px; font-size: 1.08rem; }
.btn svg { width: 20px; height: 20px; }

/* ---------- Top-Bar ---------- */
.topbar {
  background: var(--bg-2); color: #cdd9e6;
  font-size: .86rem; border-bottom: 1px solid var(--line);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; min-height: 42px; gap: 14px; }
.topbar a { color: #eef4fa; font-weight: 600; }
.topbar .topbar-phone { display: inline-flex; align-items: center; gap: 8px; }
.topbar .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--whatsapp); box-shadow: 0 0 0 4px rgba(37,211,102,.18); }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-hours { color: #9fb2c5; }
@media (max-width: 620px){ .topbar-hours { display: none; } }

/* ---------- Sprachumschalter ---------- */
.lang { display: inline-flex; gap: 2px; background: rgba(255,255,255,.06); padding: 3px; border-radius: 999px; }
.lang button {
  border: 0; background: transparent; color: #aebfd0; font-weight: 700;
  font-size: .76rem; letter-spacing: .04em; padding: 4px 9px; border-radius: 999px;
}
.lang button[aria-pressed="true"] { background: var(--brass); color: #1a1206; }

/* ---------- Header ---------- */
.header { position: sticky; top: 0; z-index: 60; background: rgba(11,22,34,.82); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.header .container { display: flex; align-items: center; justify-content: space-between; min-height: 70px; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 12px; color: #fff; }
.brand img, .brand .brand-emblem { width: 38px; height: 38px; object-fit: contain; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.16rem; letter-spacing: .02em; line-height: 1; }
.brand-name b { color: var(--brass); }
.brand-sub { display: block; font-size: .64rem; letter-spacing: .22em; text-transform: uppercase; color: #8ea3b8; font-family: var(--font-text); font-weight: 600; margin-top: 3px; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { color: #d4dfeb; font-weight: 500; font-size: .96rem; transition: color .15s; }
.nav a:hover { color: var(--brass); }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; background: transparent; border: 0; color: #fff; padding: 6px; }
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 940px){
  .nav, .header-cta .btn--call span { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open {
    display: flex; position: absolute; top: 70px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--bg-2); border-bottom: 1px solid var(--line); padding: 8px 0;
  }
  .nav.open a { padding: 14px 24px; border-bottom: 1px solid var(--line); }
}

/* ---------- Hero ---------- */
.hero { position: relative; color: #eef4fa; background: var(--bg); overflow: hidden; }
.hero::before {
  content:""; position: absolute; inset: 0;
  background:
    radial-gradient(1100px 520px at 80% -10%, rgba(211,170,87,.16), transparent 60%),
    radial-gradient(800px 600px at -10% 110%, rgba(232,73,46,.12), transparent 55%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 50px; align-items: center; padding-block: clamp(48px, 7vw, 92px); }
.hero-eyebrow { color: var(--brass); }
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.7rem); margin: 16px 0 18px; }
.hero h1 .hl { color: var(--brass); }
.hero-sub { font-size: clamp(1.02rem, 1.6vw, 1.2rem); color: #b9cadb; max-width: 540px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-chips { display: flex; flex-wrap: wrap; gap: 10px 22px; margin-top: 30px; }
.chip { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: .92rem; color: #d8e4f0; }
.chip svg { width: 19px; height: 19px; color: var(--brass); flex: none; }
.chip .stars { color: var(--star); letter-spacing: 1px; }

.hero-media { position: relative; }
.hero-media .frame {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.10); aspect-ratio: 16/10; background: var(--surface);
}
.hero-media .frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 42%; }
.hero-badge {
  position: absolute; left: -18px; bottom: 22px;
  background: #fff; color: var(--ink); border-radius: 16px; padding: 14px 18px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 12px;
}
.hero-badge .num { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.hero-badge .stars { color: var(--star); font-size: .82rem; letter-spacing: 1px; }
.hero-badge small { color: var(--muted); font-size: .76rem; }

@media (max-width: 900px){
  .hero .container { grid-template-columns: 1fr; gap: 36px; }
  .hero-media { order: -1; }
  .hero-media .frame { aspect-ratio: 16/10; }
  .hero-badge { left: 10px; bottom: 10px; padding: 11px 14px; }
  .hero-badge .num { font-size: 1.3rem; }
}

/* ---------- Trust-Strip ---------- */
.trust { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust .container { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; padding-block: 26px; }
.trust-item { display: flex; align-items: center; gap: 12px; color: #d9e4ef; font-weight: 600; font-size: .94rem; }
.trust-item svg { width: 26px; height: 26px; color: var(--brass); flex: none; }
@media (max-width: 860px){ .trust .container { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 460px){ .trust .container { grid-template-columns: 1fr; } }

/* ---------- Leistungen ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
@media (max-width: 920px){ .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px){ .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--paper-2); border: 1px solid var(--line-dark); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .18s ease, box-shadow .2s ease, border-color .2s;
  position: relative; overflow: hidden;
}
.service::after { content:""; position:absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg,var(--brass),transparent); opacity: 0; transition: opacity .2s; }
.service:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: rgba(211,170,87,.4); }
.service:hover::after { opacity: 1; }
.service .ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(160deg, #fbf3df, #f3e6c4); color: var(--brass-2); margin-bottom: 16px; }
.service .ico svg { width: 28px; height: 28px; }
.service h3 { font-size: 1.18rem; margin-bottom: 8px; }
.service p { color: var(--muted); font-size: .96rem; }
.service .tag { position: absolute; top: 22px; right: 22px; font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--brass-2); background: #fbf3df; padding: 4px 9px; border-radius: 999px; }

/* Featured-Leistung (Autoschlüssel) – hervorgehoben */
.service-featured {
  display: grid; grid-template-columns: .95fr 1.05fr; gap: 0; margin-bottom: 26px;
  background: linear-gradient(135deg, #15273d, #0d1c2d);
  border: 1px solid rgba(211,170,87,.45); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow);
}
.service-featured .sf-media { position: relative; }
.service-featured .sf-media img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; display: block; }
.service-featured .sf-body { padding: 36px 38px; color: #eaf0f6; }
.service-featured .sf-tag { display: inline-flex; align-items: center; gap: 8px; background: var(--brass); color: #1a1206; font-family: var(--font-display); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; padding: 6px 13px; border-radius: 999px; margin-bottom: 16px; }
.service-featured .sf-tag svg { width: 16px; height: 16px; }
.service-featured h3 { font-size: clamp(1.4rem, 2.6vw, 1.95rem); margin-bottom: 10px; }
.service-featured p { color: #aebfd0; margin-bottom: 18px; }
.sf-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.sf-badge { background: rgba(211,170,87,.12); border: 1px solid rgba(211,170,87,.32); color: #e8d4a6; font-weight: 600; font-size: .84rem; padding: 7px 13px; border-radius: 999px; }
.sf-actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 760px){
  .service-featured { grid-template-columns: 1fr; }
  .service-featured .sf-media img { min-height: 220px; }
  .service-featured .sf-body { padding: 28px 24px; }
}

/* ---------- Preise ---------- */
.price-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: center; }
@media (max-width: 860px){ .price-wrap { grid-template-columns: 1fr; gap: 28px; } }
.price-card {
  background: linear-gradient(165deg, var(--surface), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 38px 34px; color: #eaf0f6; box-shadow: var(--shadow);
}
.price-card .big { font-family: var(--font-display); font-weight: 800; font-size: clamp(1.8rem,4vw,2.6rem); margin-bottom: 6px; }
.price-card .big span { color: var(--brass); }
.price-card .lead { color: #aabfd2; margin-bottom: 22px; }
.price-list li { display: flex; gap: 12px; align-items: flex-start; padding: 11px 0; border-bottom: 1px solid var(--line); }
.price-list li:last-child { border-bottom: 0; }
.price-list svg { width: 22px; height: 22px; color: var(--whatsapp); flex: none; margin-top: 1px; }
.price-list b { font-weight: 600; }
.price-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Ablauf ---------- */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; counter-reset: step; }
@media (max-width: 760px){ .steps { grid-template-columns: 1fr; } }
.step { position: relative; padding: 30px 26px; background: var(--paper-2); border: 1px solid var(--line-dark); border-radius: var(--radius); }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--bg); color: var(--brass); margin-bottom: 16px; }
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .96rem; }

/* ---------- Über uns ---------- */
.about { display: grid; grid-template-columns: .95fr 1.05fr; gap: 50px; align-items: center; }
@media (max-width: 860px){ .about { grid-template-columns: 1fr; gap: 32px; } }
.about-media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--surface); }
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about p { color: var(--muted); margin-bottom: 16px; }
.section--dark .about p { color: #aebfd0; }
.about-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; margin-top: 26px; }
.about-stat { background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 16px; text-align: center; }
.about-stat .v { font-family: var(--font-display); font-weight: 800; font-size: 1.35rem; color: var(--brass); }
.about-stat .l { font-size: .78rem; color: #9fb2c5; margin-top: 2px; }

/* ---------- Gebiet ---------- */
.area-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; align-items: stretch; }
@media (max-width: 820px){ .area-wrap { grid-template-columns: 1fr; } }
.area-cities { display: flex; flex-wrap: wrap; gap: 10px; margin: 22px 0 8px; }
.area-city { background: var(--paper-2); color: var(--ink); border: 1px solid var(--line-dark); border-radius: 999px; padding: 9px 16px; font-weight: 600; font-size: .92rem; display: inline-flex; align-items: center; gap: 7px; }
.area-city svg { width: 15px; height: 15px; color: var(--brass-2); }
.map-frame { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-dark); min-height: 320px; box-shadow: var(--shadow-soft); }
.map-frame img { width: 100%; height: 100%; min-height: 320px; object-fit: cover; display: block; transition: transform .45s ease; }
.map-frame:hover img { transform: scale(1.045); }
.map-frame .map-pin-label { position: absolute; left: 14px; bottom: 14px; display: inline-flex; align-items: center; gap: 7px; background: rgba(11,22,34,.92); color: #fff; font-weight: 600; font-size: .86rem; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-soft); }
.map-frame .map-pin-label svg { width: 16px; height: 16px; color: var(--brass); flex: none; }
.map-frame .map-attrib { position: absolute; right: 6px; top: 6px; background: rgba(255,255,255,.82); color: #33455a; font-size: .64rem; padding: 2px 7px; border-radius: 6px; }

/* ---------- Bewertungen ---------- */
.reviews-card {
  max-width: 820px; margin-inline: auto; text-align: center;
  background: var(--paper-2); border: 1px solid var(--line-dark); border-radius: var(--radius-lg);
  padding: 46px 34px; box-shadow: var(--shadow-soft);
}
.reviews-rating { display: flex; align-items: center; justify-content: center; gap: 22px; flex-wrap: wrap; }
.reviews-rating .score { font-family: var(--font-display); font-weight: 800; font-size: clamp(3rem,8vw,4.4rem); color: var(--ink); line-height: 1; }
.reviews-rating .stars { color: var(--star); font-size: 1.7rem; letter-spacing: 3px; }
.reviews-rating .meta { text-align: left; }
.reviews-rating .meta .g { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; }
.reviews-rating .meta small { color: var(--muted); }
.gdot { font-family: var(--font-display); font-weight: 800; }
.gdot b:nth-child(1){color:#4285F4}.gdot b:nth-child(2){color:#EA4335}.gdot b:nth-child(3){color:#FBBC05}.gdot b:nth-child(4){color:#4285F4}.gdot b:nth-child(5){color:#34A853}.gdot b:nth-child(6){color:#EA4335}
.reviews-note { color: var(--muted); margin: 22px auto 24px; max-width: 520px; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line-dark); }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: 22px 44px 22px 0; position: relative; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); }
.faq-q::after { content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%); font-size: 1.6rem; color: var(--brass-2); transition: transform .2s; }
.faq-item.open .faq-q::after { transform: translateY(-50%) rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { color: var(--muted); padding: 0 44px 22px 0; }
/* Lesbarkeit in dunklen Sektionen */
.section--dark .faq-item { border-bottom-color: var(--line); }
.section--dark .faq-q { color: #eef4fa; }
.section--dark .faq-a p { color: #aebfd0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
@media (max-width: 820px){ .contact-grid { grid-template-columns: 1fr; } }
.contact-list { display: grid; gap: 14px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; background: var(--surface); border: 1px solid var(--line); border-radius: 14px; padding: 18px 20px; }
.contact-row .ci { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: rgba(211,170,87,.14); color: var(--brass); flex: none; }
.contact-row .ci svg { width: 22px; height: 22px; }
.contact-row .l { font-size: .8rem; color: #9fb2c5; text-transform: uppercase; letter-spacing: .08em; }
.contact-row .v { font-weight: 600; font-size: 1.06rem; color: #eef4fa; }
.contact-row .v a:hover { color: var(--brass); }
.contact-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }

/* ---------- Footer ---------- */
.footer { background: #081019; color: #9fb2c5; padding-block: 54px 110px; border-top: 1px solid var(--line); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-bottom: 32px; border-bottom: 1px solid var(--line); }
@media (max-width: 760px){ .footer-top { grid-template-columns: 1fr; gap: 26px; } }
.footer .brand-name { color: #fff; }
.footer-about { max-width: 320px; margin-top: 14px; font-size: .94rem; }
.footer h4 { color: #fff; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 14px; }
.footer-links li { margin-bottom: 9px; }
.footer-links a:hover { color: var(--brass); }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: .86rem; }
.footer-bottom a:hover { color: var(--brass); }

/* ---------- Sticky Mobile-Bar ---------- */
.mobilebar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; gap: 0; box-shadow: 0 -6px 22px rgba(0,0,0,.25); transform: translateY(110%); transition: transform .28s ease; }
.mobilebar.show { transform: none; }
.mobilebar a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 9px; padding: 15px; font-family: var(--font-display); font-weight: 700; color: #fff; font-size: .98rem; }
.mobilebar a svg { width: 20px; height: 20px; }
.mobilebar .mb-call { background: var(--brass); color: #1a1206; }
.mobilebar .mb-wa { background: var(--whatsapp); }
@media (max-width: 760px){ .mobilebar { display: flex; } .footer { padding-bottom: 90px; } }

/* ---------- Cookie-Banner ---------- */
.cookie { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 80; max-width: 520px; margin-inline: auto; background: #fff; color: var(--ink); border-radius: 16px; padding: 18px 20px; box-shadow: var(--shadow); display: none; }
.cookie.show { display: block; }
.cookie p { font-size: .9rem; color: var(--ink-soft); margin-bottom: 12px; }
.cookie p a { color: var(--brass-2); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .btn { padding: 10px 18px; font-size: .92rem; }
@media (max-width: 760px){ .cookie { bottom: 76px; } }

/* ---------- Scroll-Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Utilities ---------- */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
