/* =========================================================
   PRAXIS AM DANZIGER PLATZ
   Editorial · Sage palette · Paper grain
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }

:root {
  /* sage (default, warm) */
  --bg:          #f3ede2;
  --bg-warm:     #ebe3d4;
  --bg-deep:     #e4d9c4;
  --ink:         #1a1612;
  --ink-soft:    #3d362d;
  --ink-mute:    #6b5f50;
  --primary:     #2d4a3a;
  --primary-ink: #e9efe4;
  --accent:      #b85c38;
  --accent-soft: #d89072;
  --line:        #c9bfac;
  --paper:       #faf6ee;
  --grain:       #00000008;

  --font-serif: "Fraunces", Georgia, serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif-tight: -0.015em;

  --ease: cubic-bezier(.22,.61,.36,1);
}

html, body { margin: 0; padding: 0; background: var(--bg); color: var(--ink); }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: var(--serif-tight);
  line-height: 1.05;
  margin: 0;
  color: var(--ink);
}
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }

/* Paper grain */
body::before {
  content: ""; position: fixed; inset: 0; pointer-events: none; z-index: 100;
  background-image:
    radial-gradient(circle at 25% 30%, var(--grain) 0, transparent 40%),
    radial-gradient(circle at 75% 70%, var(--grain) 0, transparent 40%);
  mix-blend-mode: multiply; opacity: .6;
}

.wrap { max-width: 1360px; margin: 0 auto; padding: 0 48px; }
@media (max-width: 720px) { .wrap { padding: 0 22px; } }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 8px; z-index: 9999;
  background: var(--ink); color: var(--paper);
  padding: 10px 16px; border-radius: 8px;
  font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 12px; outline: 2px solid var(--accent); outline-offset: 2px; }

/* Screen-reader helper */
.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;
}

/* =========================================================
   NEWS BANNER (wired to PHP notice backend)
   ========================================================= */
.news-banner {
  background: var(--ink);
  color: var(--paper);
  font-size: 13px;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 60;
}
.news-banner .wrap {
  display: flex; align-items: center; gap: 16px;
  padding-top: 10px; padding-bottom: 10px; flex-wrap: wrap;
}
.news-banner .tag {
  border: 1px solid var(--paper);
  padding: 2px 10px; border-radius: 100px;
  font-size: 11px; text-transform: uppercase; letter-spacing: .1em;
  opacity: .9;
}
.news-banner .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent-soft);
  animation: pulse 2.4s ease-in-out infinite;
}
.news-banner p { flex: 1; min-width: 0; }
.news-banner .more { margin-left: auto; opacity: .75; font-size: 12px; }
.news-banner .more:hover { opacity: 1; }
.news-banner .close {
  background: transparent; border: 1px solid transparent;
  color: var(--paper); opacity: .6;
  width: 26px; height: 26px; border-radius: 6px;
  display: inline-flex; align-items: center; justify-content: center;
}
.news-banner .close:hover { opacity: 1; background: rgba(255,255,255,.08); }
.news-banner[hidden] { display: none; }
@keyframes pulse {
  0%, 100% { opacity: .4; }
  50%      { opacity: 1; }
}

/* =========================================================
   HEADER
   ========================================================= */
header.site {
  padding: 24px 0 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(243, 237, 226, .85);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
}
header.site .wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 30px;
}

.brand { display: flex; align-items: center; gap: 14px; cursor: pointer; }
.brand-mark { width: 44px; height: 44px; flex-shrink: 0; }
.brand-mark svg { width: 100%; height: 100%; display: block; }
.brand-text { line-height: 1.1; }
.brand-text .name {
  font-family: var(--font-serif);
  font-size: 20px; letter-spacing: -0.01em; font-weight: 400;
}
.brand-text .sub {
  font-size: 11px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mute); margin-top: 3px;
}

nav.main { display: flex; gap: 36px; align-items: center; }
nav.main a {
  font-size: 14px; color: var(--ink-soft);
  position: relative; padding: 6px 0;
  transition: color .2s;
}
nav.main a:hover { color: var(--ink); }
nav.main a:hover::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--accent);
}

