/* ---------- Tokens ---------- */
:root {
  --sand: #f7f1e6;
  --sand-2: #efe6d6;
  --ink: #14212b;
  --ink-2: #2b3a47;
  --muted: #61707d;
  --terracotta: #e0623a;
  --terracotta-2: #c44f2b;
  --atlantic: #1e6f8e;
  --gold: #e9b949;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(20, 33, 43, .10);
  --shadow-lg: 0 25px 60px rgba(20, 33, 43, .18);
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --container: 1120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.1; margin: 0 0 .5em; letter-spacing: -.01em; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
p { margin: 0 0 1em; }
.container { width: min(var(--container), 100% - 2.5rem); margin-inline: auto; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.eyebrow {
  text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 700;
  color: var(--terracotta); margin-bottom: .75rem;
}
.lead { font-size: 1.15rem; color: var(--ink-2); max-width: 60ch; }
.subhead { margin-top: 3rem; margin-bottom: 1.25rem; font-size: 1.1rem; text-transform: uppercase; letter-spacing: .14em; font-family: var(--font-body); font-weight: 700; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block; padding: .9rem 1.5rem; border-radius: 999px; font-weight: 700; text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease; font-size: .95rem;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--terracotta); color: #fff; box-shadow: 0 8px 25px rgba(224, 98, 58, .4); }
.btn--primary:hover { background: var(--terracotta-2); }
.btn--ghost { border: 2px solid rgba(255,255,255,.7); color: #fff; backdrop-filter: blur(6px); }
.btn--ghost:hover { background: rgba(255,255,255,.12); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  color: #fff; transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
}
.nav.is-solid { background: rgba(20, 33, 43, .88); backdrop-filter: blur(12px); box-shadow: 0 4px 30px rgba(0,0,0,.2); padding-block: .6rem; }
.nav__brand { font-family: var(--font-display); font-weight: 800; font-size: 1.15rem; text-decoration: none; }
.nav__links { list-style: none; display: flex; gap: 1.6rem; margin: 0; padding: 0; }
.nav__links a { text-decoration: none; font-weight: 500; font-size: .92rem; opacity: .9; position: relative; }
.nav__links a::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .25s ease; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: .4rem; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: transform .3s, opacity .3s; }
@media (max-width: 760px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; gap: 0;
    background: rgba(20, 33, 43, .96); padding: .5rem 0; display: none;
  }
  .nav__links.is-open { display: flex; }
  .nav__links li a { display: block; padding: .9rem 1.5rem; }
  .nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100svh; display: grid; place-items: center; overflow: hidden;
  color: #fff; text-align: center; padding: 6rem 1.25rem 5rem;
}
.hero__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; animation: kenburns 24s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,42,.55) 0%, rgba(11,29,42,.35) 40%, rgba(11,29,42,.85) 100%); }
.hero__content { position: relative; z-index: 1; max-width: 900px; }
.hero__kicker { text-transform: uppercase; letter-spacing: .3em; font-size: .8rem; font-weight: 700; color: var(--gold); margin-bottom: 1.2rem; }
.hero__title { font-size: clamp(3rem, 9vw, 7.5rem); font-weight: 800; line-height: .95; margin-bottom: 1.2rem; text-shadow: 0 10px 40px rgba(0,0,0,.35); }
.hero__title em { font-style: italic; font-weight: 300; color: var(--gold); }
.hero__sub { font-size: clamp(1.05rem, 2vw, 1.35rem); max-width: 60ch; margin-inline: auto; opacity: .95; }
.hero__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; margin: 2rem 0; }
.stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(8px); border-radius: 14px; padding: .8rem 1.3rem; min-width: 120px; }
.stat strong { display: block; font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.stat span { font-size: .8rem; opacity: .85; text-transform: uppercase; letter-spacing: .08em; }
.hero__cta { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }
.countdown { margin-top: 2rem; display: inline-flex; align-items: baseline; gap: .5rem; background: rgba(0,0,0,.3); padding: .6rem 1.2rem; border-radius: 999px; font-size: .95rem; }
.countdown__num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--gold); }
.hero__scroll { position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.7); border-radius: 20px; z-index: 1; }
.hero__scroll span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: #fff; border-radius: 2px; animation: scrolldot 1.6s infinite; }
@keyframes scrolldot { 0% { opacity: 1; transform: translateY(0);} 100% { opacity: 0; transform: translateY(14px);} }

