/* ============================================================
   DENTALYS · Oralchirurgie und Implantologie, Murnau
   Design tokens derived from the practice logo:
   deep petrol-teal wordmark plus teal-to-cyan ribbon gradient.
   ============================================================ */

/* ---------- Self-hosted fonts (DSGVO: keine externen Requests) ---------- */
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("assets/fonts/spectral-300.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/spectral-400.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/spectral-400-italic.woff2") format("woff2");
}
@font-face {
  font-family: "Spectral";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/spectral-500.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-sans.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-400.woff2") format("woff2");
}
@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("assets/fonts/ibm-plex-mono-500.woff2") format("woff2");
}

:root {
  /* Brand palette (light) · abgenommen aus dem Logo */
  --bg:          #F6F8F9;   /* cool near-white ground */
  --surface:     #FFFFFF;
  --surface-2:   #EEF3F5;   /* tinted panels */
  --ink:         #0F2C38;   /* deep petrol · headings */
  --body:        #42585F;   /* slate body text */
  --muted:       #6E848D;   /* captions / meta */
  --line:        #DBE5E9;   /* hairlines */
  --accent:      #0A6E86;   /* brand teal (core #00597D lifted) */
  --accent-d:    #084E60;   /* hover / pressed */
  --accent-soft: #E7F0F3;   /* teal tint fill */
  --cyan:        #7FB4C4;   /* ribbon light end */
  --focus:       #0A6E86;

  /* Type */
  --f-display: "Spectral", Georgia, "Times New Roman", serif;
  --f-body:    "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  /* Scale & rhythm */
  --wrap: 1160px;
  --gutter: clamp(20px, 5vw, 64px);
  --sp: clamp(72px, 11vw, 148px); /* section spacing */
  --r: 3px;                       /* restrained radius */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

:root[data-theme="dark"] {
  --bg:          #0B1F27;
  --surface:     #102A34;
  --surface-2:   #16353F;
  --ink:         #EAF3F5;
  --body:        #B0C4CC;
  --muted:       #7F98A2;
  --line:        #21424E;
  --accent:      #57B7CD;
  --accent-d:    #83CEE0;
  --accent-soft: #132F3A;
  --cyan:        #4E93A6;
  --focus:       #57B7CD;
}

/* ---------- Reset-ish ---------- */
*, *::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: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--body);
  line-height: 1.65;
  font-size: 1rem;
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-d); }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--f-display);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.h-hero {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 1.7vw, 1.4rem); }

.eyebrow {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--accent);
  opacity: 0.6;
}
.lead { font-size: clamp(1.08rem, 1.5vw, 1.28rem); color: var(--body); }

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
section { padding-block: var(--sp); }
.section-head { max-width: 46rem; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 18px; }

.snum {
  font-family: var(--f-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 74px;
}
.brand { display: inline-flex; align-items: center; }
.brand svg { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); }
.nav-links a {
  font-size: 0.92rem; color: var(--ink); font-weight: 450;
  letter-spacing: 0.01em; position: relative; padding-block: 6px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--accent); transition: width 0.3s var(--ease);
}
.nav-links a:hover::after, .nav-links a[aria-current="true"]::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  background: none; border: 1px solid var(--line); color: var(--ink);
  width: 38px; height: 38px; border-radius: 50%; cursor: pointer;
  display: grid; place-items: center; transition: border-color 0.2s, color 0.2s;
}
.theme-toggle:hover { border-color: var(--accent); color: var(--accent); }
.theme-toggle svg { width: 17px; height: 17px; }
.theme-toggle .icon-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .icon-sun { display: block; }
:root[data-theme="dark"] .theme-toggle .icon-moon { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-body); font-size: 0.92rem; font-weight: 500;
  letter-spacing: 0.01em; padding: 13px 22px; border-radius: var(--r);
  border: 1px solid transparent; cursor: pointer; transition: all 0.25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 15px; height: 15px; }
