/* ── SELF-HOSTED FONTS ─────────────────────────────────────────────────── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400 900;
  font-display: swap;
  src: url('../fonts/playfair-display-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

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

:root {
  --ink:        #1a1a18;
  --ink-light:  #555550;
  --cream:      #f7f5f0;
  --cream-dark: #ede9e0;
  --forest:     #2c4a2e;
  --forest-mid: #3d6b40;
  --forest-light: #e8f0e8;
  --gold:       #c8a84b;
  --gold-light: #f5edd8;
  --white:      #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:  8px;
  --radius-lg: 16px;
  --shadow:  0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── CONTAINER ─────────────────────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── NAV ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,245,240,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--forest);
  font-weight: 700;
}
.nav__links {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-light);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--forest); }
.nav__cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--forest-mid) !important; }

/* ── BUTTONS ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
}
.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(44,74,46,0.3);
}
.btn--primary:hover {
  background: var(--forest-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(44,74,46,0.4);
}
.btn--full { width: 100%; justify-content: center; }

/* ── HERO ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 64px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/galerie/m125-1.webp');
  background-size: cover;
  background-position: center 40%;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(10,20,10,0.62) 0%,
    rgba(20,36,20,0.50) 50%,
    rgba(10,20,10,0.70) 100%
  );
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.hero__tag {
  display: inline-block;
  background: rgba(200,168,75,0.2);
  color: var(--gold);
  border: 1px solid rgba(200,168,75,0.6);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero__title span {
  color: var(--gold);
  display: block;
}
.hero__sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}
.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.hero__pills span {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(6px);
  padding: 0.5rem 1.25rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
}
.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.5rem;
  color: rgba(255,255,255,0.7);
  animation: bounce 2s infinite;
  z-index: 1;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── SECTIONS ──────────────────────────────────────────────────────────── */
.section { padding: 6rem 0; }
.section--dark {
  background: var(--forest);
  color: var(--white);
}
.section--map { padding-bottom: 0; }

.section__label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.75rem;
}
.section__label--light { color: rgba(255,255,255,0.6); }
.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 3rem;
}
.section__title--light { color: var(--white); }

/* ── FACTS ─────────────────────────────────────────────────────────────── */
.facts__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.fact {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
  transition: transform 0.2s, box-shadow 0.2s;
}
.fact:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.fact__icon { font-size: 2rem; margin-bottom: 0.75rem; }
.fact__value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  word-break: break-word;
  overflow-wrap: break-word;
}
.fact__label { font-size: 0.85rem; color: var(--ink-light); }

/* ── DATA TABLE ────────────────────────────────────────────────────────── */
.datatable {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--cream-dark);
}
.datatable__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  border-bottom: 1px solid var(--cream-dark);
}
.datatable__row:last-child { border-bottom: none; }
.datatable__key {
  padding: 1rem 1.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-light);
  background: var(--cream);
  border-right: 1px solid var(--cream-dark);
}
.datatable__val {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: var(--ink);
}

/* ── LAGE ──────────────────────────────────────────────────────────────── */
.lage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.lage__item {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: background 0.2s;
}
.lage__item:hover { background: rgba(255,255,255,0.13); }
.lage__icon { font-size: 2rem; margin-bottom: 1rem; }
.lage__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.95);
}
.lage__item p { font-size: 0.9rem; color: rgba(255,255,255,0.7); line-height: 1.5; }

/* ── GALLERY ───────────────────────────────────────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.gallery__item { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery__item--wide { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery__item:hover img { transform: scale(1.04); }
.gallery__placeholder {
  width: 100%; height: 100%; min-height: 200px;
  background: var(--cream-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--ink-light);
  font-size: 0.85rem;
  text-align: center;
  padding: 1rem;
}
.gallery__placeholder span { font-size: 2rem; }
.gallery__placeholder small { color: var(--ink-light); opacity: 0.7; }
.gallery__hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--ink-light);
  font-style: italic;
  margin-bottom: 3rem;
}

/* ── LIGHTBOX ──────────────────────────────────────────────────────────── */
.gallery__item { position: relative; }
.gallery__item[data-src] { cursor: zoom-in; }
.gallery__item[data-src]::after {
  content: '⤢';
  position: absolute;
  top: 0.6rem;
  right: 0.6rem;
  width: 32px;
  height: 32px;
  background: rgba(0,0,0,0.45);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  opacity: 0;
  transition: opacity 0.2s;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.gallery__item[data-src]:hover::after { opacity: 1; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,10,8,0.96);
  align-items: center;
  justify-content: center;
}
.lightbox.active { display: flex; }

