/* =============================================
   Ferienhof Bauer Münchberg – Modern Redesign
   Corporate Color: #680d2f (Bordeauxrot)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Raleway:wght@300;400;500;600&display=swap');

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

:root {
  --primary:       #680d2f;
  --primary-dark:  #4a0921;
  --primary-light: #8b1a3f;
  --accent:        #c4a35a;
  --accent-light:  #e8d5a3;
  --bg:            #faf7f4;
  --bg-light:      #f5f0eb;
  --text:          #2c2c2c;
  --text-light:    #6b6b6b;
  --white:         #ffffff;
  --shadow:        0 4px 24px rgba(104,13,47,0.12);
  --shadow-lg:     0 8px 40px rgba(104,13,47,0.18);
  --radius:        8px;
  --radius-lg:     16px;
  --transition:    0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background-color: var(--bg);
  background-image: url('../images/holzstruktur_background_transparenter.jpg');
  background-attachment: fixed;
  background-size: cover;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
  color: var(--primary);
}

a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-light); }

img { max-width: 100%; height: auto; display: block; }

/* ─── Page Wrapper ─── */
.page-wrapper {
  max-width: 1100px;
  margin: 30px auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ─── Page Header (Unterseiten) ─── */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 3rem 2.5rem;
  color: white;
  text-align: center;
}
.page-header h1 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}
.page-header p {
  color: rgba(255,255,255,0.8);
  margin-top: 0.5rem;
}

/* ─── Navigation ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  min-height: 60px;
  position: relative;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-logo span {
  color: var(--accent-light);
  font-size: 0.72rem;
  display: block;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0;
  flex-wrap: nowrap;
  align-items: center;
}
.nav-links li a {
  display: block;
  padding: 0.45rem 0.7rem;
  color: rgba(255,255,255,0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.nav-links li a:hover,
.nav-links li a.active {
  background: rgba(255,255,255,0.15);
  color: var(--white);
}
.nav-links li a.nav-btn {
  background: var(--accent);
  color: var(--primary-dark);
  font-weight: 600;
  margin-left: 0.4rem;
}
.nav-links li a.nav-btn:hover {
  background: var(--accent-light);
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Hero Slider ─── */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(104,13,47,0.65) 0%, rgba(0,0,0,0.25) 100%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 3rem;
}
.hero-text {
  color: var(--white);
  max-width: 560px;
}
.hero-text h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  margin-bottom: 1rem;
  line-height: 1.15;
}
.hero-text p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.8rem;
  font-weight: 300;
  text-shadow: 0 1px 6px rgba(0,0,0,0.3);
}
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition);
}
.hero-dot.active { background: var(--white); transform: scale(1.3); }

/* ─── Buttons ─── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-accent {
  background: var(--accent);
  color: var(--primary-dark);
}
.btn-accent:hover {
  background: #b08f4a;
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
}
.btn-white:hover {
  background: var(--accent-light);
}

/* ─── Section Styles ─── */
.section {
  padding: 3.5rem 2.5rem;
}
.section-alt {
  background: var(--bg-light);
}
.section-dark {
  background: var(--primary);
  color: var(--white);
}
.section-dark h2, .section-dark h3 {
  color: var(--white);
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-header h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
.section-header p {
  color: var(--text-light);
  font-size: 1rem;
}
.section-divider {
  width: 50px;
  height: 3px;
  background: var(--accent);
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

/* ─── Layout Utility Grids (responsive-safe, NO inline styles!) ─── */

/* 2-Spalten-Grid (z.B. Text + Bild) */
.grid-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
/* 2-Spalten enge Liste (z.B. Ausstattungs-Checkboxen) */
.grid-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem 0.75rem;
  margin-top: 1.5rem;
}
.grid-checklist-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
}
/* 3-Spalten-Grid (z.B. Highlights auf Startseite) */
.grid-3col {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* Wohnungs-Bild (feste Höhe, responsiv) */
.apt-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.apt-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

/* Highlight-Kacheln auf Startseite */
.highlight-item {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--bg-light);
  text-align: center;
}
.highlight-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.highlight-item h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
}
.highlight-item p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ─── Feature Cards (Homepage) ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 2px 12px rgba(104,13,47,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.feature-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 3px solid var(--accent-light);
}
.feature-card h4 {
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--primary);
}
.feature-card p {
  font-size: 0.88rem;
  color: var(--text-light);
}

