/* ============================================================
   Spezi Fachmarkt — Design System
   Marke: Weiß · Rot #e11919 · Blau #145480
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  /* Marke */
  --red:        #e11919;
  --red-700:    #b81111;
  --red-800:    #971010;
  --red-050:    #fdecec;
  --blue:       #145480;
  --blue-700:   #0f4066;
  --blue-900:   #0b2f4c;
  --blue-050:   #eaf1f6;

  /* Neutrale */
  --bg:         #ffffff;
  --surface:    #f5f7f8;
  --surface-2:  #eef1f3;
  --ink:        #14181c;
  --ink-soft:   #39424a;
  --muted:      #5a6670;
  --line:       #e4e8eb;
  --line-strong:#d3d9dd;
  --white:      #ffffff;

  /* Typo */
  --font-display: "Archivo", system-ui, sans-serif;
  --font-body:    "Hanken Grotesk", system-ui, sans-serif;

  --step--1: clamp(0.82rem, 0.8rem + 0.1vw, 0.88rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.08rem);
  --step-1:  clamp(1.2rem, 1.12rem + 0.4vw, 1.4rem);
  --step-2:  clamp(1.45rem, 1.3rem + 0.7vw, 1.9rem);
  --step-3:  clamp(1.8rem, 1.55rem + 1.2vw, 2.6rem);
  --step-4:  clamp(2.2rem, 1.8rem + 2vw, 3.6rem);
  --step-5:  clamp(2.7rem, 2rem + 3.4vw, 4.8rem);

  /* Raum */
  --gutter: clamp(1.1rem, 0.7rem + 2vw, 2.4rem);
  --wrap: 1200px;
  --wrap-narrow: 820px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 9px;

  --shadow-sm: 0 1px 2px rgba(20,24,28,.06), 0 2px 8px rgba(20,24,28,.05);
  --shadow-md: 0 8px 24px rgba(20,24,28,.09), 0 2px 6px rgba(20,24,28,.05);
  --shadow-lg: 0 24px 60px rgba(11,47,76,.18);

  --ease: cubic-bezier(.22,.61,.36,1);        /* ease-out-quart-ish */
  --ease-expo: cubic-bezier(.16,1,.3,1);

  /* z-scale */
  --z-header: 100;
  --z-backdrop: 200;
  --z-drawer: 210;
  --z-top: 300;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; max-width: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--blue); text-decoration: none; }
