:root {
  --blue: #123b63;
  --blue-deep: #0b2946;
  --blue-soft: #e8f0f6;
  --blue-mist: #ECECF8;
  --gold: #d4a64a;
  --gold-dark: #b8882f;
  --sand: #f1eadc;
  --sand-light: #faf7f0;
  --ink: #1f2932;
  --muted: #65717b;
  --line: #dbe1e5;
  --white: #fff;
  --shadow: 0 18px 45px rgba(11, 41, 70, .12);
  --shadow-soft: 0 10px 28px rgba(11, 41, 70, .08);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: Arial, Helvetica, sans-serif;
  --max: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 150px; }
body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--blue-deep);
  color: var(--white);
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 44px), var(--max)); margin-inline: auto; }
.section { padding: 92px 0; }
.section--sand { background: var(--sand-light); }
.section--ink { background: var(--blue-deep); color: var(--white); }

.eyebrow {
  margin: 0 0 12px;
  color: var(--gold-dark);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.section-title {
  margin: 0;
  max-width: 870px;
  color: var(--blue-deep);
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 5vw, 4.35rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.028em;
}
.section-lead {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}
.section--ink .section-title { color: var(--white); }
.section--ink .section-lead { color: rgba(255,255,255,.75); }

/* Brand header */
.site-topline {
  min-height: 34px;
  display: flex;
  align-items: center;
  background: var(--blue-deep);
  color: rgba(255,255,255,.88);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.topline-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.topline-values { color: var(--gold); font-weight: 700; }
.topline-link { border-bottom: 1px solid rgba(255,255,255,.38); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 92px;
  display: flex;
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 3px 18px rgba(11,41,70,.05);
  backdrop-filter: blur(12px);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 14px; min-width: 0; }
.brand-logo { width: 215px; height: auto; flex: 0 0 auto; }
.brand-label {
  min-width: max-content;
  padding-left: 14px;
  border-left: 1px solid #b9c0c5;
  color: var(--blue);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .15em;
  line-height: 1.45;
  text-transform: uppercase;
}
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-name { line-height: 1.05; font-family: var(--font-serif); font-size: 1.1rem; }
.brand-name small { display: block; margin-top: 4px; color: var(--gold-dark); font-family: var(--font-sans); font-size: .63rem; letter-spacing: .15em; }
.nav { display: flex; align-items: center; gap: 25px; color: var(--blue-deep); font-size: .82rem; font-weight: 700; letter-spacing: .065em; text-transform: uppercase; }
.nav a { position: relative; white-space: nowrap; }
.nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -10px;
  height: 2px;
  background: var(--gold);
  transition: right .22s ease;
}
.nav a:not(.btn):hover::after,
.nav a[aria-current="page"]::after { right: 0; }
.menu-button { display: none; border: 0; background: transparent; padding: 8px; color: var(--blue-deep); font-size: 1.5rem; }

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 8px 20px rgba(18,59,99,.2); }
.btn--primary:hover { background: var(--blue-deep); }
.btn--secondary { background: var(--white); color: var(--blue); border-color: var(--blue); }
.btn--ghost { color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--small { min-height: 42px; padding-inline: 16px; font-size: .73rem; }

/* Homepage hero */
.hero {
  position: relative;
  min-height: 690px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6,28,49,.93) 0%, rgba(6,28,49,.79) 47%, rgba(6,28,49,.28) 75%, rgba(6,28,49,.12) 100%),
    linear-gradient(0deg, rgba(6,28,49,.32), rgba(6,28,49,.05));
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 6px;
  background: var(--gold);
  z-index: 3;
}
.hero-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 38%; }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr .65fr; gap: 70px; align-items: center; padding: 92px 0; }
.hero-copy-wrap { max-width: 740px; }
.hero .eyebrow { color: #efc873; }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6.8rem);
  font-weight: 700;
  line-height: .96;
  letter-spacing: -.045em;
}
.hero h1 span { color: #f1ca78; }
.hero-copy { max-width: 680px; margin: 26px 0 0; color: rgba(255,255,255,.87); font-size: 1.16rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero .btn--primary { background: var(--gold); color: var(--blue-deep); box-shadow: 0 10px 25px rgba(0,0,0,.18); }
.hero .btn--primary:hover { background: #e1b965; }
.hero .btn--secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.65); }
.hero-note { display: flex; align-items: center; gap: 12px; margin-top: 28px; color: rgba(255,255,255,.7); font-size: .83rem; }
.hero-note::before { content: ""; width: 45px; height: 2px; background: var(--gold); }
.hero-side-card {
  align-self: end;
  max-width: 330px;
  margin-left: auto;
  padding: 27px;
  border-top: 4px solid var(--gold);
  background: rgba(255,255,255,.94);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.hero-side-card strong { display: block; color: var(--blue-deep); font-family: var(--font-serif); font-size: 1.55rem; line-height: 1.2; }
.hero-side-card span { display: block; margin-top: 9px; color: var(--muted); font-size: .92rem; }

.stats { background: var(--blue); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat { padding: 31px 25px; text-align: center; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border-right: 0; }
.stat strong { display: block; color: var(--gold); font-family: var(--font-serif); font-size: 2.25rem; line-height: 1; }
.stat span { display: block; margin-top: 8px; color: rgba(255,255,255,.82); font-size: .82rem; letter-spacing: .04em; }

.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; margin-top: 49px; }
.trip-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform .24s ease, box-shadow .24s ease;
}
.trip-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.trip-card-media { position: relative; aspect-ratio: 16/10; overflow: hidden; background: var(--blue-soft); }
.trip-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.trip-card:hover img { transform: scale(1.035); }
.status {
  position: absolute;
  left: 0;
  top: 18px;
  padding: 8px 13px;
  background: var(--blue);
  color: var(--white);
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.trip-card-body { display: flex; flex: 1; flex-direction: column; padding: 28px; border-top: 4px solid var(--gold); }
.trip-card h3 { margin: 0; color: var(--blue-deep); font-family: var(--font-serif); font-size: 1.72rem; line-height: 1.17; }
.trip-meta { display: flex; flex-wrap: wrap; gap: 7px 14px; margin: 15px 0; color: var(--gold-dark); font-size: .75rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }
.trip-card p { color: var(--muted); }
.trip-card .text-link { margin-top: auto; padding-top: 16px; color: var(--blue); font-weight: 700; }

.feature-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 74px; align-items: start; }
.feature-list { display: grid; grid-template-columns: repeat(2,1fr); gap: 17px; }
.feature { padding: 27px; background: var(--white); border: 1px solid var(--line); border-top: 4px solid var(--gold); }
.feature-index { color: var(--blue); font-family: var(--font-serif); font-size: 2.05rem; }
.feature h3 { margin: 10px 0 8px; color: var(--blue-deep); font-family: var(--font-serif); font-size: 1.3rem; }
.feature p { margin: 0; color: var(--muted); font-size: .94rem; }

.quote { position: relative; padding: 56px 62px; overflow: hidden; background: var(--blue-deep); color: var(--white); box-shadow: var(--shadow); }
.quote::after { content: "\201D"; position: absolute; right: 28px; bottom: -38px; color: rgba(255,255,255,.06); font-family: var(--font-serif); font-size: 14rem; line-height: 1; }
.quote blockquote { position: relative; z-index: 1; max-width: 970px; margin: 0; font-family: var(--font-serif); font-size: clamp(1.75rem,3.1vw,2.7rem); line-height: 1.25; }
.quote footer { margin-top: 25px; color: var(--gold); font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; }

.cta-panel { display: grid; grid-template-columns: 1.05fr .95fr; gap: 52px; align-items: center; padding: 58px; background: var(--blue-deep); color: var(--white); border-top: 6px solid var(--gold); box-shadow: var(--shadow); }
.cta-panel .section-title { color: var(--white); }
.cta-panel p { color: rgba(255,255,255,.75); }
.cta-panel .eyebrow { color: var(--gold); }
.cta-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 12px; }

