/* ─── Variables ─────────────────────────────────────────── */
:root {
  --pine:       #1A3628;
  --forest:     #2D5A3D;
  --sage:       #4A7A5C;
  --cream:      #FAFAF8;
  --parchment:  #EDF4EF;
  --gold:       #E8621A;
  --gold-lt:    #F08B58;
  --wood:       #8B6240;
  --stone:      #6E7E79;
  --dark:       #0F1F16;
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  background: var(--cream);
  color: var(--pine);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--parchment); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Navigation ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: all 0.4s ease;
}
nav.scrolled, nav.solid {
  background: var(--pine);
  border-bottom: 1px solid rgba(232,98,26,0.2);
  padding: 1rem 3rem;
  box-shadow: 0 4px 32px rgba(15,31,22,0.25);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.3em;
  font-family: 'Syne', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  word-spacing: -0.05em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
}
.nav-logo .accent { color: var(--gold); letter-spacing: 0.18em; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a {
  color: rgba(250,250,248,0.75);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--cream); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 100px !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-lt) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(232,98,26,0.4) !important;
}
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  z-index: 120;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
nav.nav-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
nav.nav-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold);
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: none;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,98,26,0.35);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  padding: 0.9rem 2.4rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  border: 1.5px solid rgba(250,250,248,0.4);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(250,250,248,0.1); }

/* ─── Section Base ────────────────────────────────────────── */
section { padding: 7rem 3rem; }
.container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.section-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  flex-shrink: 0;
}
.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--pine);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--forest); }

/* ─── Reveal Animations ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ─── Subpage Header ──────────────────────────────────────── */
.page-header {
  position: relative;
  height: 45vh;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(160deg, #0F1F16 0%, #1A3628 50%, #2D5A3D 100%);
}
.page-header::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 65% 50%, rgba(232,98,26,0.14) 0%, transparent 60%);
}
.page-header-mountains {
  position: absolute;
  bottom: 0; left: 0; right: 0; width: 100%;
}
.page-header-content {
  position: relative; z-index: 10;
  text-align: center;
  color: var(--cream);
  padding: 2rem;
  animation: fadeUp 0.9s ease both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.page-header-label {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  animation: fadeUp 0.9s ease 0.2s both;
}
.page-header-label::before {
  content: '';
  display: inline-block;
  width: 18px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.page-header-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1;
  animation: fadeUp 0.9s ease 0.35s both;
}
.page-header-title em { font-style: italic; color: var(--gold-lt); }

/* ─── Gallery ─────────────────────────────────────────────── */
#galerie {
  background: var(--pine);
  padding: 7rem 3rem;
}
#galerie .section-label { color: var(--gold); }
#galerie .section-title { color: var(--cream); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 280px 280px;
  gap: 10px;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}
.gallery-item:first-child { grid-column: span 2; }
.gallery-item:nth-child(4) { grid-column: span 2; }
.gallery-img {
  width: 100%; height: 100%;
  transition: transform 0.6s ease;
}
.gallery-item:hover .gallery-img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,31,22,0.9) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  display: flex; align-items: flex-end; padding: 1.5rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--cream);
}

