:root {
  --primary: #4a7c6f;
  --primary-light: #d6e8e4;
  --accent: #8b6f5c;
  --text: #2c2c2c;
  --text-light: #666;
  --bg: #faf9f7;
  --white: #ffffff;
  --border: #e0dbd4;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
}

/* NAV */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: 0.03em;
}

nav ul { list-style: none; display: flex; gap: 2rem; }

nav a {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--text);
  text-decoration: none;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}

nav a:hover, nav a.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #3a6458 100%);
  color: var(--white);
  text-align: center;
  padding: 3.5rem 2rem 3rem;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}

/* CONTENT */
.content {
  max-width: 820px;
  margin: 3rem auto 4rem;
  padding: 0 2rem;
}

.content section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem 2.5rem;
  margin-bottom: 1.5rem;
}

.content section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.content section p {
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.content section p:last-child { margin-bottom: 0; }

.content section ul {
  margin: 0.5rem 0 0.75rem 1.5rem;
  font-size: 0.95rem;
}

.content section ul li { margin-bottom: 0.3rem; }

.content section a {
  color: var(--primary);
  text-decoration: none;
}

.content section a:hover { text-decoration: underline; }

/* NOTFALL SIDEBAR */
.notfall-bar {
  background: var(--primary-light);
  max-width: 820px;
  margin: 0 auto 3rem;
  padding: 1.5rem 2rem;
  border-radius: 4px;
}

.notfall-bar h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.notfall-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.6rem;
}

.notfall-item {
  background: var(--white);
  border-left: 3px solid var(--primary);
  padding: 0.6rem 0.9rem;
  font-size: 0.85rem;
}

.notfall-item strong {
  display: block;
  color: var(--primary);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* CONTACT FOOTER */
.contact-footer {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
}

.contact-footer a { color: var(--primary); text-decoration: none; }
.contact-footer a:hover { text-decoration: underline; }

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-light);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  nav ul { gap: 1rem; }
  nav a { font-size: 0.8rem; }
  .logo { font-size: 1rem; }
  .content section { padding: 1.5rem; }
}
