/* ============================================================
   30 TAGE ABENTEUER – styles.css
   Brand: Teal · Cream · Warm · Licht · Naturnah
   Fonts: Playfair Display + Lato
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,600&family=Lato:wght@300;400;700&family=Montserrat:wght@400;500;600;700&display=swap');

/* ── Brand Variables ─────────────────────────────────────── */
:root {
  /* Brand Colors (aus BrandBoard) */
  --teal-dark:    #3D6E60;
  --teal:         #4F8070;
  --teal-light:   #7BAF9E;
  --sage:         #A8C5B8;
  --tan:          #C3A47E;
  --tan-light:    #D9BFA0;
  --cream:        #F5EFE6;
  --warm-white:   #FAFAF5;
  --off-white:    #F0EAE0;

  /* Text */
  --text-dark:    #2E5248;
  --text-mid:     #5A7268;
  --text-light:   #8FA89E;
  --text-muted:   #B2C4BC;

  /* UI */
  --border:       rgba(79, 128, 112, 0.15);
  --border-dark:  rgba(79, 128, 112, 0.3);
  --shadow-sm:    0 2px 12px rgba(44, 58, 53, 0.08);
  --shadow-md:    0 8px 32px rgba(44, 58, 53, 0.12);
  --shadow-lg:    0 20px 60px rgba(44, 58, 53, 0.15);

  /* Layout */
  --nav-h:        90px;
  --max-w:        1200px;
  --radius-sm:    8px;
  --radius:       14px;
  --radius-lg:    24px;

  /* Animation */
  --ease-expo:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back:    cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: auto; }
body {
  background: var(--warm-white);
  color: var(--text-dark);
  font-family: 'Lato', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: none; border: none; background: none; font-family: inherit; }

/* ── Custom Cursor ──────────────────────────────────────── */
#cursor-dot, #cursor-ring {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999; border-radius: 50%;
  transform: translate(-50%, -50%); transition: opacity .3s;
}
#cursor-dot { width: 6px; height: 6px; background: var(--teal); }
#cursor-ring {
  width: 34px; height: 34px;
  border: 1.5px solid var(--teal);
  transition: width .25s var(--ease-expo), height .25s var(--ease-expo),
              border-color .25s, opacity .3s;
}
#cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--teal-dark);
  background: rgba(79,128,112,0.08);
}
#cursor-ring.clicking { width: 22px; height: 22px; }

/* ── Preloader ──────────────────────────────────────────── */
#preloader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--warm-white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
}
.preloader-logo {
  display: flex; align-items: center; gap: 16px;
  clip-path: inset(0 100% 0 0);
}
.preloader-logo img { height: 220px; width: auto; }
.preloader-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700;
  color: var(--teal-dark); letter-spacing: .04em;
  line-height: 1.2;
}
.preloader-logo-text span { display: block; font-size: .9rem; font-weight: 400; color: var(--text-mid); letter-spacing: .12em; }
.preloader-bar-wrap {
  width: min(300px, 75vw); height: 2px;
  background: var(--off-white); border-radius: 2px; overflow: hidden;
}
.preloader-bar {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-dark));
  animation: preload-fill 1.8s var(--ease-expo) forwards;
}
.preloader-count {
  font-family: 'Montserrat', sans-serif;
  font-size: .8rem; letter-spacing: .18em;
  color: var(--text-light); font-variant-numeric: tabular-nums;
}
@keyframes preload-fill { 0% { width: 0% } 100% { width: 100% } }

/* ── Navigation ─────────────────────────────────────────── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 clamp(16px, 4vw, 56px);
  background: var(--cream);
  box-shadow: 0 1px 0 var(--border);
  transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
#nav.scrolled {
  background: rgba(245,239,230,0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  margin-right: auto; flex-shrink: 0;
}
.nav-logo img { height: 120px; width: auto; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--teal-dark); line-height: 1.2;
  display: none; /* show only if needed on mobile */
}

/* Main nav links */
.nav-links {
  display: flex; align-items: center;
  gap: 4px; list-style: none;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--text-mid);
  padding: 8px 14px; border-radius: 4px;
  display: flex; align-items: center; gap: 4px;
  transition: color .2s, background .2s;
  white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li.active > a {
  color: var(--teal-dark);
  background: rgba(79,128,112,0.08);
}