.header-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 11px 20px; border-radius: 100px;
  background: var(--ink); color: var(--paper);
  font-size: 13px; letter-spacing: .02em; font-weight: 500;
  transition: transform .15s, background .2s;
  white-space: nowrap;
}
.header-cta:hover { transform: translateY(-1px); background: var(--primary); }
.header-cta svg { width: 14px; height: 14px; }

.burger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 40px; height: 36px; border: 0;
  background: transparent; padding: 8px;
}
.burger span {
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none; flex-direction: column;
  padding: 18px 22px 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  gap: 2px;
}
.nav-mobile a {
  padding: 14px 4px; border-bottom: 1px solid var(--line);
  font-size: 16px; color: var(--ink);
}
.nav-mobile a:last-child { border-bottom: 0; }
.nav-mobile.open { display: flex; }

@media (max-width: 960px) {
  nav.main { display: none; }
  .burger { display: inline-flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 90px 0 80px; overflow: hidden; }
.hero .wrap {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 70px; align-items: center;
}
@media (max-width: 960px) { .hero .wrap { grid-template-columns: 1fr; gap: 50px; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 28px;
}
.eyebrow .line { width: 28px; height: 1px; background: var(--ink-mute); }

.hero h1 {
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 300;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; font-weight: 300; color: var(--primary); }
.hero h1 .accent-dot { color: var(--accent); }

.hero .lede {
  margin-top: 32px; max-width: 520px;
  font-size: 18px; line-height: 1.65; color: var(--ink-soft);
}

.hero-actions {
  margin-top: 40px;
  display: flex; gap: 14px; flex-wrap: wrap; align-items: center;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 100px;
  font-family: inherit; font-size: 14px; letter-spacing: .01em;
  transition: all .2s; cursor: pointer; border: none;
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--primary-ink); }
.btn-primary:hover { background: var(--ink); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--paper); }
.btn .arrow { transition: transform .2s; }
.btn:hover .arrow { transform: translateX(3px); }

/* Hero visual — breathing abstract */
.hero-visual {
  position: relative; aspect-ratio: 1 / 1;
  max-width: 560px; margin-left: auto; width: 100%;
}
.hero-visual svg { width: 100%; height: 100%; display: block; }
.breathe-a { animation: breatheA 9s ease-in-out infinite; transform-origin: center; }
.breathe-b { animation: breatheB 11s ease-in-out infinite; transform-origin: center; }
.breathe-c { animation: breatheC 7s ease-in-out infinite; transform-origin: center; }
@keyframes breatheA { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-6px,4px) scale(1.03); } }
@keyframes breatheB { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(8px,-6px) scale(.97); } }
@keyframes breatheC { 0%,100% { transform: rotate(0deg) scale(1); }   50% { transform: rotate(8deg) scale(1.02); } }

.hero-meta {
  position: absolute; z-index: 3;
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  padding: 18px 22px;
  bottom: 0; left: 0;
  font-size: 13px; line-height: 1.5;
  box-shadow: 0 20px 40px -20px rgba(26,22,18,.15);
  max-width: 280px;
}
.hero-meta .label {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 8px;
}
.hero-meta .status {
  display: flex; align-items: center; gap: 8px;
  font-weight: 500; color: var(--primary);
}
.hero-meta.closed .status { color: var(--ink-soft); }
.hero-meta.closed .status-dot { background: var(--ink-mute); animation: none; }
.hero-meta .status-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s ease-in-out infinite;
}
.hero-meta .hours { color: var(--ink-soft); margin-top: 4px; }
@media (max-width: 960px) {
  .hero-meta { position: relative; bottom: auto; left: auto; margin-top: 20px; max-width: none; }
  .hero-visual { aspect-ratio: 4 / 3; padding-bottom: 0; }
  .hero-visual svg { height: 100%; }
}

/* =========================================================
   SECTION FRAMEWORK
   ========================================================= */
