@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;
}

/* ─── NAVIGATION ─── */
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.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: padding .3s, box-shadow .3s;
}
.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  letter-spacing: 0.22em;
  color: var(--gold);
  text-decoration: none;
}
.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.75);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--gold); }
.lang-btn {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  background: none;
  border: 1px solid rgba(196,160,80,0.4);
  color: rgba(247,242,234,0.6);
  padding: 0.3rem 0.7rem;
  cursor: pointer;
  transition: all .2s;
}
.lang-btn.active, .lang-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ─── 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; }

/* ─── HERO ─── */
.hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,16,0.85) 0%, rgba(26,22,16,0.35) 50%, rgba(26,22,16,0.15) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 6rem 5rem;
  max-width: 800px;
}
.hero-label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 5vw, 5.5rem);
  font-weight: 400; line-height: 1.1;
  color: #fff; margin-bottom: 0.4rem;
}
.hero-title em { font-style: italic; font-family: 'Lora', serif; color: var(--gold); }
.hero-tagline {
  font-family: 'Lora', serif;
  font-size: 1.05rem;
  color: rgba(247,242,234,0.82);
  margin-bottom: 2.2rem;
  line-height: 1.7;
}
.hero-stats {
  display: flex; gap: 2.5rem;
}
.hero-stat { text-align: left; }
.hero-stat strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.hero-stat span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.55);
}

/* ─── SECTIONS ─── */
section { padding: 6rem 0; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 2.5rem; }

.section-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;
}
.section-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400; color: var(--dark);
  margin-bottom: 1.5rem; line-height: 1.25;
}
.section-title.light { color: #fff; }
p {
  font-size: 1rem; line-height: 1.85;
  color: var(--text2); margin-bottom: 1.2rem;
}
p.lead {
  font-size: 1.1rem; color: var(--text);
  line-height: 1.9; margin-bottom: 1.5rem;
}

/* ─── REVEAL ANIMATION ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── DARK SECTION ─── */
.section-dark {
  background: var(--dark);
  color: var(--cream);
}
.section-dark p { color: rgba(247,242,234,0.75); }
.section-dark .section-title { color: var(--cream); }

/* ─── FOREST SECTION ─── */
.section-forest {
  background: var(--forest);
  color: var(--cream);
}
.section-forest p { color: rgba(247,242,234,0.8); }
.section-forest .section-title { color: var(--cream); }

/* ─── GOLD LINE DIVIDER ─── */
.gold-line {
  width: 60px; height: 1px;
  background: var(--gold);
  margin: 0 0 2rem;
}
.gold-line.center { margin: 0 auto 2rem; }

/* ─── FACTS GRID ─── */
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0;
  border: 1px solid var(--border);
  margin-top: 3rem;
}
.fact-item {
  padding: 1.8rem 2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.fact-item:last-child { border-right: none; }
.fact-item strong {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--gold);
  display: block; margin-bottom: 0.3rem;
}
.fact-item span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.72rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── FEATURE LIST ─── */
.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 0.6rem 2.5rem;
  margin-top: 1.5rem;
}
.feature-list li {
  font-size: 0.97rem;
  color: var(--text2);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(196,160,80,0.12);
  display: flex; align-items: baseline; gap: 0.7rem;
  line-height: 1.5;
}
.feature-list li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  font-size: 0.8rem;
}
.section-dark .feature-list li,
.section-forest .feature-list li {
  color: rgba(247,242,234,0.82);
  border-bottom-color: rgba(247,242,234,0.1);
}