/* Dropdown arrow */
.nav-links > li.has-dropdown > a::after {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s;
}
.nav-links > li.has-dropdown.open > a::after { transform: rotate(-135deg) translateY(-2px); }

/* Dropdown panel */
.dropdown {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%);
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 200px;
  padding: 16px 0;
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity .25s, transform .25s, visibility .25s;
  z-index: 100;
}
.nav-links > li.has-dropdown.open .dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

/* Wide dropdown for Reiseziele */
.dropdown.wide {
  min-width: 640px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  left: 0; transform: none;
}
.nav-links > li.has-dropdown.open .dropdown.wide {
  transform: translateY(0);
}

.dropdown-col { padding: 0 8px; }
.dropdown-heading {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--text-muted);
  padding: 0 8px 8px;
  display: block;
  border-bottom: 1px solid var(--border);
  margin-bottom: 6px;
}
.dropdown a {
  display: block;
  padding: 7px 8px;
  font-size: .875rem;
  color: var(--text-mid);
  border-radius: 6px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.dropdown a:hover {
  background: var(--off-white);
  color: var(--teal-dark);
}
.dropdown a.upcoming-link { color: var(--tan); font-style: italic; }

/* Country sub-grouping within wide dropdown */
.dropdown-country {
  display: block;
  font-family: inherit;
  font-size: .875rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: normal;
  padding: 7px 8px;
  margin-top: 0;
  cursor: pointer;
  user-select: none;
  background: none;
  border: none;
}
.dropdown a.dropdown-sublink { padding-left: 20px; }

/* Collapsible nav sub-groups */
.dropdown-sub-group { display: none; }
.dropdown-sub-group.open { display: block; }
.dropdown-toggle { width: 100%; text-align: left; display: flex; align-items: center; justify-content: space-between; padding-right: 4px; }
.drop-chevron { font-size: 0.65rem; opacity: 0.55; transition: transform 0.2s; display: inline-block; }
.dropdown-toggle.active .drop-chevron { transform: rotate(180deg); }

/* Simple dropdown (Reisetipps) */
.dropdown.simple { grid-template-columns: 1fr; min-width: 220px; }

.nav-cta {
  margin-left: 16px;
  padding: 9px 22px;
  background: var(--teal);
  color: white; border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  transition: background .25s, transform .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  padding: 8px; margin-left: auto;
  cursor: none;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--teal-dark); border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* Hamburger → X animation */
.nav-open .nav-hamburger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-open .nav-hamburger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Hero (Image-based) ─────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh; min-height: 560px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform-origin: center;
  transition: transform .1s;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    160deg,
    rgba(44,58,53,0.55) 0%,
    rgba(44,58,53,0.25) 50%,
    rgba(44,58,53,0.65) 100%
  );
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center; max-width: 820px;
  padding: 0 24px; color: var(--tan-light);
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--tan-light);
  margin-bottom: 20px; opacity: 0;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; width: 28px; height: 1px; background: rgba(217,191,160,0.5);
}
.hero-logo-big { height: 200px; width: auto; margin: 0 auto 24px; opacity: 0; filter: brightness(0) invert(1) sepia(1) saturate(0.6) brightness(0.88); }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -.01em; color: var(--tan-light);
  margin-bottom: 20px; overflow: hidden;
}
.hero-title span { display: block; transform: translateY(110%); }
.hero-title em { font-style: italic; color: var(--tan-light); }
.hero-desc {
  font-size: clamp(.95rem, 1.5vw, 1.1rem);
  color: rgba(217,191,160,0.9);
  max-width: 500px; margin: 0 auto 40px;
  line-height: 1.85; opacity: 0;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; opacity: 0; }
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0;
}
.scroll-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,0.6);
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%,100% { opacity: .3; transform: scaleY(.6) translateY(-6px); }
  50%      { opacity: 1; transform: scaleY(1) translateY(0); }
}

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  background: var(--teal); color: white;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  transition: background .25s, transform .25s var(--ease-back), box-shadow .25s;
}
.btn-primary:hover {
  background: var(--teal-dark); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(61,110,96,0.3);
}
.btn-primary-light {
  background: var(--cream); color: var(--teal-dark);
}
.btn-primary-light:hover { background: var(--off-white); color: var(--teal-dark); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px;
  border: 1.5px solid rgba(217,191,160,0.6);
  color: var(--tan-light); border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase;
  transition: border-color .25s, background .25s, transform .2s;
}
.btn-outline:hover { border-color: var(--tan-light); background: rgba(217,191,160,0.12); transform: translateY(-2px); }
.btn-outline-dark {
  border-color: var(--border-dark); color: var(--teal-dark);
}
.btn-outline-dark:hover { background: var(--off-white); border-color: var(--teal); }