/* ─── Welcome Section ─── */
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.welcome-text h2 { font-size: 1.9rem; margin-bottom: 1rem; }
.welcome-text p { color: var(--text-light); margin-bottom: 1rem; }
.welcome-text p strong { color: var(--primary); }
.welcome-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.welcome-image img { width: 100%; height: 320px; object-fit: cover; }

/* ─── CTA Banner ─── */
.cta-banner {
  text-align: center;
  padding: 3rem 2rem;
}
.cta-banner h2 { color: var(--white); font-size: 1.8rem; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 1.5rem; }
.cta-banner .btn { margin: 0.25rem; }

/* ─── Gallery Grid ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  /* aspect-ratio statt fester Höhe – funktioniert auf allen Größen */
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(104,13,47,0.8));
  color: var(--white);
  padding: 1.5rem 1rem 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: absolute;
  top: -40px; right: 0;
  background: none; border: none;
  color: var(--white); font-size: 2rem;
  cursor: pointer; line-height: 1;
}
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%; transform: translateY(-50%);
  background: rgba(104,13,47,0.7);
  border: none; color: var(--white);
  font-size: 1.5rem; padding: 1rem 0.75rem;
  cursor: pointer; border-radius: 4px;
  transition: background var(--transition);
  z-index: 10000;
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--primary); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.75);
  margin-top: 0.75rem;
  font-size: 0.9rem;
}