.lightbox__figure {
  max-width: min(90vw, 1200px);
  text-align: center;
  padding: 0 5rem;
}
.lightbox__img {
  max-width: 100%;
  max-height: 82vh;
  border-radius: var(--radius);
  object-fit: contain;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  display: block;
  margin: 0 auto;
}
.lightbox__caption {
  color: rgba(255,255,255,0.55);
  font-size: 0.875rem;
  margin-top: 1.25rem;
  font-style: italic;
}
.lightbox__close,
.lightbox__prev,
.lightbox__next {
  position: fixed;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  line-height: 1;
  transition: background 0.2s, transform 0.15s;
  backdrop-filter: blur(8px);
}
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover { background: rgba(255,255,255,0.2); }
.lightbox__close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1rem;
  width: 44px;
  height: 44px;
}
.lightbox__prev {
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__next {
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
}
.lightbox__prev:hover { transform: translateY(-50%) translateX(-2px); }
.lightbox__next:hover { transform: translateY(-50%) translateX(2px); }

/* ── DOWNLOAD ──────────────────────────────────────────────────────────── */
/* ── LAGEPLAN / BEBAUUNGSKONZEPT ────────────────────────────────────────── */
.lageplan__wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 3rem;
  align-items: start;
  margin-top: 2.5rem;
}
.lageplan__img-wrap {
  position: relative;
  cursor: zoom-in;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.lageplan__img-wrap img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
}
.lageplan__img-wrap:hover img {
  transform: scale(1.02);
}
.lageplan__hint {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.8rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  pointer-events: none;
}
.lageplan__info p {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.lageplan__disclaimer {
  font-size: 0.85rem !important;
  color: rgba(255,255,255,0.5) !important;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .lageplan__wrap { grid-template-columns: 1fr; }
}

.download__box {
  background: var(--forest-light);
  border: 1px solid rgba(44,74,46,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.download__text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--forest);
  margin-bottom: 0.4rem;
}
.download__text p { font-size: 0.9rem; color: var(--ink-light); }

/* ── MAP LABEL ─────────────────────────────────────────────────────────── */
.map-label {
  background: #2c4a2e !important;
  color: #fff !important;
  border: none !important;
  border-radius: 100px !important;
  padding: 6px 14px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(44,74,46,0.4) !important;
  white-space: nowrap !important;
}
.map-label::before {
  border-top-color: #2c4a2e !important;
}

/* ── MAP ───────────────────────────────────────────────────────────────── */
#map {
  height: 460px;
  width: 100%;
  margin-top: 2rem;
  border-top: 1px solid var(--cream-dark);
}

.map__hint {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--ink-light);
  text-align: center;
}

/* ── KONTAKT ───────────────────────────────────────────────────────────── */
.kontakt__wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.kontakt__info p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.kontakt__info ul { list-style: none; }
.kontakt__info li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.kontakt__direct {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.btn--whatsapp {
  background: #25d366;
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.btn--whatsapp:hover {
  background: #1fba59;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.55);
}
.btn--call {
  background: rgba(255,255,255,0.18);
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.45);
  backdrop-filter: blur(4px);
}
.btn--call:hover {
  background: rgba(255,255,255,0.28);
  transform: translateY(-2px);
}

/* Form */
.kontakt__form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.form__group { margin-bottom: 1.25rem; }
.form__group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-light);
  margin-bottom: 0.4rem;
}
.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--cream-dark);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--forest);
  background: var(--white);
}
.form__group textarea { resize: vertical; min-height: 100px; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.form__check input { width: auto; margin-top: 3px; flex-shrink: 0; }
.form__check label { font-size: 0.8rem; margin: 0; }
.form__success {
  display: none;
  background: var(--forest-light);
  color: var(--forest);
  border: 1px solid rgba(44,74,46,0.3);
  border-radius: var(--radius);
  padding: 1rem;
  margin-top: 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form__success.visible { display: block; }

/* ── FOOTER ────────────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  text-align: center;
  font-size: 0.85rem;
  line-height: 1.8;
}
.footer a { color: rgba(255,255,255,0.6); text-decoration: underline; }
.footer__disclaimer {
  font-size: 0.78rem;
  margin-top: 0.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.footer__legal {
  margin-top: 1rem;
  font-size: 0.8rem;
}
.footer__legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
}
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ── UMGEBUNGSKARTE ────────────────────────────────────────────────────── */
#umgebungsMap {
  height: 520px;
  width: 100%;
  margin-top: 1.5rem;
  border-top: 1px solid var(--cream-dark);
}

.poi-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: -1rem;
}

.poi-filter {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1.5px solid var(--cream-dark);
  background: var(--white);
  color: var(--ink-light);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.poi-filter:hover { border-color: var(--forest); color: var(--forest); }
.poi-filter.active                        { background: var(--forest);  border-color: var(--forest);  color: var(--white); }
.poi-filter[data-cat="supermarkt"].active { background: #7d3c98; border-color: #7d3c98; }
.poi-filter[data-cat="restaurant"].active { background: #c8863c; border-color: #c8863c; }
.poi-filter[data-cat="bildung"].active    { background: #2980b9; border-color: #2980b9; }
.poi-filter[data-cat="gesundheit"].active { background: #c0392b; border-color: #c0392b; }
.poi-filter[data-cat="sport"].active      { background: #e67e22; border-color: #e67e22; }

.poi-pin {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
}

.poi-popup { min-width: 175px; font-family: 'DM Sans', sans-serif; }
.poi-popup__name { font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; color: #1a1a18; }
.poi-popup__meta { font-size: 0.8rem; color: #555550; margin-bottom: 0.4rem; }
.poi-popup__link { display: inline-block; font-size: 0.8rem; font-weight: 500; color: #2c4a2e; text-decoration: underline; }

/* ── RESPONSIVE ────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  #umgebungsMap { height: 420px; }
  .nav__links { display: none; }
  .facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lage__grid { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .datatable__row { grid-template-columns: 1fr; }
  .datatable__key { border-right: none; border-bottom: 1px solid var(--cream-dark); }
  .kontakt__wrap { grid-template-columns: 1fr; gap: 2rem; }
  .download__box { flex-direction: column; text-align: center; }
}
@media (max-width: 560px) {
  #umgebungsMap { height: 360px; }
  .facts__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lage__grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
  .hero__title { font-size: 3rem; }
}