/* ── Stats Bar ──────────────────────────────────────────── */
#stats {
  background: var(--cream);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 44px 0;
}
.stats-inner {
  max-width: var(--max-w); margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat-item {
  text-align: center; padding: 16px 20px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--teal-dark);
  line-height: 1; display: block;
}
.stat-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-light);
  margin-top: 6px;
}

/* ── Section scaffolding ────────────────────────────────── */
.section-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }
.section-pad   { padding: clamp(72px,9vw,128px) 0; }
.section-pad-sm{ padding: clamp(48px,6vw,80px) 0; }

.section-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--teal); display: flex; align-items: center; gap: 10px;
  margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 24px; height: 1.5px; background: var(--teal); }
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.15; margin-bottom: 20px;
  color: var(--text-dark);
}
.section-title em { font-style: italic; color: var(--teal); }
.section-lead {
  font-size: 1.05rem; color: var(--text-mid); line-height: 1.85;
  max-width: 580px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header .section-tag { justify-content: center; }
.section-header .section-tag::before { display: none; }
.section-header .section-lead { margin: 0 auto; }

/* ── About ──────────────────────────────────────────────── */
#about { background: var(--warm-white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-text p { color: var(--text-mid); line-height: 1.9; margin-bottom: 16px; }
.about-img-wrap { position: relative; }
.about-img-main {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
}
.about-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: var(--off-white); border-radius: var(--radius-lg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); font-size: .85rem; text-align: center; padding: 24px;
  border: 2px dashed var(--border-dark);
}

/* ── Destinations Grid ──────────────────────────────────── */
#destinations { background: var(--cream); }
.dest-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

.dest-card {
  position: relative; border-radius: var(--radius);
  overflow: hidden; background: #A8BFA3;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-expo), box-shadow .4s;
  cursor: none;
}
.dest-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dest-img-wrap { position: relative; overflow: hidden; }
.dest-img {
  width: 100%; height: 240px; object-fit: cover;
  transition: transform .7s var(--ease-expo), filter .4s;
  filter: brightness(0.9) saturate(0.95);
}
.dest-card:hover .dest-img { transform: scale(1.06); filter: brightness(1) saturate(1.05); }

.dest-img-placeholder {
  width: 100%; height: 240px;
  background: var(--off-white);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-muted); font-size: .78rem; text-align: center; padding: 16px;
  border-bottom: 1px solid var(--border);
}
.dest-info { padding: 20px 22px 22px; }
.dest-region {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 5px;
}
.dest-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--text-dark); margin-bottom: 4px;
}
.dest-year { font-size: .82rem; color: var(--teal-dark); }
.dest-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 3px 10px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
}
.dest-badge.new { background: var(--teal); color: white; }
.dest-badge.upcoming { background: transparent; border: 1px solid var(--tan); color: var(--tan); }
.dest-badge.recent { background: var(--cream); color: var(--teal-dark); border: 1px solid var(--teal-light); }

.dest-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 22px;
  border-top: 1px solid rgba(61,110,96,0.25);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--teal-dark);
  transition: background .2s, color .2s;
}
.dest-link:hover { background: rgba(61,110,96,0.12); color: var(--teal-dark); }