/* ─── Pricing ─── */
.pricing-intro {
  max-width: 680px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: var(--text-light);
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  border-left: 4px solid var(--primary);
}
.pricing-card h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.pricing-card .price-main {
  font-size: 2.2rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  font-weight: 700;
}
.pricing-card .price-main span { font-size: 1rem; color: var(--text-light); font-family: 'Raleway', sans-serif; }
.pricing-list {
  list-style: none;
  margin-top: 1.2rem;
}
.pricing-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--bg-light);
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.excursion-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}
.excursion-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: 0 2px 10px rgba(104,13,47,0.07);
  transition: transform var(--transition);
}
.excursion-card:hover { transform: translateY(-3px); }
.excursion-card h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
.excursion-card p { font-size: 0.82rem; color: var(--text-light); margin-bottom: 0.6rem; }
.excursion-card a {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.excursion-card a:hover { color: var(--accent); }
.notice {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 1.5rem;
  font-style: italic;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { font-size: 1.7rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}
.contact-detail .ci-icon {
  width: 42px; height: 42px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--primary);
  flex-shrink: 0;
}
.contact-detail .ci-text { font-size: 0.95rem; color: var(--text-light); }
.contact-detail .ci-text strong { display: block; color: var(--text); font-weight: 600; margin-bottom: 2px; }
.contact-detail .ci-text a { color: var(--primary); }
.contact-detail .ci-text a:hover { color: var(--accent); }

/* ─── Forms ─── */
.form-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-card h3 { font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--radius);
  font-family: 'Raleway', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(104,13,47,0.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ─── Map ─── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
}
.map-container iframe {
  display: block;
  width: 100%;
  height: 400px;
  border: none;
}

/* ─── Content Pages (Impressum, Datenschutz) ─── */
.content-page {
  max-width: 780px;
  margin: 0 auto;
}
.content-page h2 { font-size: 1.9rem; margin-bottom: 0.5rem; }
.content-page h3 { font-size: 1.2rem; margin-top: 2rem; margin-bottom: 0.75rem; }
.content-page p { color: var(--text-light); margin-bottom: 1rem; font-size: 0.95rem; }
.content-page ul { list-style: disc; padding-left: 1.5rem; color: var(--text-light); font-size: 0.95rem; margin-bottom: 1rem; }
.content-page a { color: var(--primary); }

/* ─── Footer ─── */
.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.7);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  padding: 2.5rem 2.5rem 1.5rem;
}
.footer-col h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 1rem;
}
.footer-col p, .footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.9;
}
.footer-col a:hover { color: var(--accent-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a { color: rgba(255,255,255,0.55); margin-left: 1rem; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ─── Anfahrt ─── */
.anfahrt-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2.5rem;
  align-items: start;
}
.anfahrt-info h2 { font-size: 1.7rem; margin-bottom: 1.2rem; }
.anfahrt-info address {
  font-style: normal;
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 2;
  margin-bottom: 1.5rem;
}
.anfahrt-info address strong { color: var(--text); }

/* ─── Utilities ─── */
.text-center { text-align: center; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ═══════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════ */

/* ── Tablet Landscape (max 900px) ── */
@media (max-width: 900px) {
  .features-grid        { grid-template-columns: repeat(2, 1fr); }
  .welcome-grid         { grid-template-columns: 1fr; }
  .welcome-image        { order: -1; }
  .contact-grid         { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr 1fr; }
  .excursion-grid       { grid-template-columns: 1fr 1fr; }
  .anfahrt-grid         { grid-template-columns: 1fr; }
  .grid-2col            { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3col            { grid-template-columns: repeat(2, 1fr); }
  /* Bild bei einspaltigem grid-2col nach oben */
  .grid-2col .apt-image { order: -1; }
  .apt-image img        { height: 260px; }
  .welcome-image img    { height: 260px; }
  .hero                 { height: 380px; }
  .hero-text h1         { font-size: 2rem; }
}

/* ── Tablet Portrait (max 768px) ── */
@media (max-width: 768px) {
  /* Nav: Hamburger-Menü einblenden */
  .nav-toggle           { display: flex; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px; left: 0; right: 0;
    background: var(--primary-dark);
    padding: 0.75rem 0 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 999;
  }
  .nav-links.open       { display: flex; }
  .nav-links li a {
    padding: 0.8rem 2rem;
    font-size: 0.95rem;
    border-radius: 0;
    white-space: normal;
  }
  .nav-links li a.nav-btn {
    margin: 0.6rem 1.5rem 0;
    border-radius: 4px;
    text-align: center;
  }
  .gallery-grid         { grid-template-columns: repeat(2, 1fr); }
  .map-container iframe { height: 300px; }
}

/* ── Mobile (max 640px) ── */
@media (max-width: 640px) {
  .page-wrapper         { margin: 0; border-radius: 0; }
  .page-header          { padding: 2rem 1.25rem; }
  .page-header h1       { font-size: 1.7rem; }

  .hero                 { height: 280px; }
  .hero-overlay         { padding: 1.25rem; }
  .hero-text h1         { font-size: 1.5rem; line-height: 1.2; }
  .hero-text p          { display: none; }
  .hero-text .btn       { font-size: 0.8rem; padding: 0.6rem 1.2rem; }

  .section              { padding: 2rem 1.1rem; }
  .cta-banner           { padding: 2rem 1.1rem; }
  .features-grid        { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .grid-3col            { grid-template-columns: 1fr; }
  .grid-checklist       { grid-template-columns: 1fr; }
  .form-row             { grid-template-columns: 1fr; }
  .excursion-grid       { grid-template-columns: 1fr; }
  .footer-inner         { grid-template-columns: 1fr; gap: 1.5rem; padding: 2rem 1.25rem 1.25rem; }
  .footer-bottom        { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1rem 1.25rem; }
  .footer-bottom a      { margin: 0 0.5rem; }
  .pricing-card         { padding: 1.25rem; }
  .form-card            { padding: 1.25rem; }
  .apt-image img        { height: 220px; }
  .welcome-image img    { height: 220px; }
  .btn-group            { flex-direction: column; }
  .btn-group .btn       { text-align: center; }
}

/* ── Kleines Mobile (max 420px) ── */
@media (max-width: 420px) {
  .features-grid        { grid-template-columns: 1fr; }
  .gallery-grid         { grid-template-columns: 1fr; }
  .hero-text .btn + .btn { display: none; }
}
