:root {
  --bg: #f4eedf;
  --hero-bg: url("../assets/site/kanu-stapel/01.jpg?v=stock5");
  --bg-soft: #f8f3e8;
  --paper: rgba(255, 252, 242, 0.97);
  --paper-strong: #f8efdf;
  --green: #335f34;
  --green-deep: #234426;
  --blue: #3f7f98;
  --wood: #8e603b;
  --wood-dark: #6a4327;
  --lilac: #9468a9;
  --text: #2d241a;
  --muted: #6a5b4a;
  --line: rgba(58, 42, 24, 0.14);
  --shadow: 0 20px 45px rgba(62, 42, 20, 0.12);
  --shadow-soft: 0 10px 22px rgba(62, 42, 20, 0.1);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 10px;
  --container: min(1220px, calc(100% - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: "Nunito", sans-serif;
  color: var(--text);
  background: #f4eedf;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

.site-shell::before,
.site-shell::after {
  display: none;
}

.container {
  width: var(--container);
  max-width: 100%;
  margin: 0 auto;
}

.surface {
  background: var(--paper);
  border: 1px solid rgba(132, 97, 57, 0.18);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(6px);
}

.surface--glass {
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(33, 34, 22, 0.64), rgba(33, 34, 22, 0.4));
  color: #fff8f0;
}

.eyebrow {
  margin: 0 0 0.4rem;
  font-family: "Handlee", cursive;
  font-size: 1.15rem;
  color: var(--green);
}

.section {
  padding: 72px 0;
}

.section--muted {
  background: rgba(234, 225, 206, 0.55);
}

.section__heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 32px;
}

.section__heading h2,
.route-card h2,
.ambience-card h2,
.waters-copy h2,
.contact-card h2,
.contact-form-card h2,
.modal__panel h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.9rem);
  line-height: 1.02;
}

.section__heading p,
.route-card p,
.ambience-card p,
.waters-copy p,
.contact-card p,
.contact-form-card p,
.footer p,
.footer span,
.footer a {
  color: var(--muted);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 12px 0;
  background: rgba(247, 236, 216, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(94, 65, 37, 0.12);
}

.topbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  flex-shrink: 0;
  text-decoration: none;
}

.brand__mark {
  display: block;
  flex: 0 0 64px;
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  min-width: 64px;
  min-height: 64px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.brand__text {
  min-width: 0;
}

.brand strong {
  display: block;
  font-family: "Handlee", cursive;
  font-size: 2rem;
  line-height: 1;
}

.brand small {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
  line-height: 1.25;
}

.site-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(6px, 1.2vw, 18px);
  font-weight: 700;
  font-size: clamp(0.86rem, 0.92vw, 0.94rem);
  line-height: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  min-height: 40px;
  padding: 8px clamp(8px, 1vw, 14px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), rgba(51, 95, 52, 0.15));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.topbar__actions {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.topbar__phone {
  font-weight: 800;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border: none;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.button--solid {
  background: linear-gradient(180deg, #4f7f3a, #335f34);
  color: #fff;
}

.button--ghost {
  background: transparent;
  color: var(--green-deep);
  border: 1px solid rgba(51, 95, 52, 0.28);
}

.hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: 64px 0 72px;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 30, 16, 0.72) 0%, rgba(21, 30, 16, 0.44) 36%, rgba(21, 30, 16, 0.10) 68%),
    linear-gradient(180deg, rgba(115, 79, 43, 0.15), rgba(40, 53, 37, 0.08)),
    var(--hero-bg) center center/cover no-repeat;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 80px;
  background: linear-gradient(180deg, rgba(244, 238, 223, 0), rgba(244, 238, 223, 0.6));
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 32px;
  padding-bottom: 80px;
}

.hero__copy {
  max-width: 520px;
  background: rgba(18, 32, 10, 0.60);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: 36px 40px;
}

.hero__headline {
  margin: 0;
  font-family: "Handlee", cursive;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  color: #fff;
  font-style: italic;
}

