/* =============================================
   MURK-REISEN – Neue Website
   ============================================= */

/* --- Tokens --- */
:root {
  --red:          #c0181f;
  --red-dark:     #9a121b;
  --red-light:    #fff5f5;
  --green:        #2e7d32;
  --green-dark:   #1b5e20;
  --green-light:  #e8f5e9;
  --green-border: #a5d6a7;
  --black:      #111111;
  --white:      #ffffff;
  --bg:         #f7f7f8;
  --text:       #1a1a2e;
  --muted:      #4b5563;
  --border:     #e8e8ed;
  --shadow:     0 4px 24px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.12);
  --radius:     14px;
  --radius-sm:  8px;
  --radius-btn: 50px;
  --max-w:      1140px;
  --nav-h:      72px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* --- Cookie-Hinweis (technisch notwendig, dezent dismissable) --- */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--text);
  color: rgba(255, 255, 255, 0.95);
  padding: 1rem 1.25rem;
  z-index: 9000;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 0.88rem;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  border-top: 3px solid var(--red);
}
.cookie-notice[hidden] { display: none !important; }
.cookie-notice p {
  margin: 0;
  max-width: 700px;
  line-height: 1.5;
}
.cookie-notice a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
}
.cookie-notice button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius-btn);
  font-weight: 700;
  cursor: pointer;
  font-size: 0.88rem;
  font-family: inherit;
  white-space: nowrap;
}
.cookie-notice button:hover { background: var(--red-dark); }
@media (max-width: 600px) {
  .cookie-notice { flex-direction: column; text-align: center; }
}

/* --- Accessibility: Skip-Link + Focus-Styles --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--red);
  color: var(--white);
  padding: .75rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) 0;
  font-weight: 700;
  text-decoration: none;
  z-index: 9999;
  transition: top .15s;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 0;
  outline: 3px solid var(--text);
  outline-offset: 0;
}

/* Universelle Tastatur-Fokus-Sichtbarkeit für alle interaktiven Elemente */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
  border-radius: 2px;
}
/* Maus-Klicks zeigen keinen Outline-Ring — :focus-visible ist nur Keyboard */
:focus:not(:focus-visible) { outline: none; }

/* Hauptinhalt-Ziel für Skip-Link braucht keinen sichtbaren Fokus */
main:focus,
[id="main"]:focus { outline: none; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.8;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--red); text-decoration: none; }
a:hover { text-decoration: underline; }
ul { list-style: none; }

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}
.section--light { background: var(--bg); }
.section--white { background: var(--white); }
.section--dark  { background: var(--black); color: var(--white); }

/* --- Section Label --- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--red);
  font-weight: 700;
  background: var(--red-light);
  padding: 4px 12px;
  border-radius: 50px;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
.section-intro {
  font-size: 1rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 2.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s, box-shadow .2s;
  text-decoration: none;
  letter-spacing: 0.2px;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: 0 4px 16px rgba(192,24,31,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 20px rgba(192,24,31,.4);
  text-decoration: none;
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
}
.btn-outline:hover {
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(192,24,31,.3);
}
.btn-white {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
  text-decoration: none;
}

/* =============================================
   NAVIGATION
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-logo img {
  height: 38px;
  width: auto;
  max-width: none;
}
.nav-logo-text {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  margin-left: auto;
}
.nav-links > li {
  position: relative;
}
.nav-links > li > a {
  display: block;
  padding: 0.5rem 0.9rem;
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  transition: color .2s;
  border-radius: var(--radius-sm);
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--red);
  text-decoration: none;
}

/* Dropdown */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  overflow: hidden;
}
.nav-links > li:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown a {
  display: block;
  padding: 0.65rem 1.2rem;
  color: var(--text);
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
  transition: background .15s, color .15s;
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover {
  background: var(--red-light);
  color: var(--red);
  text-decoration: none;
}
.nav-mobile-only { display: none; }

.nav-cta-btn {
  margin-left: 1rem;
  flex-shrink: 0;
  color: var(--white) !important;
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 4px 16px rgba(154,18,27,.3);
}
.nav-cta-btn:hover {
  color: var(--white) !important;
  background: #7a0e14;
  border-color: #7a0e14;
  box-shadow: 0 6px 20px rgba(154,18,27,.4);
}

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  border-radius: var(--radius-sm);
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}
/* X-Animation beim Öffnen */
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  background: var(--text) center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.28) 60%, rgba(0,0,0,.05) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 560px;
}
.hero-content h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero-badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,.9);
  background: rgba(192,24,31,.8);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

/* =============================================
   TRIP CARDS
   ============================================= */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
  border: 1px solid var(--border);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card-tag {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 0.4rem;
  background: var(--red-light);
  display: inline-block;
  padding: 2px 8px;
  border-radius: 50px;
}
.card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.35;
}
.card-date {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
}
.card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1rem;
}
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.4rem;
  border-top: 1px solid var(--border);
  background: var(--red-light);
  border-radius: 0 0 var(--radius) var(--radius);
}
.card-price {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
  letter-spacing: -0.02em;
}
.card-price small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 2px;
}

