:root {
  --bg: #fffdf8;
  --text: #1e1e1e;
  --muted: #666;
  --primary: #8a5a44;       /* Warmes, elegantes Braun */
  --primary-contrast: #ffffff;
  --accent: #c8a68f;        /* Sanfter Akzentton */
  --card: #ffffff;
  --border: #e8e2da;

  --radius: 14px;
  --shadow: 0 10px 25px rgba(0,0,0,0.08);

  --font-sans: "Inter", system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;

  --maxw: 1100px;
  --space-1: 6px;
  --space-2: 10px;
  --space-3: 16px;
  --space-4: 24px;
  --space-5: 36px;
  --space-6: 56px;
}

/* Base */
* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
}

img { max-width: 100%; display: block; border-radius: var(--radius); }
figure { margin: 0; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 var(--space-3); }

/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 253, 248, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--maxw); margin: 0 auto; padding: var(--space-3);
}
.logo {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--text);
}
.nav-list {
  display: flex; gap: var(--space-3);
  list-style: none; margin: 0; padding: 0;
}
.nav-list a {
  text-decoration: none; color: var(--text);
  padding: 8px 12px; border-radius: 8px;
}
.nav-list a:hover { background: var(--border); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 8px 12px; border-radius: 10px; cursor: pointer;
}

/* Hero */
.hero {
  min-height: 60vh;
  display: grid; place-items: center;
  padding: var(--space-6) var(--space-3);
  background:
    radial-gradient(1200px 600px at 20% 0%, #fff3e6, transparent 60%),
    radial-gradient(1200px 600px at 80% 100%, #f7ede2, transparent 60%);
}
.hero-inner {
  text-align: center; max-width: 800px;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  margin: 0 0 var(--space-3);
}
.hero-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: var(--space-4);
}

/* Sections */
.section { padding: var(--space-6) 0; }
.section-alt { background: #fffaf3; }
h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin: 0 0 var(--space-4);
}

/* Grid */
.grid { display: grid; gap: var(--space-4); }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* Cards */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: var(--space-3);
}

/* Timeline */
.timeline { display: grid; gap: var(--space-3); }
.timeline-item {
  padding: var(--space-3);
  border-left: 3px solid var(--accent);
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.timeline-item h3 { margin: 0 0 var(--space-2); }

/* Buttons */
.btn {
  display: inline-block;
  border: 1px solid var(--primary);
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-contrast);
  box-shadow: 0 8px 18px rgba(138, 90, 68, 0.25);
}
.btn-primary:hover { transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }

/* Forms */
.form { max-width: 680px; }
.form-row {
  display: grid; gap: 8px; margin-bottom: var(--space-3);
}
label { font-weight: 600; }
input, textarea, select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--card);
  font: inherit;
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.form-actions { margin-top: var(--space-4); }

/* Lists */
.list { padding-left: 1rem; }
.list li { margin-bottom: 8px; }

/* Map */
.map-embed iframe {
  width: 100%;
  min-height: 300px;
  border: 0;
  border-radius: var(--radius);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-5) 0;
  color: var(--muted);
}
.site-footer .small { font-size: 0.9rem; }

/* Responsive Nav */
@media (max-width: 900px) {
  .nav-toggle { display: inline-block; }
  .nav-list {
    position: absolute; right: var(--space-3); top: 64px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: var(--space-3);
    flex-direction: column;
    gap: var(--space-2);
    display: none;
  }
  .nav-list.open { display: flex; }
}