/* ── Timeline ───────────────────────────────────────────── */
#timeline { background: var(--warm-white); }
.timeline-wrap { position: relative; max-width: 820px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border-dark) 8%, var(--border-dark) 92%, transparent);
  transform: translateX(-50%);
}
.timeline-entry {
  display: grid; grid-template-columns: 1fr 56px 1fr;
  gap: 0; margin-bottom: 64px; align-items: start;
}
.timeline-entry:nth-child(odd)  .tl-content { grid-column: 1; text-align: right; }
.timeline-entry:nth-child(odd)  .tl-dot     { grid-column: 2; }
.timeline-entry:nth-child(odd)  .tl-empty   { grid-column: 3; }
.timeline-entry:nth-child(even) .tl-empty   { grid-column: 1; }
.timeline-entry:nth-child(even) .tl-dot     { grid-column: 2; }
.timeline-entry:nth-child(even) .tl-content { grid-column: 3; text-align: left; }

.tl-dot { display: flex; justify-content: center; padding-top: 6px; position: relative; z-index: 1; }
.tl-dot-inner {
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--warm-white); border: 2px solid var(--teal);
  transition: background .3s, box-shadow .3s;
}
.timeline-entry:hover .tl-dot-inner {
  background: var(--teal); box-shadow: 0 0 0 4px rgba(79,128,112,0.15);
}
.tl-content { padding: 0 28px; }
.tl-year {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 5px;
}
.tl-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; line-height: 1.25;
  margin-bottom: 8px; color: var(--text-dark);
}
.tl-desc { font-size: .875rem; color: var(--text-mid); line-height: 1.7; margin-bottom: 10px; }
.tl-stations { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 12px; }
.timeline-entry:nth-child(odd) .tl-stations { justify-content: flex-end; }
.tl-station {
  padding: 2px 9px; border: 1px solid var(--border);
  border-radius: 20px; font-size: .7rem; color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  transition: border-color .2s, color .2s;
}
.timeline-entry:hover .tl-station { border-color: var(--border-dark); color: var(--text-mid); }

.tl-link {
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--teal);
  display: inline-flex; align-items: center; gap: 5px;
  transition: gap .2s;
}
.tl-link:hover { gap: 9px; }
.tl-link svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ── Photo Strip ────────────────────────────────────────── */
#photo-strip { background: var(--off-white); padding: 72px 0; overflow: hidden; }
.strip-overflow { overflow: hidden; display: flex; }
.strip-track {
  display: flex; gap: 14px; will-change: transform;
  width: max-content; /* ensure it's wide enough */
}
.strip-img {
  flex: 0 0 auto; width: 260px; height: 340px;
  object-fit: cover; border-radius: var(--radius);
  filter: brightness(0.88) saturate(0.9);
  transition: filter .4s;
}
.strip-img:hover { filter: brightness(1) saturate(1.05); }
.strip-placeholder {
  flex: 0 0 auto; width: 260px; height: 340px;
  background: var(--cream); border-radius: var(--radius);
  border: 1px dashed var(--border-dark);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .78rem; text-align: center; padding: 16px;
}

/* ── Footer ─────────────────────────────────────────────── */
#footer { background: var(--text-dark); padding: 80px 0 40px; }
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(20px,5vw,64px); }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}
.footer-brand img { height: 120px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1) opacity(.85); }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: .9rem; line-height: 1.8; max-width: 280px; }
.footer-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  transition: color .2s;
}
.footer-instagram:hover { color: var(--tan-light); }
.footer-col-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-links a:hover { color: var(--sage); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,0.3); }
.footer-copy span { color: var(--sage); }

/* ── Trip Subpage ────────────────────────────────────────── */
.trip-hero {
  position: relative; height: 65vh; min-height: 400px;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 56px;
}
.trip-hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.trip-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,58,53,0.85) 0%, rgba(44,58,53,0.15) 60%, transparent 100%);
}
.trip-hero-content { position: relative; z-index: 1; color: white; padding: 0 clamp(20px,5vw,64px); }
.trip-hero-content .section-tag { color: rgba(255,255,255,0.75); margin-bottom: 10px; }
.trip-hero-content .section-tag::before { background: rgba(255,255,255,0.5); }
.trip-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem,5vw,4rem); font-weight: 700;
  color: white; line-height: 1.1; margin-bottom: 12px;
}
.trip-hero-meta {
  display: flex; flex-wrap: wrap; gap: 20px;
  font-family: 'Montserrat', sans-serif;
  font-size: .78rem; color: rgba(255,255,255,0.7);
  letter-spacing: .06em;
}
.trip-hero-meta span { display: flex; align-items: center; gap: 6px; }