.hero__accent {
  display: block;
  font-family: "Handlee", cursive;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  color: #8cd44f;
  font-style: normal;
  line-height: 1.05;
  margin-top: 2px;
}

.hero__tagline {
  margin: 16px 0 8px;
  font-size: 1.25rem;
  font-weight: 800;
  color: #fff;
}

.hero__text {
  margin: 0;
  font-size: 1.0rem;
  line-height: 1.65;
  color: rgba(255, 248, 230, 0.85);
}

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

.hero__chalkboard {
  flex-shrink: 0;
  background: rgba(22, 40, 12, 0.88);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 28px 24px;
  color: #f0f7e4;
  text-align: center;
  min-width: 170px;
  max-width: 210px;
  font-family: "Handlee", cursive;
  font-size: 1.25rem;
  line-height: 1.9;
}

.hero-deco {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-chalkboard {
  position: absolute;
  right: clamp(28px, 5vw, 88px);
  bottom: 88px;
  z-index: 3;
  margin: 0;
  transform: none;
  box-shadow: 0 14px 32px rgba(21, 30, 16, 0.22);
}

.hero__chalkboard p {
  margin: 0;
}

.hero__heart {
  display: block;
  font-size: 1.6rem;
  color: #8cd44f;
  margin-top: 8px;
}

.hero__wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  line-height: 0;
}

.hero__wave svg {
  width: 100%;
  height: 60px;
  display: block;
}

.equipment-panel--top {
  width: 100%;
  max-width: none;
  margin: 0 0 28px;
  padding: 18px 20px 16px;
  background: var(--paper);
  border: 1px solid rgba(132, 97, 57, 0.18);
  box-shadow: var(--shadow);
}

.equipment-panel--top .equipment-panel__grid {
  max-width: 520px;
  margin: 0 auto;
}

.booking__layout {
  display: block;
}

.booking__equipment {
  position: relative;
  z-index: 1;
  width: min(820px, calc(100% - 32px));
  margin: 40px auto 12px;
  padding: 28px 32px 26px;
  text-align: center;
}

.booking__equipment.equipment-panel,
.booking__equipment.equipment-panel--below {
  width: min(820px, calc(100% - 32px));
  margin: 40px auto 12px;
}

.equipment-panel--below {
  max-width: none;
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.equipment-panel--below .equipment-panel__title {
  text-align: center;
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.equipment-panel--below .equipment-panel__grid {
  max-width: 680px;
  margin: 0 auto;
  gap: 20px;
}

.equipment-panel--below .equipment-tile img {
  aspect-ratio: 3 / 4;
  min-height: 220px;
}

.equipment-panel--below .equipment-tile figcaption {
  padding: 10px 12px 12px;
}

.equipment-panel--below .equipment-tile strong {
  font-size: 0.95rem;
}

.equipment-panel--below .equipment-tile span {
  font-size: 0.82rem;
}

.booking > .container > .section__heading {
  margin-bottom: 24px;
}

.booking__heading,
.info-row__heading {
  position: relative;
  z-index: 1;
  padding: 28px 32px;
  margin-bottom: 28px;
}

.booking > .container {
  width: var(--container);
  max-width: 100%;
}

.boat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.boat-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  height: 100%;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
}

.boat-card__visual {
  position: relative;
  height: 195px;
  flex-shrink: 0;
  background: linear-gradient(160deg, #7ca563, #4b6d39);
  overflow: hidden;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.boat-card__carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.boat-card__carousel-track {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translateX(calc(var(--slide-index, 0) * -100%));
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.boat-card__carousel-track img {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.boat-card__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}

.boat-card__dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}

.boat-card__dots span.is-active {
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.15);
}

.boat-card__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(21, 30, 16, 0.55);
  color: #fff;
  cursor: pointer;
  backdrop-filter: blur(4px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.boat-card__nav:hover {
  background: rgba(21, 30, 16, 0.78);
  transform: translateY(-50%) scale(1.05);
}

.boat-card__nav:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.boat-card__nav--prev {
  left: 10px;
}

.boat-card__nav--next {
  right: 10px;
}

.boat-card__variant-note {
  margin: auto 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(51, 95, 52, 0.07);
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted);
}

.equipment-panel {
  width: min(75%, 580px);
  margin: 0 0 28px;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background: rgba(51, 95, 52, 0.06);
  border: 1px dashed rgba(51, 95, 52, 0.2);
}

.booking .booking__equipment.equipment-panel {
  width: min(820px, calc(100% - 32px));
  margin: 40px auto 12px;
  padding: 28px 32px 26px;
  background: var(--paper);
  border: 1px solid rgba(132, 97, 57, 0.18);
  box-shadow: var(--shadow);
  border-radius: var(--radius-xl);
}

.equipment-panel__title {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--green-deep);
}

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

.equipment-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  text-align: center;
  background: rgba(255, 252, 242, 0.92);
  border-radius: 14px;
  border: 1px solid rgba(51, 95, 52, 0.12);
  box-shadow: 0 6px 16px rgba(35, 56, 28, 0.05);
}

