/* ============================================================
   HAUS ELLA – Premium Vacation Rental Website
   Design: Classic hotel feeling, warm & elegant
   ============================================================ */

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

:root {
  --gold:       #C9A96E;
  --gold-light: #E8D5A3;
  --gold-dark:  #A07840;
  --dark:       #1A1A1A;
  --dark-2:     #2C2C2C;
  --dark-3:     #3E3E3E;
  --cream:      #FAF7F2;
  --cream-2:    #F2EDE4;
  --text:       #3A3530;
  --text-light: #7A7268;
  --white:      #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Montserrat', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --shadow:     0 4px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 12px 60px rgba(0,0,0,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
h2 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--dark); }
h4 { font-size: 1.25rem; margin-bottom: 0.5rem; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}
.eyebrow.light { color: var(--gold-light); }

.lead { font-size: 1.2rem; color: var(--text); line-height: 1.8; margin-bottom: 1.5rem; }
.section-desc { max-width: 620px; margin: 1rem auto 0; color: var(--text-light); font-size: 1rem; }

/* ── ORNAMENT ── */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 1.2rem auto;
}
.ornament span { display: block; width: 50px; height: 1px; background: var(--gold); }
.ornament span:first-child { width: 30px; }
.ornament span:last-child { width: 30px; }
.ornament::after {
  content: '◆';
  color: var(--gold);
  font-size: 0.6rem;
}
.ornament.light span { background: var(--gold-light); }
.ornament.light::after { color: var(--gold-light); }

/* ── SECTION INTRO ── */
.section-intro {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-up    { transform: translateY(40px); }
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── BUTTONS ── */
.btn-hero {
  display: inline-block;
  padding: 1rem 2.5rem;
  border: 1.5px solid var(--gold-light);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1;
}
.btn-hero:hover { border-color: var(--gold); }
.btn-hero:hover::before { transform: scaleX(1); }

.btn-secondary {
  display: inline-block;
  padding: 0.8rem 2rem;
  border: 1.5px solid var(--gold);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.btn-secondary:hover { background: var(--gold); color: var(--white); }

.btn-light {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border: 1.5px solid rgba(255,255,255,0.7);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: var(--transition);
  margin-top: 1.5rem;
}
.btn-light:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 0;
  background: rgba(15, 10, 5, 0.55);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
#navbar.scrolled {
  background: rgba(26, 26, 26, 0.96);
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-main {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  color: var(--white);
  letter-spacing: 0.05em;
  font-weight: 300;
}
.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-family: var(--font-sans);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  padding: 0.55rem 1.5rem !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold) !important; color: var(--white) !important; }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: var(--transition);
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.5s ease, transform 6s ease;
}
.hero-slide.active { opacity: 1; transform: scale(1); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.4) 50%,
    rgba(0,0,0,0.6) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}

.hero-tagline {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0,0,0,0.3);
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.hero-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.hero-divider span { display: block; width: 60px; height: 1px; background: rgba(201,169,110,0.7); }
.hero-divider svg { width: 16px; height: 16px; fill: var(--gold); }

/* Reveal animations triggered on load */
.hero-content .reveal-up { opacity: 0; transform: translateY(30px); }
.hero-content .reveal-up.hero-visible {
  opacity: 1;
  transform: none;
  transition: opacity 1s ease, transform 1s ease;
}
.hero-content .delay-1 { transition-delay: 0.3s; }
.hero-content .delay-2 { transition-delay: 0.6s; }
.hero-content .delay-3 { transition-delay: 0.9s; }
.hero-content .delay-4 { transition-delay: 1.2s; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(0.7); }
}

.hero-slide-dots {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  transition: background 0.3s ease, transform 0.3s ease;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ============================================================
   WILLKOMMEN
   ============================================================ */
.section-willkommen {
  padding: 7rem 0;
  background: var(--cream);
}

.willkommen-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.willkommen-text p { color: var(--text-light); margin-bottom: 1.2rem; }

.key-facts {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 2.5rem;
  padding: 2rem 3rem;
  background: var(--cream-2);
  border-top: 2px solid var(--gold);
}
.fact { padding: 0 1.5rem; }
.fact { flex: 1; text-align: center; }
.fact-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.fact-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
}
.fact-divider { width: 1px; height: 40px; background: var(--gold-light); flex-shrink: 0; }

.img-stack { position: relative; height: 520px; }
.img-main {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 85%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.img-secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 55%;
  height: 55%;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  border: 6px solid var(--cream);
}

/* ============================================================
   WOHNUNG (DARK SECTION)
   ============================================================ */
.section-dark {
  padding: 7rem 0;
  background: var(--dark);
}
.section-dark .section-intro h2 { color: var(--white); }
.section-dark .section-desc { color: rgba(255,255,255,0.55); }