a:hover { color: var(--blue-700); }
ul, ol { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

:focus-visible { outline: 3px solid var(--blue); outline-offset: 2px; border-radius: 4px; }

/* ---------- Typo ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-wrap: balance;
  font-weight: 800;
}
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-2); letter-spacing: -0.015em; }
h4 { font-size: var(--step-1); letter-spacing: -0.01em; font-weight: 700; }
p { text-wrap: pretty; }
strong { font-weight: 700; color: var(--ink); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--step--1);
  letter-spacing: .01em;
  color: var(--red);
  text-transform: none;
}
.eyebrow::before {
  content: ""; width: 1.6rem; height: 3px; border-radius: 2px;
  background: var(--red); flex: none;
}

.lead { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; max-width: 62ch; }

/* ---------- Layout ---------- */
.wrap { width: min(100% - 2*var(--gutter), var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - 2*var(--gutter), var(--wrap-narrow)); margin-inline: auto; }
.section { padding-block: clamp(3.2rem, 2rem + 5vw, 6rem); }
.section--tight { padding-block: clamp(2.4rem, 1.6rem + 3vw, 4rem); }
.section--surface { background: var(--surface); }
.section-head { max-width: 60ch; margin-bottom: clamp(1.8rem, 1rem + 2.5vw, 3rem); }
.section-head .eyebrow { margin-bottom: .9rem; }
.section-head p { margin-top: .9rem; color: var(--muted); }

.stack > * + * { margin-top: 1rem; }

/* Überlauf-Schutz: Flex/Grid-Kinder mit Text dürfen schrumpfen */
.hero__grid > *, .feature > *, .split > *, .cta-band__grid > *, .svc, .info-card > div, .checklist span, .feature__body, .hero__copy { min-width: 0; }

/* ---------- Buttons ---------- */
.btn {
  --_bg: var(--red); --_fg: #fff; --_bd: var(--red);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-display); font-weight: 700; font-size: var(--step-0);
  line-height: 1; letter-spacing: -0.01em;
  padding: .95em 1.5em; border-radius: 999px;
  background: var(--_bg); color: var(--_fg); border: 2px solid var(--_bd);
  transition: transform .18s var(--ease), box-shadow .25s var(--ease), background .2s var(--ease);
  box-shadow: 0 6px 18px rgba(225,25,25,.22);
  white-space: nowrap;
}
.btn:hover { background: var(--red-700); border-color: var(--red-700); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(225,25,25,.28); }
.btn:active { transform: translateY(0); }
.btn .ico { width: 1.15em; height: 1.15em; }

.btn--blue { --_bg: var(--blue); --_bd: var(--blue); box-shadow: 0 6px 18px rgba(20,84,128,.22); }
.btn--blue:hover { background: var(--blue-700); border-color: var(--blue-700); box-shadow: 0 10px 26px rgba(20,84,128,.3); }

.btn--ghost {
  --_bg: transparent; --_fg: var(--ink); --_bd: var(--line-strong);
  box-shadow: none;
}
.btn--ghost:hover { --_fg: var(--ink); background: var(--surface); border-color: var(--ink); transform: translateY(-2px); }

.btn--white { --_bg: #fff; --_fg: var(--ink); --_bd: #fff; box-shadow: 0 8px 22px rgba(0,0,0,.18); }
.btn--white:hover { background: #fff; color: var(--red); border-color: #fff; }

.btn--sm { padding: .7em 1.15em; font-size: var(--step--1); }

.linkarrow {
  display: inline-flex; align-items: center; gap: .45rem;
  font-family: var(--font-display); font-weight: 700; color: var(--blue);
}
.linkarrow .ico { transition: transform .2s var(--ease); }
.linkarrow:hover .ico { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: var(--z-header);
  background: rgba(255,255,255,.9);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__bar {
  display: flex; align-items: center; gap: 1.5rem;
  min-height: 74px; padding-block: .6rem;
}
.brand { display: inline-flex; align-items: center; gap: .7rem; margin-right: auto; }
.brand img { height: 40px; width: auto; }
.brand__tag {
  font-family: var(--font-display); font-weight: 700; font-size: .72rem;
  color: var(--muted); letter-spacing: .02em; border-left: 1px solid var(--line-strong);
  padding-left: .7rem; line-height: 1.15; max-width: 12ch;
}
@media (max-width: 560px){ .brand__tag { display: none; } }

.nav { display: flex; align-items: center; gap: .3rem; }
.nav a {
  font-family: var(--font-display); font-weight: 600; font-size: .96rem;
  color: var(--ink); padding: .55rem .8rem; border-radius: 8px;
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav a:hover { background: var(--surface); color: var(--red); }
.nav a[aria-current="page"] { color: var(--red); }
.nav a[aria-current="page"]::after {
  content:""; display:block; height:2px; background: var(--red); border-radius:2px;
  margin-top:3px;
}
.header__cta { display: inline-flex; align-items: center; gap: .9rem; }
.header__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 1rem;
}
.header__phone .ico { color: var(--red); width: 1.15rem; height: 1.15rem; }
.header__phone:hover { color: var(--red); }

.nav-toggle { display: none; }

/* Mobile nav */
@media (max-width: 940px) {
  .nav, .header__phone, .header__cta { display: none; }
  .nav-toggle {
    display: inline-flex; align-items: center; justify-content: center;
    width: 46px; height: 46px; border-radius: 10px; border: 1px solid var(--line-strong);
    background: #fff; color: var(--ink);
  }
  .nav-toggle .ico { width: 24px; height: 24px; }
  .drawer-backdrop {
    position: fixed; inset: 0; background: rgba(11,47,76,.4);
    opacity: 0; visibility: hidden; transition: opacity .25s var(--ease); z-index: var(--z-backdrop);
  }
  .drawer-backdrop.open { opacity: 1; visibility: visible; }
  .drawer {
    position: fixed; top: 0; right: 0; height: 100dvh; width: min(84vw, 340px);
    background: #fff; z-index: var(--z-drawer);
    transform: translateX(100%); transition: transform .32s var(--ease-expo);
    padding: 1.4rem; display: flex; flex-direction: column; gap: .3rem;
    box-shadow: var(--shadow-lg); overflow-y: auto;
  }
  .drawer.open { transform: translateX(0); }
  .drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .drawer__head img { height: 34px; }
  .drawer__close { width: 44px; height: 44px; border-radius: 10px; border: 1px solid var(--line); background: var(--surface); display: grid; place-items: center; }
  .drawer a.nav-link {
    font-family: var(--font-display); font-weight: 700; font-size: 1.15rem; color: var(--ink);
    padding: .85rem .6rem; border-radius: 10px; border-bottom: 1px solid var(--line);
  }
  .drawer a.nav-link:hover, .drawer a.nav-link[aria-current="page"] { color: var(--red); }
  .drawer .btn { margin-top: 1.1rem; }
  .drawer__phone { margin-top: .5rem; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--red); display:inline-flex; gap:.5rem; align-items:center; }
}
@media (min-width: 941px){ .drawer, .drawer-backdrop { display:none; } }

/* ---------- Hero ---------- */
.hero { position: relative; padding-block: clamp(2.5rem, 1.5rem + 4vw, 4.5rem) clamp(3rem, 2rem + 4vw, 5rem); }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(1.5rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
@media (max-width: 900px){ .hero__grid { grid-template-columns: 1fr; } }
.hero__title { font-size: var(--step-5); font-weight: 800; letter-spacing: -0.035em; }
.hero__title .accent { color: var(--red); }
.hero__lead { margin-top: 1.3rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; margin-top: 2rem; }
.hero__trust div { display: flex; align-items: baseline; gap: .5rem; }
.hero__trust b { font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--blue); letter-spacing: -.02em; }
.hero__trust span { color: var(--muted); font-size: var(--step--1); max-width: 14ch; line-height: 1.25; }

.hero__media { position: relative; }
.hero__media img {
  width: 100%; aspect-ratio: 5/4; object-fit: cover; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute; left: -14px; bottom: 26px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: .9rem 1.1rem; display: flex; align-items: center; gap: .8rem;
  border: 1px solid var(--line);
}
.hero__badge .dot { width: 42px; height: 42px; border-radius: 12px; background: var(--red-050); color: var(--red); display: grid; place-items: center; flex: none; }
.hero__badge .dot .ico { width: 24px; height: 24px; }
.hero__badge b { font-family: var(--font-display); font-size: .98rem; display: block; }
.hero__badge span { font-size: .8rem; color: var(--muted); }
@media (max-width: 480px){ .hero__badge { left: 10px; bottom: 10px; } }

/* ---------- Marquee / Partner ---------- */
.trustbar { border-block: 1px solid var(--line); background: var(--surface); }
.trustbar__inner { display: flex; align-items: center; gap: clamp(1.5rem,4vw,3.5rem); padding-block: 1.1rem; flex-wrap: wrap; justify-content: center; }
.trustbar span { font-family: var(--font-display); font-weight: 700; color: var(--muted); font-size: .95rem; letter-spacing: .02em; }
.trustbar b { color: var(--blue); }

/* ---------- Service feature rows ---------- */
.feature {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 1rem + 3vw, 3.4rem);
  align-items: center;
}
.feature + .feature { margin-top: clamp(2.4rem, 1.6rem + 3vw, 4.5rem); }
.feature__media img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.feature__body { max-width: 52ch; }
.feature__body h3 { margin-bottom: .8rem; }
.feature__body .num { font-family: var(--font-display); font-weight: 800; color: var(--surface-2); font-size: 3rem; line-height: 1; }
.feature ul.ticks { margin-top: 1.1rem; display: grid; gap: .5rem; }
.feature ul.ticks li { display: flex; gap: .6rem; align-items: flex-start; color: var(--ink-soft); }
.feature ul.ticks .ico { color: var(--red); width: 1.25rem; height: 1.25rem; flex: none; margin-top: .18rem; }
@media (max-width: 820px){
  .feature { grid-template-columns: 1fr; }
  .feature--flip .feature__media { order: -1; }
}
@media (min-width: 821px){ .feature--flip .feature__body { order: 2; } }

.badge-new {
  display: inline-flex; align-items: center; gap: .4rem; vertical-align: middle;
  font-family: var(--font-display); font-weight: 800; font-size: .72rem; letter-spacing: .03em;
  color: #fff; background: var(--red); padding: .28rem .6rem; border-radius: 999px; margin-left: .6rem;
}

/* ---------- Service quick grid ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.1rem; }
.svc {
  position: relative; padding: 1.5rem; border-radius: var(--radius); background: #fff;
  border: 1px solid var(--line); transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
  display: flex; flex-direction: column; gap: .55rem; min-height: 100%;
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc__ico { width: 50px; height: 50px; border-radius: 13px; background: var(--blue-050); color: var(--blue); display: grid; place-items: center; margin-bottom: .3rem; }
.svc__ico .ico { width: 27px; height: 27px; }
.svc.is-accent .svc__ico { background: var(--red-050); color: var(--red); }
.svc h4 { font-size: 1.18rem; }
.svc p { color: var(--muted); font-size: var(--step--1); line-height: 1.5; }
.svc .linkarrow { margin-top: auto; padding-top: .4rem; font-size: .9rem; }

/* ---------- Split / info ---------- */
.split { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,1rem+3vw,3.5rem); align-items: center; }
@media (max-width: 860px){ .split { grid-template-columns: 1fr; } }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); object-fit: cover; }