.equipment-tile img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  flex: 0 0 auto;
  min-height: 160px;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  display: block;
  box-shadow: none;
}

.equipment-tile figcaption {
  display: grid;
  gap: 2px;
  padding: 8px 10px 10px;
  border-top: 1px solid rgba(51, 95, 52, 0.08);
  background: rgba(255, 252, 242, 0.98);
}

.equipment-tile strong {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.25;
}

.equipment-tile span {
  font-size: 0.74rem;
  color: var(--muted);
  line-height: 1.3;
}

@media (max-width: 520px) {
  .equipment-panel {
    width: min(92%, 420px);
  }

  .equipment-panel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .equipment-tile img {
    min-height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .boat-card__carousel-track {
    transition: none;
  }
}

.boat-card__capacity-badge {
  position: absolute;
  bottom: 10px;
  right: 12px;
  z-index: 2;
  background: rgba(35, 56, 28, 0.82);
  color: #f0f7ec;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  letter-spacing: 0.02em;
}

.boat-card__info {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 18px 18px 14px;
  border-bottom: 1px solid rgba(51, 95, 52, 0.1);
}

.boat-card__info h3 {
  margin: 0 0 6px;
  font-size: 1.55rem;
  line-height: 1.2;
}

.boat-card__info p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.5;
}

.boat-card__controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px 18px;
  flex: 0 0 auto;
  margin-top: auto;
}

.boat-card__fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field label,
.stack-form label span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field select,
.stack-form input,
.stack-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(51, 95, 52, 0.22);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
}

.field input:not([type="number"]) {
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(51, 95, 52, 0.22);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
}

.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23335f34' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

.stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 252, 248, 0.95);
  border: 1px solid rgba(51, 95, 52, 0.28);
  border-radius: 50px;
  padding: 4px;
  gap: 0;
  min-height: 46px;
  width: 100%;
  max-width: 100%;
}

.stepper button {
  flex: 0 0 36px;
  height: 36px;
  width: 36px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(180deg, #4f7f3a, #335f34);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: opacity 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stepper button:hover {
  opacity: 0.82;
}

.stepper input {
  flex: 0 0 44px;
  width: 44px;
  text-align: center;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--text);
  border: none;
  background: transparent;
  padding: 0 4px;
  -moz-appearance: textfield;
}

.stepper input::-webkit-outer-spin-button,
.stepper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.boat-card__price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  background: rgba(51, 95, 52, 0.07);
  border: 1px solid rgba(51, 95, 52, 0.15);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
}

.boat-card__price-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.boat-card__price-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.boat-card__price-value {
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 900;
  color: var(--green-deep);
  line-height: 1;
  white-space: nowrap;
}

.boat-card__cta {
  flex-shrink: 0;
  white-space: nowrap;
  justify-self: end;
  padding-inline: 14px;
  font-size: 0.92rem;
}

.boat-card__hint {
  margin: 0;
  min-height: 2.9em;
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.45;
}

.feature-tiles {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px;
}