/* ── TABS ── */
.wohnung-tabs {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid rgba(201,169,110,0.3);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.tab-btn {
  padding: 0.9rem 2.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-right: 1px solid rgba(201,169,110,0.3);
  transition: var(--transition);
  font-family: var(--font-sans);
}
.tab-btn:last-child { border-right: none; }
.tab-btn.active, .tab-btn:hover { color: var(--gold); background: rgba(201,169,110,0.08); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* ── AMENITIES ── */
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  margin-bottom: 3rem;
  background: rgba(201,169,110,0.15);
}
.amenity-card {
  background: var(--dark-2);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: background 0.3s ease;
}
.amenity-card:hover { background: var(--dark-3); }
.amenity-icon { font-size: 2rem; margin-bottom: 1rem; }
.amenity-card h4 { color: var(--white); font-family: var(--font-serif); font-size: 1.3rem; }
.amenity-card p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-top: 0.5rem; }

/* ── GALLERY ── */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 4px;
}
.gallery-item { cursor: pointer; overflow: hidden; }
.gallery-item img { transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }

/* ── AUSSENBEREICH ── */
.aussenbereich-text { text-align: center; margin-bottom: 2.5rem; }
.aussenbereich-text .lead { color: rgba(255,255,255,0.75); max-width: 700px; margin: 0 auto; }

.balkon-feature { height: 500px; overflow: hidden; margin-bottom: 4px; cursor: pointer; }
.balkon-feature:hover img { transform: scale(1.03); }
.balkon-feature img { transition: transform 0.8s ease; }

.balkon-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 240px;
  gap: 4px;
}
.balkon-grid img { cursor: pointer; overflow: hidden; transition: transform 0.5s ease; }
.balkon-grid img:hover { transform: scale(1.05); }

/* ── PREISE ── */
.preise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.preise-cards { display: flex; flex-direction: column; gap: 1.5rem; }
.preis-card {
  border: 1px solid rgba(201,169,110,0.3);
  padding: 2rem;
  text-align: center;
  transition: border-color 0.3s ease;
}
.preis-card.highlight { border-color: var(--gold); background: rgba(201,169,110,0.05); }
.preis-header { margin-bottom: 1.2rem; }
.preis-saison {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.preis-zeitraum { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.preis-amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}
.preis-amount span { font-size: 1rem; color: rgba(255,255,255,0.5); }

.preise-extras h4 {
  color: var(--gold);
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}
.preise-extras h4:first-child { margin-top: 0; }
.preise-extras ul { display: flex; flex-direction: column; gap: 0.6rem; }
.preise-extras li {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.preise-extras li strong { color: var(--white); }

.preise-img { height: 460px; overflow: hidden; }
.preise-img img { border: none; }

/* ============================================================
   QUOTE / PARALLAX
   ============================================================ */
.section-quote {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.quote-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.quote-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 2rem;
}
.quote-mark {
  width: 40px;
  height: 40px;
  fill: rgba(201,169,110,0.4);
  margin: 0 auto 1.5rem;
}
blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  max-width: 700px;
}
cite {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-style: normal;
}

/* ============================================================
   BODENTAL
   ============================================================ */
.section-bodental {
  padding: 7rem 0;
  background: var(--cream-2);
}

.season-toggle {
  display: flex;
  justify-content: center;
  gap: 0;
  margin-bottom: 3.5rem;
  border: 1px solid var(--gold-light);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}
.season-btn {
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  font-family: var(--font-sans);
  transition: var(--transition);
  border-right: 1px solid var(--gold-light);
}
.season-btn:last-child { border-right: none; }
.season-btn.active { background: var(--gold); color: var(--white); }
.season-btn:not(.active):hover { background: var(--cream); color: var(--dark); }
.season-icon { margin-right: 0.5rem; }

.season-content { display: none; }
.season-content.active { display: block; }

/* ── ACTIVITIES ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.activity {
  padding: 2rem;
  background: var(--white);
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.activity:hover { border-color: var(--gold); box-shadow: var(--shadow); }
.activity-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.activity h4 { color: var(--dark); margin-bottom: 0.5rem; }
.activity p { font-size: 0.9rem; color: var(--text-light); }

/* ── NATURE GALLERY ── */
.nature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 4px;
}
.ng-item { cursor: pointer; overflow: hidden; }
.ng-item img { transition: transform 0.5s ease; }
.ng-item:hover img { transform: scale(1.07); }
.ng-tall { grid-row: span 2; }
.ng-wide { grid-column: span 2; }

/* ============================================================
   HUND
   ============================================================ */
.section-hund {
  position: relative;
  padding: 8rem 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hund-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.75) 40%, rgba(0,0,0,0.4));
}
.hund-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.hund-text h2 { color: var(--white); }
.hund-text p { color: rgba(255,255,255,0.75); margin-top: 1rem; }

.hund-list {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.hund-list li {
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}
.hund-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.5rem;
  top: 0.4em;
}

