/* ─── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ─── Design Tokens ─────────────────────────────────────────── */
:root {
  --farbe-primaer: #7C9E7A;
  --farbe-primaer-deep: #4E7554;
  --farbe-sekundaer: #E2C4A0;
  --farbe-akzent: #C4714A;
  --farbe-akzent-deep: #A55A36;

  --bg: #F8F6F1;
  --bg-white: #FFFFFF;
  --bg-subtle: #F2EEE7;
  --bg-header: #FFFFFF;

  --text: #1C1A16;
  --text-muted: #6B6659;
  --text-light: #9E9488;

  --border: #E4DFD5;
  --border-light: #EDE8DF;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-lg: 16px;
  --shadow: 0 2px 16px rgba(60, 50, 30, 0.07);
  --shadow-hover: 0 8px 32px rgba(60, 50, 30, 0.13);

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ─── Base ───────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  color: var(--text);
  font-weight: 600;
  letter-spacing: -0.01em;
}

a { color: var(--farbe-primaer); transition: color 0.2s; }
a:hover { color: var(--farbe-primaer-deep); }

img { max-width: 100%; height: auto; display: block; }

main { min-height: calc(100vh - 120px); }

/* ─── Layout ─────────────────────────────────────────────────── */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* ─── Section Title ──────────────────────────────────────────── */
.section-titel {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
  position: relative;
  padding-bottom: 0.75rem;
}

.section-titel::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 36px;
  height: 2px;
  background: var(--farbe-akzent);
  border-radius: 2px;
}

/* ─── Page Header ────────────────────────────────────────────── */
.page-header {
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 1.5rem 2.5rem;
}

.page-header-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.page-header h1 {
  font-size: 2.8rem;
  margin-bottom: 0.6rem;
  letter-spacing: -0.03em;
}

.page-header p {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-family: var(--font-body);
  max-width: 640px;
}

/* ─── Products Grid ──────────────────────────────────────────── */
.produkte-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

@media (max-width: 480px) {
  .produkte-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}

/* ─── Misc ───────────────────────────────────────────────────── */
.leer {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}
