:root {
  color-scheme: light;
  --ink: #17211d;
  --muted: #5c6a64;
  --soft: #f4f7f1;
  --paper: #ffffff;
  --line: #dbe4dd;
  --forest: #12372f;
  --forest-2: #1f5d4b;
  --leaf: #4e9f67;
  --water: #2d6f8f;
  --sun: #f4c542;
  --clay: #b4613d;
  --shadow: 0 18px 55px rgba(18, 55, 47, 0.18);
  --radius: 8px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100svh;
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #fbfcf8;
  line-height: 1.5;
}

main {
  flex: 1 0 auto;
}

body.map-fullscreen {
  overflow: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

button,
input,
select {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.icon-mask {
  display: inline-block;
  width: 1.1em;
  height: 1.1em;
  flex: 0 0 auto;
  background: currentColor;
  -webkit-mask: var(--icon-url) center / contain no-repeat;
  mask: var(--icon-url) center / contain no-repeat;
}

.site-header {
  flex: 0 0 auto;
  position: sticky;
  top: 0;
  z-index: 40;
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px clamp(18px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(219, 228, 221, 0.85);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--sun);
  background: var(--forest);
  border-radius: var(--radius);
}

.brand strong {
  display: block;
  font-size: 1.04rem;
  line-height: 1.05;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: #eef4ee;
  border: 1px solid #dfe8df;
  border-radius: 999px;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 15px;
  color: #33413b;
  text-decoration: none;
  border-radius: 999px;
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--forest);
  background: var(--paper);
}

.header-action,
.button,
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  min-width: 0;
  border: 0;
  border-radius: var(--radius);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.header-action,
.button-primary {
  color: #fff;
  background: var(--forest);
  box-shadow: 0 10px 22px rgba(18, 55, 47, 0.22);
}

.header-action {
  padding: 10px 16px;
}

.button {
  padding: 12px 17px;
}

.button span:not(.icon) {
  min-width: 0;
  text-align: center;
  overflow-wrap: anywhere;
}

.button-secondary {
  color: var(--forest);
  background: #eef4ee;
  border: 1px solid #d5e0d5;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--forest);
  background: var(--paper);
  border: 1px solid var(--line);
}

.header-action:hover,
.button:hover,
.icon-button:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: calc(100svh - var(--header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -3;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 23, 20, 0.77) 0%, rgba(10, 23, 20, 0.58) 42%, rgba(10, 23, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(10, 23, 20, 0.36), rgba(10, 23, 20, 0.08));
}

.hero-content {
  width: min(760px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 92px);
  padding: clamp(42px, 8vw, 86px) 0;
  color: #fff;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #ffe08a;
}

.hero h1 {
  margin: 0;
  font-size: 6.2rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 28px;
  font-size: 1.18rem;
  color: rgba(255, 255, 255, 0.92);
}

.hero-search,
.filter-form {
  display: grid;
  gap: 14px;
}

.hero-search {
  grid-template-columns: minmax(240px, 1fr) auto auto;
  width: min(100%, 920px);
  padding: 8px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.search-field,
.input-with-icon {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  background: #f6f8f5;
  border: 1px solid #dbe4dd;
  border-radius: var(--radius);
}

.search-field {
  min-height: 50px;
  padding: 0 15px;
}

.input-with-icon {
  min-height: 46px;
  padding: 0 13px;
}

.search-field input,
.input-with-icon input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.hero-facts span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 12px;
  color: #fff;
  background: rgba(18, 55, 47, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.planner-section,
.ideas-section,
.legal-shell {
  width: min(1440px, calc(100% - 36px));
  margin: 0 auto;
}

.planner-section {
  padding: 72px 0 56px;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1.12;
  letter-spacing: 0;
}

.section-heading p:not(.eyebrow) {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.planner-layout {
  display: grid;
  grid-template-columns: minmax(340px, 430px) minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.search-panel,
.map-shell {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(23, 33, 29, 0.08);
}

.search-panel {
  position: sticky;
  top: calc(var(--header-height) + 14px);
  max-height: calc(100svh - var(--header-height) - 28px);
  display: grid;
  grid-template-rows: auto auto minmax(280px, 1fr);
  overflow: hidden;
}

.filter-form {
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.filter-form label span:first-child {
  display: block;
  margin-bottom: 6px;
  color: #43514b;
  font-size: 0.86rem;
  font-weight: 760;
}

.filter-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

select {
  width: 100%;
  min-height: 46px;
  padding: 0 12px;
  color: var(--ink);
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 9px 10px;
  color: #3b4943;
  background: #f6f8f5;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.toggle input:checked + span {
  color: var(--forest);
  background: #e8f3e8;
  border-color: #94c7a0;
}

.filter-actions {
  display: flex;
  gap: 10px;
}

.filter-actions .button {
  flex: 1;
}

.result-meta {
  padding: 12px 18px;
  color: var(--muted);
  font-size: 0.92rem;
  border-bottom: 1px solid var(--line);
}

.results-list {
  display: grid;
  gap: 10px;
  padding: 12px;
  overflow: auto;
}

.result-card {
  border: 1px solid #e1e8e1;
  background: #fff;
  border-radius: var(--radius);
  padding: 12px;
  transition: border 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.result-card:hover,
.result-card.is-selected {
  border-color: #78b788;
  box-shadow: 0 10px 28px rgba(18, 55, 47, 0.12);
}

.result-main {
  width: 100%;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  padding: 0;
  color: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.result-index {
  display: grid;
  place-items: center;
  min-width: 54px;
  height: 30px;
  padding: 0 7px;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 850;
  background: var(--water);
  border-radius: 999px;
  white-space: nowrap;
}

.result-main strong {
  display: block;
  line-height: 1.22;
}

.result-main small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}

.result-card p {
  margin: 10px 0;
  color: #415048;
  font-size: 0.94rem;
}

.result-badges,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.result-badges span,
.tag-row span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  max-width: 100%;
  min-height: 28px;
  padding: 4px 8px;
  color: #405049;
  background: #f1f5f0;
  border-radius: 999px;
  font-size: 0.78rem;
  overflow-wrap: anywhere;
}

.tag-row {
  margin-top: 9px;
}

.tag-row span {
  color: #6a5144;
  background: #fbf2e2;
}

.skeleton {
  min-height: 138px;
  overflow: hidden;
  background: linear-gradient(90deg, #f2f5f1, #fff, #f2f5f1);
  background-size: 220% 100%;
  animation: loading 1.2s linear infinite;
}

@keyframes loading {
  to {
    background-position: -220% 0;
  }
}

.empty-state,
.map-fallback {
  display: grid;
  place-items: center;
  gap: 10px;
  min-height: 210px;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.empty-state .icon,
.map-fallback .icon {
  width: 38px;
  height: 38px;
  color: var(--water);
}

.map-shell {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.map-toolbar {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  min-height: 58px;
  padding: 8px 10px 8px 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(219, 228, 221, 0.92);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(23, 33, 29, 0.12);
  backdrop-filter: blur(14px);
}

.toolbar-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 850;
}

.map-toolbar small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
}

.map-toolbar > div:first-child {
  min-width: 0;
}

.toolbar-title,
.map-toolbar small {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.toolbar-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 8px;
}

.map-canvas {
  width: 100%;
  height: 720px;
  min-height: 720px;
  background: #e8f0ea;
}

.map-marker {
  min-width: 40px;
  height: 32px;
  padding: 0 5px;
  color: #fff;
  font-size: 0.62rem;
  font-weight: 850;
  border: 2px solid #fff;
  border-radius: 16px 16px 16px 7px;
  background: var(--forest-2);
  box-shadow: 0 9px 20px rgba(23, 33, 29, 0.28);
  transform: rotate(-45deg);
  cursor: pointer;
}

.map-marker {
  display: grid;
  place-items: center;
}

.map-marker::after {
  content: attr(data-label);
  transform: rotate(45deg);
  line-height: 1;
  white-space: nowrap;
}

.marker-wasser {
  background: var(--water);
}

.marker-aussicht {
  background: var(--clay);
}

.marker-tiere {
  background: #6d7635;
}

.marker-technik {
  background: #4f5d75;
}

.marker-wald,
.marker-naturraum,
.marker-garten,
.marker-familie {
  background: var(--forest-2);
}

.user-marker {
  position: relative;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 50%;
  pointer-events: none;
}

.user-heading-cone {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: rotate(var(--heading, 0deg));
  transform-origin: 50% 50%;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.user-heading-cone::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 2px;
  width: 38px;
  height: 44px;
  background: linear-gradient(180deg, rgba(22, 118, 255, 0.32), rgba(22, 118, 255, 0.08));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  transform: translateX(-50%);
}

.user-marker.has-heading .user-heading-cone {
  opacity: 1;
}

.user-dot {
  position: relative;
  width: 13px;
  height: 13px;
  background: #1676ff;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(22, 118, 255, 0.13), 0 0 0 2px #1676ff;
}

.route-sheet {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 6;
  max-width: 520px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.route-sheet[hidden] {
  display: none;
}

.close-sheet {
  position: absolute;
  top: 10px;
  right: 10px;
}

.route-sheet h3 {
  margin: 0 42px 8px 0;
  font-size: 1.3rem;
}

.route-sheet p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--muted);
}

.route-sheet .route-hint {
  padding: 10px 12px;
  color: var(--ink);
  background: var(--soft);
  background: color-mix(in srgb, var(--soft) 72%, #ffffff 28%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 700;
}

.route-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ideas-section {
  padding: 46px 0 80px;
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.idea-card {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(23, 33, 29, 0.07);
}

.idea-icon {
  width: 34px;
  height: 34px;
  color: var(--forest-2);
}

.idea-card h3 {
  margin: 16px 0 8px;
  font-size: 1.15rem;
}

.idea-card p {
  margin: 0;
  color: var(--muted);
}

.site-footer {
  flex: 0 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 34px clamp(18px, 5vw, 64px);
  color: #dfe9df;
  background: var(--forest);
}

.site-footer p {
  max-width: 650px;
  margin: 10px 0 0;
  color: #b9c9bf;
}

.site-footer nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer a {
  text-decoration: none;
}

.footer-brand {
  font-weight: 850;
}

#cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 80;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.cookie-bar-content {
  width: min(900px, 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  color: #fff;
  background: rgba(18, 55, 47, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.cookie-bar-content p {
  margin: 0;
  font-size: 0.92rem;
}

.cookie-bar-content a {
  color: #ffe08a;
}

.cookie-bar-buttons {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.cookie-bar-buttons button {
  min-height: 40px;
  padding: 8px 12px;
  font-weight: 800;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

#accept-cookie {
  color: var(--forest);
  background: var(--sun);
}

#reject-cookie {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
}

.legal-page {
  background: var(--soft);
}

.legal-shell {
  padding: 56px 0 76px;
}

.legal-toolbar {
  margin-bottom: 20px;
}

.legal-toolbar a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--forest);
  font-weight: 800;
  text-decoration: none;
}

.legal-shell h1 {
  margin: 0;
  font-size: 2.4rem;
  line-height: 1.1;
}

.legal-intro,
.legal-note {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.legal-card {
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.legal-card h2 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.legal-card p {
  margin: 0 0 12px;
  color: #394740;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-list {
  margin: 0;
  padding-left: 20px;
}

.sitemap-list {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  list-style: none;
}

.sitemap-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 62px;
  padding: 16px 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 850;
}

.sitemap-list a::after {
  content: "";
  width: 0.62em;
  height: 0.62em;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

body.site-ausflugsuche {
  --ink: #14212a;
  --muted: #5b6972;
  --soft: #eef5f8;
  --paper: #ffffff;
  --line: #d5e4ea;
  --forest: #0f3d5e;
  --forest-2: #0b6b7d;
  --leaf: #3c8e74;
  --water: #247aa2;
  --sun: #ffb84d;
  --clay: #8a5a2b;
  --shadow: 0 18px 55px rgba(15, 61, 94, 0.18);
  background: #f7fbfd;
}

.site-ausflugsuche .site-header {
  background: rgba(248, 252, 254, 0.94);
  border-bottom-color: rgba(197, 217, 226, 0.95);
}

.site-ausflugsuche .brand-mark {
  color: #ffffff;
  background: var(--water);
}

.site-ausflugsuche .main-nav {
  background: #e7f1f6;
  border-color: #cfe0e8;
  border-radius: var(--radius);
}

.site-ausflugsuche .main-nav a {
  border-radius: 6px;
}

.site-ausflugsuche .hero {
  min-height: 74svh;
  align-items: end;
}

.site-ausflugsuche .hero-image {
  filter: saturate(0.82) contrast(1.08);
}

.site-ausflugsuche .hero-overlay {
  background:
    linear-gradient(90deg, rgba(6, 27, 44, 0.82) 0%, rgba(15, 61, 94, 0.64) 50%, rgba(36, 122, 162, 0.22) 100%),
    linear-gradient(0deg, rgba(6, 27, 44, 0.28), rgba(6, 27, 44, 0.08));
}

.site-ausflugsuche .hero-content {
  width: min(860px, calc(100% - 36px));
  margin-left: clamp(18px, 6vw, 78px);
  padding-bottom: clamp(48px, 8vw, 82px);
}

.site-ausflugsuche .hero h1 {
  font-size: 5.2rem;
}

.site-ausflugsuche .hero .eyebrow {
  color: #ffcf78;
}

.site-ausflugsuche .hero-search {
  border-radius: var(--radius);
  border-color: rgba(255, 255, 255, 0.72);
}

.site-ausflugsuche .hero-facts span {
  background: rgba(15, 61, 94, 0.68);
}

.site-ausflugsuche .section-heading {
  padding-left: 18px;
  border-left: 4px solid var(--water);
}

.site-ausflugsuche .search-panel {
  border-top: 4px solid var(--water);
}

.site-ausflugsuche .result-index {
  border-radius: 8px;
  background: var(--water);
}

.site-ausflugsuche .tag-row span {
  color: #0f3d5e;
  background: #e7f1f6;
}

.site-ausflugsuche .idea-card {
  border-top: 4px solid var(--water);
}

.site-ausflugsuche .site-footer {
  background: #0f2d44;
}

@media (max-width: 1180px) {
  .planner-layout {
    grid-template-columns: 380px minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
  }

  .main-nav {
    display: none;
  }

  .hero-search {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: 5rem;
  }

  .planner-layout {
    grid-template-columns: 1fr;
  }

  .search-panel {
    position: relative;
    top: auto;
    max-height: none;
  }

  .results-list {
    max-height: 540px;
  }

  .map-shell,
  .map-canvas {
    min-height: 620px;
    height: 620px;
  }

  .idea-grid,
  .legal-grid,
  .sitemap-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 66px;
  }

  .site-header {
    padding: 10px 14px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand {
    min-width: 0;
  }

  .brand strong {
    max-width: 190px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand small,
  .header-action span {
    display: none;
  }

  .header-action {
    width: 42px;
    height: 42px;
    padding: 0;
  }

  .hero {
    min-height: calc(100svh - var(--header-height));
    align-items: end;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(10, 23, 20, 0.84) 0%, rgba(10, 23, 20, 0.58) 58%, rgba(10, 23, 20, 0.18) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 72px 0 34px;
  }

  body.cookie-bar-visible .hero-content {
    padding-bottom: calc(64px + var(--cookie-bar-height, 0px));
  }

  body.cookie-bar-visible .hero .eyebrow {
    margin-bottom: 6px;
  }

  body.cookie-bar-visible .hero h1 {
    font-size: clamp(2.75rem, 13vw, 3.35rem);
  }

  body.cookie-bar-visible .hero-copy {
    margin: 12px 0 16px;
    font-size: 0.96rem;
  }

  .hero h1 {
    font-size: clamp(3.1rem, 15vw, 4rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .planner-section,
  .ideas-section,
  .legal-shell {
    width: min(100% - 24px, 1440px);
  }

  .planner-section {
    padding-top: 46px;
  }

  .section-heading h2 {
    font-size: 1.55rem;
  }

  .filter-row,
  .toggle-grid {
    grid-template-columns: 1fr;
  }

  .filter-actions {
    align-items: stretch;
  }

  .filter-actions .button span {
    white-space: normal;
  }

  .map-shell,
  .map-canvas {
    min-height: 560px;
    height: 560px;
  }

  .map-toolbar {
    left: 10px;
    right: 10px;
    top: 10px;
    gap: 8px;
  }

  .route-sheet {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  body.cookie-bar-visible .route-sheet {
    bottom: calc(10px + var(--cookie-bar-height, 0px));
  }

  .route-actions {
    display: grid;
  }

  .site-ausflugsuche .hero {
    min-height: calc(100svh - var(--header-height));
  }

  .site-ausflugsuche .hero-content {
    width: calc(100% - 28px);
    margin: 0 auto;
    padding: 72px 0 34px;
  }

  body.cookie-bar-visible.site-ausflugsuche .hero-content {
    padding-bottom: calc(64px + var(--cookie-bar-height, 0px));
  }

  .site-ausflugsuche .hero h1 {
    font-size: clamp(2.2rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .site-footer,
  .cookie-bar-content {
    display: grid;
  }

  .cookie-bar-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

body.map-fullscreen .map-shell {
  position: fixed;
  inset: 0;
  z-index: 70;
  width: 100vw;
  height: 100svh;
  min-height: 100svh;
  border: 0;
  border-radius: 0;
}

body.map-fullscreen #cookie-bar {
  display: none;
}

body.map-fullscreen .map-canvas {
  height: 100svh;
  min-height: 100svh;
}

body.map-fullscreen .map-toolbar {
  top: max(10px, env(safe-area-inset-top));
}

body.map-fullscreen .route-sheet {
  bottom: max(10px, env(safe-area-inset-bottom));
}