.feature-tile {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.feature-tile__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  line-height: 1.2;
}

.feature-tile strong {
  display: block;
  font-size: 0.98rem;
  color: var(--text);
  margin-bottom: 2px;
}

.feature-tile p {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.aside-contact {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed rgba(51, 95, 52, 0.22);
}

.booking__aside h3,
.map-card h3,
.footer strong,
.contact-card dt {
  margin-top: 0;
}

.feature-list,
.route-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 12px;
  color: var(--muted);
}

.split-grid,
.waters-grid,
.contact-grid,
.footer__grid {
  display: grid;
  gap: 24px;
}

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

.route-card,
.ambience-card,
.waters-copy,
.map-card,
.contact-card,
.contact-form-card {
  padding: 28px;
}

.price-notes {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.route-card .price-notes {
  margin-top: 0;
}

.prices__heading {
  margin-bottom: 8px;
}

.prices__heading h2 {
  margin: 0;
}

.price-notes div,
.contact-list div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px dashed rgba(90, 67, 45, 0.2);
}

.ambience-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.ambience-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 248, 240, 0.85);
  border: 1px solid rgba(90, 67, 45, 0.12);
}

.waters-grid,
.contact-grid {
  grid-template-columns: 1.15fr 0.85fr;
}

.modern-map-card {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 250, 241, 0.86), rgba(250, 241, 226, 0.82));
  border: 1px solid rgba(122, 91, 58, 0.22);
}

.modern-map-card__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 252, 246, 0.9);
  border: 1px solid rgba(122, 91, 58, 0.16);
  box-shadow: var(--shadow-soft);
}