.btn-primary { background: var(--accent); color: #fff; }
:root[data-theme="dark"] .btn-primary { color: #06222B; }
.btn-primary:hover { background: var(--accent-d); color: #fff; transform: translateY(-1px); }
:root[data-theme="dark"] .btn-primary:hover { color: #06222B; }
.btn-ghost { border-color: var(--line); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-lg { padding: 16px 28px; font-size: 0.98rem; }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 8vw, 92px); padding-bottom: var(--sp); overflow: hidden; }
.hero-ribbon {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  opacity: 0.9;
}
.hero-ribbon svg { position: absolute; right: -6%; top: -8%; width: min(70vw, 820px); height: auto; }
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(32px, 5vw, 72px); align-items: center;
}
.hero-inner { max-width: 42rem; }
.hero-figure {
  margin: 0; position: relative; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--surface-2);
  box-shadow: 0 26px 64px -34px color-mix(in srgb, var(--ink) 62%, transparent);
}
.hero-figure img { width: 100%; height: 100%; object-fit: cover; }
.hero .h-hero { margin: 22px 0 0; }
.hero .h-hero em { font-style: italic; color: var(--accent); }
.hero-lead { margin-top: 26px; max-width: 34rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 28px 40px; margin-top: 56px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-meta .item { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.hero-meta .v { font-family: var(--f-display); font-size: 1.05rem; color: var(--ink); }

/* ---------- Trust strip ---------- */
.trust {
  border-block: 1px solid var(--line); padding-block: 26px;
  background: var(--surface-2);
}
.trust .wrap { display: flex; flex-wrap: wrap; align-items: center; gap: 20px 40px; justify-content: space-between; }
.trust-item { display: flex; align-items: center; gap: 13px; }
.trust-item svg { width: 26px; height: 26px; color: var(--accent); flex: none; }
.trust-item .t { font-family: var(--f-display); color: var(--ink); font-size: 1.02rem; line-height: 1.15; }
.trust-item .s { font-size: 0.8rem; color: var(--muted); }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 88px); align-items: start; }
.about-copy p + p { margin-top: 18px; }
.about-copy .lead { margin-bottom: 22px; }
.about-figure {
  position: relative; aspect-ratio: 4/5; border-radius: var(--r);
  background: linear-gradient(155deg, var(--surface-2), var(--accent-soft));
  border: 1px solid var(--line); overflow: hidden; display: grid; place-items: center;
}
.about-figure .ph-note {
  position: relative; z-index: 2; text-align: center; padding: 20px;
  font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--muted); text-transform: uppercase;
}
.about-figure svg.fig-ribbon { position: absolute; inset: 0; width: 130%; height: 130%; opacity: 0.5; }

.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 28px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.stats .stat { background: var(--surface); padding: 22px 20px; }
.stats .n { font-family: var(--f-display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); line-height: 1; }
.stats .l { font-size: 0.82rem; color: var(--muted); margin-top: 8px; }

/* ---------- Services ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; }
.svc {
  background: var(--surface); padding: clamp(26px, 3vw, 38px) clamp(24px, 2.6vw, 34px);
  display: flex; flex-direction: column; gap: 14px; min-height: 240px;
  transition: background 0.3s var(--ease);
}
.svc:hover { background: var(--surface-2); }
.svc .svc-num { font-family: var(--f-mono); font-size: 0.72rem; letter-spacing: 0.16em; color: var(--accent); }
.svc .svc-icon { color: var(--accent); }
.svc .svc-icon svg { width: 30px; height: 30px; }
.svc h3 { margin-top: 2px; }
.svc p { font-size: 0.94rem; margin-top: auto; }

/* ---------- Section lead images ---------- */
.team-figure {
  margin: 0 0 clamp(36px, 5vw, 60px); border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 16/9; background: var(--surface-2);
}
.team-figure img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%; }