.checklist { display: grid; gap: .8rem; margin-top: 1.4rem; }
.checklist li { display: flex; gap: .7rem; align-items: flex-start; }
.checklist .ico { color: var(--red); width: 1.4rem; height: 1.4rem; flex: none; margin-top: .12rem; }
.checklist b { display: block; font-family: var(--font-display); }
.checklist span { color: var(--muted); font-size: var(--step--1); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(12, 1fr); gap: .9rem; grid-auto-rows: 1fr; }
.gallery a { position: relative; overflow: hidden; border-radius: var(--radius); display: block; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.gallery a:hover img { transform: scale(1.05); }
.gallery .g-lg { grid-column: span 6; aspect-ratio: 3/2; }
.gallery .g-sm { grid-column: span 3; aspect-ratio: 3/2; }
@media (max-width: 720px){
  .gallery .g-lg { grid-column: span 12; }
  .gallery .g-sm { grid-column: span 6; }
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--blue-900); color: #fff; border-radius: var(--radius-lg); padding: clamp(2rem,1.4rem+3vw,3.4rem); position: relative; overflow: hidden; }
.cta-band::after {
  content:""; position:absolute; right:-60px; top:-60px; width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(225,25,25,.5), transparent 62%); pointer-events:none;
}
.cta-band__grid { display: grid; grid-template-columns: 1.4fr auto; gap: 1.6rem 2.5rem; align-items: center; position: relative; z-index: 1; }
@media (max-width: 760px){ .cta-band__grid { grid-template-columns: 1fr; } }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); margin-top: .7rem; max-width: 48ch; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; }