/* =============================================
   STATS COUNTER SECTION
   ============================================= */
.counter-section {
  background: var(--text) center/cover no-repeat;
  position: relative;
  padding: 5rem 0;
}
.counter-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.5);
}
.counter-inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.counter-item {
  text-align: center;
  color: var(--white);
}
.counter-num {
  display: block;
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}
.counter-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,.8);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
}

/* =============================================
   TRIP TABLE
   ============================================= */
.trip-table {
  width: 100%;
  border: 1px solid var(--border);
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius);
  overflow: hidden;
}
.trip-table tr:nth-child(odd)  { background: var(--red-light); }
.trip-table tr:nth-child(even) { background: var(--white); }
.trip-table tr:hover { background: #fde8e8; }
.trip-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  color: var(--text);
}
.trip-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  width: 28%;
  letter-spacing: -0.02em;
}
.trip-table td:last-child small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  margin-top: 2px;
}
.trip-table tr:last-child td { border-bottom: none; }

/* =============================================
   TEAM SECTION
   ============================================= */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}
.team-card {
  text-align: center;
  width: 160px;
}
.team-card img {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 0.75rem;
  border: 3px solid var(--border);
  box-shadow: var(--shadow);
}
.team-name {
  font-weight: 700;
  color: var(--text);
  font-size: 1rem;
}
.team-role {
  font-size: 0.85rem;
  color: var(--muted);
}

/* =============================================
   NEWSLETTER SIGNUP STRIP
   ============================================= */
.newsletter-strip {
  background: linear-gradient(135deg, #7a0e14 0%, var(--red-dark) 100%);
  padding: 3.5rem 0;
  text-align: center;
  color: var(--white);
}
.newsletter-strip h2 {
  color: var(--white);
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}
.newsletter-strip p {
  color: rgba(255,255,255,.85);
  margin-bottom: 1.5rem;
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.newsletter-form input {
  padding: 12px 20px;
  border: none;
  border-radius: var(--radius-btn);
  font-size: 0.95rem;
  width: 280px;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.newsletter-form input:focus { outline: 2px solid rgba(255,255,255,.5); }

/* =============================================
   CONTACT FORM
   ============================================= */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,24,31,.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-captcha {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.form-captcha span {
  font-size: 0.95rem;
  color: var(--muted);
}
.form-captcha input { width: 80px; }

/* =============================================
   RESPONSIVE GRID LAYOUTS (inline-style replacements)
   ============================================= */
.layout-detail {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 2.5rem;
  align-items: start;
}
.layout-contact {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}
.layout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}
.layout-two {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

/* =============================================
   INFO BOXES
   ============================================= */
.info-boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.info-boxes--center-last {
  grid-template-columns: repeat(6, 1fr);
}
.info-boxes--center-last > .info-box {
  grid-column: span 2;
}
.info-boxes--center-last > .info-box:nth-child(4) {
  grid-column: 2 / span 2;
}
.info-boxes--center-last > .info-box:nth-child(5) {
  grid-column: 4 / span 2;
}
.info-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  text-align: center;
  border: 1px solid var(--border);
  transition: box-shadow .25s, transform .25s;
}
.info-box:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.info-box-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  width: 60px;
  height: 60px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.info-box h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.info-box p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

/* =============================================
   TWO-COLUMN LAYOUT
   ============================================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.two-col img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* =============================================
   FILTER TABS
   ============================================= */
.filter-tabs {
  display: inline-flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  background: var(--white);
  padding: 0.4rem;
  border-radius: var(--radius-btn);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.filter-tab {
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: all .2s;
}
.filter-tab:hover {
  color: var(--text);
  background: var(--bg);
}
.filter-tab.active {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 2px 10px rgba(192,24,31,.3);
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.75rem 0;
}
.breadcrumb-inner {
  font-size: 0.82rem;
  color: var(--muted);
}
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner span { color: var(--muted); padding: 0 0.4rem; }

/* =============================================
   PAGE HERO
   ============================================= */
.page-hero {
  background: var(--text) center/cover no-repeat;
  position: relative;
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.52);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
}
.page-hero-content h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 0.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.page-hero-content p {
  color: var(--white);
  font-size: 1.05rem;
}

/* =============================================
   CONTACT BOX
   ============================================= */
.contact-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  border: 1px solid var(--border);
}
.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-row:last-child { border-bottom: none; }
.contact-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 38px;
  height: 38px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--muted);
  font-weight: 700;
}
.contact-value {
  color: var(--text);
  font-size: 0.95rem;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #0d0d1a;
  color: rgba(255,255,255,.8);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  font-weight: 700;
}
.footer p, .footer address {
  font-size: 0.9rem;
  color: rgba(255,255,255,.6);
  font-style: normal;
  line-height: 2;
}
.footer address a {
  color: rgba(255,255,255,.7);
  transition: color .2s;
}
.footer address a:hover { color: var(--white); }
.footer ul li {
  margin-bottom: 0.4rem;
}
.footer ul li a {
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  transition: color .2s;
}
.footer ul li a:hover { color: var(--white); text-decoration: none; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,.6);
}
.footer-bottom a { color: rgba(255,255,255,.6); font-size: 0.8rem; }
.footer-bottom a:hover { color: var(--white); text-decoration: none; }

