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

:root {
  --soil: #2c1f0e;
  --soil-mid: #4a3520;
  --wheat: #c8a45a;
  --wheat-light: #e8cc8a;
  --wheat-pale: #f5edd8;
  --field: #7a9a4a;
  --field-dark: #3d5226;
  --cream: #faf7f0;
  --warm-white: #ffffff;
  --text: #1a1208;
  --text-mid: #3d2e1a;
  --text-muted: #7a6a54;
  --border: #e0d5c0;
  --font: 'Inter', sans-serif;
  --serif: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }

/* ── HEADER ─────────────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: transparent; transition: background 0.3s, box-shadow 0.3s;
}
header.scrolled {
  background: rgba(250, 247, 240, 0.97);
  box-shadow: 0 1px 0 var(--border), 0 4px 20px rgba(44,31,14,0.08);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1080px; margin: 0 auto; padding: 0 28px;
  height: 70px; display: flex; align-items: center; justify-content: space-between;
}

.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--warm-white); transition: color 0.3s; }
header.scrolled .logo { color: var(--soil); }

.logo-icon { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-weight: 600; font-size: 0.95rem; letter-spacing: -0.01em; }
.logo-sub { font-size: 0.6rem; opacity: 0.55; letter-spacing: 0.06em; text-transform: uppercase; }

nav { display: flex; align-items: center; gap: 28px; }
nav a { text-decoration: none; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.2s; }
header.scrolled nav a { color: var(--text-muted); }
nav a:hover { color: var(--warm-white) !important; }
header.scrolled nav a:hover { color: var(--text) !important; }
nav a.nav-cta {
  color: var(--soil) !important; background: var(--wheat);
  padding: 8px 20px; font-weight: 600; border-radius: 2px;
}
header.scrolled nav a.nav-cta { background: var(--wheat); color: var(--soil) !important; }
nav a.nav-cta:hover { opacity: 0.88; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--warm-white); transition: all 0.3s; border-radius: 2px; }
header.scrolled .nav-toggle span { background: var(--soil); }

/* ── HERO ───────────────────────────────────────── */
.hero-wrap {
  position: relative;
  min-height: 100vh;
  background: var(--field-dark);
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0; overflow: hidden;
}

.field-lines {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 55%; display: flex; gap: 0;
}
.field-line {
  flex: 1;
  background: linear-gradient(to bottom, transparent 0%, rgba(100,140,60,0.12) 40%, rgba(80,110,40,0.22) 100%);
  border-right: 1px solid rgba(255,255,255,0.03);
}

.hero-wrap::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(44,31,14,0.7) 0%, rgba(61,82,38,0.4) 60%, transparent 100%);
}

.hero {
  position: relative; z-index: 1;
  padding: 180px 0 100px;
}

.hero-tag {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--wheat-light);
  margin-bottom: 32px; opacity: 0.85;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--warm-white);
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}
.hero h1 em {
  font-style: italic;
  color: var(--wheat-light);
}

.hero-row {
  display: flex; align-items: flex-start; gap: 60px;
}
.hero-sub {
  flex: 1; font-size: 1rem; color: rgba(255,255,255,0.6);
  max-width: 460px; line-height: 1.8; font-weight: 300;
}
.hero-cta { display: flex; flex-direction: column; gap: 10px; flex-shrink: 0; }

/* ── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 28px; font-size: 0.875rem; font-weight: 600;
  text-decoration: none; transition: all 0.2s; cursor: pointer;
  font-family: var(--font); border: none; border-radius: 2px; letter-spacing: 0.01em;
}
.btn-primary { background: var(--wheat); color: var(--soil); }
.btn-primary:hover { background: var(--wheat-light); }
.btn-outline { background: transparent; color: rgba(255,255,255,0.7); border: 1px solid rgba(255,255,255,0.25); }
.btn-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--warm-white); }

/* ── SECTIONS ───────────────────────────────────── */
.section-light { padding: 96px 0; background: var(--cream); }
.section-warm { padding: 96px 0; background: var(--field-dark); }

.section-label {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--wheat); margin-bottom: 20px;
}
.section-label.light { color: var(--wheat-light); opacity: 0.7; }

.section-title { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; margin-bottom: 56px; }
.section-title.light { color: var(--warm-white); }

/* ── BETRIEB ────────────────────────────────────── */
.betrieb-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 700; color: var(--text); line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 24px; }