/* Trip breadcrumb nav */
.trip-breadcrumb {
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 12px clamp(20px,5vw,64px);
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; color: var(--text-light);
  display: flex; gap: 8px; align-items: center;
}
.trip-breadcrumb a { color: var(--teal); transition: color .2s; }
.trip-breadcrumb a:hover { color: var(--teal-dark); }
.trip-breadcrumb .sep { opacity: .4; }

/* Map section */
.map-section { background: var(--off-white); }
.map-wrap {
  height: 460px; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.map-placeholder {
  height: 460px; background: var(--cream);
  border-radius: var(--radius); border: 2px dashed var(--border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px; color: var(--text-muted); text-align: center;
}

/* General info grid */
.info-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 32px; }
.info-card {
  background: var(--cream); border-radius: var(--radius-sm);
  padding: 20px 18px; border: 1px solid var(--border);
}
.info-card-label {
  font-family: 'Montserrat', sans-serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 6px;
}
.info-card-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--teal-dark);
}

/* Trip text block */
.trip-text {
  color: var(--text-mid); line-height: 1.9; font-size: 1.02rem;
  margin-bottom: 16px;
}
.placeholder-text {
  color: var(--text-muted); font-style: italic; line-height: 1.8;
  background: var(--off-white); border-left: 3px solid var(--border-dark);
  padding: 12px 16px; border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: .9rem; margin-bottom: 16px;
}

/* Station cards */
.station-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(260px,1fr)); gap: 14px; }
.station-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 18px;
  transition: border-color .25s, transform .3s var(--ease-expo), box-shadow .3s;
  position: relative; overflow: hidden;
}
.station-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--teal-light), var(--teal-dark));
  transform: scaleX(0); transition: transform .4s var(--ease-expo);
}
.station-card:hover {
  border-color: var(--border-dark);
  transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.station-card:hover::before { transform: scaleX(1); }
.station-order {
  font-family: 'Montserrat', sans-serif;
  font-size: .65rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--teal); opacity: .7; margin-bottom: 4px;
}
.station-name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 5px;
}
.station-hotel { font-size: .8rem; color: var(--text-mid); margin-bottom: 4px; }
.station-date { font-family: 'Montserrat', sans-serif; font-size: .72rem; color: var(--text-muted); }
.station-activities { margin-top: 9px; font-size: .8rem; color: var(--text-mid); line-height: 1.5; font-style: italic; }

/* Photo gallery on trip pages */
.photo-gallery { display: grid; grid-template-columns: repeat(auto-fill,minmax(200px,1fr)); gap: 10px; margin-top: 24px; }
.photo-gallery img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius-sm); filter: brightness(0.9);
  transition: filter .3s, transform .4s var(--ease-expo);
}
.photo-gallery img:hover { filter: brightness(1); transform: scale(1.02); }
.photo-placeholder-sm {
  aspect-ratio: 4/3;
  background: var(--off-white); border-radius: var(--radius-sm);
  border: 1px dashed var(--border-dark);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .72rem; text-align: center; padding: 12px; gap: 5px;
}

/* City highlight cards */
.city-highlights { display: grid; grid-template-columns: repeat(auto-fill,minmax(190px,1fr)); gap: 12px; margin-top: 20px; }
.city-highlight-item {
  background: var(--cream); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
  transition: border-color .25s;
}
.city-highlight-item:hover { border-color: var(--border-dark); }
.city-hl-icon { width: 28px; height: 28px; margin-bottom: 8px; color: var(--teal); }
.city-hl-title {
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem; font-weight: 700; margin-bottom: 4px; color: var(--text-dark);
}
.city-hl-text { font-size: .78rem; color: var(--text-mid); line-height: 1.55; }

/* Reisetipps page */
.tipps-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(280px,1fr)); gap: 20px; }
.tipp-card {
  background: white; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px; cursor: none;
  transition: transform .3s var(--ease-expo), box-shadow .3s;
}
.tipp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tipp-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--cream); display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--teal);
}
.tipp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 600; color: var(--text-dark); margin-bottom: 10px;
}
.tipp-text { font-size: .875rem; color: var(--text-mid); line-height: 1.75; }
.tipp-link {
  margin-top: 16px; display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Montserrat', sans-serif;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--teal);
  transition: gap .2s;
}
.tipp-link:hover { gap: 9px; }

