/*
Theme Name: Möbel.haus
Theme URI: https://möbel.haus/
Author: Möbel.haus
Description: Ruhiges, wohnliches Editorial-Theme für das Möbelhaus-Verzeichnis und Schaufenster.
Version: 2.0.0
Text Domain: moebelhaus
*/

:root {
  --moeh-canvas: #f2f0eb;
  --moeh-paper: #faf9f6;
  --moeh-paper-warm: #f6f2eb;
  --moeh-ink: #292622;
  --moeh-ink-soft: #6b655e;
  --moeh-line: #d8d3ca;
  --moeh-line-dark: #aaa298;
  --moeh-clay: #9c7764;
  --moeh-clay-dark: #765647;
  --moeh-sage: #dfe2d8;
  --moeh-sage-deep: #8d9583;
  --moeh-night: #34312d;
  --moeh-white: #fff;
  --moeh-radius: 0.25rem;
  --moeh-shadow: 0 18px 50px rgba(46, 40, 34, 0.09);
  --moeh-content: 82rem;
  --moeh-narrow: 49rem;
  --moeh-display: "Iowan Old Style", Baskerville, "Palatino Linotype", Palatino, Georgia, serif;
  --moeh-body: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--moeh-ink);
  background: var(--moeh-canvas);
  font-family: var(--moeh-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

a:hover {
  color: var(--moeh-clay-dark);
}

button,
input {
  font: inherit;
}

img,
svg {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.65em;
  color: var(--moeh-ink);
  font-family: var(--moeh-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
  hyphens: auto;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 5.9rem);
}

h2 {
  font-size: clamp(2.45rem, 4.5vw, 4.5rem);
}

h3 {
  font-size: clamp(1.45rem, 2.2vw, 2rem);
}

p {
  margin: 0 0 1.25rem;
}

::selection {
  color: var(--moeh-ink);
  background: #ded7cc;
}

:focus-visible {
  outline: 2px solid var(--moeh-clay-dark);
  outline-offset: 4px;
}

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

.screen-reader-text:focus {
  z-index: 100000;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--moeh-white);
  background: var(--moeh-ink);
}

.moeh-shell {
  width: min(calc(100% - 3rem), var(--moeh-content));
  margin-inline: auto;
}

.moeh-site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(41, 38, 34, 0.12);
  background: rgba(250, 249, 246, 0.96);
  backdrop-filter: blur(16px);
}

