.zittauer {
  padding: clamp(2.2rem, 4.6vw, 3.6rem) 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: clamp(1.2rem, 3vw, 2.4rem);
  margin-top: 1.5rem;
}

.highlight-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow2);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.highlight-card:hover {
  box-shadow: 0 20px 60px rgba(30,59,47,0.3);
  transform: translateY(-4px);
}

.highlight-card h2 {
  font-family: "Fraunces", serif;
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--pine);
}

.highlight-card p {
  color: rgba(31,36,32,0.8);
  line-height: 1.5;
}

.highlight-card img {
  width: 100%;
  height: auto;
  border-radius: var(--radius2);
  margin-top: 1rem;
  box-shadow: var(--shadow2);
  object-fit: cover;
}

.route-card {
  min-height: 100%;
}

.route-card img {
  aspect-ratio: 16 / 10;
}

.route-facts {
  display: grid;
  gap: .55rem;
  margin: 1rem 0 0;
}

.route-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .55rem .7rem;
  border-radius: 8px;
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
}

.route-facts dt {
  color: rgba(31,36,32,.62);
  font-weight: 700;
}

.route-facts dd {
  color: var(--pine);
  font-weight: 800;
  margin: 0;
  text-align: right;
}

.route-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 1rem;
  padding: .72rem 1rem;
  border-radius: 8px;
  background: var(--pine);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease;
}

.route-link:hover {
  background: #2f5b46;
  transform: translateY(-2px);
}

.additional-info {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow2);
  border: 1px solid var(--line);
  color: rgba(31,36,32,0.85);
  line-height: 1.6;
  margin-top: 3rem;
}

.additional-info h2 {
  font-family: "Fraunces", serif;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--pine);
}

.legal-page {
  max-width: 900px;
  margin-inline: auto;
  overflow-wrap: anywhere;
}

.legal-page h1 {
  margin: .45rem 0 1rem;
}

.legal-page h2 {
  margin-top: 1.7rem;
}

.legal-page a {
  color: color-mix(in srgb, var(--pine) 82%, black);
  font-weight: 700;
  border-bottom: 1px solid rgba(30,59,47,.28);
}

.legal-lead {
  font-size: 1.05rem;
  color: rgba(31,36,32,.78);
}

.route-detail {
  scroll-margin-top: 110px;
}

.route-detail h3 {
  color: var(--pine);
  font-size: 1.04rem;
  margin: 1.3rem 0 .45rem;
}

.route-detail p + p {
  margin-top: .85rem;
}

.route-intro,
.route-stations {
  padding: .9rem 1rem;
  border-radius: 8px;
  background: rgba(215,165,74,.13);
  border: 1px solid rgba(215,165,74,.24);
}

.route-stations {
  line-height: 1.7;
}

.additional-info img {
  width: 100%;
  height: auto;
  border-radius: var(--radius2);
  margin: 1rem 0;
  box-shadow: var(--shadow2);
  object-fit: cover;
}

.guestbook-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guestbook-section-head h2 {
  margin-bottom: 0;
}

.guestbook-summary {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
  padding: .85rem 1rem;
  border-radius: var(--radius2);
  background: rgba(215,165,74,.13);
  border: 1px solid rgba(215,165,74,.24);
  margin-bottom: 1.2rem;
}

.guestbook-summary strong {
  color: var(--pine);
  font-size: 1.25rem;
}

.guestbook-summary span,
.guestbook-stars {
  color: #b96b2b;
  letter-spacing: 0;
  white-space: nowrap;
}

.guestbook-summary small {
  color: rgba(31,36,32,.68);
}

.guestbook-list {
  display: grid;
  gap: .9rem;
  max-height: 920px;
  overflow: auto;
  padding-right: .3rem;
}

.guestbook-entry {
  border: 1px solid var(--line);
  border-radius: var(--radius2);
  background: rgba(255,255,255,.58);
  padding: 1rem 1.1rem;
}

.guestbook-entry header {
  display: flex;
  justify-content: space-between;
  gap: .8rem;
  align-items: flex-start;
  margin-bottom: .55rem;
}

.guestbook-entry header div {
  display: grid;
  gap: .15rem;
}

.guestbook-entry header span:not(.guestbook-stars) {
  color: rgba(31,36,32,.62);
  font-size: .9rem;
}

.guestbook-entry p {
  margin: 0;
  color: rgba(31,36,32,.8);
  line-height: 1.55;
}

.form-note {
  border-radius: var(--radius2);
  padding: .85rem 1rem;
  margin: 1rem 0;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.66);
}

.form-note.is-success {
  border-color: rgba(78,126,91,.34);
  background: rgba(78,126,91,.12);
  color: #285338;
}

.form-note.is-error {
  border-color: rgba(172,74,62,.34);
  background: rgba(172,74,62,.1);
  color: #7a332b;
}

.guestbook-toggle {
  flex: 0 0 auto;
}

.guestbook-form-wrap {
  margin-top: 1.2rem;
}

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 560px) {
  .guestbook-section-head {
    align-items: flex-start;
    display: grid;
  }

  .guestbook-entry header {
    display: grid;
  }
}

/* Call-to-Action Button nutzt Styles aus common.css */