section.block { padding: 120px 0; position: relative; }
section.block.tight { padding: 80px 0; }
@media (max-width: 720px) {
  section.block { padding: 80px 0; }
  section.block.tight { padding: 60px 0; }
}

.section-head {
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 40px; align-items: end;
  margin-bottom: 60px; padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head .num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 18px; color: var(--accent); font-weight: 400;
}
.section-head h2 { font-size: clamp(34px, 4.2vw, 56px); font-weight: 300; }
.section-head h2 em { font-style: italic; color: var(--primary); font-weight: 300; }
.section-head .right {
  font-size: 13px; color: var(--ink-mute);
  max-width: 280px; text-align: right;
}
@media (max-width: 720px) {
  .section-head { grid-template-columns: 1fr; gap: 12px; }
  .section-head .right { text-align: left; }
}

/* =========================================================
   WELCOME / ÜBER UNS
   ========================================================= */
.welcome { background: var(--bg-warm); }
.welcome .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start;
}
@media (max-width: 860px) { .welcome .grid { grid-template-columns: 1fr; gap: 40px; } }

.welcome .kicker {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--accent); margin-bottom: 28px;
}
.welcome h2 { font-size: clamp(36px, 4.5vw, 64px); font-weight: 300; }
.welcome h2 em { font-style: italic; color: var(--primary); font-weight: 300; }
.welcome p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.welcome p + p { margin-top: 18px; }
.signature { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--line); }
.signature .name {
  font-family: var(--font-serif); font-style: italic;
  font-size: 22px; color: var(--primary);
}
.signature .role {
  font-size: 13px; color: var(--ink-mute);
  letter-spacing: .05em; margin-top: 4px;
}

/* =========================================================
   TEAM
   ========================================================= */
.team { background: var(--bg-warm); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 520px) { .team-grid { grid-template-columns: 1fr; } }

.person {
  background: var(--paper); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden;
}
.person .portrait { aspect-ratio: 4 / 5; position: relative; background: var(--bg-deep); }
.person .portrait svg { width: 100%; height: 100%; display: block; }
.person .meta { padding: 24px; }
.person h4 { font-size: 22px; font-weight: 400; letter-spacing: -0.01em; }
.person .role {
  font-size: 13px; color: var(--accent); margin-top: 6px;
  font-style: italic; font-family: var(--font-serif);
}
.person .about { font-size: 13px; color: var(--ink-soft); margin-top: 14px; line-height: 1.6; }

/* =========================================================
   SERVICES
   ========================================================= */
.services-filter {
  display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 36px;
}
.chip {
  padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--line); background: transparent;
  font-family: inherit; font-size: 13px; color: var(--ink-soft);
  cursor: pointer; transition: all .18s;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.chip .count { opacity: .5; margin-left: 6px; font-size: 11px; }

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--line); border: 1px solid var(--line);
}
@media (max-width: 860px) { .services-grid { grid-template-columns: 1fr; } }

.service {
  background: var(--bg); padding: 38px 32px 32px;
  position: relative; transition: background .2s;
  cursor: pointer; min-height: 260px;
  display: flex; flex-direction: column;
  border: 0;
  text-align: left;
  font-family: inherit;
  color: inherit;
}
.service:hover { background: var(--paper); }
.service .idx {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--accent); margin-bottom: 16px;
}
.service h3 {
  font-size: 24px; font-weight: 400; letter-spacing: -0.01em;
  margin-bottom: 14px; line-height: 1.15;
}
.service p { font-size: 14px; line-height: 1.6; color: var(--ink-soft); flex: 1; }
.service .glyph {
  position: absolute; top: 26px; right: 26px;
  width: 40px; height: 40px; color: var(--accent);
}
.service .more {
  margin-top: 20px; font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--ink-mute);
  display: inline-flex; align-items: center; gap: 8px;
}
.service:hover .more { color: var(--accent); }
.service .more::after { content: "→"; transition: transform .2s; }
.service:hover .more::after { transform: translateX(4px); }
.service.hidden { display: none; }

/* =========================================================
   DMP
   ========================================================= */