.modern-map-card__image {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.modern-map-card__overlay {
  position: absolute;
  inset: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.modern-map-card__pin,
.modern-map-card__badge {
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff9ef;
  background: rgba(47, 83, 36, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(4px);
}

.modern-map-card__badge {
  background: rgba(97, 67, 39, 0.9);
}

.modern-map-card__pin {
  align-self: flex-end;
  background: rgba(47, 83, 36, 0.92);
}

.modern-map-card__content h3 {
  margin-bottom: 6px;
}

.modern-map-card__subtitle {
  margin: 0;
  font-weight: 700;
  color: var(--muted);
}

.modern-map-card__steps {
  margin: 14px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.modern-map-card__facts {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.modern-map-card__facts span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255, 246, 234, 0.9);
  border: 1px solid rgba(124, 95, 65, 0.18);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.modern-map-card__actions {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.modern-map-card__actions .button {
  min-height: 46px;
}

.map-card__visual {
  min-height: 220px;
  border-radius: 22px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--green-deep);
  font-family: "Handlee", cursive;
  font-size: 2rem;
  background:
    linear-gradient(135deg, rgba(51, 95, 52, 0.22), rgba(63, 127, 152, 0.1)),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.35) 18px, rgba(255, 255, 255, 0.1) 18px, rgba(255, 255, 255, 0.1) 36px);
}

.contact-list {
  margin: 20px 0 0;
}

.contact-list dt {
  font-weight: 800;
}

.legal-card {
  max-width: 860px;
  padding: 32px;
}

.legal-lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.legal-card__subtitle {
  margin: 28px 0 10px;
  font-size: 1.05rem;
}

.legal-card__subtitle:first-of-type {
  margin-top: 0;
}

.legal-block p,
.legal-block ul {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.legal-block ul {
  padding-left: 1.25rem;
}

.legal-block li {
  margin-bottom: 4px;
}

.legal-block p:last-child,
.legal-block ul:last-child {
  margin-bottom: 0;
}

.legal-disclaimer {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

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

.legal-back {
  margin-top: 32px;
}

.stack-form {
  display: grid;
  gap: 14px;
}

.form-feedback {
  min-height: 1.4em;
  margin: 0;
  color: var(--green-deep);
  font-weight: 800;
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem;
  align-items: start;
  width: 100%;
  max-width: 100%;
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

.form-check input {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.stack-form label.form-check span {
  min-width: 0;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.45;
}

.booking-modal__hint {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.date-field {
  display: grid;
  gap: 6px;
}

.date-picker {
  position: relative;
}

.date-picker__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(51, 95, 52, 0.22);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.date-picker__trigger:hover,
.date-picker__trigger:focus-visible {
  border-color: rgba(51, 95, 52, 0.42);
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 95, 52, 0.12);
}

.date-picker__trigger svg {
  flex-shrink: 0;
  color: var(--green-deep);
}

.date-picker__popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: min(100%, 300px);
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(51, 95, 52, 0.18);
  background: rgba(255, 252, 248, 0.98);
  box-shadow: var(--shadow);
}

.date-picker__header {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.date-picker__header strong {
  text-align: center;
  font-size: 0.95rem;
}

.date-picker__nav {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(51, 95, 52, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  font-size: 1.2rem;
  line-height: 1;
  cursor: pointer;
}

.date-picker__nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.date-picker__weekdays,
.date-picker__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.date-picker__weekdays {
  margin-bottom: 6px;
}

.date-picker__weekdays span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.date-picker__day {
  display: grid;
  place-items: center;
  min-height: 34px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.date-picker__day:hover:not(:disabled) {
  background: rgba(51, 95, 52, 0.1);
}

.date-picker__day.is-today {
  box-shadow: inset 0 0 0 2px rgba(51, 95, 52, 0.35);
}

.date-picker__day.is-selected {
  background: var(--green-deep);
  color: #fff;
}

.date-picker__day:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.date-picker__day--pad {
  min-height: 34px;
}

.time-field {
  display: grid;
  gap: 6px;
}

.time-picker {
  position: relative;
}

.time-picker__trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 46px;
  padding: 10px 14px;
  border: 1px solid rgba(51, 95, 52, 0.22);
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.95);
  color: var(--text);
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.time-picker__trigger:hover,
.time-picker__trigger:focus-visible {
  border-color: rgba(51, 95, 52, 0.42);
  outline: none;
  box-shadow: 0 0 0 3px rgba(51, 95, 52, 0.12);
}

.time-picker__trigger svg {
  flex-shrink: 0;
  color: var(--green-deep);
}

.time-picker__popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 20;
  width: min(100%, 320px);
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(51, 95, 52, 0.18);
  background: rgba(255, 252, 248, 0.98);
  box-shadow: var(--shadow);
}

.time-picker__backdrop {
  display: none;
}

.time-picker__sheet-head {
  display: none;
}

.time-picker__close {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(51, 95, 52, 0.08);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.time-picker__preview {
  display: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  color: var(--green-deep);
}

.time-picker__wheel {
  position: relative;
}

.time-picker__wheel-highlight {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 48px;
  border-radius: 14px;
  background: rgba(51, 95, 52, 0.08);
  border: 1px solid rgba(51, 95, 52, 0.14);
  pointer-events: none;
  z-index: 0;
}

.time-picker__columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.time-picker__label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  text-align: center;
}

.time-picker__list {
  display: block;
  max-height: 216px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scroll-snap-type: y mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 84px 0;
  scrollbar-width: none;
}

.time-picker__list::-webkit-scrollbar {
  display: none;
}

.time-picker__option {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 700;
  scroll-snap-align: center;
  cursor: pointer;
  transition: color 160ms ease, transform 160ms ease;
}

.time-picker__option:hover:not(:disabled) {
  color: var(--text);
}

.time-picker__option.is-selected {
  color: var(--green-deep);
  transform: scale(1.06);
}

.time-picker__option:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.time-picker__confirm {
  display: none;
  width: 100%;
  margin-top: 14px;
}

@media (max-width: 640px) {
  .time-picker__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(24, 22, 17, 0.48);
    backdrop-filter: blur(2px);
    z-index: 120;
  }

  .time-picker__backdrop[hidden] {
    display: none;
  }

  .time-picker__popover {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: 100%;
    max-width: none;
    padding: 18px 18px calc(18px + env(safe-area-inset-bottom, 0px));
    border-radius: 24px 24px 0 0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    z-index: 121;
    box-shadow: 0 -16px 48px rgba(24, 22, 17, 0.18);
  }

  .time-picker__sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 4px;
  }

  .time-picker__sheet-head strong {
    font-size: 1rem;
  }

  .time-picker__preview {
    display: block;
    margin: 4px 0 12px;
    text-align: center;
    font-size: clamp(2.5rem, 11vw, 3.2rem);
    font-weight: 800;
    line-height: 1;
  }

  .time-picker__wheel-highlight {
    height: 52px;
    background: rgba(51, 95, 52, 0.1);
  }

  .time-picker__option {
    min-height: 52px;
    font-size: 1.35rem;
  }

  .time-picker__list {
    max-height: 208px;
    padding: 78px 0;
  }

  .time-picker__confirm {
    display: inline-flex;
    justify-content: center;
    min-height: 50px;
  }
}

.footer {
  padding: 36px 0 46px;
  background:
    linear-gradient(180deg, rgba(55, 82, 42, 0.97), rgba(35, 56, 28, 0.99)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.03) 24px, rgba(0, 0, 0, 0.02) 24px, rgba(0, 0, 0, 0.02) 48px);
  color: #f0f7ec;
}

.footer__grid {
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
}

.footer a,
.footer span,
.footer p {
  display: block;
  margin-top: 10px;
  color: rgba(240, 247, 236, 0.82);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 180ms ease, visibility 180ms ease;
  z-index: 100;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 22, 17, 0.62);
  backdrop-filter: blur(4px);
}

.modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(92vh, 860px);
  overflow: auto;
  padding: 28px;
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(90, 67, 45, 0.18);
  background: rgba(255, 251, 244, 0.9);
  cursor: pointer;
}

.booking-summary {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin: 18px 0 20px;
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.75);
  border: 1px solid rgba(90, 67, 45, 0.12);
}