.moeh-header-inner {
  display: flex;
  min-height: 5rem;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.moeh-wordmark {
  display: inline-flex;
  flex: none;
  align-items: baseline;
  color: var(--moeh-ink);
  font-family: var(--moeh-display);
  font-size: clamp(1.65rem, 2.6vw, 2.15rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.moeh-wordmark span {
  color: var(--moeh-clay-dark);
}

.moeh-wordmark:hover {
  color: var(--moeh-ink);
}

.moeh-main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.moeh-main-nav a {
  position: relative;
  color: var(--moeh-ink);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.035em;
  text-decoration: none;
}

.moeh-main-nav a:not(.moeh-nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 1px;
  background: var(--moeh-ink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.moeh-main-nav a:hover::after,
.moeh-main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.moeh-nav-badge {
  margin-left: 0.3rem;
  color: var(--moeh-ink-soft);
  font-size: 0.61rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.moeh-nav-badge::before {
  content: "· ";
}

.moeh-nav-cta {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--moeh-ink);
}

.moeh-button {
  display: inline-flex;
  min-height: 3.15rem;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.75rem 1.35rem;
  border: 1px solid var(--moeh-ink);
  border-radius: 0;
  color: var(--moeh-white);
  background: var(--moeh-ink);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.025em;
  line-height: 1.2;
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}

.moeh-button:hover {
  border-color: var(--moeh-clay-dark);
  color: var(--moeh-white);
  background: var(--moeh-clay-dark);
}

.moeh-button--light {
  color: var(--moeh-ink);
  background: transparent;
}

.moeh-button--light:hover {
  color: var(--moeh-white);
  background: var(--moeh-ink);
}

.moeh-button--text {
  min-height: auto;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  color: var(--moeh-ink);
  background: transparent;
}

.moeh-button--text:hover {
  border-color: var(--moeh-clay-dark);
  color: var(--moeh-clay-dark);
  background: transparent;
}

.moeh-nav-cta svg,
.moeh-button svg {
  width: 1rem;
  height: 1rem;
  flex: none;
}

.moeh-menu-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--moeh-ink);
  border-radius: 50%;
  color: var(--moeh-ink);
  background: transparent;
  cursor: pointer;
}

.moeh-menu-toggle span,
.moeh-menu-toggle::before,
.moeh-menu-toggle::after {
  display: block;
  width: 1rem;
  height: 1px;
  margin: 0.25rem auto;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-open .moeh-menu-toggle span {
  opacity: 0;
}

.menu-open .moeh-menu-toggle::before {
  transform: translateY(0.31rem) rotate(45deg);
}

.menu-open .moeh-menu-toggle::after {
  transform: translateY(-0.31rem) rotate(-45deg);
}

.moeh-hero {
  border-bottom: 1px solid var(--moeh-line);
  background: var(--moeh-paper);
}

.moeh-hero-inner {
  display: grid;
  min-height: calc(100vh - 5rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(28rem, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 6vw, 6.5rem);
  padding-block: clamp(3rem, 6vw, 5.5rem);
}

.moeh-eyebrow {
  display: block;
  margin-bottom: 1.45rem;
  color: var(--moeh-ink-soft);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.moeh-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
}

.moeh-hero h1 em {
  color: var(--moeh-clay-dark);
  font-weight: 400;
}

.moeh-hero-copy > p {
  max-width: 35rem;
  color: var(--moeh-ink-soft);
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  line-height: 1.75;
}

.moeh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.2rem;
}

.moeh-hero-visual {
  position: relative;
  width: 100%;
  height: min(72vh, 45rem);
  min-height: 34rem;
  margin: 0;
  overflow: hidden;
  background: #d7d0c5;
}

.moeh-hero-visual picture,
.moeh-hero-visual img {
  width: 100%;
  height: 100%;
}

.moeh-hero-visual img {
  object-fit: cover;
  object-position: center;
}

.moeh-hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0.65rem 0.9rem;
  color: var(--moeh-ink-soft);
  background: rgba(250, 249, 246, 0.92);
  font-family: var(--moeh-display);
  font-size: 0.86rem;
  font-style: italic;
}

.moeh-stat-strip {
  border-bottom: 1px solid var(--moeh-line);
  background: var(--moeh-paper-warm);
}

.moeh-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.moeh-stat {
  padding: 1.7rem clamp(1rem, 3vw, 2.5rem);
  border-right: 1px solid var(--moeh-line);
}

.moeh-stat:first-child {
  padding-left: 0;
}

.moeh-stat:last-child {
  border-right: 0;
}

.moeh-stat strong,
.moeh-stat span {
  display: block;
}

.moeh-stat strong {
  font-family: var(--moeh-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1;
}

.moeh-stat span {
  margin-top: 0.45rem;
  color: var(--moeh-ink-soft);
  font-size: 0.73rem;
  letter-spacing: 0.035em;
}

.moeh-section {
  padding-block: clamp(5rem, 9vw, 8.5rem);
}

.moeh-section--light {
  background: var(--moeh-paper);
}

.moeh-section--ink {
  color: #f5f1eb;
  background: var(--moeh-night);
}

.moeh-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(19rem, 0.48fr);
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: clamp(2.8rem, 5vw, 4.7rem);
}

.moeh-section-head h2 {
  max-width: 11ch;
  margin-bottom: 0;
}

.moeh-section-head p {
  margin-bottom: 0;
  color: var(--moeh-ink-soft);
  line-height: 1.75;
}

.moeh-paths {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--moeh-line);
  background: var(--moeh-line);
  gap: 1px;
}

.moeh-path-card {
  position: relative;
  min-height: 26rem;
  padding: clamp(2rem, 4vw, 3.5rem);
  background: var(--moeh-paper);
}

.moeh-path-card--online {
  background: #edf0e9;
}

.moeh-path-number {
  display: block;
  margin-bottom: 5.5rem;
  color: var(--moeh-ink-soft);
  font-family: var(--moeh-display);
  font-size: 1rem;
}

.moeh-path-card h3 {
  max-width: 12ch;
  font-size: clamp(2.25rem, 4vw, 3.5rem);
}

.moeh-path-card p {
  max-width: 35rem;
  color: var(--moeh-ink-soft);
  line-height: 1.75;
}

.moeh-path-card .moeh-button--text {
  margin-top: 1rem;
}

.moeh-status-pill {
  position: absolute;
  top: 2.3rem;
  right: 2.3rem;
  color: var(--moeh-ink-soft);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moeh-city-tools {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.moeh-search {
  position: relative;
  width: min(100%, 30rem);
}

.moeh-search svg {
  position: absolute;
  top: 50%;
  left: 1rem;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  transform: translateY(-50%);
}

.moeh-search input {
  width: 100%;
  min-height: 3.35rem;
  padding: 0.75rem 1rem 0.75rem 2.8rem;
  border: 1px solid var(--moeh-line-dark);
  border-radius: 0;
  color: var(--moeh-ink);
  background: transparent;
}

.moeh-search input::placeholder {
  color: #847e76;
}

.moeh-filter-status {
  margin: 0;
  color: var(--moeh-ink-soft);
  font-size: 0.78rem;
}

.moeh-city-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--moeh-line);
  background: var(--moeh-line);
  gap: 1px;
}

.moeh-city-card {
  display: flex;
  min-height: 7rem;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--moeh-paper);
  text-decoration: none;
  transition: background 160ms ease;
}

.moeh-city-card:hover {
  color: var(--moeh-ink);
  background: var(--moeh-sage);
}

.moeh-city-card[hidden] {
  display: none;
}

.moeh-city-card strong {
  font-family: var(--moeh-display);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.2;
}

.moeh-city-card span {
  flex: none;
  color: var(--moeh-ink-soft);
  font-size: 0.7rem;
}

.moeh-method {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.moeh-method .moeh-eyebrow {
  color: rgba(245, 241, 235, 0.58);
}

.moeh-method h2 {
  position: sticky;
  top: 7rem;
  max-width: 9ch;
  color: #f5f1eb;
}

.moeh-method-list {
  counter-reset: method;
}

.moeh-method-item {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding-block: 1.9rem;
  border-top: 1px solid rgba(245, 241, 235, 0.2);
}

.moeh-method-item::before {
  color: rgba(245, 241, 235, 0.48);
  content: "0" counter(method);
  counter-increment: method;
  font-family: var(--moeh-display);
}

.moeh-method-item:last-child {
  border-bottom: 1px solid rgba(245, 241, 235, 0.2);
}

.moeh-method-item h3 {
  margin-bottom: 0.4rem;
  color: #f5f1eb;
}

.moeh-method-item p {
  margin-bottom: 0;
  color: rgba(245, 241, 235, 0.68);
}

.moeh-method-link {
  margin-top: 2rem;
}

.moeh-method-link .moeh-button {
  border-color: #f5f1eb;
  color: var(--moeh-night);
  background: #f5f1eb;
}

.moeh-method-link .moeh-button:hover {
  border-color: var(--moeh-clay);
  color: var(--moeh-white);
  background: var(--moeh-clay);
}

.moeh-page-hero {
  padding-block: clamp(4.5rem, 8vw, 7.5rem);
  border-bottom: 1px solid var(--moeh-line);
  background: var(--moeh-paper);
}

.moeh-page-hero h1 {
  max-width: 15ch;
  margin-bottom: 1.3rem;
  font-size: clamp(3rem, 6.5vw, 5.6rem);
}

.moeh-page-hero p {
  max-width: 45rem;
  margin-bottom: 0;
  color: var(--moeh-ink-soft);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.moeh-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.4rem;
  color: var(--moeh-ink-soft);
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moeh-breadcrumb a {
  text-decoration: none;
}

.moeh-breadcrumb svg {
  width: 0.7rem;
  height: 0.7rem;
}

.moeh-chip-row,
.moeh-location-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.moeh-chip-row {
  margin-top: 1.6rem;
}

.moeh-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--moeh-line);
  border-radius: 999px;
  color: var(--moeh-ink-soft);
  background: transparent;
  font-size: 0.68rem;
  font-weight: 500;
}

.moeh-chip--verified {
  border-color: #aeb4a6;
  color: #50584c;
  background: #eef0ea;
}

.moeh-chip svg {
  width: 0.8rem;
  height: 0.8rem;
}

.moeh-results-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.2rem;
}