form { width: 100%; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1/-1; }
.form-field label { color: rgba(255,255,255,.88); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.form-field input, .form-field select, .form-field textarea { width: 100%; min-height: 49px; padding: 11px 13px; border: 1px solid rgba(255,255,255,.3); border-radius: 0; background: rgba(255,255,255,.08); color: var(--white); outline: none; }
.form-field select option { color: var(--ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(212,166,74,.15); }
.form-note { margin: 13px 0 0; font-size: .78rem; }
.demo-message { display: none; margin: 13px 0 0; padding: 12px 14px; background: rgba(255,255,255,.1); border-left: 3px solid var(--gold); }
.demo-message.show { display: block; }

/* Trip detail */
.trip-hero { position: relative; min-height: 74vh; display: grid; align-items: end; overflow: hidden; color: var(--white); background: var(--blue-deep); }
.trip-hero::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg,rgba(5,24,41,.1),rgba(5,24,41,.91)); }
.trip-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; height: 6px; background: var(--gold); }
.trip-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 35%; }
.trip-hero-content { position: relative; z-index: 3; padding: 150px 0 74px; }
.trip-hero .eyebrow { color: #f1ca78; }
.trip-hero h1 { max-width: 950px; margin: 0; font-family: var(--font-serif); font-size: clamp(3.2rem,7vw,6.7rem); line-height: .95; letter-spacing: -.045em; }
.trip-hero p { max-width: 770px; margin: 24px 0 0; color: rgba(255,255,255,.83); font-size: 1.16rem; }
.trip-info-bar { position: relative; z-index: 4; margin-top: -36px; }
.trip-info-grid { display: grid; grid-template-columns: repeat(4,1fr); overflow: hidden; background: var(--white); box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.trip-info { padding: 24px; border-right: 1px solid var(--line); }
.trip-info:last-child { border-right: 0; }
.trip-info span { display: block; color: var(--gold-dark); font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.trip-info strong { display: block; margin-top: 5px; color: var(--blue-deep); font-size: 1.02rem; }

.intro-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 74px; align-items: start; }
.check-list { list-style: none; display: grid; gap: 12px; margin: 25px 0 0; padding: 0; }
.check-list li { position: relative; padding-left: 31px; }
.check-list li::before { content: ""; position: absolute; left: 0; top: .67em; width: 14px; height: 8px; border-left: 2px solid var(--gold-dark); border-bottom: 2px solid var(--gold-dark); transform: rotate(-45deg); }
.info-box { padding: 31px; background: var(--blue-mist); border-left: 5px solid var(--blue); }
.info-box h3 { margin-top: 0; color: var(--blue-deep); font-family: var(--font-serif); font-size: 1.6rem; }
.info-box dl { margin: 0; }
.info-box dl div { padding: 14px 0; border-top: 1px solid #ccd7df; }
.info-box dt { color: var(--gold-dark); font-size: .7rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase; }
.info-box dd { margin: 4px 0 0; color: var(--ink); }

.day-nav-wrap { position: sticky; top: 92px; z-index: 70; background: rgba(11,41,70,.97); border-bottom: 3px solid var(--gold); }
.day-nav { display: flex; gap: 6px; overflow-x: auto; padding-block: 10px; scrollbar-width: thin; }
.day-nav a { flex: 0 0 auto; padding: 8px 13px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.77); font-size: .72rem; font-weight: 700; letter-spacing: .055em; text-transform: uppercase; transition: .2s; }
.day-nav a:hover, .day-nav a.active { background: var(--gold); color: var(--blue-deep); border-color: var(--gold); }

.itinerary { position: relative; padding-top: 62px; padding-bottom: 42px; }
.itinerary::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: #c8d1d8; transform: translateX(-.5px); }
.day { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 76px; align-items: center; min-height: 610px; padding: 72px 0; }
.day::before { content: ""; position: absolute; z-index: 2; left: 50%; top: 50%; width: 16px; height: 16px; border: 4px solid var(--white); background: var(--gold); box-shadow: 0 0 0 2px var(--blue); transform: translate(-50%,-50%) rotate(45deg); }
.day:nth-child(even) .day-image { order: 2; }
.day:nth-child(even) .day-content { order: 1; }
.day-image { overflow: hidden; aspect-ratio: 16/11; background: var(--blue-soft); box-shadow: var(--shadow); border-bottom: 5px solid var(--gold); }
.day-image img { width: 100%; height: 100%; object-fit: cover; }
.day-content { max-width: 540px; }
.day:nth-child(odd) .day-content { justify-self: start; }
.day:nth-child(even) .day-content { justify-self: end; }
.day-number { display: inline-block; margin-bottom: 14px; color: var(--gold-dark); font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.day-content h2 { margin: 0; color: var(--blue-deep); font-family: var(--font-serif); font-size: clamp(2rem,4vw,3.25rem); line-height: 1.06; }
.day-places { margin: 14px 0 18px; color: var(--blue); font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.day-content p:not(.day-places) { color: var(--muted); }
.day-tags { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag { padding: 7px 10px; background: var(--blue-mist); border-left: 3px solid var(--gold); color: var(--blue-deep); font-size: .72rem; }
.disclaimer { margin: 0; padding: 24px 26px; background: var(--white); border-left: 5px solid var(--gold); box-shadow: var(--shadow-soft); }

/* Footer and legal */
.site-footer { padding: 64px 0 24px; background: var(--blue-deep); color: rgba(255,255,255,.76); border-top: 6px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.5fr .65fr .65fr; gap: 58px; }
.footer-brand { display: inline-flex; align-items: center; padding: 8px 11px; background: var(--white); }
.footer-brand img { width: 190px; }
.site-footer p { max-width: 480px; }
.site-footer strong { color: var(--white); font-family: var(--font-serif); font-size: 1.12rem; }
.footer-links { display: grid; gap: 9px; margin-top: 14px; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.15); font-size: .76rem; }

.legal { max-width: 880px; }
.legal h1 { margin: 0 0 25px; color: var(--blue-deep); font-family: var(--font-serif); font-size: clamp(2.8rem,6vw,5rem); line-height: 1; }
.legal h2 { margin-top: 42px; color: var(--blue-deep); font-family: var(--font-serif); font-size: 1.6rem; }
.placeholder { padding: 20px 22px; background: #fff4db; border-left: 5px solid var(--gold-dark); }

.reveal { opacity: 1; transform: none; }
.js .reveal { opacity: 0; transform: translateY(24px); transition: opacity .62s ease, transform .62s ease; }
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

@media (max-width: 1080px) {
  .nav { gap: 16px; font-size: .73rem; }
  .brand-logo { width: 180px; }
  .brand-label { display: none; }
  .hero-grid { grid-template-columns: 1fr .45fr; }
}

@media (max-width: 900px) {
  .site-topline { display: none; }
  .site-header { min-height: 78px; }
  .menu-button { display: block; }
  .nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 22px 22px; background: var(--white); border-bottom: 3px solid var(--gold); box-shadow: var(--shadow); }
  .nav.open { display: flex; }
  .nav a { padding: 13px 0; }
  .nav a:not(.btn)::after { display: none; }
  .nav .btn { margin-top: 8px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-side-card { margin: 0; }
  .cards { grid-template-columns: 1fr 1fr; }
  .feature-grid, .intro-grid, .cta-panel { grid-template-columns: 1fr; }
  .feature-grid { gap: 44px; }
  .cta-actions { justify-content: flex-start; }
  .trip-info-grid { grid-template-columns: repeat(2,1fr); }
  .trip-info:nth-child(2) { border-right: 0; }
  .trip-info:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .day-nav-wrap { top: 78px; }
  .itinerary::before, .day::before { left: 18px; }
  .day { grid-template-columns: 1fr; min-height: auto; gap: 30px; padding: 54px 0 54px 54px; }
  .day:nth-child(even) .day-image, .day:nth-child(even) .day-content { order: initial; }
  .day-image { order: 1 !important; }
  .day-content { order: 2 !important; justify-self: start !important; max-width: none; }
}

@media (max-width: 680px) {
  .container { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 72px 0; }
  .brand-logo { width: 155px; }
  .hero { min-height: 660px; }
  .hero::before { background: linear-gradient(90deg,rgba(6,28,49,.92),rgba(6,28,49,.58)); }
  .hero-grid { padding: 74px 0; }
  .hero h1 { font-size: clamp(3.15rem,15vw,5rem); }
  .hero-side-card { display: none; }
  .cards, .feature-list, .footer-grid, .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .stats-grid, .trip-info-grid { grid-template-columns: 1fr; }
  .stat, .trip-info { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .trip-info { border-bottom-color: var(--line); }
  .stat:last-child, .trip-info:last-child { border-bottom: 0; }
  .trip-info:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .trip-hero { min-height: 70vh; }
  .trip-info-bar { margin-top: 0; }
  .trip-info-grid { border-top-width: 4px; }
  .day { padding-left: 38px; }
  .itinerary::before, .day::before { left: 8px; }
  .cta-panel, .quote { padding: 34px 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}


/* Designstand 4: stabiler Reiseverlauf */
.day[id] { scroll-margin-top: 165px; }
.day-nav { position: relative; overscroll-behavior-inline: contain; scroll-snap-type: x proximity; }
.day-nav a { scroll-snap-align: center; }
.day-nav a:focus-visible { outline: 3px solid #fff; outline-offset: 2px; }
.day-content, .day-image { min-width: 0; }
@media (max-width: 980px) {
  .day[id] { scroll-margin-top: 145px; }
}

/* V12: gewünschtes Typografiesystem */
@font-face {
  font-family: "Narkisim Local";
  src: local("Narkisim"), local("Narkissim");
  font-display: swap;
}
:root {
  --font-heading: "Narkisim Local", Narkisim, "Noto Serif", Georgia, "Times New Roman", serif;
  --font-subtitle: "Noto Sans Condensed", "Noto Sans", Arial, Helvetica, sans-serif;
  --font-body: "Noto Sans", Arial, Helvetica, sans-serif;
  --font-serif: var(--font-heading);
  --font-sans: var(--font-body);
}
body,
p,
li,
dd,
input,
textarea,
select,
button {
  font-family: var(--font-body);
  font-stretch: normal;
  font-variation-settings: "wdth" 100;
}
h1, h2, h3, h4, h5, h6,
.section-title,
.brand-name,
.hero-side-card strong,
.stat strong,
.feature-index,
.quote blockquote,
.site-footer strong,
.info-box h3,
.service-box h3,
.travel-notes h3 {
  font-family: var(--font-heading);
  font-stretch: normal;
  font-variation-settings: normal;
}
.eyebrow,
.section-lead,
.hero-copy,
.hero-note,
.brand-label,
.site-topline,
.nav,
.btn,
.status,
.trip-meta,
.trip-hero p,
.trip-info span,
.day-number,
.day-date,
.day-places,
.tag,
.quote footer,
.form-field label,
.footer-bottom,
.topline-link,
.topline-values {
  font-family: var(--font-subtitle);
  font-stretch: 75%;
  font-variation-settings: "wdth" 75;
}


/* V13: hellere Titelbilder und blau verlaufende Überschriften */
:root {
  --heading-blue-gradient: linear-gradient(90deg, #072f5c 0%, #1c639b 54%, #79c8ed 100%);
}

/* Die Fotos am Seitenanfang bleiben sichtbar und werden nicht mehr so stark abgedunkelt. */
.hero::before {
  background:
    linear-gradient(90deg, rgba(6,28,49,.48) 0%, rgba(6,28,49,.29) 47%, rgba(6,28,49,.08) 76%, rgba(6,28,49,.02) 100%),
    linear-gradient(0deg, rgba(6,28,49,.12), rgba(6,28,49,.01));
}
.hero-bg {
  filter: brightness(1.10) saturate(1.03);
}
.trip-hero::before {
  background: linear-gradient(180deg, rgba(5,24,41,.015) 0%, rgba(5,24,41,.10) 52%, rgba(5,24,41,.46) 100%);
}
.trip-hero img {
  filter: brightness(1.12) saturate(1.03);
}

/* Überschriften im Israelforum-Look: von dunklem zu hellem Blau. */
main h1,
main h2,
main h3,
.section-title,
.day-content h2,
.trip-card-body h3,
.feature h3,
.service-box h3,
.travel-notes h3 {
  color: #123f6a;
}
@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  main h1,
  main h2,
  main h3,
  .section-title,
  .day-content h2,
  .trip-card-body h3,
  .feature h3,
  .service-box h3,
  .travel-notes h3 {
    background-image: var(--heading-blue-gradient);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
  .hero h1 span {
    color: transparent;
    -webkit-text-fill-color: transparent;
  }
}

/* Auf den helleren Titelbildern bleibt der Verlauf durch eine sehr weiche helle Kontur lesbar. */
.hero h1,
.trip-hero h1 {
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.90)) drop-shadow(0 3px 10px rgba(255,255,255,.48));
}

@media (max-width: 680px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(6,28,49,.50), rgba(6,28,49,.20));
  }
  .trip-hero::before {
    background: linear-gradient(180deg, rgba(5,24,41,.02), rgba(5,24,41,.42));
  }
}

/* V14: Startbild deutlich heller und blaue Titel auf hellem Grund */
.hero::before {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.78) 0%,
      rgba(255,255,255,.58) 42%,
      rgba(255,255,255,.22) 68%,
      rgba(255,255,255,.04) 100%),
    linear-gradient(0deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}
.hero-bg {
  filter: brightness(1.22) saturate(1.02) contrast(.98);
}
.hero .eyebrow,
.hero-copy,
.hero-note {
  color: #123f6a;
  text-shadow: 0 1px 1px rgba(255,255,255,.75);
}
.hero-note::before { background: #1c639b; }
.hero .btn--secondary {
  color: #123f6a;
  border-color: rgba(18,63,106,.55);
  background: rgba(255,255,255,.34);
}
.hero .btn--secondary:hover { background: rgba(255,255,255,.68); }
.hero h1 {
  filter: drop-shadow(0 1px 0 rgba(255,255,255,.92)) drop-shadow(0 2px 5px rgba(255,255,255,.58));
}
@media (max-width: 680px) {
  .hero::before {
    background: linear-gradient(90deg, rgba(255,255,255,.80), rgba(255,255,255,.48));
  }
}


/* V16: Israelforum-Flächenton */
.section--sand {
  background: #ECECF8;
}
.info-box,
.travel-notes,
.tag {
  background: #ECECF8;
}
