:root{
  --bg: #f6f8fb;
  --card: #ffffff;
  --text: #1f2937;
  --muted: #6b7280;
  --line: #e5e7eb;
  --accent: #3baea0;
  --accent2: #6c8cff;
  --shadow: 0 8px 24px rgba(0,0,0,.08);
  --radius: 14px;
}

*{ box-sizing: border-box; }
html,body{ height:100%; }

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: linear-gradient(180deg, #f9fafb, var(--bg));
  color: var(--text);
  line-height: 1.6;
}

a{ color: var(--accent2); text-decoration: none; }
a:hover{ text-decoration: underline; }

.container{
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
}

/* Header */
.site-header{
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap: 14px;
}

.brand-mark{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display:grid;
  place-items:center;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
}

h1{
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}
.subtitle{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 9px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #ffffff;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
}

.btn:hover{
  background: #f3f4f6;
  text-decoration: none;
}

.btn.primary{
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: #fff;
  border: none;
}

/* Layout */
.hero{ padding: 32px 0 10px; }
.section{ padding: 22px 0 36px; }

.grid{
  display:grid;
  gap: 18px;
  grid-template-columns: 1.2fr .8fr;
}

@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
  .site-header .container{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Typography */
h2{
  margin: 0 0 10px;
  font-size: 28px;
}
h3{
  margin: 0 0 12px;
  font-size: 18px;
}

/* Cards */
.card{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card.quick{
  margin: 16px 0 10px;
  display:grid;
  gap: 12px;
}

.quick-item .label{
  font-size: 12px;
  color: var(--muted);
}
.quick-item .value{
  font-size: 15px;
  font-weight: 600;
}

/* Info */
.note{
  margin-top: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(59,174,160,.3);
  background: rgba(59,174,160,.08);
}

/* Öffnungszeiten */
.hours{
  display:grid;
  gap: 8px;
}
.hours .row{
  display:flex;
  justify-content: space-between;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: #fafafa;
}
.hours .row span:first-child{
  color: var(--muted);
}

/* Listen & Footer */
.list{
  margin: 12px 0 0;
  padding-left: 18px;
}

.btn-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.map-placeholder{
  margin-top: 10px;
  border-radius: 12px;
  border: 1px dashed var(--line);
  background: #fafafa;
  min-height: 180px;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 16px;
}

.map-title{ font-weight: 700; }
.map-subtitle{ color: var(--muted); margin-bottom: 10px; }

.site-footer{
  border-top: 1px solid var(--line);
  padding: 18px 0;
  background: #ffffff;
}

.footer-grid{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-title{ font-weight: 700; }
.muted{ color: var(--muted); }
.small{ font-size: 12px; }