.hund-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 6px;
  height: 480px;
}
.hund-images img:first-child { grid-row: span 2; }

/* ============================================================
   ANREISE
   ============================================================ */
.section-anreise {
  padding: 7rem 0;
  background: var(--cream);
}

.anreise-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.direction-block {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--cream-2);
}
.direction-icon { font-size: 1.8rem; flex-shrink: 0; }
.direction-block h4 { color: var(--dark); margin-bottom: 0.5rem; }
.direction-block p { font-size: 0.9rem; color: var(--text-light); }

.address-box {
  background: var(--cream-2);
  padding: 1.5rem;
  border-left: 3px solid var(--gold);
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.9;
}

.map-wrapper {
  overflow: hidden;
  height: 300px;
  margin-bottom: 1rem;
}
.map-wrapper iframe { border: none; }

.anreise-img { height: 280px; overflow: hidden; }

/* ============================================================
   KONTAKT
   ============================================================ */
.section-kontakt {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
}
.kontakt-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.kontakt-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,15,10,0.92) 50%, rgba(20,15,10,0.75));
}
.section-kontakt .container { position: relative; z-index: 1; }

.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.kontakt-info h2 { color: var(--white); }
.kontakt-info p { color: rgba(255,255,255,0.65); margin-top: 1.2rem; font-size: 0.95rem; }

.contact-details {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}
.contact-item:hover { color: var(--gold-light); }
.contact-icon { font-size: 1.2rem; color: var(--gold); flex-shrink: 0; width: 2rem; text-align: center; }

/* ── FORM ── */
.kontakt-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,169,110,0.2);
  padding: 3rem;
  backdrop-filter: blur(5px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  padding: 0.8rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s ease;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.5rem;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: background 0.3s ease, transform 0.2s ease;
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}
.btn-submit:hover { background: var(--gold-dark); transform: translateY(-1px); }
.btn-submit svg { width: 18px; height: 18px; fill: var(--white); }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(201,169,110,0.15);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  text-align: center;
  font-size: 0.9rem;
}
.form-success.show { display: block; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: var(--dark);
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(201,169,110,0.2);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--white);
  font-weight: 300;
  margin-bottom: 0.5rem;
}
.footer-tagline {
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
  margin-bottom: 0.8rem;
}
.footer-address {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.3);
}

.footer-links h5,
.footer-contact h5 {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
}
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-bottom: 0.4rem; }
.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.3s ease;
  margin-bottom: 0.4rem;
}
.footer-contact a:hover { color: var(--gold-light); }

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }

.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 90vh;
  overflow: hidden;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  width: auto;
  height: auto;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: fixed;
  color: rgba(255,255,255,0.7);
  font-size: 2rem;
  line-height: 1;
  transition: color 0.3s ease;
  z-index: 10000;
  padding: 1rem;
}
.lightbox-close { top: 1rem; right: 1.5rem; font-size: 2.5rem; }
.lightbox-prev  { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-next  { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 3rem; }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { color: var(--gold); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .willkommen-grid   { grid-template-columns: 1fr; gap: 3rem; }
  .img-stack         { height: 400px; }
  .preise-layout     { grid-template-columns: 1fr 1fr; }
  .preise-img        { display: none; }
  .footer-top        { grid-template-columns: 1fr 1fr; }
  .footer-brand      { grid-column: span 2; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    top: 0;
    background: rgba(20,15,10,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1rem; }
  .nav-toggle { display: flex; }

  .hero-title { font-size: clamp(3rem, 12vw, 5rem); }

  .wohnung-tabs { flex-direction: column; width: 100%; }
  .tab-btn { border-right: none; border-bottom: 1px solid rgba(201,169,110,0.3); }
  .tab-btn:last-child { border-bottom: none; }

  .amenities-grid    { grid-template-columns: 1fr 1fr; }
  .gallery-masonry   { grid-template-columns: 1fr 1fr; }
  .nature-grid       { grid-template-columns: 1fr 1fr; }
  .activities-grid   { grid-template-columns: 1fr 1fr; }
  .balkon-grid       { grid-template-columns: 1fr 1fr; }

  .hund-content      { grid-template-columns: 1fr; }
  .hund-images       { height: 300px; margin-top: 2rem; }
  .anreise-layout    { grid-template-columns: 1fr; }
  .kontakt-layout    { grid-template-columns: 1fr; }
  .kontakt-form      { padding: 1.5rem; }
  .form-row          { grid-template-columns: 1fr; }
  .preise-layout     { grid-template-columns: 1fr; }
  .footer-top        { grid-template-columns: 1fr; gap: 2rem; }
  .footer-brand      { grid-column: span 1; }
  .key-facts         { flex-wrap: wrap; gap: 1rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .amenities-grid { grid-template-columns: 1fr; }
  .activities-grid { grid-template-columns: 1fr; }
  .nature-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
}
