@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600&family=Lora:ital,wght@0,400;0,500;0,600;1,400&family=Raleway:wght@300;400;500;600&display=swap');

:root {
  --dark:    #1a1610;
  --dark2:   #231f18;
  --forest:  #2c3e2d;
  --forest2: #3a5238;
  --gold:    #c4a050;
  --gold-l:  #d4b470;
  --gold-d:  #a08030;
  --cream:   #f7f2ea;
  --warm:    #ede5d8;
  --text:    #2a2418;
  --text2:   #4a4035;
  --muted:   #7a6e60;
  --border:  rgba(196,160,80,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: 'Lora', Georgia, serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

/* Language */
body:not(.lang-en) .en { display: none; }
body.lang-en .de { display: none; }
body.lang-en .en { display: block; }
span.en, span.de { display: inline; }
body:not(.lang-en) span.en { display: none; }
body.lang-en span.de { display: none; }

/* Nav */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 3rem;
  background: rgba(26,22,16,0.93);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(196,160,80,0.2);
}
.nav-brand {
  font-family: 'Cinzel', serif; font-size: 0.9rem;
  letter-spacing: 0.22em; color: var(--gold);
  text-decoration: none;
}
.nav-right { display: flex; gap: 1rem; align-items: center; }
.nav-home {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.6); text-decoration: none;
  transition: color .2s;
}
.nav-home:hover { color: var(--gold); }
.lang-btn {
  font-family: 'Raleway', sans-serif; font-size: 0.62rem;
  letter-spacing: 0.15em; background: none;
  border: 1px solid rgba(196,160,80,0.4);
  color: rgba(247,242,234,0.6); padding: 0.28rem 0.6rem;
  cursor: pointer; transition: all .2s;
}
.lang-btn.active, .lang-btn:hover { border-color: var(--gold); color: var(--gold); }

/* Hero */
.lp-hero {
  height: 92vh; min-height: 560px;
  position: relative; display: flex;
  align-items: flex-end; overflow: hidden;
}
.lp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.lp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,16,0.88) 0%, rgba(26,22,16,0.3) 55%, rgba(26,22,16,0.1) 100%);
}
.lp-hero-content {
  position: relative; z-index: 2;
  padding: 0 6rem 5rem;
  max-width: 760px;
}
.lp-hero-tag {
  font-family: 'Raleway', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem; display: block;
}
.lp-hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 4.5vw, 5rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin-bottom: 1rem;
}
.lp-hero-sub {
  font-family: 'Lora', serif; font-size: 1.05rem;
  color: rgba(247,242,234,0.8); line-height: 1.75;
  margin-bottom: 2rem;
}
.lp-btn {
  display: inline-block;
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  background: var(--gold); color: var(--dark);
  text-decoration: none; padding: 1rem 2.5rem;
  transition: background .25s;
}
.lp-btn:hover { background: var(--gold-l); }
.lp-btn-outline {
  display: inline-block;
  font-family: 'Cinzel', serif; font-size: 0.65rem;
  letter-spacing: 0.22em; text-transform: uppercase;
  border: 1px solid var(--gold); color: var(--gold);
  text-decoration: none; padding: 1rem 2.5rem;
  margin-left: 1rem; transition: all .25s;
}
.lp-btn-outline:hover { background: var(--gold); color: var(--dark); }

/* Sections */
.lp-section { padding: 5.5rem 0; }
.lp-section.dark { background: var(--dark); }
.lp-section.forest { background: var(--forest); }
.lp-section.warm { background: var(--warm); }
.lp-container { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }

.lp-label {
  font-family: 'Raleway', sans-serif; font-size: 0.65rem;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 0.8rem;
}
.lp-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.4rem);
  font-weight: 400; margin-bottom: 1.5rem; line-height: 1.25;
}
.lp-title.light { color: #fff; }
.gold-line { width: 60px; height: 1px; background: var(--gold); margin-bottom: 2rem; }

p { font-size: 1rem; line-height: 1.85; color: var(--text2); margin-bottom: 1.2rem; }
p.lead { font-size: 1.08rem; color: var(--text); line-height: 1.9; }
.dark p, .forest p { color: rgba(247,242,234,0.78); }

/* Cards */
.lp-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem; margin-top: 2.5rem;
}
.lp-card {
  padding: 2rem 1.8rem;
  border: 1px solid var(--border);
}
.lp-card h4 {
  font-family: 'Cinzel', serif; font-size: 0.85rem;
  letter-spacing: 0.1em; color: var(--gold);
  margin-bottom: 0.7rem;
}
.lp-card p { font-size: 0.94rem; color: rgba(247,242,234,0.72); margin: 0; line-height: 1.7; }

/* Facts */
.lp-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0; border: 1px solid var(--border); margin-top: 2.5rem;
}
.lp-fact {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
}
.lp-fact:last-child { border-right: none; }
.lp-fact strong {
  font-family: 'Cinzel', serif; font-size: 1.4rem;
  color: var(--gold); display: block; margin-bottom: 0.3rem;
}
.lp-fact span {
  font-family: 'Raleway', sans-serif; font-size: 0.68rem;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(247,242,234,0.45);
}

/* Feature list */
.lp-features {
  list-style: none; display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.5rem 2rem; margin-top: 1.5rem;
}
.lp-features li {
  font-size: 0.97rem; color: var(--text2);
  padding: 0.5rem 0; border-bottom: 1px solid rgba(196,160,80,0.12);
  display: flex; align-items: baseline; gap: 0.7rem;
  line-height: 1.5;
}
.lp-features li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.dark .lp-features li,
.forest .lp-features li { color: rgba(247,242,234,0.8); border-bottom-color: rgba(255,255,255,0.08); }

/* Image strip */
.lp-img-strip { position: relative; height: 50vh; min-height: 340px; overflow: hidden; }
.lp-img-strip img { width: 100%; height: 100%; object-fit: cover; }
.lp-img-strip-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(26,22,16,0.65) 0%, transparent 55%);
  display: flex; align-items: center; padding: 0 6rem;
}
.lp-img-strip-text { color: #fff; max-width: 460px; }
.lp-img-strip-text h3 {
  font-family: 'Cinzel', serif; font-size: 1.6rem;
  font-weight: 400; margin-bottom: 0.5rem;
}
.lp-img-strip-text p { color: rgba(255,255,255,0.8); margin: 0; font-size: 1rem; }

/* Two col */
.lp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.lp-two-col img { width: 100%; height: 420px; object-fit: cover; }

/* CTA */
.lp-cta { text-align: center; padding: 5rem 0; background: var(--dark); }
.lp-cta h2 {
  font-family: 'Cinzel', serif; font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: var(--cream); font-weight: 400; margin-bottom: 1rem;
}
.lp-cta p { font-size: 1rem; color: rgba(247,242,234,0.65); margin-bottom: 1.8rem; }
.lp-cta a { color: var(--gold); }

/* Footer */
footer {
  background: var(--dark); border-top: 1px solid var(--border);
  padding: 2.5rem; text-align: center;
}
.footer-logo { font-family: 'Cinzel', serif; font-size: 0.82rem; letter-spacing: 0.25em; color: var(--gold); margin-bottom: 0.4rem; }
.footer-line { color: rgba(196,160,80,0.3); margin-bottom: 0.4rem; letter-spacing: 0.4em; }
.footer-copy { font-family: 'Raleway', sans-serif; font-size: 0.65rem; letter-spacing: 0.12em; color: rgba(247,242,234,0.3); }

/* Reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s, transform .7s; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .lp-hero-content { padding: 0 2rem 4rem; }
  .lp-two-col { grid-template-columns: 1fr; gap: 2rem; }
  .lp-img-strip-overlay { padding: 0 2rem; }
  nav { padding: 0.9rem 1.5rem; }
  .lp-facts { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  html { font-size: 16px; }
  .lp-hero-title { font-size: 2.2rem; }
  .lp-cards { grid-template-columns: 1fr; }
  .lp-facts { grid-template-columns: 1fr 1fr; }
  .lp-section { padding: 3.5rem 0; }
}