.moeh-results-head h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.5vw, 3.1rem);
}

.moeh-results-head p {
  margin-bottom: 0;
  color: var(--moeh-ink-soft);
  font-size: 0.76rem;
}

.moeh-location-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.moeh-location-card {
  display: flex;
  min-width: 0;
  min-height: 19rem;
  flex-direction: column;
  padding: clamp(1.6rem, 3vw, 2.25rem);
  border: 1px solid var(--moeh-line);
  background: var(--moeh-paper);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.moeh-location-card:hover {
  border-color: var(--moeh-line-dark);
  box-shadow: var(--moeh-shadow);
  transform: translateY(-2px);
}

.moeh-location-card h3 {
  margin-bottom: 1.15rem;
}

.moeh-location-card h3 a {
  text-decoration: none;
}

.moeh-location-card h3 a::after {
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin-left: 0.4em;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-0.08em);
}

.moeh-location-address {
  margin-bottom: 1.35rem;
  color: var(--moeh-ink-soft);
  font-style: normal;
}

.moeh-location-meta {
  margin-bottom: 1.35rem;
}

.moeh-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--moeh-line);
}

.moeh-location-actions a {
  font-size: 0.76rem;
  font-weight: 500;
}

.moeh-editorial {
  max-width: var(--moeh-narrow);
  margin-bottom: 3.5rem;
  padding: 1.5rem 1.7rem;
  border-left: 2px solid var(--moeh-clay);
  background: var(--moeh-paper);
}

