:root {
  --blue: #01627e;
  --blue-dark: #0c5067;
  --accent: #61b6ce;
  --text: #6a6a6a;
  --heading: #54595f;
  --line: #e6e6e6;
  --soft: #f3f3f3;
  --footer: #2f3031;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(1, 98, 126, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  background: var(--white);
}

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

a {
  color: var(--blue);
  text-decoration: none;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  color: var(--heading);
  font-size: clamp(1.75rem, 2.8vw, 2.35rem);
  font-weight: 400;
  line-height: 1.25;
}

h2 {
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  font-weight: 400;
  line-height: 1.3;
}

.shell {
  width: min(1130px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(920px, calc(100% - 40px));
}

.section {
  padding: 54px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -120px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  top: 16px;
}

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

.top-bar {
  color: var(--white);
  background: #10627e;
}

.top-bar__inner {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
}

.top-bar a {
  color: var(--white);
}

.nav-shell {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  align-items: end;
  gap: 24px;
  padding: 24px 0 30px;
}

.brand img {
  width: min(350px, 100%);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: 0.96rem;
}

.site-nav a {
  position: relative;
  color: var(--text);
  padding: 7px 0;
  white-space: nowrap;
}

.nav-item {
  position: relative;
}

.nav-item > a {
  display: inline-flex;
}

.nav-submenu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 20;
  display: grid;
  min-width: 260px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  visibility: hidden;
}

.nav-item:hover .nav-submenu,
.nav-item:focus-within .nav-submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.nav-submenu a {
  padding: 8px 10px;
  border-radius: 4px;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.25;
}

.nav-submenu a:hover,
.nav-submenu a:focus-visible {
  color: var(--white);
  background: var(--blue);
}

.site-nav .nav-submenu a::after {
  display: none;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 4px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
  color: var(--text);
}

.language-switch-mobile {
  display: none;
}

.language-switch > a,
.language-switch > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px;
  border-radius: 999px;
}

.flag-icon {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(1, 98, 126, 0.12);
  font-size: 1.08rem;
  line-height: 1;
}

.language-switch > a:hover .flag-icon,
.language-switch > a:focus-visible .flag-icon {
  border-color: var(--blue);
  transform: translateY(-1px);
}

.language-switch > .active .flag-icon {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(1, 98, 126, 0.18);
}

.site-nav .language-switch a::after {
  display: none;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  justify-self: end;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--blue);
}

.hero {
  padding-top: 36px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

#fahrradverleih .hero-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 3fr);
}

.hero-copy {
  text-align: left;
}

.hero-copy h1 {
  color: var(--blue);
  font-size: 3.05rem;
  font-weight: 700;
  line-height: 1.12;
}

.hero-media img {
  width: 100%;
  object-fit: contain;
}

.hero-copy p {
  font-size: 16px;
}

.hero-copy .hero-lead {
  font-size: 17.6px;
}

.hero-copy .notice {
  color: var(--heading);
  font-size: 8px;
  font-weight: 400;
  text-decoration: none;
}

.hero-copy .button {
  font-size: 14px;
}

.gravel-promo {
  position: relative;
  overflow: hidden;
  margin-top: 8px;
  padding: 36px 0 40px;
  color: var(--white);
  background:
    linear-gradient(132deg, #083743 0%, #01627e 48%, #6d8f7b 48.2%, #e9dcc6 100%);
}

.gravel-promo::before {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -18deg,
      rgba(255, 255, 255, 0.11) 0,
      rgba(255, 255, 255, 0.11) 2px,
      transparent 2px,
      transparent 24px
    );
  content: "";
  opacity: 0.5;
  pointer-events: none;
}

.gravel-promo::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  height: 42%;
  background: linear-gradient(90deg, rgba(8, 55, 67, 0), rgba(8, 55, 67, 0.2));
  clip-path: polygon(20% 18%, 100% 0, 100% 100%, 0 100%);
  content: "";
  pointer-events: none;
}

.gravel-promo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 24px;
  min-height: 430px;
  align-items: center;
}

.gravel-promo__copy {
  max-width: 500px;
}

.gravel-promo__kicker {
  margin-bottom: 12px;
  color: #f6d088;
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.gravel-promo h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 3.35rem;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gravel-promo h2 span {
  display: block;
  margin-bottom: 8px;
  color: #f0e7d6;
  font-size: 1.34rem;
  line-height: 1.2;
}

.gravel-promo__copy > p:not(.gravel-promo__kicker) {
  max-width: 480px;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.55;
}

.gravel-promo__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin: 20px 0 4px;
}

