:root {
  --bg: #faf8f4;
  --bg-alt: #f2ede4;
  --text: #1a1a1a;
  --accent: #2f4f3e;
  --accent-soft: #c6a667;
  --border-soft: #e0d7c7;
  --radius: 10px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.06);
  --font-sans: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

/* Layout */
.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: 260px;
  padding: 32px 28px;
  background: #f7f2e8;
  border-right: 1px solid var(--border-soft);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.page {
  margin-left: 260px;
  min-height: 100vh;
}

/* Brand */
.brand-link,
.brand-link *,
.brand-link:hover,
.brand-link:focus,
.brand-link:visited {
  text-decoration: none !important;
  color: inherit;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-soft);
}

.brand-logo img {
  width: 150px;
  height: 150px;
  object-fit: contain;
  display: block;
  margin-left: -30px;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  margin-left: -40px;
}

.brand-name {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.brand-sub {
  font-size: 0.78rem;
  color: #6b6254;
  letter-spacing: 0.03em;
}

/* Navigation */
.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.nav a {
  text-decoration: none;
  font-size: 0.95rem;
  color: #4a4338;
  padding: 6px 0;
  position: relative;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav a::before {
  content: "";
  position: absolute;
  left: -14px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: transparent;
  transform: translateY(-50%);
  transition: background 0.2s ease;
}

.nav a:hover::before {
  background: var(--accent-soft);
}

.nav a:hover {
  color: var(--accent);
}

/* Hero (bereinigt) */
.hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  
}

/* Textspalte links mit Einrückung */
.hero-inner {
  flex: 1;
  max-width: 650px;
  order: 1;
  padding-left: 8vw; /* Einrückung nur für den Text */
}

/* Bildspalte rechts, bündig */
.hero-image {
  flex: 0 0 350px;
  order: 2;
  margin-right: 0; /* wichtig: kein negatives Margin mehr */
  
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0; /* falls wirklich „ganz“ bündig gewünscht */
}

/* Typo */
.hero-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #8a7f6c;
  margin-bottom: 10px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text {
  max-width: 540px;
  color: #5b5245;
  margin-bottom: 24px;
}




/* Sections */
.section {
  padding: 40px 8vw;
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2 {
  font-size: 1.4rem;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.section-header p {
  margin: 0;
  color: #6b6254;
}

.section-body {
  max-width: 900px;
}

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  max-width: 1000px;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  padding: 20px 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

/* Menu */
.menu-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.menu-list .item {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.menu-list .item span:first-child {
  flex: 1;
  padding-right: 20px;
}

.menu-list .item span:last-child {
  white-space: nowrap;
  font-weight: 600;
  color: var(--accent);
}

/* Bild-Trenner */
.bild-trenner {
  position: relative;
  width: 100%;
  height: 450px;
  overflow: hidden;
}

.bild-trenner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.bild-trenner h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  margin: 0;
  padding: 0 1rem;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.1s ease;
}

.btn-primary:hover {
  background: #243a2f;
  transform: translateY(-1px);
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-inner {
    order: 1;
  }

  .hero-image {
    order: 2;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .two-cols {
    grid-template-columns: 1fr;
  }
}

/* HERO – Desktop */
.hero {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
  padding-top: 40px;
}

.hero-inner {
  flex: 1;
  max-width: 650px;
  padding-left: 8vw;
}

.hero-image {
  flex: 0 0 350px;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  /* Sidebar oben */
  .sidebar {
    position: relative;
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--border-soft);
  }

  .page {
    margin-left: 0;
  }

  /* Hero umschalten */
  .hero {
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
  }

 .hero-inner {
    padding-left: 4vw; /* statt 0 */
    padding-right: 4vw; /* optional, für symmetrischen Rand */
    max-width: 100%;
  }

  .hero-image {
    width: 100%;
    flex: none;
  }

  .hero-image img {
    width: 100%;
    height: auto;
  }
}