/* ---------- Contact strip ---------- */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); gap: 1rem; }
.info-card { padding: 1.4rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; display: flex; gap: .9rem; align-items: flex-start; }
.info-card .ico { color: var(--red); width: 1.6rem; height: 1.6rem; flex: none; }
.info-card h4 { font-size: 1.02rem; margin-bottom: .2rem; }
.info-card p, .info-card a { color: var(--ink-soft); font-size: var(--step--1); line-height: 1.5; }
.info-card a { font-weight: 600; color: var(--blue); }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
@media (max-width: 620px){ .form-grid { grid-template-columns: 1fr; } }
.field label { display: block; font-family: var(--font-display); font-weight: 600; font-size: .9rem; margin-bottom: .35rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .8rem .9rem; border: 1px solid var(--line-strong); border-radius: 10px;
  font: inherit; background: #fff; color: var(--ink); transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-050); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- Map / anfahrt ---------- */
.map-embed { width: 100%; aspect-ratio: 16/10; border: 0; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---------- Page hero (subpages) ---------- */
.pagehero { background: var(--surface); border-bottom: 1px solid var(--line); }
.pagehero__inner { padding-block: clamp(2.4rem, 1.6rem + 3vw, 4rem); }
.pagehero h1 { font-size: var(--step-4); }
.pagehero p { margin-top: .9rem; color: var(--muted); max-width: 58ch; }
.crumbs { display: flex; gap: .5rem; align-items: center; color: var(--muted); font-size: var(--step--1); margin-bottom: 1rem; font-family: var(--font-display); font-weight: 600; }
.crumbs a { color: var(--muted); }
.crumbs a:hover { color: var(--red); }

/* ---------- Prose ---------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--step-2); margin-top: 2.4rem; margin-bottom: .8rem; }
.prose h3 { font-size: var(--step-1); margin-top: 1.8rem; margin-bottom: .5rem; }
.prose p { margin-top: .9rem; color: var(--ink-soft); }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose ul { margin-top: .8rem; display: grid; gap: .4rem; }
.prose ul li { padding-left: 1.3rem; position: relative; color: var(--ink-soft); }
.prose ul li::before { content:""; position:absolute; left:.1rem; top:.62rem; width:.5rem; height:.5rem; border-radius:2px; background: var(--red); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: clamp(2.6rem,2rem+3vw,4rem) 2rem; }
.site-footer a { color: rgba(255,255,255,.72); }
.site-footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; }
@media (max-width: 860px){ .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px){ .footer__grid { grid-template-columns: 1fr; } }
.footer__brand img { height: 40px; filter: brightness(0) invert(1); opacity: .95; margin-bottom: 1rem; }
.footer__brand p { font-size: var(--step--1); line-height: 1.6; max-width: 34ch; }
.footer h5 { font-family: var(--font-display); color: #fff; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 1rem; opacity: .6; }
.footer ul { display: grid; gap: .55rem; }
.footer ul a { font-size: .95rem; }
.footer__contact div { display: flex; gap: .55rem; margin-bottom: .7rem; align-items: flex-start; font-size: .95rem; }
.footer__contact .ico { color: var(--red); width: 1.2rem; height: 1.2rem; flex: none; margin-top: .15rem; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 2.4rem; padding-top: 1.4rem; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .85rem; }
.footer__bottom a { text-decoration: none; }

/* ---------- Reveal motion ---------- */
.reveal { opacity: 1; }
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-d="1"]{ transition-delay: .08s; }
  .reveal[data-d="2"]{ transition-delay: .16s; }
  .reveal[data-d="3"]{ transition-delay: .24s; }
}

/* ---------- Utilities ---------- */
.center { text-align: center; margin-inline: auto; }
.mt-1{margin-top:1rem}.mt-2{margin-top:2rem}
.text-muted{color:var(--muted)}
.hide-sm{ }
@media (max-width:560px){ .hide-sm{ display:none } }
.skip { position:absolute; left:-9999px; top:auto; }
.skip:focus { left:1rem; top:1rem; z-index:var(--z-top); background:#fff; padding:.7rem 1rem; border-radius:8px; box-shadow:var(--shadow-md); }