.dmp { background: var(--primary); color: var(--primary-ink); position: relative; overflow: hidden; }
.dmp::before {
  content: ""; position: absolute;
  top: -100px; right: -100px; width: 500px; height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 60%);
  opacity: .18; pointer-events: none;
}
.dmp h2, .dmp h4 { color: var(--primary-ink); }
.dmp .section-head { border-color: rgba(255,255,255,.18); }
.dmp .section-head .num { color: var(--accent-soft); }
.dmp .section-head h2 em { color: var(--accent-soft); }
.dmp .section-head .right { color: rgba(255,255,255,.7); }

.dmp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 36px; }
@media (max-width: 980px) { .dmp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dmp-grid { grid-template-columns: 1fr; } }

.dmp-card { padding-top: 24px; border-top: 1px solid rgba(255,255,255,.3); }
.dmp-card .num {
  font-family: var(--font-serif); font-size: 58px; font-weight: 300;
  color: var(--accent-soft); line-height: 1; letter-spacing: -.02em;
}
.dmp-card h4 { font-size: 22px; font-weight: 400; margin-top: 16px; }
.dmp-card p {
  font-size: 14px; line-height: 1.6;
  color: rgba(255,255,255,.8); margin-top: 12px;
}

/* =========================================================
   APP
   ========================================================= */
.app-section { background: var(--bg-warm); }
.app-section .grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
@media (max-width: 860px) { .app-section .grid { grid-template-columns: 1fr; gap: 50px; } }

.app-kicker {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 22px;
  display: inline-flex; align-items: center; gap: 10px;
}
.app-kicker::before { content: ""; width: 28px; height: 1px; background: var(--accent); }
.app-section h2 { font-size: clamp(36px, 4.5vw, 56px); font-weight: 300; margin-bottom: 22px; }
.app-section h2 em { font-style: italic; color: var(--primary); font-weight: 300; }
.app-section .lede {
  color: var(--ink-soft); font-size: 17px; line-height: 1.65;
  max-width: 460px; margin-bottom: 24px;
}
.bullets { list-style: none; padding: 0; margin: 0 0 32px 0; }
.bullets li {
  font-size: 15px; color: var(--ink-soft);
  padding: 14px 0 14px 28px; position: relative;
  border-bottom: 1px dashed var(--line);
}
.bullets li:last-child { border-bottom: none; }
.bullets li::before {
  content: ""; position: absolute; left: 0; top: 20px;
  width: 14px; height: 1px; background: var(--accent);
}

.store-buttons { display: flex; gap: 12px; flex-wrap: wrap; }
.store-btn {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 12px 22px; border-radius: 12px;
  background: var(--ink); color: var(--paper);
  font-size: 14px; transition: transform .15s;
}
.store-btn:hover { transform: translateY(-2px); }
.store-btn .sm { font-size: 10px; opacity: .7; display: block; letter-spacing: .05em; }
.store-btn .lg { font-size: 15px; font-weight: 500; line-height: 1.1; }
.store-btn svg { width: 24px; height: 24px; flex-shrink: 0; }