.booking-summary strong {
  font-size: 1.2rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(90, 67, 45, 0.12);
  border-radius: 14px;
  background: rgba(255, 251, 244, 0.78);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-deep);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.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;
}

@media (min-width: 1280px) {
  .boat-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) {
  .waters-grid,
  .contact-grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .topbar__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand toggle"
      "nav nav";
    gap: 12px;
    align-items: center;
  }

  .brand {
    grid-area: brand;
    max-width: calc(100% - 56px);
  }

  .menu-toggle {
    display: inline-block;
    grid-area: toggle;
    justify-self: end;
    position: relative;
    z-index: 62;
    touch-action: manipulation;
  }

  .site-nav {
    grid-area: nav;
    position: static;
    left: auto;
    right: auto;
    top: auto;
    display: grid;
    gap: 6px;
    justify-content: stretch;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 22px;
    background: rgba(251, 243, 228, 0.98);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: none;
    transition: max-height 220ms ease, opacity 180ms ease, padding 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    max-height: 420px;
    padding: 14px;
    border: 1px solid rgba(90, 67, 45, 0.12);
    box-shadow: var(--shadow);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 12px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(51, 95, 52, 0.08);
  }

  .topbar__actions {
    display: none;
  }

  .hero {
    min-height: 68vh;
  }

  .hero__content {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 50px;
  }

  .hero-deco {
    display: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 56px 0;
  }

  .section__heading {
    grid-template-columns: 1fr;
    display: grid;
  }

  .boat-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .hero__copy,
  .route-card,
  .ambience-card,
  .waters-copy,
  .map-card,
  .contact-card,
  .contact-form-card,
  .booking__aside,
  .modal__panel {
    padding: 22px;
  }

  .hero__headline {
    font-size: clamp(2.6rem, 10vw, 3.5rem);
  }

  .hero__accent {
    font-size: clamp(2.4rem, 9vw, 3.2rem);
  }

  .modern-map-card__image {
    height: 200px;
  }
}

