/* ============================================================
   Ferienwohnung bei Onkel Willi – Hauptstylesheet
   Farben: Dunkelgrün #1E3A1E | Gold #C9A84C | Creme #F8F4EC
   Schriften: Playfair Display, Dancing Script, Open Sans
   ============================================================ */

:root {
  --green-dark:   #1E3A1E;
  --green-mid:    #2D5016;
  --green-light:  #4A7C3F;
  --green-pale:   #E8F0E8;
  --gold:         #C9A84C;
  --gold-light:   #E0C97B;
  --gold-dark:    #A08030;
  --cream:        #F8F4EC;
  --cream-dark:   #EDE8DE;
  --text-dark:    #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #7A7A7A;
  --white:        #FFFFFF;
  --shadow:       0 4px 20px rgba(30,58,30,.12);
  --shadow-hover: 0 8px 32px rgba(30,58,30,.20);
  --radius:       12px;
  --transition:   .3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

img { max-width: 100%; height: auto; display: block; }
a  { color: var(--green-mid); text-decoration: none; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.script-font { font-family: 'Dancing Script', cursive; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 50px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .04em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-align: center;
}
.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-green {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}
.btn-outline-green {
  background: transparent;
  color: var(--green-mid);
  border-color: var(--green-mid);
}
.btn-outline-green:hover {
  background: var(--green-mid);
  color: var(--white);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-dark);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--green-dark);
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: var(--transition);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo-link { flex-shrink: 0; }
.site-logo { height: 64px; width: auto; }

.main-nav { display: flex; align-items: center; gap: 8px; }
.main-nav > ul {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.main-nav ul li { position: relative; }
.main-nav ul li a {
  display: block;
  padding: 8px 12px;
  font-size: .88rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  white-space: nowrap;
  transition: var(--transition);
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
  color: var(--green-mid);
  background: var(--green-pale);
}

/* Dropdown */
.has-dropdown > ul.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  min-width: 200px;
  padding: 8px 0;
  flex-direction: column;
  list-style: none;
  z-index: 100;
}
.has-dropdown:hover > ul.dropdown { display: flex; }
.dropdown li a { padding: 10px 20px; font-size: .88rem; }

.nav-cta { margin-left: 12px; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(30,58,30,.75) 0%,
      rgba(45,80,22,.55) 50%,
      rgba(201,168,76,.35) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><linearGradient id="sky" x1="0" y1="0" x2="0" y2="1"><stop offset="0" stop-color="%2387CEEB"/><stop offset="1" stop-color="%23E8D5A3"/></linearGradient><linearGradient id="field" x1="0" y1="0" x2="0" y2="1"><stop offset="0" stop-color="%234A7C3F"/><stop offset="1" stop-color="%232D5016"/></linearGradient></defs><rect width="1200" height="800" fill="url(%23sky)"/><rect y="520" width="1200" height="280" fill="url(%23field)"/><ellipse cx="200" cy="520" rx="180" ry="40" fill="%234A7C3F" opacity=".6"/><ellipse cx="1000" cy="520" rx="160" ry="35" fill="%232D5016" opacity=".5"/><rect x="480" y="300" width="240" height="220" rx="4" fill="%23C9A07A"/><rect x="440" y="250" width="320" height="60" rx="4" fill="%238B4513" transform="skewY(-2)"/><rect x="500" y="350" width="60" height="80" rx="3" fill="%234A7C3F"/><rect x="640" y="360" width="50" height="50" rx="3" fill="%2387CEEB" opacity=".8"/><polygon points="200,400 260,300 320,400" fill="%234A7C3F"/><polygon points="880,380 950,260 1020,380" fill="%232D5016"/><circle cx="900" cy="120" r="60" fill="%23FFD700" opacity=".8"/></svg>') center/cover no-repeat;
}

.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 48px 24px;
  max-width: 860px;
}
.hero-logo-large {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--white);
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  margin: 0 auto 32px;
}
.hero h1 {
  color: var(--white);
  text-shadow: 0 2px 16px rgba(0,0,0,.4);
  margin-bottom: 16px;
}
.hero .script-font {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: 24px;
}
.hero p {
  font-size: 1.15rem;
  opacity: .92;
  max-width: 600px;
  margin: 0 auto 40px;
}
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Quick Booking Bar */
.quick-booking {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 32px;
  margin: -60px auto 0;
  position: relative;
  z-index: 10;
  max-width: 960px;
}
.quick-booking h3 {
  color: var(--green-dark);
  margin-bottom: 20px;
  font-size: 1.3rem;
}
.quick-booking-form {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: .05em;
}
.form-group select,
.form-group input[type="date"],
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
  padding: 12px 16px;
  border: 2px solid var(--cream-dark);
  border-radius: 8px;
  font-family: 'Open Sans', sans-serif;
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: var(--transition);
  width: 100%;
}
.form-group select:focus,
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  background: var(--white);
}