/* Phone mock */
.phone-mock {
  position: relative; width: 100%; max-width: 300px; margin: 0 auto;
  aspect-ratio: 9 / 19.5; border-radius: 48px;
  background: #0b0b0b;
  box-sizing: border-box;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(26,22,18,.45),
              inset 0 0 0 1.5px rgba(255,255,255,.06);
}
.phone-mock::before {
  content: ""; position: absolute; inset: 4px; border-radius: 44px;
  border: 1px solid rgba(255,255,255,.09); pointer-events: none; z-index: 4;
}
.phone-mock .screen {
  position: absolute; inset: 12px;
  border-radius: 36px; overflow: hidden;
  background: var(--paper);
  display: flex; flex-direction: column;
  box-sizing: border-box;
}
.phone-mock .notch {
  position: absolute; top: 14px; left: 50%; transform: translateX(-50%);
  width: 94px; height: 26px; background: #0b0b0b;
  border-radius: 100px; z-index: 5;
}
.phone-mock .ph-status {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px 6px; font-size: 11px; font-weight: 600;
  color: var(--ink); letter-spacing: -.01em;
}
.phone-mock .ph-status .ph-time { min-width: 50px; }
.phone-mock .ph-status .ph-icons {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--ink);
}
.phone-mock .ph-status .ph-icons svg { height: 10px; width: auto; fill: currentColor; }
.phone-mock .ph-head {
  padding: 14px 22px 18px; border-bottom: 1px solid var(--line);
}
.phone-mock .ph-head .mini-logo {
  width: 34px; height: 34px; margin-bottom: 12px;
}
.phone-mock .ph-head .mini-logo svg { width: 100%; height: 100%; display: block; }
.phone-mock .ph-head h5 {
  font-family: var(--font-serif); font-size: 17px;
  font-weight: 400; line-height: 1.15; color: var(--ink);
}
.phone-mock .ph-head .grt {
  font-size: 10px; color: var(--ink-mute);
  text-transform: uppercase; letter-spacing: .15em; margin-bottom: 4px;
}
.phone-mock .ph-body { padding: 14px 16px; flex: 1; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }
.phone-mock .ph-row {
  background: var(--bg-warm); border-radius: 12px; padding: 10px 12px;
  display: flex; align-items: center; gap: 10px;
}
.phone-mock .ph-row .dot {
  width: 26px; height: 26px; min-width: 26px; border-radius: 50%;
  background: var(--primary); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-ink); font-size: 11px;
}
.phone-mock .ph-row .t1 { font-size: 11px; font-weight: 600; color: var(--ink); line-height: 1.2; }
.phone-mock .ph-row .t2 { font-size: 9px; color: var(--ink-mute); margin-top: 2px; }
.phone-mock .ph-row.accent { background: var(--primary); }
.phone-mock .ph-row.accent .t1 { color: var(--primary-ink); }
.phone-mock .ph-row.accent .t2 { color: rgba(233,239,228,.7); }
.phone-mock .ph-row.accent .dot { background: var(--accent); color: var(--paper); }

.phone-mock .ph-tabs {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(250,246,238,.92);
  padding: 8px 6px 4px;
}
.phone-mock .ph-tabs .tab {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  font-size: 8px; color: var(--ink-mute); letter-spacing: .04em;
}
.phone-mock .ph-tabs .tab em { font-style: normal; font-weight: 500; }
.phone-mock .ph-tabs .tab span {
  width: 14px; height: 14px; border-radius: 4px;
  background: var(--line);
}
.phone-mock .ph-tabs .tab.is-active { color: var(--primary); }
.phone-mock .ph-tabs .tab.is-active span { background: var(--primary); }

.phone-mock .ph-home {
  height: 4px; width: 38%; margin: 6px auto 8px;
  border-radius: 4px; background: var(--ink); opacity: .55;
}

/* =========================================================
   VISIT / CONTACT
   ========================================================= */
.visit .grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px; }
@media (max-width: 860px) { .visit .grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 20px; padding: 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 36px;
}
@media (max-width: 600px) { .contact-card { grid-template-columns: 1fr; padding: 32px; } }

.contact-block .label {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 14px;
}
.contact-block .value {
  font-family: var(--font-serif);
  font-size: 22px; font-weight: 400; line-height: 1.3; color: var(--ink);
}
.contact-block .value a {
  border-bottom: 1px solid var(--accent); padding-bottom: 2px;
}
.contact-block .sub { font-size: 14px; color: var(--ink-soft); margin-top: 6px; line-height: 1.5; }

.hours-list { list-style: none; padding: 0; margin: 0; font-size: 14px; }
.hours-list li {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 6px 0; border-bottom: 1px dashed var(--line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink-soft); }
.hours-list .time { color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.hours-list li.today {
  background: var(--bg-warm); margin: 0 -12px; padding: 8px 12px;
  border-radius: 8px; border-bottom-color: transparent; position: relative;
}
.hours-list li.today::before {
  content: "Heute"; position: absolute;
  left: -60px; top: 50%; transform: translateY(-50%);
  font-size: 10px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--accent); font-family: var(--font-serif); font-style: italic;
}
@media (max-width: 720px) { .hours-list li.today::before { display: none; } }
.hours-list li.today .day { color: var(--ink); font-weight: 500; }