.betrieb-left p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; margin-bottom: 16px; }

.info-grid { display: flex; flex-direction: column; }
.info-item { padding: 16px 0; border-bottom: 1px solid var(--border); display: flex; flex-direction: column; gap: 4px; }
.info-item:first-child { border-top: 1px solid var(--border); }
.info-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }
.info-val { font-size: 0.9rem; color: var(--text); font-weight: 500; line-height: 1.5; }

/* ── KULTUREN ───────────────────────────────────── */
.kulturen-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}

.kultur-card {
  padding: 40px 32px;
  background: rgba(255,255,255,0.03);
  transition: background 0.2s;
}
.kultur-card:hover { background: rgba(255,255,255,0.07); }

.kultur-icon { color: var(--wheat); margin-bottom: 20px; }
.kultur-card h3 { font-family: var(--serif); font-size: 1.25rem; color: var(--warm-white); margin-bottom: 12px; }
.kultur-card p { font-size: 0.875rem; color: rgba(255,255,255,0.5); line-height: 1.75; font-weight: 300; }

/* ── KONTAKT ────────────────────────────────────── */
.kontakt-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

.kontakt-left h2 { margin-bottom: 16px; }
.kontakt-sub { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 36px; }

.phone-block {
  display: flex; flex-direction: column; gap: 4px;
  text-decoration: none; margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--wheat-pale);
  border-left: 3px solid var(--wheat);
  transition: background 0.2s;
}
.phone-block:hover { background: #efe5c8; }
.phone-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }
.phone-num { font-family: var(--serif); font-size: 2rem; font-weight: 700; color: var(--soil); letter-spacing: -0.02em; }

.kontakt-details { display: flex; flex-direction: column; gap: 20px; }
.kd { display: flex; flex-direction: column; gap: 4px; }
.kd-label { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.15em; color: var(--text-muted); font-weight: 600; }
.kd address, .kd span { font-style: normal; font-size: 0.9rem; color: var(--text); line-height: 1.6; }

.kontakt-map { display: flex; flex-direction: column; gap: 8px; }
.kontakt-map iframe { width: 100%; height: 380px; border: 2px solid var(--border); display: block; }
.map-link { font-size: 0.75rem; color: var(--text-muted); text-align: right; text-decoration: none; }
.map-link:hover { color: var(--field-dark); }

/* ── FOOTER ─────────────────────────────────────── */
footer { background: var(--soil); padding: 32px 0; }
.footer-inner { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 32px; }
.footer-left strong { display: block; color: var(--warm-white); font-size: 0.875rem; margin-bottom: 2px; }
.footer-left span { font-size: 0.75rem; color: rgba(255,255,255,0.3); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--warm-white); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.2); }

/* ── MODAL ──────────────────────────────────────── */
.modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 200; align-items: center; justify-content: center; padding: 24px; backdrop-filter: blur(4px); }
.modal.open { display: flex; }
.modal-box { background: var(--cream); max-width: 560px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 44px; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,0.15); border: 1px solid var(--border); }
.modal-box h2 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.modal-box h3 { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--wheat); font-weight: 600; margin: 20px 0 8px; }
.modal-box p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: none; border: none; color: var(--text-muted); font-size: 1.5rem; cursor: pointer; line-height: 1; }
.modal-close:hover { color: var(--text); }

/* ── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 900px) {
  .hero h1 { font-size: clamp(2.6rem, 10vw, 5rem); }
  .hero-row { flex-direction: column; gap: 32px; }
  .betrieb-layout { grid-template-columns: 1fr; gap: 48px; }
  .kulturen-grid { grid-template-columns: repeat(2, 1fr); }
  .kontakt-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
}
@media (max-width: 640px) {
  .section-light, .section-warm { padding: 64px 0; }
  .kulturen-grid { grid-template-columns: 1fr; }
  nav { display: none; position: fixed; inset: 0; top: 70px; background: var(--field-dark); flex-direction: column; justify-content: center; align-items: center; gap: 32px; }
  body.nav-open nav { display: flex; }
  nav a { font-size: 1.2rem; color: rgba(255,255,255,0.85) !important; }
  nav a.nav-cta { background: var(--wheat); color: var(--soil) !important; padding: 12px 32px; }
  .nav-toggle { display: flex; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
}