/* ─── Art Backgrounds ─────────────────────────────────────── */
.art-panorama {
  background: linear-gradient(180deg, #0A1A10 0%, #1C3328 35%, #2A4A38 55%, #1A3020 70%, #0F2018 100%);
  position: relative;
}
.art-panorama::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 55%;
  background: linear-gradient(180deg, #1A3020 0%, #0F2018 100%);
  clip-path: polygon(0 40%, 8% 20%, 16% 35%, 25% 10%, 35% 28%, 45% 5%, 55% 22%, 65% 8%, 75% 25%, 85% 12%, 93% 30%, 100% 18%, 100% 100%, 0 100%);
}
.art-panorama::after {
  content: '';
  position: absolute;
  top: 25%; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(232,98,26,0.2);
  box-shadow: 0 0 80px 30px rgba(232,98,26,0.12);
}
.art-wohnzimmer {
  background: linear-gradient(135deg, #3D2010 0%, #5A3218 30%, #8B6240 60%, #C4956A 100%);
  position: relative;
}
.art-wohnzimmer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 60% 40%, rgba(232,98,26,0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 30% 60%, rgba(139,98,64,0.5) 0%, transparent 40%);
}
.art-kueche {
  background: linear-gradient(160deg, #E8E0D0 0%, #D4C8B0 40%, #C0B090 100%);
  position: relative;
}
.art-kueche::before {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(45,90,61,0.08) 0%, transparent 30%),
    radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.4) 0%, transparent 50%);
}
.art-schlafzimmer {
  background: linear-gradient(160deg, #0D1F2D 0%, #1A3A50 40%, #2A5268 70%, #3A6878 100%);
  position: relative;
}
.art-schlafzimmer::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(232,98,26,0.12) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 50%, rgba(13,31,45,0.6) 100%);
}
.art-terrasse {
  background: linear-gradient(180deg, #87CEAB 0%, #5BA880 30%, #3A8060 60%, #1C5040 100%);
  position: relative;
}
.art-terrasse::before {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: #1A3020;
  clip-path: polygon(0 60%, 12% 30%, 20% 50%, 30% 20%, 40% 45%, 52% 15%, 62% 40%, 74% 25%, 84% 45%, 94% 30%, 100% 50%, 100% 100%, 0 100%);
}
.art-herbst {
  background: linear-gradient(160deg, #8B4A1C 0%, #C47030 30%, #E09050 60%, #F0C070 100%);
  position: relative;
}
.art-herbst::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(139,74,28,0.6) 0%, transparent 40%),
    radial-gradient(ellipse at 70% 60%, rgba(240,192,112,0.4) 0%, transparent 50%),
    linear-gradient(to bottom, transparent 40%, rgba(61,32,16,0.5) 100%);
}

/* ─── Ausstattung / Feature Cards ────────────────────────── */
#ausstattung { background: var(--cream); padding: 7rem 3rem; }
.features-intro {
  max-width: 1200px;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
}
.features-intro p { max-width: 420px; color: var(--stone); line-height: 1.8; font-size: 1rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-card {
  background: white;
  border: 1.5px solid rgba(45,90,61,0.1);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--gold-lt));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  border-radius: 16px 16px 0 0;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(45,90,61,0.1);
  border-color: rgba(45,90,61,0.22);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon { width: 44px; height: 44px; margin-bottom: 1.5rem; color: var(--forest); }
.feature-title {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--pine);
  margin-bottom: 0.75rem;
}
.feature-desc { font-size: 0.88rem; color: var(--stone); line-height: 1.7; }

/* ─── Preise / Buchung ────────────────────────────────────── */
#buchung {
  background: var(--pine);
  padding: 7rem 3rem;
  position: relative;
  overflow: hidden;
}
#buchung::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,98,26,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.buchung-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.buchung-text .section-label { color: var(--gold); }
.buchung-text .section-title { color: var(--cream); }
.buchung-text p { color: rgba(250,250,248,0.65); line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; }
.price-line { display: flex; align-items: baseline; gap: 0.5rem; margin-bottom: 0.5rem; }
.price-num {
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.price-unit { font-size: 0.85rem; color: rgba(250,250,248,0.45); letter-spacing: 0.05em; }
.buchung-form {
  background: rgba(250,250,248,0.06);
  border: 1px solid rgba(250,250,248,0.12);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(10px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.5);
  font-family: 'Syne', sans-serif;
}
.form-group input, .form-group select {
  background: rgba(250,250,248,0.08);
  border: 1.5px solid rgba(250,250,248,0.12);
  border-radius: 10px;
  padding: 0.8rem 1rem;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
  width: 100%;
  -webkit-appearance: none;
}
.form-group input::placeholder { color: rgba(250,250,248,0.28); }
.form-group input:focus, .form-group select:focus { border-color: rgba(232,98,26,0.55); }
.form-group select option { background: var(--pine); }
.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--cream);
  border: none;
  padding: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232,98,26,0.4);
}

/* ─── Price Table ─────────────────────────────────────────── */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
}
.price-table th {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,250,248,0.38);
  padding: 0.75rem 0;
  text-align: left;
  border-bottom: 1px solid rgba(250,250,248,0.1);
}
.price-table td {
  padding: 0.75rem 0;
  color: rgba(250,250,248,0.72);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(250,250,248,0.06);
}
.price-table td:last-child { color: var(--gold); font-weight: 500; }

