/* ===== FONTS ===== */
@font-face {
  font-family: 'Cormorant';
  src: url('fonts/Cormorant-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Cormorant';
  src: url('fonts/Cormorant-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-VariableFont_wght.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

/* ===== VARIABLEN ===== */
:root {
  --cream: #f5f0e8;
  --warm-white: #faf8f4;
  --charcoal: #1c1c1a;
  --stone: #7a7469;
  --gold: #b89a5a;
  --gold-light: #d4b87a;
  --border: #e0d8cc;
  --serif: 'Cormorant', Georgia, serif;
  --sans: 'Jost', sans-serif;
  --max-width: 1100px;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 { font-family: var(--serif); font-weight: 300; line-height: 1.25; }
a { color: inherit; }
p { line-height: 1.8; }

/* ===== UTILITY ===== */
.wrap {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.divider {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 1.5rem 0;
}

/* ===== NAVIGATION ===== */
.site-nav {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,154,90,0.2);
}

.site-nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.site-logo {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--cream);
  text-decoration: none;
  letter-spacing: 0.05em;
}

.site-logo span { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: all 0.3s;
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(184,154,90,0.2);
  }
  .nav-links.open { display: flex; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: var(--charcoal);
  color: var(--cream);
  padding: 4rem 1.5rem 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(184,154,90,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 0.75rem;
}

.page-hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero p {
  color: rgba(245,240,232,0.65);
  font-size: 0.95rem;
  max-width: 600px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--gold); color: var(--charcoal); }
.btn-primary:hover { background: var(--gold-light); }
.btn-dark { background: var(--charcoal); color: var(--cream); }
.btn-dark:hover { background: var(--gold); color: var(--charcoal); }
.btn-outline { border: 1px solid var(--gold); color: var(--gold); background: transparent; }
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }

/* ===== SECTIONS ===== */
.section { padding: 4rem 0; }
.section + .section { border-top: 1px solid var(--border); }
.section h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }

/* ===== GRIDS ===== */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 720px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; gap: 2rem; }
}

/* ===== FACT BOX ===== */
.fact-box {
  background: var(--cream);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}

.fact-box h3 {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
  margin-bottom: 1.25rem;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
}

.fact-row:last-child { border-bottom: none; }
.fact-key { color: var(--stone); }
.fact-val { font-weight: 500; text-align: right; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 1.25rem; }

.form-group label {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 140px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--charcoal);
  color: rgba(245,240,232,0.55);
  padding: 2.5rem 1.5rem;
  margin-top: auto;
  border-top: 1px solid rgba(184,154,90,0.2);
}

.site-footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}

.site-footer a { color: var(--gold); text-decoration: none; }
.site-footer a:hover { color: var(--gold-light); }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }

@media (max-width: 600px) {
  .site-footer-inner { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
}

/* ===== IMPRESSUM ===== */
.impressum h2 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 2rem 0 0.5rem;
}

.impressum p {
  font-size: 0.9rem;
  color: #4a4740;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.impressum a { color: var(--gold); }

/* ===== HONEYPOT ===== */
.hp-field {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}