/* =============================================
   TRIP HERO BADGE
   ============================================= */
.trip-badge {
  display: inline-block;
  background: rgba(154,18,27,.85);
  color: var(--white);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: var(--radius-btn);
  margin-bottom: .75rem;
}

/* =============================================
   TRIP DETAIL SLIDER
   ============================================= */
.trip-hero {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  max-width: var(--max-w);
  width: calc(100% - 3rem);
  margin: 1.5rem auto;
  border-radius: var(--radius);
}
.trip-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity .8s ease;
}
.trip-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.65) 0%, rgba(0,0,0,.28) 70%, rgba(0,0,0,.05) 100%);
}
.trip-slide.active { opacity: 1; }
.trip-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.trip-hero-content h1 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: .5rem;
  font-weight: 800;
  letter-spacing: -.02em;
}
.trip-hero-content p { color: var(--white); font-size: 1.05rem; }
@media (max-width: 768px) {
  .trip-hero { min-height: 320px; }
  .trip-hero-content h1 { font-size: 1.75rem; }
}

/* =============================================
   ALERT BOXES
   ============================================= */
.alert {
  padding: 1.5rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  border: 1px solid transparent;
}
.alert-success {
  background: var(--green-light);
  border-color: var(--green-border);
}
.alert-success p:first-child {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.25rem;
}
.alert-success p:last-child {
  color: var(--green-dark);
  font-size: 0.95rem;
  margin: 0;
}
.alert-error {
  background: #fdecea;
  border-color: #f5c6cb;
}
.alert-error p:first-child {
  font-weight: 700;
  color: var(--red-dark);
  margin-bottom: 0.25rem;
}
.alert-error p:last-child {
  color: var(--red);
  font-size: 0.95rem;
  margin: 0;
}

/* Callout box (linker roter Rand) */
.callout {
  background: var(--red-light);
  border-left: 4px solid var(--red);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
}
.callout p { color: var(--muted); font-size: 0.9rem; margin: 0; }

/* =============================================
   UTILITIES
   ============================================= */
.text-center { text-align: center; }
.text-right  { text-align: right; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.gap-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hidden { display: none !important; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .info-boxes { grid-template-columns: 1fr 1fr; }
  .info-boxes--center-last { grid-template-columns: 1fr 1fr; }
  .info-boxes--center-last > .info-box,
  .info-boxes--center-last > .info-box:nth-child(4),
  .info-boxes--center-last > .info-box:nth-child(5) {
    grid-column: auto;
  }
}

/* Nav collapses to hamburger at 900px */
@media (max-width: 900px) {
  :root { --nav-h: 60px; }

  .nav-toggle { display: flex; margin-left: auto; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
  }
  .nav-links.open { display: flex; }
  .nav-links > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links > li > a {
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0;
    color: var(--text);
  }
  .nav-links > li > a:hover { color: var(--red); }
  .nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border: none;
    background: var(--bg);
    display: none;
  }
  .nav-links > li.open .nav-dropdown { display: block; }
  .nav-dropdown a {
    padding: 0.75rem 1.5rem 0.75rem 2.5rem;
    font-size: 0.95rem;
  }
  /* CTA-Button auf Mobile ausblenden – Kontakt ist als Link im Menü */
  .nav-cta-btn { display: none; }
  .nav-mobile-only { display: block; }

  /* Mobile Nav-Links: volle Breite, linksbündig */
  .nav-links { margin-left: 0; }
  .nav-links > li > a { display: block; text-align: left; width: 100%; }
}

/* Layouts, Typo, Hero, Footer kollabieren bei 768px */
@media (max-width: 768px) {
  .cards-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .two-col img { height: 240px; }
  .form-grid { grid-template-columns: 1fr; }
  .info-boxes { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .layout-detail,
  .layout-contact,
  .layout-steps,
  .layout-two { grid-template-columns: 1fr; }
  .counter-inner { gap: 2rem; }
  .hero { min-height: 360px; }
  .hero-content h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .filter-tabs { display: flex; border-radius: var(--radius); }
}

@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 3rem 0; }
  .counter-inner { flex-direction: column; gap: 1.5rem; }
  .cards-grid { gap: 1rem; }
  .newsletter-form { flex-direction: column; align-items: center; }
  .newsletter-form input { width: 100%; max-width: 340px; }
}