/* ─── Testimonials ────────────────────────────────────────── */
#bewertungen { background: var(--parchment); padding: 7rem 3rem; }
.bewertungen-header { max-width: 1200px; margin: 0 auto 4rem; text-align: center; }
.stars-avg { display: flex; align-items: center; justify-content: center; gap: 0.4rem; margin-bottom: 1rem; }
.star-icon { color: var(--gold); font-size: 1.2rem; }
.stars-label {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  color: var(--pine);
  margin-left: 0.5rem;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.testi-card {
  background: white;
  border: 1.5px solid rgba(45,90,61,0.1);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.testi-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(45,90,61,0.1); }
.testi-quote-mark {
  font-family: 'Fraunces', serif;
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.22;
  position: absolute;
  top: 1rem; left: 1.5rem;
}
.testi-stars { display: flex; gap: 3px; margin-bottom: 1.2rem; }
.testi-star { color: var(--gold); font-size: 0.85rem; }
.testi-text { font-size: 0.95rem; line-height: 1.8; color: var(--stone); margin-bottom: 1.8rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--forest);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  color: var(--cream);
  flex-shrink: 0;
}
.testi-name { font-weight: 500; font-size: 0.9rem; color: var(--pine); }
.testi-date { font-size: 0.75rem; color: var(--stone); margin-top: 0.2rem; }

/* ─── Lage ────────────────────────────────────────────────── */
#lage { background: var(--cream); padding: 7rem 3rem; }
.lage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}
.lage-text p { color: var(--stone); line-height: 1.8; font-size: 1rem; margin-bottom: 2rem; }
.attractions { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.attraction-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(45,90,61,0.1);
}
.attraction-dist {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  white-space: nowrap;
  min-width: 60px;
}
.attraction-name { font-weight: 500; font-size: 0.9rem; color: var(--pine); }
.attraction-desc { font-size: 0.8rem; color: var(--stone); margin-top: 0.2rem; }
.map-placeholder {
  background: var(--pine);
  border-radius: 20px;
  overflow: hidden;
  height: 450px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-bg { position: absolute; inset: 0; background: linear-gradient(135deg, #1A3628 0%, #2D5A3D 50%, #1A3020 100%); }
.map-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(232,98,26,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(232,98,26,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-content { position: relative; z-index: 2; text-align: center; }
.map-pin {
  width: 48px; height: 48px;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  margin: 0 auto 1.5rem;
  box-shadow: 0 4px 24px rgba(232,98,26,0.55);
  position: relative;
}
.map-pin::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%) rotate(45deg);
  width: 18px; height: 18px;
  background: var(--pine);
  border-radius: 50%;
}
.map-label { font-family: 'Fraunces', serif; font-size: 1.4rem; font-style: italic; color: var(--cream); }
.map-addr { font-size: 0.8rem; color: rgba(250,250,248,0.45); letter-spacing: 0.06em; margin-top: 0.5rem; }
.contact-info { margin-top: 2rem; display: flex; flex-direction: column; gap: 0.8rem; }
.contact-item { display: flex; align-items: center; gap: 0.8rem; font-size: 0.9rem; color: var(--stone); }
.contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ─── Footer ──────────────────────────────────────────────── */
footer { background: var(--dark); padding: 4rem 3rem 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250,250,248,0.08);
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-logo {
  display: block;
  margin-bottom: 0.8rem;
}
.footer-logo img {
  height: 56px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
  opacity: 0.9;
}
.footer-tagline { font-size: 0.8rem; color: rgba(250,250,248,0.32); letter-spacing: 0.05em; }
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(250,250,248,0.42); transition: color 0.3s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy { font-size: 0.78rem; color: rgba(250,250,248,0.22); }
.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { font-size: 0.78rem; color: rgba(250,250,248,0.22); transition: color 0.3s; }
.footer-legal a:hover { color: rgba(250,250,248,0.5); }

/* ─── Cookie Banner ───────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  border-top: 1px solid rgba(232,98,26,0.22);
  padding: 1.2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
#cookie-banner.cookie-hidden { transform: translateY(115%); }
.cookie-text {
  font-size: 0.82rem;
  color: rgba(250,250,248,0.55);
  line-height: 1.65;
  flex: 1;
  min-width: 200px;
}
.cookie-text strong { color: var(--cream); font-weight: 500; }
.cookie-text a { color: var(--gold); text-decoration: underline; }
.cookie-text a:hover { color: var(--gold-lt); }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btns .btn-primary  { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
.cookie-btns .btn-ghost    { padding: 0.6rem 1.5rem; font-size: 0.8rem; }
@media (max-width: 600px) {
  #cookie-banner { padding: 1rem 1.25rem; }
  .cookie-btns { width: 100%; }
  .cookie-btns button { flex: 1; text-align: center; }
}

/* ─── Responsive ──────────────────────────────────────────── */

/* Nav: Hamburger ab 1280px */
@media (max-width: 1280px) {
  nav { padding: 1.2rem 1.5rem; }
  nav.scrolled, nav.solid { padding: 0.8rem 1.5rem; }

  .nav-burger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--pine);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.2rem;
    z-index: 110;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .nav-links a {
    font-size: 1.3rem;
    letter-spacing: 0.08em;
    color: rgba(250,250,248,0.80);
  }
  .nav-links a:hover { color: var(--cream); }
  .nav-cta {
    font-size: 1rem !important;
    padding: 0.75rem 2rem !important;
    margin-top: 0.5rem;
  }
  nav.nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transition: opacity 0.3s ease, visibility 0s linear 0s;
  }
}

@media (max-width: 900px) {
  section { padding: 4rem 1.25rem !important; }
  .buchung-inner, .lage-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, 200px); }
  .gallery-item:first-child, .gallery-item:nth-child(4) { grid-column: span 1; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { flex-direction: column; gap: 2rem; }
  .features-intro { flex-direction: column; }
  .section-title { font-size: clamp(1.9rem, 6.5vw, 2.8rem); }
  .page-header { height: 34vh; min-height: 250px; }
  .page-header-title { font-size: clamp(2.2rem, 7.5vw, 3.8rem); }
}