.moeh-pagination {
  margin-top: 3.5rem;
}

.moeh-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.moeh-pagination .page-numbers {
  display: inline-flex;
  min-width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  padding-inline: 0.8rem;
  border: 1px solid var(--moeh-line);
  background: var(--moeh-paper);
  font-size: 0.76rem;
  text-decoration: none;
}

.moeh-pagination .current {
  border-color: var(--moeh-ink);
  color: var(--moeh-white);
  background: var(--moeh-ink);
}

.moeh-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(19rem, 0.72fr);
  align-items: start;
  gap: clamp(2rem, 6vw, 5rem);
}

.moeh-detail-card {
  padding: clamp(1.6rem, 4vw, 2.75rem);
  border: 1px solid var(--moeh-line-dark);
  background: var(--moeh-paper);
}

.moeh-detail-card h2,
.moeh-trust-panel h2 {
  font-size: 2rem;
}

.moeh-detail-card h2 {
  margin-bottom: 1.7rem;
}

.moeh-detail-row {
  display: grid;
  grid-template-columns: 1.3rem 1fr;
  gap: 0.8rem;
  padding-block: 1.1rem;
  border-top: 1px solid var(--moeh-line);
}

.moeh-detail-row svg {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.15rem;
}

.moeh-detail-row strong,
.moeh-detail-row span {
  display: block;
}

.moeh-detail-row strong {
  color: var(--moeh-ink-soft);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.moeh-detail-row span {
  color: var(--moeh-ink-soft);
}

.moeh-detail-card .moeh-button {
  width: 100%;
  margin-top: 1.6rem;
}

.moeh-trust-panel {
  padding: clamp(1.6rem, 4vw, 2.5rem);
  background: var(--moeh-sage);
}

.moeh-trust-panel p:last-child {
  margin-bottom: 0;
}

.moeh-prose {
  max-width: var(--moeh-narrow);
  margin-inline: auto;
  color: var(--moeh-ink-soft);
  font-size: 1.04rem;
}

.moeh-prose > * + * {
  margin-top: 1.25rem;
}

.moeh-prose h2,
.moeh-prose h3,
.moeh-prose h4 {
  margin-top: 2.8rem;
  color: var(--moeh-ink);
}

.moeh-prose h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.moeh-prose h3 {
  font-size: 1.6rem;
}

.moeh-prose ul,
.moeh-prose ol {
  padding-left: 1.3rem;
}

.moeh-prose li + li {
  margin-top: 0.5rem;
}

.moeh-prose a {
  color: var(--moeh-clay-dark);
}

.moeh-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-top: 2.6rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.moeh-back-link svg {
  width: 0.9rem;
  height: 0.9rem;
}

.moeh-empty {
  padding: 2rem;
  border: 1px solid var(--moeh-line);
  background: var(--moeh-paper);
}

.moeh-site-footer {
  color: #f5f1eb;
  background: var(--moeh-night);
}

.moeh-footer-main {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(10rem, 0.4fr));
  gap: 3rem;
  padding-block: clamp(4rem, 7vw, 6rem);
}

.moeh-footer-brand .moeh-wordmark {
  color: #f5f1eb;
}