.now-open {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--primary); margin-top: 18px; font-weight: 500;
  background: rgba(45,74,58,.08);
  padding: 9px 14px; border-radius: 100px;
  border: 1px solid rgba(45,74,58,.18);
}
.now-open .d {
  width: 8px; height: 8px; min-width: 8px; flex: 0 0 8px;
  border-radius: 50%;
  background: var(--primary); animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 0 3px rgba(45,74,58,.15);
}
.now-open.closed {
  color: var(--ink-soft);
  background: rgba(107,95,80,.08);
  border-color: rgba(107,95,80,.18);
}
.now-open.closed .d { background: var(--ink-mute); box-shadow: 0 0 0 3px rgba(107,95,80,.15); animation: none; }

.visit-actions { margin-top: 28px; display: flex; gap: 12px; flex-wrap: wrap; }

/* Abstract map */
.map-card {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-deep);
  aspect-ratio: 1 / 1; position: relative;
}
.map-card > svg { width: 100%; height: 100%; display: block; }
.map-pin {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.map-pin .pin-ring {
  width: 60px; height: 60px; border-radius: 50%;
  border: 1px solid var(--accent);
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ping 2.5s cubic-bezier(0,0,.2,1) infinite;
}
.map-pin .pin-ring.d2 { animation-delay: .8s; }
@keyframes ping {
  0%        { opacity: .6; transform: translate(-50%,-50%) scale(.4); }
  80%, 100% { opacity: 0;  transform: translate(-50%,-50%) scale(1.6); }
}
.map-pin .pin-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent); border: 3px solid var(--paper);
  position: relative;
  box-shadow: 0 4px 12px rgba(0,0,0,.2);
}
.map-caption {
  position: absolute; bottom: 18px; left: 18px; right: 18px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 14px 18px; font-size: 13px;
}
.map-caption .addr {
  font-family: var(--font-serif); font-size: 16px;
  line-height: 1.25; margin-bottom: 2px;
}
.map-caption .sub2 { color: var(--ink-mute); font-size: 12px; }

/* =========================================================
   NEWS
   ========================================================= */
.aktuelles { background: var(--bg-warm); }
.news-list { display: flex; flex-direction: column; }
.news-item {
  display: grid; grid-template-columns: 140px 1fr auto;
  gap: 40px; padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: padding-left .2s, background .2s;
}
.news-item:last-child { border-bottom: 1px solid var(--line); }
.news-item:hover { padding-left: 12px; background: linear-gradient(90deg, var(--bg), transparent); }
.news-item .date {
  font-family: var(--font-serif); font-style: italic;
  font-size: 14px; color: var(--ink-mute);
}
.news-item h3 { font-size: 26px; font-weight: 400; letter-spacing: -0.01em; }
.news-item p { font-size: 14px; color: var(--ink-soft); margin-top: 10px; max-width: 620px; line-height: 1.6; }
.news-item .tag-sm {
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); align-self: start; padding-top: 4px;
}
.news-item.is-pinned .tag-sm { color: var(--accent); font-weight: 600; }
@media (max-width: 720px) {
  .news-item { grid-template-columns: 1fr; gap: 8px; }
  .news-item .tag-sm { order: -1; }
}

/* =========================================================
   SERVICE DETAIL MODAL
   ========================================================= */