/* ---------- Route / Timeline ---------- */
.route { background: var(--sand); }
.timeline { list-style: none; padding: 0; margin: 3rem 0 0; display: grid; gap: 1.5rem; grid-template-columns: repeat(4, 1fr); position: relative; }
.timeline::before { content: ""; position: absolute; top: 34px; left: 8%; right: 8%; height: 3px; background: linear-gradient(90deg, var(--atlantic), var(--terracotta), var(--gold)); border-radius: 3px; opacity: .5; }
.timeline__item { position: relative; text-align: center; }
.timeline__marker { width: 68px; height: 68px; border-radius: 50%; background: #fff; border: 3px solid var(--sand-2); display: grid; place-items: center; font-size: 1.7rem; margin: 0 auto 1rem; box-shadow: var(--shadow); position: relative; z-index: 1; }
.timeline__tag { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .14em; font-weight: 700; color: var(--atlantic); margin-bottom: .3rem; }
.timeline__body h3 { margin-bottom: .4rem; }
.timeline__body p { font-size: .95rem; color: var(--ink-2); }
.timeline__flight { display: inline-block; text-align: left; font-size: .8rem !important; font-weight: 600; color: var(--ink) !important; background: #fff; border-radius: 999px; padding: .3rem .8rem; box-shadow: var(--shadow); margin-bottom: .7rem; }
@media (max-width: 860px) {
  .timeline { grid-template-columns: 1fr; gap: 2rem; padding-left: 0; }
  .timeline::before { top: 0; bottom: 0; left: 33px; right: auto; width: 3px; height: auto; background: linear-gradient(180deg, var(--atlantic), var(--terracotta), var(--gold)); }
  .timeline__item { display: grid; grid-template-columns: 68px 1fr; gap: 1.2rem; text-align: left; align-items: start; }
  .timeline__marker { margin: 0; }
}

/* ---------- City sections ---------- */
.city { background: var(--sand); padding-bottom: clamp(4rem, 8vw, 7rem); }
.city--alt { background: var(--sand-2); }
.city__hero { position: relative; height: clamp(420px, 70vh, 640px); overflow: hidden; display: flex; align-items: flex-end; color: #fff; }
.city__hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.city__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,42,.15) 0%, rgba(11,29,42,.05) 40%, rgba(11,29,42,.85) 100%); }
.city__hero-text { position: relative; z-index: 1; width: min(var(--container), 100% - 2.5rem); margin: 0 auto 3rem; }
.city__days { display: inline-block; font-size: .78rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; background: var(--terracotta); padding: .35rem .8rem; border-radius: 999px; margin-bottom: 1rem; }
.city__hero-text h2 { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; margin-bottom: .3rem; text-shadow: 0 8px 30px rgba(0,0,0,.4); }
.city__hero-text p { font-size: clamp(1.05rem, 2vw, 1.4rem); font-family: var(--font-display); font-style: italic; font-weight: 300; margin: 0; }
.city__intro { margin-top: 3rem; font-size: 1.15rem; color: var(--ink-2); max-width: 70ch; }
.city__intro em { color: var(--terracotta); font-style: italic; }

