/* ── Tokens ───────────────────────────────────── */
:root {
  --bg:        oklch(97.5% 0.009 82);
  --bg-soft:   oklch(95%   0.012 82);
  --ink:       oklch(20%   0.012 82);
  --ink-mid:   oklch(45%   0.010 82);
  --ink-light: oklch(65%   0.008 82);
  --rule:      oklch(88%   0.010 82);
  --accent:    oklch(52%   0.07  158);
  --accent-bg: oklch(94%   0.025 158);
  --serif:     'Cormorant Garamond', Georgia, serif;
  --sans:      'DM Sans', system-ui, sans-serif;
}

/* ── Reset ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }

/* ── Grain overlay ────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  background-size: 180px;
  opacity: 0.4;
}

/* ── NAV ──────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 64px;
}
.nav-brand {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.nav-brand span {
  font-size: 0.65rem;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink-mid);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent); }

/* ── HERO ─────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.hero-text {
  padding: 8rem 4rem 6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 2rem;
}
.hero-title em {
  font-style: italic;
  color: var(--ink-mid);
}
.hero-body {
  font-size: 1rem;
  color: var(--ink-mid);
  max-width: 38ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}
.hero-notice {
  background: var(--accent-bg);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  font-size: 0.85rem;
  color: var(--ink);
  line-height: 1.55;
  max-width: 38ch;
}
.hero-notice strong { font-weight: 500; color: var(--accent); }
.hero-image {
  position: relative;
  align-self: center;
}
.hero-image .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-family: monospace;
  gap: 0.75rem;
}
.hero-image .placeholder svg { opacity: 0.25; }

/* ── SECTION SHELLS ───────────────────────────── */
section { padding: 7rem 4rem; }
section + section { border-top: 1px solid var(--rule); }
.section-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 3rem;
}

/* ── LEISTUNGEN ───────────────────────────────── */
#leistungen .grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  max-width: 100%;
}
@media (max-width: 860px) {
  #leistungen .grid { grid-template-columns: repeat(2, 1fr); }
}
.leistung-card {
  background: var(--bg);
  padding: 2rem 1.75rem;
  transition: background 0.2s;
}
.leistung-card:hover { background: var(--accent-bg); }
.leistung-card .icon {
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.leistung-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.25;
}

/* ── ÖFFNUNGSZEITEN ───────────────────────────── */
#oeffnungszeiten {
  background: var(--bg-soft);
}
#oeffnungszeiten .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr { border-bottom: 1px solid var(--rule); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td {
  padding: 0.9rem 0;
  font-size: 0.95rem;
  color: var(--ink-mid);
}
.hours-table td:first-child {
  font-weight: 500;
  color: var(--ink);
  width: 45%;
}
.closed { color: var(--ink-light) !important; font-style: italic; }
.hours-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--ink-light);
  line-height: 1.6;
}
.contact-block { display: flex; flex-direction: column; gap: 2rem; }
.contact-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 0.35rem;
  font-weight: 500;
}
.contact-item a, .contact-item p {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--ink);
  transition: color 0.2s;
}
.contact-item a:hover { color: var(--accent); }
.contact-item address {
  font-style: normal;
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.7;
}

/* ── KONTAKT & ANFAHRT ────────────────────────── */
.kontakt-anfahrt-section {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.kontakt-info {
  padding: 7rem 4rem;
}
.kontakt-karte {
  background: var(--bg-soft);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 40px, var(--rule) 40px, var(--rule) 41px),
    repeating-linear-gradient(90deg, transparent, transparent 40px, var(--rule) 40px, var(--rule) 41px);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--ink-light);
  font-size: 0.7rem;
  font-family: monospace;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  min-height: 400px;
}
.map-pin {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.map-link {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.map-link:hover { opacity: 0.7; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  border-top: 1px solid var(--rule);
  padding: 2.5rem 4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--ink-light);
  letter-spacing: 0.06em;
}
footer a { color: var(--ink-light); transition: color 0.2s; }
footer a:hover { color: var(--ink); }
.footer-links { display: flex; gap: 2rem; }

/* ── INNER PAGES ──────────────────────────────── */
.page-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 6rem 4rem;
}
.page-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}
.page-content .page-subtitle {
  color: var(--ink-mid);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}
.page-content h2 {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 300;
  margin: 2.5rem 0 0.75rem;
}
.page-content h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin: 1.5rem 0 0.5rem;
}
.page-content p { color: var(--ink-mid); margin-bottom: 1rem; }
.page-content ul, .page-content ol {
  color: var(--ink-mid);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.page-content li { margin-bottom: 0.35rem; }
.page-content strong { color: var(--ink); font-weight: 500; }
.page-content hr { border: none; border-top: 1px solid var(--rule); margin: 2.5rem 0; }
.page-content a { color: var(--accent); border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.page-content a:hover { border-color: var(--accent); }

/* ── IMPRESSUM / LEGAL PAGES ──────────────────── */
.page-header {
  padding: 6rem 4rem 4rem;
  border-bottom: 1px solid var(--rule);
}
.page-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 1rem;
}
.page-eyebrow { animation: fadeUp 0.6s ease both 0.1s; }
.page-title {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  animation: fadeUp 0.6s ease both 0.2s;
}
.legal-content {
  max-width: 760px;
  padding: 5rem 4rem 8rem;
  animation: fadeUp 0.6s ease both 0.35s;
}
.content-block { margin-bottom: 3.5rem; }
.content-block h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--ink);
}
.content-block h3 {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-top: 1.5rem;
  margin-bottom: 0.4rem;
}
.content-block p {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 0.75rem;
}
.content-block p:last-child { margin-bottom: 0; }
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}
.info-item .label {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-light);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.info-item p, .info-item a {
  font-size: 0.95rem;
  color: var(--ink-mid);
  line-height: 1.7;
  text-decoration: none;
}
.info-item a { color: var(--accent); }
.info-item a:hover { text-decoration: underline; }
.legal-divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 3.5rem 0;
}
.disclaimer-block h2 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.disclaimer-section { margin-bottom: 2rem; }
.disclaimer-section h3 {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.03em;
  margin-bottom: 0.6rem;
  text-transform: none;
}
.disclaimer-section p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.8;
}
@media (max-width: 860px) {
  .page-header { padding: 4rem 1.5rem 3rem; }
  .legal-content { padding: 3rem 1.5rem 5rem; }
  .info-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow { animation: fadeUp 0.7s ease both 0.1s; }
.hero-title   { animation: fadeUp 0.7s ease both 0.25s; }
.hero-body    { animation: fadeUp 0.7s ease both 0.4s; }
.hero-notice  { animation: fadeUp 0.7s ease both 0.55s; }

/* ── MOBILE ───────────────────────────────────── */
@media (max-width: 860px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-image { height: 40vw; min-height: 220px; }
  .hero-text { padding: 4rem 1.5rem 3rem; }
  section { padding: 5rem 1.5rem; }
  #oeffnungszeiten .inner { grid-template-columns: 1fr; gap: 3rem; }
  .kontakt-anfahrt-section { grid-template-columns: 1fr; }
  .kontakt-info { padding: 5rem 1.5rem; }
  .kontakt-karte { min-height: 280px; }
  footer { flex-direction: column; gap: 1rem; text-align: center; }
  footer .footer-links { justify-content: center; }
  .page-content { padding: 4rem 1.5rem; }
}