#service-modal {
  position: fixed; inset: 0;
  background: rgba(26,22,18,.55);
  z-index: 210;
  display: none; align-items: center; justify-content: center;
  padding: 20px;
}
#service-modal.open { display: flex; animation: fadeIn .2s ease-out; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
#service-modal .panel {
  background: var(--paper); border-radius: 22px;
  max-width: 560px; width: 100%;
  max-height: 86vh; overflow-y: auto;
  padding: 44px 44px 36px;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.4);
  position: relative;
}
#service-modal .close-btn {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid var(--line); background: var(--paper);
  cursor: pointer; font-size: 18px; color: var(--ink-mute);
  display: inline-flex; align-items: center; justify-content: center;
}
#service-modal .close-btn:hover { color: var(--ink); }
#service-modal .kicker {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
#service-modal h3 {
  font-family: var(--font-serif);
  font-size: 32px; font-weight: 400; letter-spacing: -0.01em;
  margin-bottom: 16px; line-height: 1.1;
}
#service-modal .body { font-size: 15px; line-height: 1.7; color: var(--ink-soft); }
#service-modal .body p { margin-bottom: 12px; }
#service-modal .body ul { list-style: none; padding: 0; margin: 14px 0; }
#service-modal .body ul li {
  padding: 8px 0 8px 22px; position: relative;
  font-size: 14px; border-bottom: 1px dashed var(--line);
}
#service-modal .body ul li::before {
  content: ""; position: absolute; left: 0; top: 15px;
  width: 10px; height: 1px; background: var(--accent);
}

/* =========================================================
   FOOTER
   ========================================================= */
footer.site { background: var(--ink); color: #d9cfbd; padding: 70px 0 30px; }
footer.site .grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
@media (max-width: 860px) { footer.site .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { footer.site .grid { grid-template-columns: 1fr; } }

footer.site h5 {
  font-family: var(--font-sans);
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: #8a7f6d; margin-bottom: 16px; font-weight: 500;
}
footer.site .brand-footer {
  font-family: var(--font-serif);
  font-size: 28px; font-weight: 300; color: #faf6ee;
  letter-spacing: -0.01em; line-height: 1.1; max-width: 280px;
}
footer.site .brand-footer em { font-style: italic; color: var(--accent-soft); }
footer.site ul { list-style: none; padding: 0; margin: 0; font-size: 14px; }
footer.site ul li { padding: 5px 0; color: #d9cfbd; }
footer.site ul a { color: #d9cfbd; transition: color .2s; }
footer.site ul a:hover { color: #faf6ee; }
footer.site .bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; gap: 20px;
  font-size: 12px; color: #8a7f6d; flex-wrap: wrap;
}
footer.site .bottom a { color: #8a7f6d; }
footer.site .bottom a:hover { color: #d9cfbd; }

/* anchor offset */
[id] { scroll-margin-top: 110px; }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.to-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(14px) scale(.9);
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease), background .2s;
  box-shadow: 0 14px 30px -10px rgba(26,22,18,.35);
}
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--primary); }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 720px) { .to-top { right: 16px; bottom: 16px; width: 44px; height: 44px; } }

/* =========================================================
   LEGAL PAGES
   ========================================================= */
.legal-hero {
  background: var(--ink); color: var(--paper);
  padding: 100px 0 80px; position: relative; overflow: hidden;
}
.legal-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 66px); font-weight: 300;
  letter-spacing: -0.02em; color: var(--paper);
}
.legal-hero h1 em { font-style: italic; color: var(--accent-soft); }
.legal-hero p { font-size: 15px; color: rgba(255,255,255,.65); max-width: 620px; margin-top: 14px; }

.legal-body { max-width: 820px; margin: 0 auto; padding: 80px 24px 120px; }
.legal-body h2 {
  font-family: var(--font-serif); font-weight: 400; font-size: 28px;
  letter-spacing: -0.01em; margin: 56px 0 14px;
  padding-bottom: 10px; border-bottom: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 {
  font-family: var(--font-serif); font-weight: 400; font-size: 19px;
  margin: 28px 0 10px;
}
.legal-body p, .legal-body li {
  font-size: 15px; line-height: 1.75; color: var(--ink-soft); margin-bottom: 12px;
}
.legal-body ul { padding-left: 20px; margin-bottom: 18px; }
.legal-body a { color: var(--ink); border-bottom: 1px solid var(--accent); }
.legal-body address {
  font-style: normal; padding: 18px 22px;
  background: var(--paper); border-left: 3px solid var(--accent);
  border-radius: 8px; font-size: 15px; line-height: 1.7;
  color: var(--ink); margin-bottom: 14px;
}

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