.gravel-promo__facts span {
  padding-left: 12px;
  border-left: 4px solid #f6d088;
  color: var(--white);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.gravel-promo__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 18px;
  margin-top: 24px;
}

.gravel-promo__button {
  margin-top: 0;
  color: var(--blue);
  background: var(--white);
}

.gravel-promo__button:hover {
  color: var(--blue-dark);
  background: #f0e7d6;
}

.gravel-promo__media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 14px;
  min-height: 0;
  align-items: stretch;
}

.gravel-promo__media::before {
  position: absolute;
  right: 12px;
  top: -34px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.16);
  content: "2 MODELLE";
  font-size: 4.8rem;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  pointer-events: none;
}

.gravel-bike-card {
  display: grid;
  min-width: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px;
  min-height: 338px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 22px 34px rgba(8, 55, 67, 0.24);
}

.gravel-bike-card--norza {
  transform: translateY(18px);
}

.gravel-bike-card--territ {
  transform: translateY(-18px);
}

.gravel-bike-card__image {
  display: flex;
  min-height: 250px;
  align-items: center;
  justify-content: center;
}

.gravel-bike-card__image img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 18px 18px rgba(8, 55, 67, 0.24));
}

.gravel-bike-card--norza img {
  height: 252px;
}

.gravel-bike-card--territ img {
  height: 250px;
}

.gravel-bike-card h3 {
  min-width: 0;
  margin: 0;
  color: var(--blue-dark);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.berg-promo {
  position: relative;
  overflow: hidden;
  padding: 28px 0;
  color: var(--white);
  background:
    linear-gradient(118deg, rgba(47, 48, 49, 0.94) 0%, rgba(12, 80, 103, 0.92) 56%, rgba(1, 98, 126, 0.72) 100%),
    url("../images/standort-hohwacht.jpg") center / cover;
}

.berg-promo::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
  background-size: 34px 34px;
  content: "";
  opacity: 0.28;
  pointer-events: none;
}

.berg-promo__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 132px) auto;
  gap: 18px;
  align-items: center;
}

.berg-promo__copy {
  min-width: 0;
}

.berg-promo__kicker {
  margin-bottom: 6px;
  color: #f6d088;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.berg-promo h2 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(2rem, 5vw, 4.4rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.berg-promo p {
  max-width: 640px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.45;
}

.berg-promo__media {
  width: min(132px, 100%);
  margin: 0;
  justify-self: end;
}

.berg-promo__media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(255, 255, 255, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.28);
  object-fit: cover;
}

.berg-promo__button {
  min-width: 260px;
  margin-top: 0;
  color: var(--blue-dark);
  background: var(--white);
  font-weight: 800;
}

.berg-promo__button:hover {
  color: var(--blue-dark);
  background: #f6d088;
}

.error-hero {
  padding-top: 46px;
  padding-bottom: 64px;
}

.error-copy {
  max-width: 560px;
}