.moeh-footer-brand .moeh-wordmark span {
  color: #c6a895;
}

.moeh-footer-brand p {
  max-width: 29rem;
  margin-top: 1.3rem;
  margin-bottom: 0;
  color: rgba(245, 241, 235, 0.62);
}

.moeh-footer-col h2 {
  margin-bottom: 1.1rem;
  color: rgba(245, 241, 235, 0.48);
  font-family: var(--moeh-body);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.moeh-footer-col ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.moeh-footer-col li + li {
  margin-top: 0.6rem;
}

.moeh-footer-col a {
  color: #f5f1eb;
  font-size: 0.84rem;
  text-decoration: none;
}

.moeh-footer-col a:hover {
  color: #c6a895;
}

.moeh-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1.25rem;
  border-top: 1px solid rgba(245, 241, 235, 0.17);
  color: rgba(245, 241, 235, 0.46);
  font-size: 0.7rem;
}

/* Complianz: ruhig und passend zur Editorial-Fläche. */
.cmplz-cookiebanner {
  border: 1px solid var(--moeh-line-dark) !important;
  border-radius: 0 !important;
  background: var(--moeh-paper) !important;
  box-shadow: var(--moeh-shadow) !important;
  font-family: var(--moeh-body) !important;
}

.cmplz-cookiebanner .cmplz-title {
  font-family: var(--moeh-display) !important;
  font-size: 1.25rem !important;
  font-weight: 400 !important;
}

.cmplz-cookiebanner .cmplz-btn {
  border: 1px solid var(--moeh-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-weight: 500 !important;
}

.cmplz-cookiebanner .cmplz-accept {
  color: var(--moeh-white) !important;
  background: var(--moeh-ink) !important;
}

.cmplz-cookiebanner .cmplz-deny,
.cmplz-cookiebanner .cmplz-view-preferences {
  color: var(--moeh-ink) !important;
  background: transparent !important;
}

@media (max-width: 68rem) {
  .moeh-hero-inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(25rem, 1.1fr);
    gap: 3rem;
  }

  .moeh-city-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 52rem) {
  .moeh-menu-toggle {
    display: block;
  }

  .moeh-main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 1.2rem 1.5rem 1.5rem;
    border-bottom: 1px solid var(--moeh-line-dark);
    background: var(--moeh-paper);
    box-shadow: var(--moeh-shadow);
  }

  .menu-open .moeh-main-nav {
    display: flex;
  }

  .moeh-main-nav a {
    padding: 0.8rem 0;
  }

  .moeh-main-nav .moeh-nav-cta {
    margin-top: 0.7rem;
  }

  .moeh-hero-inner {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .moeh-hero-copy {
    padding-top: 1rem;
  }

  .moeh-hero-visual {
    height: 34rem;
    min-height: 0;
  }

  .moeh-section-head,
  .moeh-paths,
  .moeh-method,
  .moeh-detail,
  .moeh-footer-main {
    grid-template-columns: 1fr;
  }

  .moeh-method h2 {
    position: static;
  }

  .moeh-city-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .moeh-location-grid {
    grid-template-columns: 1fr;
  }

  .moeh-footer-main {
    gap: 2.3rem;
  }
}

@media (max-width: 37rem) {
  .moeh-shell {
    width: min(calc(100% - 1.5rem), var(--moeh-content));
  }

  .moeh-header-inner {
    min-height: 4.6rem;
  }

  .moeh-hero-inner {
    gap: 2.5rem;
    padding-block: 3rem;
  }

  .moeh-hero h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 15vw, 4.25rem);
  }

  .moeh-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .moeh-hero-actions .moeh-button {
    width: 100%;
  }

  .moeh-hero-visual {
    height: 25rem;
  }

  .moeh-hero-visual figcaption {
    font-size: 0.75rem;
  }

  .moeh-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .moeh-stat {
    padding: 1.25rem 0.65rem;
  }

  .moeh-stat:first-child {
    padding-left: 0.65rem;
  }

  .moeh-stat strong {
    font-size: 1.75rem;
  }

  .moeh-stat span {
    font-size: 0.6rem;
    line-height: 1.35;
  }

  .moeh-city-tools,
  .moeh-results-head,
  .moeh-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .moeh-search {
    width: 100%;
  }

  .moeh-city-grid {
    grid-template-columns: 1fr;
  }

  .moeh-location-card {
    min-height: 0;
  }

  .moeh-page-hero h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
