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

body {
  font-family: 'Inter', sans-serif;
  color: #1e2a32;
  background: #f8f7f4;
  line-height: 1.7;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
.header {
  background: #F0EDE7;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 0;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
}

.logo {
  height: 2000px;            /* ← LOGO GRÖSSER */
  width: auto;
  display: block;
  background: #F3EFE7; /* ← kein Kasten */
}


.nav a {
  margin-left: 36px;
  text-decoration: none;
  color: #1F3440;        /* Gold-Ton passend zum Logo */
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.5px;
}

.nav a:hover {
  color: #B08A4A;
}

/* HERO */
.hero {
  background: #1e2a32;
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 720px;
  margin: 0 auto;
}

/* SECTIONS */
.section {
  padding: 100px 0;
}

.section-light {
  background: #ffffff;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

/* TWO COLUMN */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col img {
  width: 100%;
  border-radius: 6px;
}

.reverse {
  grid-template-columns: 1fr 1fr;
}

/* FOOTER */
.footer {
  background: #1e2a32;
  color: #ffffff;
  padding: 50px 0;
  text-align: center;
}

.footer a {
  display: inline-block;
  margin: 10px 0;
  color: #b89b5e;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer p {
  font-size: 14px;
  margin-top: 10px;
}