.error-code {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 6px 12px;
  border: 1px solid rgba(1, 98, 126, 0.18);
  border-radius: 999px;
  color: var(--blue);
  background: rgba(97, 182, 206, 0.1);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.error-copy h1 {
  margin-bottom: 16px;
}

.error-copy p {
  max-width: 520px;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.error-actions .button {
  margin-top: 0;
}

.error-media img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
}

.booking-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.booking-options .button {
  margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 13px 28px;
  border: 0;
  border-radius: 3px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 500;
  line-height: 1.2;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease;
}

.button:hover {
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.button.secondary {
  background: var(--heading);
}

.service-band {
  background: var(--blue);
  margin-top: 26px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.gravel-promo + .service-band,
.berg-promo + .service-band {
  margin-top: 0;
}

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

.service-card {
  min-height: 190px;
  padding: 22px 28px;
  color: var(--soft);
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.service-card:last-child {
  border-right: 0;
}

.service-card h2 {
  color: var(--soft);
  font-size: 1.45rem;
  font-weight: 600;
}

.locations {
  background: var(--white);
  text-align: center;
}

.locations h2 {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 700;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.location-item {
  display: flex;
  min-height: 86px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--heading);
  background: var(--white);
  box-shadow: var(--shadow);
  font-weight: 700;
  line-height: 1.25;
}

.location-item-featured {
  justify-content: flex-start;
}

.location-item h3 {
  display: flex;
  min-height: 40px;
  margin: 12px 0 0;
  align-items: center;
  justify-content: center;
  color: var(--heading);
  font-size: 1rem;
  line-height: 1.25;
  text-align: center;
}

.location-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  object-fit: cover;
}

.location-button {
  min-height: 38px;
  margin-top: 18px;
  padding: 10px 14px;
  font-size: 14px;
}

.locations-cta {
  margin-top: 30px;
}

.self-service {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.self-service h1 {
  color: var(--blue);
}

.self-service > .shell > p {
  max-width: 680px;
}

.self-service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}

.self-service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.self-service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.self-service-card h2 {
  margin-bottom: 8px;
  font-size: 1.25rem;
  font-weight: 700;
}

.self-service-card p {
  color: var(--heading);
}

.self-service-card .button {
  margin-top: auto;
}

.excursions-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.section-kicker {
  margin-bottom: 6px;
  color: var(--heading);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.tour-map-section {
  background: #f7fafb;
}

.tour-map-heading {
  max-width: 780px;
  margin-bottom: 24px;
}

.tour-map-heading h1,
.tour-map-heading h2 {
  color: var(--blue);
  margin-bottom: 10px;
  font-weight: 700;
}

.tour-map-heading p:last-child {
  margin-bottom: 0;
}

.tour-selector {
  display: grid;
  max-width: 1130px;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.tour-selector button {
  display: grid;
  gap: 3px;
  min-width: 0;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--heading);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(1, 98, 126, 0.08);
  font: inherit;
  text-align: left;
  white-space: normal;
  cursor: pointer;
}

.tour-selector button:hover,
.tour-selector button:focus-visible,
.tour-selector button.active {
  border-color: var(--blue);
  color: var(--white);
  background: var(--blue);
  outline: 0;
}

.tour-selector strong {
  min-width: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.tour-selector span {
  min-width: 0;
  font-size: 0.95rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.55fr);
  gap: 24px;
  align-items: stretch;
}

.tour-map-frame {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tour-map {
  width: 100%;
  min-height: 620px;
  height: 100%;
}

.tour-map-sidebar {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 16px;
}

.tour-current {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.tour-current strong {
  min-width: 0;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-current span {
  min-width: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.tour-summary div {
  min-width: 0;
  padding: 13px 12px;
  background: var(--white);
}

.tour-summary span {
  display: block;
  min-width: 0;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tour-summary strong {
  display: block;
  min-width: 0;
  margin-top: 3px;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.tour-filter {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.tour-filter button {
  min-height: 44px;
  min-width: 0;
  padding: 8px 10px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--heading);
  background: var(--white);
  font: inherit;
  font-size: 0.84rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
  white-space: normal;
  cursor: pointer;
}

.tour-filter button:last-child {
  border-right: 0;
}

.tour-filter button:hover,
.tour-filter button:focus-visible,
.tour-filter button.active {
  color: var(--white);
  background: var(--blue);
  outline: 0;
}

.tour-poi-list {
  display: flex;
  flex-direction: column;
  max-height: 458px;
  gap: 10px;
  overflow: auto;
  padding-right: 4px;
}

.poi-list-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 11px;
  width: 100%;
  min-width: 0;
  min-height: 124px;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: var(--white);
  box-shadow: 0 8px 20px rgba(1, 98, 126, 0.08);
  font: inherit;
  text-align: left;
  white-space: normal;
  cursor: pointer;
}

.poi-list-item:hover,
.poi-list-item:focus-visible,
.poi-list-item.active {
  border-color: rgba(1, 98, 126, 0.42);
  outline: 0;
  transform: translateY(-1px);
}

.poi-badge,
.tour-marker {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 6px 16px rgba(47, 48, 49, 0.22);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.tour-marker-icon {
  border: 0;
  background: transparent;
}

.poi-badge {
  border-color: transparent;
  box-shadow: none;
}

.poi-badge--restaurant,
.tour-marker--restaurant {
  background: #c45a2f;
}

.poi-badge--sight,
.tour-marker--sight {
  background: #42755f;
}

.poi-badge--route,
.tour-marker--route {
  background: var(--blue);
}

.poi-copy {
  min-width: 0;
}

.poi-copy strong {
  display: block;
  min-width: 0;
  color: var(--heading);
  font-size: 0.98rem;
  line-height: 1.3;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.poi-copy span {
  display: block;
  min-width: 0;
  margin-top: 4px;
  color: var(--text);
  font-size: 0.88rem;
  line-height: 1.35;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-popup h3 {
  margin: 0 0 6px;
  color: var(--blue);
  font-size: 1rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-popup p {
  margin: 0;
  color: var(--text);
  line-height: 1.45;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.tour-popup a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.leaflet-container {
  font-family: Arial, Helvetica, sans-serif;
}

.leaflet-popup-content-wrapper {
  border-radius: 8px;
}

.excursions-section h2 {
  margin-bottom: 22px;
  text-align: center;
  font-weight: 700;
}

.excursions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.excursion-region {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.excursion-region h3 {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 1.18rem;
}

.excursion-region ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.excursion-region li {
  color: var(--text);
  line-height: 1.5;
}

.price-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.price-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.price-intro h2 {
  margin-bottom: 10px;
  font-weight: 700;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
}

.price-table th,
.price-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: var(--white);
  background: var(--blue);
  font-weight: 700;
}

.price-table tbody th {
  color: var(--heading);
  font-weight: 700;
}

.price-table tbody tr:nth-child(even) {
  background: #f8fbfc;
}

.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-bottom: 0;
}

.price-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(1, 98, 126, 0.18);
  border-radius: 6px;
  background: var(--white);
}

.price-note p {
  max-width: 660px;
  margin-bottom: 0;
}

.price-note .button {
  margin-top: 0;
}

.home-news {
  background: #f7f9fa;
}

.home-news-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.home-news-heading h2 {
  margin-bottom: 0;
  color: var(--blue);
  font-weight: 700;
}

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

.home-news-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(1, 98, 126, 0.08);
}

.home-news-card a {
  display: block;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.home-news-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.home-news-card .news-meta,
.home-news-card h3,
.home-news-card p {
  margin-right: 18px;
  margin-left: 18px;
}

.home-news-card .news-meta {
  display: block;
  margin-top: 18px;
}

.home-news-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
}

.home-news-card p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.55;
}

.news-section {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.news-intro {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.news-intro h2 {
  margin-bottom: 0;
  font-weight: 700;
}

.news-article {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.news-article + .news-article {
  margin-top: 24px;
}

.news-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 4px;
  object-fit: cover;
}

.news-copy h2 {
  margin-bottom: 12px;
  color: var(--blue);
  font-weight: 700;
}

.news-meta {
  margin-bottom: 8px;
  color: var(--heading);
  font-size: 0.92rem;
  font-weight: 700;
}

.reviews {
  text-align: center;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  gap: 14px;
  align-items: center;
  margin-top: 22px;
}

.review-window {
  overflow: hidden;
}

.review-strip {
  display: flex;
  gap: 18px;
  transition: transform 240ms ease;
  will-change: transform;
}

.review-strip article {
  flex: 0 0 calc((100% - 36px) / 3);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  background: var(--white);
}

.review-strip span {
  display: block;
  color: #f5a623;
  letter-spacing: 0;
  margin-bottom: 10px;
}

.review-arrow {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--blue);
  background: var(--white);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.review-arrow:hover {
  border-color: var(--blue);
  color: var(--blue-dark);
  transform: translateY(-1px);
}

.review-arrow:disabled {
  color: #b4b4b4;
  cursor: not-allowed;
  transform: none;
}

.reviews-button {
  margin-top: 28px;
}

.legal h1 {
  color: var(--blue);
}

.legal h2 {
  margin-top: 28px;
  color: var(--blue);
}

.legal address {
  font-style: normal;
}

.legal p,
.legal address {
  font-size: 16px;
}

.badges {
  padding-top: 40px;
}

.badge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
  align-items: start;
}

.badge-grid article:first-child h2 {
  text-align: left;
}

.badge-grid article:last-child h2 {
  text-align: right;
}

.badge-grid img {
  width: 100%;
  object-fit: contain;
}

.faq details {
  border-bottom: 1px solid var(--line);
  padding: 17px 0;
}

.faq summary {
  color: var(--heading);
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 12px 0 0;
}

.contact {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fa 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
  gap: 54px;
  align-items: start;
}

form {
  display: grid;
  gap: 10px;
}

label {
  color: var(--heading);
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  color: var(--heading);
  background: var(--white);
  font: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(97, 182, 206, 0.45);
  border-color: var(--accent);
}

.form-button {
  justify-self: start;
  margin-top: 12px;
}

.address-box {
  padding: 28px;
  border-left: 4px solid var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
}

.site-footer {
  margin-top: 70px;
  padding: 50px 0;
  color: var(--white);
  background: var(--footer);
}

.site-footer a {
  color: var(--white);
}

.site-footer a:hover {
  color: #dbdbdb;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-grid > div:nth-child(2) {
  text-align: center;
}

.footer-grid > div:nth-child(3) {
  text-align: right;
}

.footer-grid p {
  margin-bottom: 0;
}

.footer-grid a {
  display: inline-block;
}

.footer-offers {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #242526;
}

.footer-offers__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 16px 26px;
}

.footer-offers h2 {
  margin: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
}

.footer-offers__links {
  display: flex;
  flex-wrap: wrap;
  grid-column: 1 / -1;
  justify-content: center;
  gap: 8px;
}

.footer-offers__links a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.9rem;
  line-height: 1.2;
}

.footer-offers__links a:hover,
.footer-offers__links a:focus-visible {
  border-color: var(--accent);
  color: var(--white);
  background: rgba(97, 182, 206, 0.16);
}

.cookie-notice {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  max-width: 760px;
  margin: 0 auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 18px 42px rgba(47, 48, 49, 0.18);
}

.cookie-notice__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px 18px;
}

.cookie-notice h2 {
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 700;
}

.cookie-notice p {
  margin: 0;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cookie-notice a {
  font-weight: 700;
  white-space: nowrap;
}

.cookie-notice__button {
  min-width: 94px;
  min-height: 42px;
  padding: 10px 18px;
  border: 0;
  border-radius: 6px;
  color: var(--white);
  background: var(--blue);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.cookie-notice__button:hover,
.cookie-notice__button:focus-visible {
  background: var(--blue-dark);
}

@media (max-width: 900px) {
  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 12px;
  }

  .language-switch-mobile {
    display: inline-flex;
    grid-column: 2;
    grid-row: 1;
    margin-left: 0;
    padding: 0;
    border-left: 0;
  }

  .menu-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    white-space: normal;
  }

  .nav-item > a {
    display: flex;
  }

  .nav-submenu {
    display: none;
  }

  .site-nav .language-switch {
    display: none;
  }

  .service-grid,
  .self-service-grid,
  .excursions-grid,
  .home-news-grid,
  .news-article,
  .review-strip,
  .hero-grid,
  .locations-grid,
  .badge-grid,
  .contact-grid,
  .tour-map-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .tour-selector {
    grid-template-columns: 1fr;
  }

  .home-news-heading {
    align-items: start;
    flex-direction: column;
  }

  .tour-map-frame,
  .tour-map {
    min-height: 540px;
  }

  .tour-poi-list {
    max-height: none;
    padding-right: 0;
  }

  .footer-offers__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-offers__links {
    justify-content: center;
  }

  #fahrradverleih .hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .service-card {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    min-height: 0;
  }

  .service-card:last-child {
    border-bottom: 0;
  }

  .hero-copy {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .hero-media {
    max-width: 680px;
    margin: 0 auto;
  }

  .gravel-promo {
    background:
      linear-gradient(180deg, #083743 0%, #01627e 58%, #e7dbc4 58.2%, #f4eee4 100%);
  }

  .gravel-promo__inner {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: 0;
  }

  .gravel-promo__copy {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
  }

  .gravel-promo__copy > p:not(.gravel-promo__kicker) {
    margin-right: auto;
    margin-left: auto;
  }

  .gravel-promo__facts,
  .gravel-promo__actions {
    justify-content: center;
  }

  .gravel-promo__media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    min-height: 0;
  }

  .gravel-promo__media::before {
    right: 50%;
    top: -22px;
    font-size: 4.4rem;
    transform: translateX(50%);
  }

  .gravel-bike-card,
  .gravel-bike-card--norza,
  .gravel-bike-card--territ {
    min-height: 300px;
    transform: none;
  }

  .gravel-bike-card__image {
    min-height: 210px;
  }

  .gravel-bike-card__image img,
  .gravel-bike-card--norza img,
  .gravel-bike-card--territ img {
    height: 208px;
  }

  .berg-promo__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .berg-promo__media {
    width: min(190px, 100%);
    justify-self: center;
  }

  .berg-promo p {
    margin-right: auto;
    margin-left: auto;
  }

  .berg-promo__button {
    justify-self: center;
  }

  .booking-options {
    justify-content: center;
  }

  .error-actions {
    justify-content: center;
  }

  .review-strip article {
    flex-basis: calc((100% - 18px) / 2);
  }

  .badge-grid article:first-child h2,
  .badge-grid article:last-child h2,
  .footer-grid > div,
  .footer-grid > div:nth-child(2),
  .footer-grid > div:nth-child(3) {
    text-align: center;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-top: 20px;
  }

  #fahrradverleih .hero-grid {
    gap: 20px;
  }

  .hero-copy h1 {
    margin-bottom: 12px;
    font-size: clamp(2.05rem, 11vw, 2.45rem);
    line-height: 1.05;
  }

  .hero-copy .hero-lead {
    font-size: 15.5px;
    line-height: 1.55;
  }

  .hero-copy .button {
    width: 100%;
    max-width: 260px;
    min-height: 48px;
    margin-top: 16px;
  }

  .hero-media img {
    width: min(100%, 430px);
    margin: 0 auto;
  }

  .gravel-promo {
    padding-top: 34px;
    padding-bottom: 32px;
  }

  .gravel-promo h2 {
    font-size: 2.34rem;
    line-height: 1.02;
  }

  .gravel-promo h2 span {
    font-size: 1.05rem;
  }

  .gravel-promo__copy > p:not(.gravel-promo__kicker) {
    font-size: 0.98rem;
  }

  .gravel-promo__facts {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 260px;
    margin-right: auto;
    margin-left: auto;
    text-align: left;
  }

  .gravel-promo__actions {
    flex-direction: column;
  }

  .gravel-promo__button {
    width: 100%;
    max-width: 260px;
  }

  .berg-promo {
    padding: 30px 0;
  }

  .berg-promo h2 {
    font-size: 2.75rem;
  }

  .berg-promo p {
    font-size: 0.98rem;
  }

  .berg-promo__media {
    width: min(150px, 58vw);
  }

  .berg-promo__button {
    width: 100%;
    min-width: 0;
    max-width: 300px;
  }

  .gravel-promo__media {
    grid-template-columns: 1fr;
    gap: 14px;
    min-height: 0;
  }

  .gravel-promo__media::before {
    display: none;
  }

  .gravel-bike-card,
  .gravel-bike-card--norza,
  .gravel-bike-card--territ {
    min-height: 0;
    padding: 12px;
    transform: none;
  }

  .gravel-bike-card__image {
    min-height: 185px;
  }

  .gravel-bike-card__image img,
  .gravel-bike-card--norza img {
    height: 190px;
  }

  .gravel-bike-card--territ img {
    height: 175px;
  }

  .shell,
  .narrow {
    width: min(100% - 28px, 1130px);
  }

  .section {
    padding: 42px 0;
  }

  .top-bar__inner {
    justify-content: center;
    flex-wrap: wrap;
    padding: 9px 0;
    text-align: center;
  }

  .brand img {
    width: min(300px, 100%);
  }

  .reviews-carousel {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .review-arrow {
    width: 40px;
    height: 40px;
  }

  .review-strip article {
    flex-basis: 100%;
    padding: 22px 18px;
  }

  .tour-map-heading {
    margin-bottom: 20px;
  }

  .tour-selector {
    margin-bottom: 20px;
  }

  .tour-map-frame,
  .tour-map {
    min-height: 430px;
  }

  .tour-summary div {
    padding: 12px 10px;
  }

  .tour-summary strong {
    font-size: 0.92rem;
  }

  .tour-filter button {
    padding: 8px 6px;
    font-size: 0.78rem;
  }

  .tour-selector button {
    min-height: 58px;
    padding: 11px 12px;
  }

  .poi-list-item {
    min-height: 136px;
    padding: 12px;
  }

  .cookie-notice {
    right: 14px;
    bottom: 14px;
    left: 14px;
    padding: 14px;
  }

  .cookie-notice__inner {
    grid-template-columns: 1fr;
  }

  .cookie-notice__button {
    width: 100%;
  }

}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 1.95rem;
  }

  .hero-copy .hero-lead {
    font-size: 15px;
  }
}