/* Über Uns page */
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }

/* ── Utilities ──────────────────────────────────────────── */
.icon-svg {
  width: 18px; height: 18px; fill: none;
  stroke: currentColor; stroke-width: 1.5;
  stroke-linecap: round; stroke-linejoin: round;
}
.reveal-hidden { opacity: 0; transform: translateY(36px); }
.bg-cream   { background: var(--cream); }
.bg-white   { background: white; }
.bg-off     { background: var(--off-white); }
.text-center { text-align: center; }

/* ── Responsive ─────────────────────────────────────────── */
@media(max-width:1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
  .dropdown.wide { min-width: 480px; }
  .info-grid { grid-template-columns: repeat(2,1fr); }
}
@media(max-width:900px) {
  .dest-grid     { grid-template-columns: repeat(2,1fr); }
  .about-grid    { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .stats-inner   { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }

  /* Mobile menu open state */
  .nav-open .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    padding: 16px clamp(16px, 4vw, 56px) 32px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    z-index: 999;
    gap: 0;
  }
  .nav-open .nav-cta { display: none; }
  .nav-open .nav-links > li { border-bottom: 1px solid var(--border); padding: 0; }
  .nav-open .nav-links > li:last-child { border-bottom: none; }
  .nav-open .nav-links > li > a { display: flex; justify-content: space-between; align-items: center; padding: 14px 0; font-size: 1rem; }

  /* Mobile dropdowns */
  .nav-open .nav-links > li.has-dropdown .dropdown {
    position: static;
    display: none;
    opacity: 1; visibility: visible; pointer-events: auto;
    box-shadow: none; border: none;
    padding: 0 0 12px 12px;
    min-width: unset;
    transform: none;
    flex-direction: column;
  }
  .nav-open .nav-links > li.has-dropdown .dropdown.wide { flex-direction: column; }
  .nav-open .nav-links > li.has-dropdown.open .dropdown { display: flex; }
  .nav-open .dropdown-col { padding: 0; }
  .nav-open .dropdown a { padding: 8px 0; font-size: .9rem; display: block; }
  .nav-open .dropdown-heading { margin-top: 10px; }
}
@media(max-width:680px) {
  .dest-grid    { grid-template-columns: 1fr; }
  .timeline-line { left: 20px; }
  .timeline-entry { grid-template-columns: 40px 1fr !important; }
  .tl-dot    { grid-column: 1 !important; }
  .tl-content { grid-column: 2 !important; text-align: left !important; }
  .tl-empty  { display: none; }
  .tl-stations { justify-content: flex-start !important; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .station-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr 1fr; }
}
@media(prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.001ms !important; transition-duration:.001ms !important; }
}

/* ── Photo Placeholder (trip pages without real photos) ── */
.photo-placeholder {
  aspect-ratio: 4/3;
  background: var(--off-white);
  border: 2px dashed var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: .85rem;
  font-family: 'Montserrat', sans-serif;
}

/* ── Tipp Grid (reisetipps + ueber-uns) ─────────────────── */
.tipp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 2rem;
}
.tipp-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px;
}
.tipp-card .tipp-icon {
  font-size: 2rem; display: block; margin-bottom: 14px;
  background: none; width: auto; height: auto;
  border-radius: 0;
}

/* ── Trip Prev / Next Navigation ────────────────────────── */
.trip-nav-prev-next {
  background: var(--cream);
  border-top: 1px solid var(--border);
  padding: 32px 0;
}
.trip-nav-prev-next .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.pn-prev a,
.pn-next a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--teal);
  transition: color .2s, gap .2s;
}
.pn-prev a:hover,
.pn-next a:hover { color: var(--teal-dark); gap: 12px; }
.pn-prev { text-align: left; }
.pn-next { text-align: right; margin-left: auto; }

/* ── Section Intro ──────────────────────────────────────── */
.section-intro {
  color: var(--text-mid);
  line-height: 1.8;
}

@media(max-width:680px) {
  .tipp-grid { grid-template-columns: 1fr; }
  .trip-nav-prev-next .container { flex-direction: column; align-items: flex-start; }
  .pn-next { margin-left: 0; }
}