/* ─── TWO-COL ─── */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.two-col img {
  width: 100%; height: 420px;
  object-fit: cover;
  display: block;
}

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 260px;
  gap: 4px;
}
.gallery-grid .wide { grid-column: span 2; }
.gallery-grid .tall { grid-row: span 2; }
.gallery-item {
  overflow: hidden; position: relative;
  background: var(--dark2);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(26,22,16,0.85));
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: rgba(247,242,234,0.7);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ─── FLOOR PLANS ─── */
.floor-tabs {
  display: flex; gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 3rem;
}
.floor-tab {
  font-family: 'Raleway', sans-serif;
  font-size: 0.7rem; letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.9rem 1.8rem;
  background: none; border: none;
  color: var(--muted); cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all .2s;
}
.floor-tab.active, .floor-tab:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.floor-content { display: none; }
.floor-content.active { display: block; }
.floor-image-wrap {
  background: #f0ece3;
  padding: 2rem;
  text-align: center;
}
.floor-image-wrap img {
  max-width: 100%;
  max-height: 600px;
  object-fit: contain;
}
.floor-rooms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.5rem;
  margin-top: 2rem;
}
.floor-room {
  padding: 0.8rem 1rem;
  background: rgba(196,160,80,0.07);
  border-left: 2px solid var(--gold);
  font-size: 0.92rem;
  color: var(--text2);
  line-height: 1.4;
}
.floor-room strong { color: var(--text); font-size: 0.8rem; display: block; margin-bottom: 0.15rem; }

/* ─── ENERGY SECTION ─── */
.energy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  margin-top: 2.5rem;
}
.energy-img {
  overflow: hidden;
  background: #111;
}
.energy-img img {
  width: 100%; height: 280px;
  object-fit: cover; object-position: top;
  display: block;
  transition: transform .5s;
}
.energy-img.screen img {
  object-fit: contain;
  background: #1a1a1a;
  padding: 1rem;
}
.energy-img:hover img { transform: scale(1.03); }
.energy-specs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  margin-top: 2.5rem;
  border: 1px solid var(--border);
}
.energy-spec {
  background: var(--dark2);
  padding: 1.5rem;
  text-align: center;
}
.energy-spec strong {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem; color: var(--gold);
  display: block; margin-bottom: 0.3rem;
}
.energy-spec span {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.5);
}

/* ─── CTA / OFFER ─── */
.offer-box {
  background: var(--dark);
  padding: 4rem;
  position: relative;
  overflow: hidden;
}
.offer-box::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--gold);
}
.offer-price {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--gold); margin-bottom: 0.5rem;
}
.offer-sub {
  font-family: 'Raleway', sans-serif;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,242,234,0.4);
  margin-bottom: 2.5rem;
}
.offer-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem 3rem;
  margin-bottom: 3rem;
}
.offer-bullets li {
  font-size: 0.97rem;
  color: rgba(247,242,234,0.75);
  padding-left: 1.2rem;
  position: relative; line-height: 1.6;
}
.offer-bullets li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--gold); font-size: 0.8rem;
}

/* ─── CONTACT ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}
.contact-info { }
.contact-item {
  margin-bottom: 1.5rem;
}
.contact-item label {
  font-family: 'Raleway', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block; margin-bottom: 0.3rem;
}
.contact-item p {
  font-size: 1rem;
  color: rgba(247,242,234,0.82);
  margin: 0;
}
.contact-item a {
  color: rgba(247,242,234,0.82);
  text-decoration: none;
  transition: color .2s;
}
.contact-item a:hover { color: var(--gold); }
.form-group { margin-bottom: 1.2rem; }
.form-group input, .form-group textarea {
  width: 100%;
  background: rgba(247,242,234,0.06);
  border: 1px solid rgba(247,242,234,0.18);
  color: var(--cream);
  font-family: 'Lora', serif;
  font-size: 0.97rem;
  padding: 0.9rem 1.1rem;
  outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder, .form-group textarea::placeholder {
  color: rgba(247,242,234,0.35);
  font-size: 0.9rem;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-group textarea { height: 130px; resize: vertical; }
.form-submit {
  font-family: 'Cinzel', serif;
  font-size: 0.65rem; letter-spacing: 0.22em;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  border: none; cursor: pointer;
  padding: 1rem 2.8rem;
  transition: background .2s;
  font-weight: 500;
}
.form-submit:hover { background: var(--gold-l); }

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

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 0.9rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .hero-content { padding: 0 2rem 3.5rem; }
  .hero-stats { flex-wrap: wrap; gap: 1.5rem; }
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse { direction: ltr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid .wide { grid-column: span 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .energy-grid { grid-template-columns: 1fr; }
  .offer-box { padding: 2.5rem 2rem; }
}
@media (max-width: 600px) {
  html { font-size: 16px; }
  .nav-links { display: none; }
  .hero-title { font-size: 2.4rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  section { padding: 4rem 0; }
  .facts-grid { grid-template-columns: 1fr 1fr; }
}