.leist-intro {
  display: grid; grid-template-columns: 1.2fr 0.8fr; gap: clamp(32px, 5vw, 64px);
  align-items: center; margin-bottom: clamp(40px, 5vw, 64px);
}
.leist-intro .section-head { margin-bottom: 0; max-width: none; }
.leist-figure {
  margin: 0; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); aspect-ratio: 4/3; background: var(--surface-2);
}
.leist-figure img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 2.4vw, 30px); }
.member { }
.member .portrait {
  aspect-ratio: 3/4; border-radius: var(--r); overflow: hidden; position: relative;
  background: linear-gradient(160deg, var(--surface-2), var(--accent-soft));
  border: 1px solid var(--line); display: grid; place-items: center; margin-bottom: 16px;
}
.member .portrait .initials {
  font-family: var(--f-display); font-size: clamp(2rem, 4vw, 2.6rem);
  color: color-mix(in srgb, var(--accent) 55%, var(--muted)); letter-spacing: 0.02em;
}
.member .portrait::after {
  content: attr(data-ph); position: absolute; bottom: 10px; left: 10px; right: 10px;
  font-family: var(--f-mono); font-size: 0.58rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--muted); text-align: center;
}
.member .role { font-family: var(--f-mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.member .name { font-family: var(--f-display); font-size: 1.12rem; color: var(--ink); margin-top: 6px; line-height: 1.2; }
.member .spec { font-size: 0.86rem; color: var(--muted); margin-top: 4px; }

/* ---------- Anxiety / calm callout ---------- */
.calm {
  background: var(--accent-soft); border-radius: var(--r);
  padding: clamp(38px, 6vw, 72px);
  display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center;
}
.calm h2 { color: var(--ink); }
.calm .lead { margin-top: 18px; }
.calm ul { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.calm li { display: flex; gap: 12px; align-items: flex-start; font-size: 0.96rem; color: var(--body); }
.calm li svg { width: 20px; height: 20px; color: var(--accent); flex: none; margin-top: 2px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: start; }
.info-block + .info-block { margin-top: 30px; padding-top: 30px; border-top: 1px solid var(--line); }
.info-block h3 { font-family: var(--f-mono); font-size: 0.74rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; }
.info-line { display: flex; gap: 12px; align-items: baseline; font-size: 1.02rem; color: var(--ink); }
.info-line + .info-line { margin-top: 8px; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 9px 0; border-bottom: 1px solid var(--line); font-size: 0.96rem; }
.hours-table td:first-child { color: var(--muted); }
.hours-table td:last-child { text-align: right; color: var(--ink); font-family: var(--f-mono); font-size: 0.88rem; }
.hours-table tr:last-child td { border-bottom: none; }

.map {
  aspect-ratio: 4/3; border-radius: var(--r); overflow: hidden;
  border: 1px solid var(--line); background: var(--surface-2); position: relative;
  display: grid; place-items: center;
}
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }
.map .map-ph { text-align: center; font-family: var(--f-mono); font-size: 0.74rem; letter-spacing: 0.1em; color: var(--muted); text-transform: uppercase; padding: 24px; }

/* ---------- Appointment CTA ---------- */
.cta-band { background: var(--ink); color: #fff; border-radius: var(--r); padding: clamp(44px, 7vw, 88px) clamp(32px, 5vw, 72px); position: relative; overflow: hidden; }
.cta-band .cta-inner { position: relative; z-index: 1; max-width: 40rem; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #C6D6DC; margin-top: 18px; font-size: 1.06rem; }
.cta-band .hero-cta { margin-top: 34px; }
.cta-band .btn-ghost { border-color: rgba(255,255,255,0.3); color: #fff; }
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); color: #fff; }
.cta-band svg.cta-ribbon { position: absolute; right: -4%; bottom: -30%; width: min(60vw, 560px); opacity: 0.5; z-index: 0; }

/* ---------- Career ---------- */
.career {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--surface);
  padding: clamp(30px, 4vw, 48px); display: flex; flex-wrap: wrap; gap: 24px;
  align-items: center; justify-content: space-between;
}
.career .txt { max-width: 40rem; }
.career h3 { font-family: var(--f-display); font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.career p { margin-top: 10px; font-size: 0.98rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(48px, 6vw, 72px) 40px; background: var(--surface-2); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-grid .brand svg { height: 28px; margin-bottom: 18px; }
.footer-grid p { font-size: 0.9rem; max-width: 26rem; }
.footer-col h4 { font-family: var(--f-mono); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a { color: var(--body); font-size: 0.92rem; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  margin-top: clamp(40px, 5vw, 60px); padding-top: 24px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center;
  font-size: 0.82rem; color: var(--muted);
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--accent); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* ---------- Mobile nav ---------- */
.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--r); width: 40px; height: 40px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 20px; height: 20px; margin-inline: auto; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid, .contact-grid, .calm { grid-template-columns: 1fr; }
  .hero-grid, .leist-intro { grid-template-columns: 1fr; }
  .hero-figure, .leist-figure { max-width: 560px; }
  .about-figure { max-width: 460px; }
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .team-figure { aspect-ratio: 4/3; }
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 0; background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 8px var(--gutter) 20px; transform: translateY(-120%); transition: transform 0.35s var(--ease);
    max-height: calc(100vh - 74px); overflow-y: auto;
  }
  .nav-links.open { transform: none; }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-links a::after { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-cta { display: none; }
}
@media (max-width: 560px) {
  .svc-grid, .stats { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px 32px; }
  .career { flex-direction: column; align-items: flex-start; }
}

/* ---------- Map: click-to-load (no external request before consent) ---------- */
.map-loader {
  position: absolute; inset: 0; z-index: 2; border: 0; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; padding: 24px; text-align: center;
  background: linear-gradient(155deg, var(--surface-2), var(--accent-soft));
  color: var(--body); font-family: var(--f-body);
}
.map-loader svg { width: 30px; height: 30px; color: var(--accent); }
.map-loader .ml-title { font-family: var(--f-display); font-size: 1.1rem; color: var(--ink); }
.map-loader .ml-note { font-size: 0.82rem; color: var(--muted); max-width: 30rem; }
.map-loader .ml-btn {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 4px;
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 500; letter-spacing: 0.01em;
  padding: 11px 20px; border-radius: var(--r); border: 1px solid var(--accent);
  background: var(--accent); color: #fff; transition: background 0.25s var(--ease);
}
:root[data-theme="dark"] .map-loader .ml-btn { color: #06222B; }
.map-loader:hover .ml-btn { background: var(--accent-d); }
.map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.2); }

/* ---------- Privacy notice banner ---------- */
.privacy-banner {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 200;
  background: color-mix(in srgb, var(--surface) 96%, transparent);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  transform: translateY(110%); transition: transform 0.5s var(--ease);
}
.privacy-banner.show { transform: none; }
.privacy-banner .pb-inner {
  max-width: var(--wrap); margin-inline: auto; padding: 16px var(--gutter);
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px 24px; justify-content: space-between;
}
.privacy-banner p { font-size: 0.86rem; color: var(--body); max-width: 62ch; margin: 0; }
.privacy-banner a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.privacy-banner .pb-btn {
  flex: none; font-family: var(--f-body); font-size: 0.88rem; font-weight: 500;
  padding: 10px 20px; border-radius: var(--r); border: 1px solid var(--accent);
  background: var(--accent); color: #fff; cursor: pointer; transition: background 0.25s var(--ease);
}
:root[data-theme="dark"] .privacy-banner .pb-btn { color: #06222B; }
.privacy-banner .pb-btn:hover { background: var(--accent-d); }
@media (prefers-reduced-motion: reduce) {
  .privacy-banner { transition: none; }
}
@media (max-width: 560px) {
  .privacy-banner .pb-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Standort-Nadel (blaue Karten-Nadel als Overlay) ---------- */
.map-marker {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 40px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  z-index: 3;
  filter: drop-shadow(0 3px 4px rgba(0, 0, 0, .35));
  animation: mapMarkerIn .35s ease-out both;
}
.map-marker svg { display: block; width: 100%; height: 100%; }
@keyframes mapMarkerIn {
  from { opacity: 0; transform: translate(-50%, -130%); }
  to   { opacity: 1; transform: translate(-50%, -100%); }
}
@media (prefers-reduced-motion: reduce) {
  .map-marker { animation: none; }
}
