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

body {
  font-family: 'Source Sans 3', sans-serif;
  color: #2c1810;
  line-height: 1.7;
  background: #ffffff;
}

/* === TYPOGRAFIE === */
h1, h2, h3 { font-family: 'Lora', serif; }
h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; line-height: 1.25; }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.5rem; }
p  { font-size: 1.05rem; color: #4a3428; margin-bottom: 1rem; line-height: 1.7; }
a  { color: #c07d52; text-decoration: none; }
a:hover { text-decoration: underline; }

/* === FARBEN === */
:root {
  --primary:      #3d2b1f;
  --accent:       #c07d52;
  --accent-dark:  #a0622f;
  --light:        #f5ede4;
  --light2:       #fdf8f3;
  --border:       #e8d5c0;
  --text:         #2c1810;
  --muted:        #8a6a55;
}

/* === NAVIGATION === */
nav {
  background: var(--primary);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(61,43,31,0.15);
}
nav .logo {
  color: #f5ede4;
  font-family: 'Lora', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
nav .logo img {
  height: 38px;
  width: auto;
  display: block;
}
nav .logo-placeholder {
  width: 110px;
  height: 38px;
  border: 2px dashed rgba(245,237,228,0.35);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(245,237,228,0.4);
  text-transform: uppercase;
  flex-shrink: 0;
}
nav ul { list-style: none; display: flex; gap: 2rem; }
nav ul a {
  color: #f5ede4;
  font-size: 0.95rem;
  transition: color 0.2s;
  font-family: 'Source Sans 3', sans-serif;
}
nav ul a:hover, nav ul a.active { color: #ffffff; text-decoration: none; }

/* === LAYOUT === */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--light); }

/* === HERO LOGO === */
.hero-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}
.hero-logo-placeholder {
  width: 180px;
  height: 180px;
  border: 2px dashed rgba(61,43,31,0.28);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(61,43,31,0.35);
  text-transform: uppercase;
}

.hero-logo img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}

/* === HERO === */
.hero {
  background: var(--light);
  color: var(--text);
  padding: 7rem 0;
  text-align: center;
  border-bottom: 3px solid var(--border);
}
.hero h1 { color: var(--primary); margin-bottom: 1.2rem; }
.hero-tagline {
  font-family: 'Lora', serif;
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-style: italic;
  color: var(--accent);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.hero p  { color: #5a3d2b; font-size: 1.15rem; max-width: 600px; margin: 0 auto 2rem; }
.hero .divider { background: var(--accent); }

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Source Sans 3', sans-serif;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); text-decoration: none; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(192,125,82,0.3); }
.btn-outline { border: 2px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: #fff; text-decoration: none; }

/* === KARTEN === */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.card {
  background: var(--light2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
  transition: box-shadow 0.25s, transform 0.25s;
  box-shadow: 0 2px 8px rgba(61,43,31,0.06);
}
.card:hover { box-shadow: 0 8px 28px rgba(61,43,31,0.12); transform: translateY(-2px); }
.card .price { font-size: 1.5rem; font-weight: 700; color: var(--accent); margin: 0.5rem 0; font-family: 'Lora', serif; }
.card .duration { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.card ul { padding-left: 1.2rem; color: #5a3d2b; font-size: 0.95rem; }
.card ul li { margin-bottom: 0.4rem; }
.card.highlight { border-color: var(--accent); border-width: 2px; background: #fff; }
.card .badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* === PROZESS-STEPS === */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.step { text-align: center; padding: 1.5rem; background: var(--light2); border-radius: 16px; border: 1px solid var(--border); }
.step .icon { font-size: 2.2rem; margin-bottom: 0.8rem; }
.step h3 { color: var(--primary); }

/* === QUOTE / HIGHLIGHT BOX === */
.highlight-box {
  background: var(--primary);
  color: #f5ede4;
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  box-shadow: 0 8px 32px rgba(61,43,31,0.2);
}
.highlight-box h2 { color: #f5ede4; font-family: 'Lora', serif; }
.highlight-box p  { color: rgba(245,237,228,0.85); }
.highlight-box a.btn-light {
  display: inline-block;
  margin-top: 1.2rem;
  padding: 0.85rem 2rem;
  background: var(--accent);
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  transition: background 0.2s;
}
.highlight-box a.btn-light:hover { background: var(--accent-dark); text-decoration: none; }

/* === DIVIDER === */
.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border-radius: 2px;
  margin: 1rem auto 1.5rem;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 2.5rem;
  font-size: 1rem;
  line-height: 2;
}
footer p { color: #ffffff; }
footer a { color: #ffffff; }
footer a:hover { color: #f5ede4; text-decoration: none; }

/* === CARD ICON === */
.card-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
  margin-bottom: 0.9rem;
}
.card-icon svg { width: 100%; height: 100%; }

/* === OPTION FLOW (Leistungen Schritt 3) === */
.option-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}
.option-row-center {
  display: flex;
  justify-content: center;
  margin-top: 0;
}
.option-row-center .card {
  width: 100%;
  max-width: 560px;
}
.option-row-full {
  margin-top: 1.5rem;
}
.option-row-full .card {
  border-style: dashed;
}
.flow-arrows {
  display: flex;
  justify-content: center;
  margin: 0.25rem 0;
  height: 56px;
}
.flow-arrows svg { width: 100%; max-width: 600px; height: 56px; overflow: visible; }

@media (max-width: 640px) {
  .option-row { grid-template-columns: 1fr; }
}

/* === MOBILE === */
@media (max-width: 768px) {
  nav ul { gap: 1rem; }
  nav ul a { font-size: 0.85rem; }
  .hero { padding: 5rem 0; }
}
@media (max-width: 480px) {
  nav { flex-wrap: wrap; height: auto; padding: 1rem; gap: 0.5rem; }
  nav ul { flex-wrap: wrap; gap: 0.5rem; }
}