/* ── SECTION STYLES ── */
section { padding: 80px 0; }
.section-dark { background: var(--green-dark); color: var(--white); }
.section-cream { background: var(--cream); }
.section-green-pale { background: var(--green-pale); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .eyebrow {
  font-family: 'Open Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--text-mid); max-width: 600px; margin: 0 auto; }
.section-dark .section-header p { color: rgba(255,255,255,.8); }

/* ── WOHNUNG CARDS ── */
.wohnungen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.wohnung-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.wohnung-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.card-image {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.wohnung-card:hover .card-image img { transform: scale(1.05); }

/* Placeholder image styles */
.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.9);
  font-family: 'Open Sans', sans-serif;
}
.img-placeholder .ph-icon { font-size: 3.5rem; margin-bottom: 8px; }
.img-placeholder .ph-label { font-size: .85rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }

.ph-friesenstube { background: linear-gradient(135deg, #2D5016 0%, #4A7C3F 50%, #C9A84C 100%); }
.ph-ankerplatz   { background: linear-gradient(135deg, #1A3A5C 0%, #2E6DA4 50%, #6AAFE0 100%); }
.ph-moewennest   { background: linear-gradient(135deg, #5A4A2A 0%, #A08040 50%, #D4C080 100%); }
.ph-hero         { background: linear-gradient(135deg, #1E3A1E 0%, #2D5016 40%, #C9A84C 100%); }
.ph-ostfriesland { background: linear-gradient(135deg, #2D5016 0%, #87CEAA 60%, #87CEEB 100%); }
.ph-willi        { background: linear-gradient(135deg, #2D5016 0%, #4A7C3F 100%); }
.ph-interior     { background: linear-gradient(135deg, #8B7355 0%, #C9A07A 50%, #F5E8D0 100%); }

.card-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--green-dark);
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: var(--text-light);
}
.card-meta span { display: flex; align-items: center; gap: 4px; }
.card-body h3 { margin-bottom: 12px; color: var(--green-dark); }
.card-body p { color: var(--text-mid); font-size: .92rem; margin-bottom: 20px; flex: 1; }
.card-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--cream-dark);
}
.price-amount { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--green-mid); font-weight: 700; }
.price-unit { font-size: .8rem; color: var(--text-light); }

/* ── FEATURES GRID ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.feature-item {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.feature-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.feature-icon { font-size: 2.8rem; margin-bottom: 16px; display: block; }
.feature-item h3 { font-size: 1.1rem; color: var(--green-dark); margin-bottom: 8px; }
.feature-item p { font-size: .88rem; color: var(--text-mid); }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold-light);
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
}
.review-stars { color: var(--gold); margin-bottom: 12px; font-size: 1.1rem; }
.stern.aktiv { color: var(--gold); }
.stern { color: var(--cream-dark); }
.review-text { font-style: italic; color: var(--text-mid); margin-bottom: 20px; font-size: .93rem; line-height: 1.7; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.review-name { font-weight: 700; font-size: .9rem; color: var(--green-dark); }
.review-ort { font-size: .8rem; color: var(--text-light); }

/* ── CALENDAR ── */
.calendar-section { background: var(--cream); }
.calendar-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.calendar-month {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.calendar-header h4 { font-size: 1rem; color: var(--green-dark); }
.cal-nav {
  background: none;
  border: 2px solid var(--cream-dark);
  border-radius: 6px;
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.cal-nav:hover { border-color: var(--green-mid); color: var(--green-mid); }
.calendar-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.cal-weekday {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  padding: 4px 0;
}
.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .82rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}
.cal-day.empty { cursor: default; }
.cal-day.available:hover { background: var(--green-pale); color: var(--green-mid); }
.cal-day.booked { background: #FFEBEE; color: #C62828; cursor: not-allowed; text-decoration: line-through; }
.cal-day.blocked { background: var(--cream-dark); color: var(--text-light); cursor: not-allowed; }
.cal-day.selected-start,
.cal-day.selected-end { background: var(--green-mid); color: var(--white); border-radius: 6px; }
.cal-day.in-range { background: var(--green-pale); color: var(--green-mid); border-radius: 0; }
.cal-day.today { font-weight: 700; border: 2px solid var(--gold); }
.cal-day.past { color: var(--cream-dark); cursor: not-allowed; }

.calendar-legend {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: .8rem;
}
.legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot {
  width: 12px; height: 12px; border-radius: 3px;
  flex-shrink: 0;
}
.dot-available { background: var(--green-pale); border: 1px solid var(--green-mid); }
.dot-booked    { background: #FFEBEE; border: 1px solid #C62828; }
.dot-blocked   { background: var(--cream-dark); }
.dot-selected  { background: var(--green-mid); }

/* ── BOOKING FORM ── */
.booking-section { padding: 80px 0; }
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}
.booking-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 40px;
}
.booking-summary-card {
  background: var(--green-dark);
  color: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  position: sticky;
  top: 100px;
}
.booking-summary-card h3 { color: var(--gold-light); margin-bottom: 20px; }
.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .9rem;
}
.summary-row:last-of-type { border-bottom: none; }
.summary-total {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--gold-light);
  font-weight: 700;
}
/* ── Staffelpreise in Booking-Sidebar ── */
.staffel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 12px;
  border-radius: 7px;
  margin-bottom: 4px;
  transition: background .2s, outline .2s;
}
.staffel-row:hover { background: rgba(255,255,255,.06); }
.staffel-row.aktiv {
  background: rgba(201,168,76,.15);
  outline: 1px solid rgba(201,168,76,.4);
}
.staffel-von {
  font-size: .88rem;
  color: rgba(255,255,255,.85);
}
.staffel-bis {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-left: 4px;
}
.staffel-preis {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--gold-light);
  font-weight: 700;
  white-space: nowrap;
}
.staffel-preis small {
  font-family: 'Open Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  color: rgba(255,255,255,.55);
  margin-left: 2px;
}
.total-row { margin-top: 4px; padding-top: 4px; border-top: 1px solid rgba(255,255,255,.15); }

.payment-options { margin-top: 24px; }
.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 8px;
  margin-bottom: 12px;
  cursor: pointer;
  transition: var(--transition);
}
.payment-option:hover { border-color: var(--gold); }
.payment-option input[type="radio"] { margin-top: 2px; flex-shrink: 0; }
.payment-option-label { font-size: .88rem; }
.payment-option-label strong { display: block; color: var(--gold-light); margin-bottom: 2px; }

/* ── WOHNUNG DETAIL ── */
.detail-hero { padding-top: 80px; }
.detail-gallery {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 8px;
  border-radius: var(--radius);
  overflow: hidden;
  height: 480px;
}
.gallery-main { grid-row: 1 / 3; }
.gallery-main img,
.gallery-thumb img {
  width: 100%; height: 100%; object-fit: cover;
}
.gallery-main .img-placeholder,
.gallery-thumb .img-placeholder { height: 100%; }
.gallery-thumb { overflow: hidden; }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  margin-top: 48px;
}
.ausstattung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.ausstattung-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--cream);
  border-radius: 8px;
  font-size: .88rem;
  color: var(--text-mid);
}
.ausstattung-item .icon { color: var(--green-mid); font-size: 1.1rem; }

/* ── OSTFRIESLAND PAGE ── */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.activity-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.activity-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.activity-image { height: 200px; overflow: hidden; }
.activity-image img { width: 100%; height: 100%; object-fit: cover; }
.activity-body { padding: 24px; }
.activity-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.activity-body h3 { font-size: 1.15rem; margin-bottom: 10px; color: var(--green-dark); }
.activity-body p { font-size: .88rem; color: var(--text-mid); }
.activity-meta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
  font-size: .8rem;
  color: var(--text-light);
}

/* ── ÜBER UNS ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-hover);
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}
.about-content h2 { margin-bottom: 24px; color: var(--green-dark); }
.about-content p { color: var(--text-mid); margin-bottom: 16px; }
.about-signature {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--green-mid);
  margin-top: 24px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--green-dark);
  padding: 140px 0 70px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,168,76,.15) 0%, transparent 70%);
}
.page-hero .eyebrow {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,.8); max-width: 560px; margin: 16px auto 0; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-info h3 { margin-bottom: 24px; color: var(--green-dark); }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px; height: 48px;
  background: var(--green-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-details h4 { font-size: 1rem; color: var(--green-dark); margin-bottom: 4px; }
.contact-details p, .contact-details a { font-size: .93rem; color: var(--text-mid); }

/* ── FORM STYLES ── */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-full { grid-column: 1 / -1; }
.form-group { margin-bottom: 20px; }
textarea.form-group { height: 140px; }
.form-group textarea { height: 140px; resize: vertical; }
.form-submit { margin-top: 8px; }
.form-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--text-mid);
  cursor: pointer;
}
.form-check input { margin-top: 3px; }