@media (max-width: 600px) {
  section { padding: 3rem 1.1rem !important; }
  .section-title { font-size: clamp(1.7rem, 7.5vw, 2.3rem) !important; }
  .section-label { font-size: 0.62rem; letter-spacing: 0.2em; }

  .page-header { height: 30vh; min-height: 210px; }
  .page-header-title { font-size: clamp(1.75rem, 8.5vw, 2.4rem) !important; }
  .page-header-content { padding: 1rem 1.5rem; }
  .page-header-label { font-size: 0.6rem; margin-bottom: 0.6rem; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 1.6rem 1.4rem; }
  .feature-title { font-size: 1.05rem; }
  .feature-desc { font-size: 0.84rem; }

  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item { height: 210px; }

  .buchung-form { padding: 1.5rem 1.2rem; }
  .price-num { font-size: 2.4rem; }
  .price-table td, .price-table th { font-size: 0.82rem; padding: 0.6rem 0; }

  .testi-card { padding: 1.6rem 1.4rem; }
  .testi-text { font-size: 0.88rem; line-height: 1.75; }
  .testi-quote-mark { font-size: 4rem; top: 0.6rem; left: 1rem; }

  .map-placeholder { height: 280px; }
  .attraction-dist { font-size: 1.2rem; min-width: 52px; }
  .attraction-name { font-size: 0.85rem; }

  footer { padding: 2.5rem 1.1rem 1.5rem; }
  .footer-copy { font-size: 0.68rem; }
  .footer-legal a { font-size: 0.68rem; }
  .footer-bottom { padding-top: 1rem; }
  .footer-col h4 { margin-bottom: 0.8rem; }
  .footer-col ul { gap: 0.5rem; }
}

/* ─── Bewertungs-Button (alle Seiten) ─────────────────────── */
.gaestebuch-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  background: #1a2e20;
  border-left: 3px solid #E8621A;
  color: #fff;
  text-decoration: none;
  padding: 0.9rem 1.3rem 0.9rem 1.1rem;
  border-radius: 12px;
  box-shadow: 0 6px 28px rgba(0,0,0,0.28);
  z-index: 900;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gaestebuch-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0,0,0,0.35);
}
.gaestebuch-icon { font-size: 1.3rem; line-height: 1; flex-shrink: 0; }
.gaestebuch-text { display: flex; flex-direction: column; gap: 0.1rem; }
.gaestebuch-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #E8621A;
}
.gaestebuch-main {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .gaestebuch-btn { bottom: 1rem; right: 1rem; padding: 0.55rem 0.85rem 0.55rem 0.7rem; gap: 0.55rem; }
  .gaestebuch-label { display: none; }
  .gaestebuch-icon { font-size: 1rem; }
  .gaestebuch-main { font-size: 0.78rem; }
}