@media (max-width: 480px) {
  :root {
    --container: min(1220px, calc(100% - 24px));
  }

  .brand strong {
    font-size: 1.6rem;
  }

  .brand small {
    font-size: 0.82rem;
  }

  .hero__actions,
  .map-card__actions {
    display: grid;
  }

  .modern-map-card__actions {
    display: grid;
  }

  .button {
    width: 100%;
  }
}

/* ── Button Variante: Hero Ghost ─────────────────── */
.button--hero-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(4px);
}

.button--hero-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
}

/* ── Booking Section Heading (zentriert) ─────────── */
.section__heading--center {
  justify-content: center;
  text-align: center;
  flex-direction: column;
  align-items: center;
}

.booking__title {
  font-family: "Handlee", cursive;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--green-deep);
  margin: 0 0 10px;
  line-height: 1.2;
}

.booking__subtitle {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

/* ── Info Row (Revier / Strecke) ──────────── */
.info-row {
  background: rgba(234, 225, 206, 0.55);
}

.info-row__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.info-row__grid--three .info-card--nature {
  grid-column: 1 / -1;
}

.info-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 100%;
}

.info-card__media {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.info-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.info-card__media--portrait {
  height: 180px;
}

.info-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.info-card__body h3 {
  margin: 0;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.3;
}

.info-card__body p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

.info-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
}

.info-card__actions .button {
  min-height: 40px;
  padding: 0 16px;
  font-size: 0.88rem;
}

.info-card__greeting {
  font-size: 1.0rem;
  font-weight: 700;
  color: var(--green-deep);
  margin: 0;
}

.info-card__name {
  display: block;
  font-size: 1.1rem;
  color: var(--text);
}

.info-card__role {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.info-card__contacts {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 6px;
}

.info-card__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--green);
  font-weight: 700;
  text-decoration: none;
}

.info-card__contact-link:hover {
  text-decoration: underline;
}

/* Dark nature quote banner */
.info-card--nature {
  background: linear-gradient(160deg, #2d4a1e, #1a3212);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-card--nature-banner {
  min-height: 0;
  padding: 28px 32px;
}

.info-card--nature-banner .info-card__quote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 4vw, 32px);
  width: 100%;
  max-width: 920px;
  padding: 0;
  text-align: left;
}

.info-card--nature-banner .info-card__quote p {
  font-family: "Handlee", cursive;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  line-height: 1.65;
  margin: 0;
  color: #d4edb4;
  flex: 1;
}

.info-card--nature-banner .info-card__heart {
  display: block;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  color: #8cd44f;
  margin-top: 0;
  flex-shrink: 0;
}

.info-card__quote {
  padding: 28px 22px;
  text-align: center;
  color: #d4edb4;
}

.info-card__quote p {
  font-family: "Handlee", cursive;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
  color: #d4edb4;
}

.info-card__heart {
  display: block;
  font-size: 1.8rem;
  color: #8cd44f;
  margin-top: 14px;
}

/* Check list */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.check-list li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Footer bar (top strip) */
.footer__bar {
  background: rgba(0, 0, 0, 0.25);
  padding: 10px 0;
  font-size: 0.88rem;
}

.footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  align-items: center;
  justify-content: center;
  color: rgba(240, 247, 236, 0.75);
}

.footer__bar-inner a {
  color: rgba(240, 247, 236, 0.85);
}

.footer__bar-inner a:hover {
  color: #8cd44f;
}

/* Topbar phone icon alignment */
.topbar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 800;
}

/* Responsive info-row */
@media (max-width: 760px) {
  .info-row__grid {
    grid-template-columns: 1fr;
  }

  .info-card--nature-banner .info-card__quote {
    flex-direction: column;
    text-align: center;
  }

  .info-card--nature-banner .info-card__heart {
    margin-top: 4px;
  }
}

@media (max-width: 600px) {
  .hero__copy {
    padding: 24px 22px;
  }
}

/* ============================================================
   Issue #23 – Naturdetails & Zeitangaben
   ============================================================ */