/* ---------- Cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card img { aspect-ratio: 4 / 3; width: 100%; object-fit: cover; transition: transform .6s ease; }
.card:hover img { transform: scale(1.04); }
.card__body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; flex: 1; }
.card__body h4 { font-size: 1.35rem; font-weight: 600; margin-bottom: .5rem; }
.card__body p { font-size: .95rem; color: var(--ink-2); flex: 1; }
.card__meta { font-size: .8rem; color: var(--muted); font-weight: 500; margin-top: .4rem; }
.card--text { background: linear-gradient(145deg, var(--ink) 0%, #1c3444 100%); color: #fff; }
.card--text .card__body p { color: rgba(255,255,255,.82); }
.card--text .card__meta { color: var(--gold); }
.card--text .card__body h4 { color: #fff; }
@media (max-width: 960px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ---------- Tips ---------- */
.tips { margin-top: 3rem; background: #fff; border-left: 5px solid var(--gold); border-radius: 12px; padding: 1.6rem 2rem; box-shadow: var(--shadow); }
.tips h3 { font-size: 1.2rem; margin-bottom: .8rem; }
.tips ul { margin: 0; padding-left: 1.2rem; }
.tips li { margin-bottom: .45rem; color: var(--ink-2); }
.city--alt .tips { background: #fff; }

/* ---------- Food ---------- */
.food { background: var(--ink); color: #fff; }
.food .eyebrow { color: var(--gold); }
.food__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-top: 2.5rem; }
.food__item { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: 14px; padding: 1.3rem 1.2rem; transition: background .25s ease, transform .25s ease; }
.food__item:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.food__item span { display: block; font-size: 2rem; margin-bottom: .5rem; }
.food__item strong { display: block; font-family: var(--font-display); font-size: 1.15rem; margin-bottom: .2rem; }
.food__item small { color: rgba(255,255,255,.7); font-size: .85rem; line-height: 1.4; display: block; }
@media (max-width: 900px) { .food__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .food__grid { grid-template-columns: 1fr 1fr; gap: .7rem; } .food__item { padding: 1rem .9rem; } }

/* ---------- Packliste ---------- */
.pack { background: var(--sand-2); }
.pack__cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 2rem; }
.pack__col { background: #fff; border-radius: var(--radius); padding: 1.8rem 2rem; box-shadow: var(--shadow); }
.pack__col h3 { margin-bottom: 1rem; }
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { border-bottom: 1px dashed var(--sand-2); }
.checklist label { display: flex; gap: .8rem; align-items: flex-start; padding: .65rem 0; cursor: pointer; color: var(--ink-2); }
.checklist input { width: 1.2rem; height: 1.2rem; accent-color: var(--terracotta); margin-top: .15rem; flex-shrink: 0; }
.checklist input:checked + * , .checklist label:has(input:checked) { text-decoration: line-through; color: var(--muted); }
@media (max-width: 760px) { .pack__cols { grid-template-columns: 1fr; } }

/* ---------- Gallery strip ---------- */
.strip { overflow: hidden; background: var(--ink); padding: 0 0 .5rem; }
.strip__track { display: flex; gap: .5rem; width: max-content; animation: marquee 60s linear infinite; }
.strip__track img { height: 220px; width: auto; object-fit: cover; border-radius: 6px; }
.strip:hover .strip__track { animation-play-state: paused; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 600px) { .strip__track img { height: 140px; } }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #fff; padding: 4rem 0 2.5rem; text-align: center; }
.footer__big { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; margin-bottom: .4rem; }
.footer__small { color: rgba(255,255,255,.7); margin-bottom: 2rem; }
.credits { text-align: left; max-width: 800px; margin: 0 auto; font-size: .78rem; color: rgba(255,255,255,.55); }
.credits summary { cursor: pointer; text-align: center; }
.credits ul { padding-left: 1.2rem; margin-top: .8rem; columns: 2; column-gap: 2rem; }
.credits a { color: rgba(255,255,255,.7); }
@media (max-width: 600px) { .credits ul { columns: 1; } }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.hero .reveal:nth-child(1) { transition-delay: .05s; }
.hero .reveal:nth-child(2) { transition-delay: .15s; }
.hero .reveal:nth-child(3) { transition-delay: .3s; }
.hero .reveal:nth-child(4) { transition-delay: .45s; }
.hero .reveal:nth-child(5) { transition-delay: .6s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__bg, .strip__track, .hero__scroll span { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Karten klickbar ---------- */
.card[data-spot] { cursor: pointer; }
.card[data-spot]:focus-visible { outline: 3px solid var(--terracotta); outline-offset: 3px; }
.card__more { display: inline-block; margin-top: .9rem; font-size: .85rem; font-weight: 700; color: var(--terracotta); transition: transform .2s ease; }
.card:hover .card__more { transform: translateX(4px); }
.card--text .card__more { color: var(--gold); }

/* ---------- Spot Detail Overlay ---------- */
.spot-modal { position: fixed; inset: 0; z-index: 100; display: grid; place-items: center; padding: 1rem; }
.spot-modal[hidden] { display: none; }
.spot-modal__backdrop { position: absolute; inset: 0; background: rgba(11, 29, 42, .78); backdrop-filter: blur(6px); animation: fadeIn .25s ease; }
.spot-modal__panel {
  position: relative; width: min(1000px, 100%); max-height: calc(100vh - 2rem); max-height: calc(100dvh - 2rem);
  overflow-y: auto; overscroll-behavior: contain; background: var(--sand); color: var(--ink);
  border-radius: 22px; box-shadow: 0 40px 100px rgba(0,0,0,.5); animation: slideUp .35s cubic-bezier(.2,.8,.2,1);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px) scale(.98); } to { opacity: 1; transform: none; } }
.spot-modal__close {
  position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: 0;
  background: rgba(255,255,255,.9); color: var(--ink); font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow); transition: transform .2s ease;
}
.spot-modal__close:hover { transform: rotate(90deg); }
.spot-modal__hero { position: relative; height: clamp(260px, 42vh, 420px); overflow: hidden; }
.spot-modal__hero img { width: 100%; height: 100%; object-fit: cover; }
.spot-modal__hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,29,42,.1) 30%, rgba(11,29,42,.85) 100%); }
.spot-modal__hero-text { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.6rem 2rem; color: #fff; z-index: 1; }
.spot-modal__city { display: inline-block; font-size: .72rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 700; background: var(--terracotta); padding: .3rem .7rem; border-radius: 999px; margin-bottom: .7rem; }
.spot-modal__hero-text h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: .2rem; text-shadow: 0 6px 24px rgba(0,0,0,.4); }
.spot-modal__hero-text p { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 300; font-size: 1.1rem; opacity: .95; }
.spot-modal__content { display: grid; grid-template-columns: 1.5fr 1fr; gap: 2.2rem; padding: 2rem; }
.spot-modal__body p { font-size: 1.02rem; color: var(--ink-2); line-height: 1.7; }
.spot-modal__body p:first-child::first-letter { font-family: var(--font-display); font-size: 3.2em; float: left; line-height: .85; margin: .08em .1em 0 0; color: var(--terracotta); font-weight: 800; }
.spot-modal__side { display: flex; flex-direction: column; gap: 1.2rem; }
.spot-facts { margin: 0; background: #fff; border-radius: 14px; padding: 1.1rem 1.2rem; box-shadow: var(--shadow); font-size: .9rem; }
.spot-facts div { padding: .5rem 0; border-bottom: 1px dashed var(--sand-2); }
.spot-facts div:last-child { border-bottom: 0; }
.spot-facts dt { font-weight: 700; color: var(--ink); margin-bottom: .1rem; }
.spot-facts dd { margin: 0; color: var(--ink-2); }
.spot-tips { background: linear-gradient(145deg, var(--ink) 0%, #1c3444 100%); color: #fff; border-radius: 14px; padding: 1.1rem 1.3rem; }
.spot-tips h4 { font-size: 1rem; margin-bottom: .5rem; color: var(--gold); }
.spot-tips ul { margin: 0; padding-left: 1.1rem; font-size: .9rem; }
.spot-tips li { margin-bottom: .4rem; color: rgba(255,255,255,.88); }
.spot-modal__maps { text-align: center; }
.spot-modal__nav { display: flex; justify-content: space-between; gap: 1rem; padding: 0 2rem 2rem; }
.spot-modal__navbtn { background: #fff; border: 0; border-radius: 999px; padding: .7rem 1.2rem; font: inherit; font-weight: 700; font-size: .9rem; color: var(--ink); cursor: pointer; box-shadow: var(--shadow); transition: transform .2s ease; max-width: 48%; }
.spot-modal__navbtn:hover { transform: translateY(-2px); }
.spot-modal__navbtn span { font-weight: 500; color: var(--muted); }
body.modal-open { overflow: hidden; }
@media (max-width: 760px) {
  .spot-modal { padding: 0; }
  .spot-modal__panel { max-height: 100vh; max-height: 100dvh; border-radius: 0; }
  .spot-modal__content { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.4rem 1.2rem; }
  .spot-modal__hero-text { padding: 1.2rem; }
  .spot-modal__nav { padding: 0 1.2rem 1.5rem; }
}
@media (prefers-reduced-motion: reduce) { .spot-modal__backdrop, .spot-modal__panel { animation: none; } }

/* ---------- Tagesplan in den Stadt-Intros ---------- */
.dayplan { list-style: none; padding: 0; margin: 1.6rem 0 0; display: grid; gap: .6rem; }
.dayplan li { display: grid; grid-template-columns: 78px 1fr; gap: 1rem; align-items: start; background: #fff; border-radius: 12px; padding: .8rem 1rem; box-shadow: var(--shadow); }
.dayplan__day { display: inline-block; text-align: center; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--atlantic); background: rgba(30,111,142,.1); border-radius: 8px; padding: .35rem .3rem; margin-top: .1rem; }
.dayplan li > div { font-size: .95rem; color: var(--ink-2); line-height: 1.5; }
.dayplan li strong { display: block; font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); margin-bottom: .1rem; }
.city--alt .dayplan li { background: #fff; }
@media (max-width: 520px) { .dayplan li { grid-template-columns: 62px 1fr; gap: .7rem; padding: .7rem .8rem; } .dayplan__day { font-size: .7rem; } }