/* ── MESSAGES ── */
.alert {
  padding: 16px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: .92rem;
}
.alert-success { background: #E8F5E9; color: #2E7D32; border-left: 4px solid #4CAF50; }
.alert-error   { background: #FFEBEE; color: #C62828; border-left: 4px solid #F44336; }
.alert-info    { background: var(--green-pale); color: var(--green-mid); border-left: 4px solid var(--green-mid); }

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.8);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-logo { height: 80px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-family: 'Dancing Script', cursive; font-size: 1.1rem; color: var(--gold-light); margin-bottom: 12px; }
.footer-col h4 { color: var(--white); font-size: 1rem; margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,.7); font-size: .9rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold-light); }
address { font-style: normal; }
address p { margin-bottom: 8px; font-size: .9rem; }
address a { color: rgba(255,255,255,.7); }
address a:hover { color: var(--gold-light); }
.payment-icons { display: flex; gap: 8px; margin-top: 16px; flex-wrap: wrap; }
.payment-badge {
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.3);
  font-size: .78rem;
  color: rgba(255,255,255,.8);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 20px 0;
  text-align: center;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb {
  padding: 16px 0;
  font-size: .83rem;
  color: var(--text-light);
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a { color: var(--green-mid); }
.breadcrumb span::before { content: '›'; margin-right: 8px; }

/* ── SCROLL UP BUTTON ── */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px; height: 48px;
  background: var(--green-mid);
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--green-dark); transform: translateY(-3px); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed;
    inset: 80px 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.12);
    gap: 0;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > ul { flex-direction: column; gap: 4px; }
  .main-nav ul li a { padding: 12px 16px; font-size: 1rem; }
  .dropdown { position: static !important; box-shadow: none !important; border: none !important; background: var(--cream) !important; border-radius: 8px !important; margin: 4px 0 0 16px !important; }
  .has-dropdown > ul.dropdown { display: flex !important; }
  .nav-cta { align-self: flex-start; margin-top: 16px; margin-left: 0; }
  .hero-logo-large { width: 160px; height: 160px; }
  .quick-booking-form { grid-template-columns: 1fr; }
  .quick-booking { margin: 16px; border-radius: var(--radius); }
  .calendar-container { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .detail-gallery { grid-template-columns: 1fr; height: auto; }
  .gallery-main { height: 280px; }
  .gallery-thumb { height: 160px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .wohnungen-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  section { padding: 60px 0; }
  .page-hero { padding: 120px 0 50px; }
  .booking-form-card { padding: 24px; }
}