/* --- Dekorations-Container (Shrub, Tree, Reeds) --- */
.decor-shrub,
.decor-tree,
.decor-reeds {
  pointer-events: none;
  user-select: none;
  line-height: 0;
}

/* Strauch – Hero unten rechts */
.decor-shrub--hero {
  position: absolute;
  right: clamp(18px, 4vw, 72px);
  bottom: 14px;
  width: min(160px, 20vw);
  opacity: 0.88;
  z-index: 1;
}

/* Strauch – Booking-Bereich rechts */
.decor-shrub--booking {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-20%);
  width: 160px;
  opacity: 0.75;
  z-index: 0;
}

/* Baum – zentriert unter den Bootkarten */
.decor-tree {
  text-align: center;
  margin-top: 8px;
  padding-bottom: 8px;
  opacity: 0.72;
}
.decor-tree svg {
  width: 220px;
  height: auto;
}

/* Schilf – links in der Info-Row */
.decor-reeds {
  position: absolute;
  left: 8px;
  bottom: 12px;
  width: 110px;
  opacity: 0.68;
  z-index: 0;
}

/* Sicherstellen, dass Booking-Section relativ positioniert ist */
.section.booking {
  position: relative;
  overflow: hidden;
}

/* Info-Row relativ für Schilf-Platzierung */
.section.info-row {
  position: relative;
  overflow: hidden;
}

/* --- Öffnungszeiten-Chips --- */
.schedule-chips {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 14px;
}

.schedule-chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(255, 252, 242, 0.70);
  border: 1px solid rgba(90, 67, 45, 0.15);
  border-radius: 30px;
  padding: 7px 16px;
  font-size: 0.9rem;
}

.schedule-chip__label {
  font-weight: 700;
  color: var(--forest);
  white-space: nowrap;
}

.schedule-chip__time {
  color: var(--ink);
  font-size: 0.88rem;
  text-align: right;
}

.schedule-chip--weekend {
  background: rgba(51, 95, 52, 0.08);
  border-color: rgba(51, 95, 52, 0.22);
}

.schedule-chip--weekend .schedule-chip__label {
  color: var(--forest);
}

/* --- Responsive: Deko auf Mobile reduzieren --- */
@media (max-width: 980px) {
  .decor-shrub--booking {
    display: none;
  }

  .decor-tree svg {
    width: 160px;
  }

  .decor-reeds {
    width: 80px;
    opacity: 0.50;
  }
}

@media (max-width: 600px) {
  .decor-tree,
  .decor-reeds {
    display: none;
  }
}

/* Mobile: Karten und Inhalte nicht abschneiden */
@media (max-width: 760px) {
  .section.booking,
  .section.info-row {
    overflow: visible;
  }

  .hero__copy {
    max-width: 100%;
    width: 100%;
  }

  .booking__heading,
  .info-row__heading {
    padding: 22px 18px;
    min-width: 0;
  }

  .booking__heading h2,
  .booking__heading p,
  .info-row__heading h2,
  .info-row__heading p {
    overflow-wrap: anywhere;
  }

  .booking .booking__equipment.equipment-panel {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    padding: 20px 16px;
  }

  .boat-card__info {
    padding: 16px 14px 12px;
  }

  .boat-card__controls {
    padding: 14px 14px 16px;
  }

  .boat-card__price-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .boat-card__cta {
    width: 100%;
    justify-self: stretch;
    text-align: center;
  }

  .boat-card__price-value {
    white-space: normal;
  }

  .equipment-tile figcaption {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .equipment-tile img {
    min-height: 200px;
  }

  .info-card__body {
    padding: 18px 16px 20px;
  }
}

/* Logo-Schutz (verbindlich): Emblem, Titel und Untertitel nie ausblenden */
.brand__mark,
.brand__mark img,
.brand strong,
.brand small {
  visibility: visible !important;
  opacity: 1 !important;
}

.brand__mark {
  display: block !important;
}

.brand__mark img {
  display: block !important;
  object-fit: contain !important;
  object-position: center !important;
  transform: none !important;
}

.brand strong,
.brand small {
  display: block !important;
}
