/* ===============================================
   BALI & LOMBOK · PATRICIA & THORSTEN
   Editorial design with explicit Light/Dark themes.
   =============================================== */

@import url('fonts/fonts.css');

/* ===========================================================
   THEME TOKENS — Light (default) and Dark
   =========================================================== */
:root,
:root[data-theme="light"] {
  --paper:        #f6efe2;
  --paper-2:      #efe5d3;
  --paper-3:      #e6d8c1;
  --surface:      #fbf6ec;
  --surface-2:    #f1ebde;
  --cream:        #fdfaf3;
  --card-bg:      #fbf6ec;
  --sand:         #ebe1cd;
  --ink-3:        #756a5b;
  --ink:          #1f1a15;
  --ink-2:        #3a332a;
  --mute:         #756a5b;
  --mute-2:       #968a78;
  --line:         #d6c9b0;
  --line-soft:    #e7dcc6;
  --terra:        #b56b4a;
  --terra-deep:   #8a4a32;
  --terra-soft:   #d99572;
  --sage:         #7a8870;
  --sage-deep:    #5e6b56;
  --gold:         #b08d5b;
  --rust:         #964a3e;
  --header-bg:    linear-gradient(180deg, #f6efe2 0%, #efe5d3 100%);
  --header-ink:   #1f1a15;
  --banner-bg:    rgba(253, 250, 243, 0.88);
  --shadow-sm:    0 1px 2px rgba(31, 26, 21, 0.04), 0 1px 3px rgba(31, 26, 21, 0.06);
  --shadow:       0 4px 12px rgba(31, 26, 21, 0.07), 0 2px 4px rgba(31, 26, 21, 0.04);
  --shadow-lg:    0 12px 36px rgba(31, 26, 21, 0.10), 0 4px 12px rgba(31, 26, 21, 0.06);
  --shadow-xl:    0 24px 64px rgba(31, 26, 21, 0.16), 0 8px 24px rgba(31, 26, 21, 0.08);
  --map-tile:     light_nolabels;
  --serif:        'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:         'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --ease-out:     cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring:  cubic-bezier(0.34, 1.56, 0.64, 1);
}

:root[data-theme="dark"] {
  --paper:        #14110d;
  --paper-2:      #1c1814;
  --paper-3:      #25201a;
  --surface:      #1a1612;
  --surface-2:    #221d18;
  --cream:        #1c1814;
  --card-bg:      #1a1612;
  --sand:         #25201a;
  --ink-3:        #a4998a;
  --ink:          #f4ead7;
  --ink-2:        #d8ccb6;
  --mute:         #a4998a;
  --mute-2:       #847868;
  --line:         #2e271f;
  --line-soft:    #251f18;
  --terra:        #d18260;
  --terra-deep:   #b56b4a;
  --terra-soft:   #e3a07e;
  --sage:         #8fa087;
  --sage-deep:    #a8b59f;
  --gold:         #c8a674;
  --rust:         #b06752;
  --header-bg:    linear-gradient(180deg, #1a1612 0%, #221d18 100%);
  --header-ink:   #f4ead7;
  --banner-bg:    rgba(20, 17, 13, 0.88);
  --shadow-sm:    0 1px 2px rgba(0, 0, 0, 0.30), 0 1px 3px rgba(0, 0, 0, 0.40);
  --shadow:       0 4px 12px rgba(0, 0, 0, 0.45), 0 2px 4px rgba(0, 0, 0, 0.30);
  --shadow-lg:    0 12px 36px rgba(0, 0, 0, 0.55), 0 4px 12px rgba(0, 0, 0, 0.35);
  --shadow-xl:    0 24px 64px rgba(0, 0, 0, 0.70), 0 8px 24px rgba(0, 0, 0, 0.45);
  --map-tile:     dark_nolabels;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  background: var(--paper);
}

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink-2);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "ss01", "cv11", "kern";
  overflow-x: hidden;
  transition: background 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.015em;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
::selection { background: var(--terra); color: var(--surface); }

/* ===========================================================
   LIVE BANNER · sticky top
   =========================================================== */
@keyframes bannerSlideIn {
  0%   { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
.banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--banner-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line-soft);
  padding: 8px calc(env(safe-area-inset-right, 0) + 14px) calc(env(safe-area-inset-bottom, 0) + 8px) calc(env(safe-area-inset-left, 0) + 14px);
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--ink-2);
  overflow-x: auto;
  scrollbar-width: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
  animation: bannerSlideIn 0.6s var(--ease-out) 0.3s both;
  transition: background 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
}
/* Push body content above bottom banner so footer doesn't hide under it */
body { padding-bottom: 54px; }
body { padding-bottom: calc(54px + env(safe-area-inset-bottom, 0px)); }
.banner::-webkit-scrollbar { display: none; }

.bn-clocks { display: inline-flex; gap: 8px; flex-shrink: 0; }
.bn-clock {
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
}
.bn-tz {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  color: var(--terra);
}
.bn-time {
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.bn-sep {
  width: 1px; height: 14px;
  background: var(--line);
  flex-shrink: 0;
  opacity: 0.6;
}
.bn-weather {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
  flex: 1;
}
.bn-city {
  display: inline-flex; align-items: center; gap: 5px;
  white-space: nowrap;
  font-size: 11px;
}
.bn-city-name {
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.bn-city-temp {
  color: var(--terra);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.bn-city-icon {
  font-size: 12px;
  line-height: 1;
  filter: saturate(0.8);
}
.bn-loading { color: var(--mute); font-style: italic; }

.bn-current {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 8px;
  background: var(--terra);
  color: var(--surface);
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.bn-current-eye {
  font-size: 8.5px;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 700;
  opacity: 0.85;
}
.bn-current-icon { font-size: 12px; line-height: 1; }
.bn-current-loc { font-weight: 600; }
.bn-current-temp { font-weight: 700; font-variant-numeric: tabular-nums; }

@keyframes pingFade {
  0%   { opacity: 0; transform: translateY(-4px); }
  10%  { opacity: 1; transform: translateY(0); }
  90%  { opacity: 1; }
  100% { opacity: 0; }
}
.bn-realtime-ping {
  display: inline-flex;
  align-items: center;
  padding: 3px 9px;
  background: var(--sage);
  color: var(--surface, #fbf6ec);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  flex-shrink: 0;
  animation: pingFade 3.5s var(--ease-out) forwards;
}

.bn-theme {
  flex-shrink: 0;
  margin-left: auto;
  width: 30px; height: 30px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 50%;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  font-size: 14px;
  line-height: 1;
  transition: border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), transform 0.2s var(--ease-out);
}
.bn-theme:hover {
  border-color: var(--terra);
  background: var(--surface);
  transform: rotate(20deg);
}
.bn-theme:active { transform: scale(0.95) rotate(20deg); }

/* ===========================================================
   PAGE HEAD — compact intro band
   =========================================================== */
header.page-head {
  margin-top: 38px;
  padding: clamp(56px, 9vh, 96px) 24px clamp(28px, 4vh, 56px);
  text-align: center;
  background: var(--header-bg);
  position: relative;
}
header.page-head::after {
  content: '';
  display: block;
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, transparent, var(--terra) 70%, transparent);
  margin: 28px auto 0;
  opacity: 0.55;
}

/* ================ PREMIUM HERO ================ */
/* Full-bleed atmospheric Bali image with editorial overlay */
header.page-head.hero-magazine {
  position: relative;
  min-height: 88vh;
  padding: 0;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
header.page-head.hero-magazine::after { display: none; }
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('img/hero.jpg');
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.06);
  animation: heroSlowZoom 24s ease-out infinite alternate;
}
@keyframes heroSlowZoom {
  from { transform: scale(1.06); }
  to   { transform: scale(1.14); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 17, 13, 0.25) 0%, rgba(20, 17, 13, 0.55) 60%, rgba(20, 17, 13, 0.85) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(20, 17, 13, 0.35) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 32px 24px;
  max-width: 880px;
  margin: 0 auto;
}
.hero-magazine .ph-eyebrow {
  color: #e8b48f;
  margin-bottom: 32px;
}
.hero-magazine .ph-eyebrow::before,
.hero-magazine .ph-eyebrow::after {
  background: #e8b48f;
  opacity: 0.6;
  width: 32px;
}
.hero-magazine .ph-title {
  color: #fdfaf3;
  font-size: clamp(3.2rem, 11vw, 6.5rem);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.5);
  margin-bottom: 28px;
}
.hero-magazine .ph-title .amp {
  color: #e8b48f;
}
.ph-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: #f5e8d4;
  line-height: 1.5;
  font-weight: 300;
  margin: 0 auto 32px;
  max-width: 520px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
  animation: phEnter 0.9s var(--ease-out) 0.22s both;
}
.hero-magazine .ph-byline {
  color: #d4c5a8;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.hero-magazine .ph-cta {
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fdfaf3;
  border-color: rgba(232, 180, 143, 0.7);
  padding: 14px 28px;
  font-size: 12px;
  letter-spacing: 2.5px;
  transition: all 0.3s ease;
}
.hero-magazine .ph-cta:hover {
  background: #e8b48f;
  color: #14110d;
  border-color: #e8b48f;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232, 180, 143, 0.35);
}
.cta-arrow {
  margin-left: 6px;
  display: inline-block;
  animation: ctaBounce 2s ease-in-out infinite;
}
@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}
.hero-scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 56px;
  overflow: hidden;
}
.hsh-line {
  display: block;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, transparent, #e8b48f, transparent);
  animation: hshSlide 2.4s ease-in-out infinite;
}
@keyframes hshSlide {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(100%); }
}

/* ================ SCROLL PROGRESS ================ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #b56b4a 0%, #e8b48f 100%);
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 14px rgba(232, 180, 143, 0.5);
}
@keyframes phEnter {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.ph-eyebrow {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  animation: phEnter 0.7s var(--ease-out) 0.05s both;
}
.ph-eyebrow::before, .ph-eyebrow::after {
  content: '';
  width: 22px; height: 1px;
  background: var(--terra);
  opacity: 0.5;
}
.ph-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.6rem, 8vw, 4.6rem);
  color: var(--header-ink);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 22px;
  animation: phEnter 0.8s var(--ease-out) 0.15s both;
}
.ph-title .amp {
  font-style: italic;
  color: var(--terra);
  font-weight: 300;
  margin: 0 4px;
  font-size: 0.92em;
}
.ph-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: var(--mute);
  letter-spacing: 0.02em;
  font-weight: 400;
  animation: phEnter 0.7s var(--ease-out) 0.28s both;
}
.ph-byline .ph-sep {
  margin: 0 8px;
  opacity: 0.5;
}
.ph-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  padding: 11px 22px;
  border: 1px solid var(--terra);
  border-radius: 999px;
  color: var(--terra);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  text-decoration: none;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), transform 0.2s var(--ease-out);
  animation: phEnter 0.7s var(--ease-out) 0.4s both;
}
.ph-cta:hover {
  background: var(--terra);
  color: #fdfaf3;
  transform: translateY(-1px);
}
.ph-cta:active { transform: translateY(0) scale(0.97); }

/* ===========================================================
   PRE-TRIP container
   =========================================================== */
.pre-trip {
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 80px) 24px clamp(40px, 6vh, 80px);
}

/* ===========================================================
   COUNTDOWN
   =========================================================== */
.ct-section {
  text-align: center;
  margin-bottom: clamp(60px, 9vh, 100px);
}
.ct-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.ct-eyebrow::before, .ct-eyebrow::after {
  content: '';
  width: 28px; height: 1px;
  background: var(--terra);
  opacity: 0.4;
  display: inline-block;
}
.ct-num {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(5rem, 18vw, 12rem);
  color: var(--ink);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.06em;
  font-variant-numeric: tabular-nums;
  margin: 0 0 14px;
  padding: 0.1em 0.05em 0.18em;
  background: linear-gradient(180deg, var(--ink) 0%, var(--terra-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}
.ct-lbl {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--mute);
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ===========================================================
   STATS · "Reise in Zahlen"
   =========================================================== */
.stats-section {
  margin-bottom: clamp(60px, 9vh, 100px);
}
.stats-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.stats-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 14px;
}
.stats-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-tile {
  background: var(--surface);
  padding: 28px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: background 0.3s var(--ease-out);
  position: relative;
  min-height: 130px;
}
.stat-tile:hover { background: var(--surface-2); }
.stat-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-lbl {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 1.6px;
  color: var(--mute);
  font-weight: 600;
  line-height: 1.4;
}
.stat-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 11.5px;
  color: var(--mute-2);
  margin-top: 2px;
}

/* ===========================================================
   ABOUT · brief intro paragraph
   =========================================================== */
.about-section {
  max-width: 680px;
  margin: 0 auto clamp(60px, 9vh, 100px);
  padding: 0 8px;
  text-align: center;
}
.about-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 18px;
}
.about-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  color: var(--ink-2);
  line-height: 1.55;
  letter-spacing: 0.005em;
  font-weight: 400;
}
.about-text + .about-text { margin-top: 18px; }

/* ===========================================================
   GUT ZU WISSEN · practical info row
   =========================================================== */
.facts-section {
  margin: 0 auto clamp(60px, 9vh, 100px);
  max-width: 980px;
}
.facts-head {
  text-align: center;
  margin-bottom: 32px;
}
.facts-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 12px;
}
.facts-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
}
.facts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.fact-card {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  padding: 22px 22px 20px;
  transition: border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.fact-card:hover {
  border-color: var(--line);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.fact-label {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 6px;
}
.fact-value {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 4px;
}
.fact-detail {
  font-family: var(--sans);
  font-size: 12.5px;
  color: var(--mute);
  line-height: 1.5;
}

/* ===========================================================
   ROUTE
   =========================================================== */
.pt-route {
  margin-top: 0;
}

/* ----- Live conditions panel (above map) ----- */
.pt-live {
  max-width: 980px;
  margin: 0 auto 24px;
  padding: 18px 22px;
  background: var(--surface, var(--cream));
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}
.ptl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.ptl-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.ptl-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #c84e3a;
  box-shadow: 0 0 0 0 rgba(200, 78, 58, 0.7);
  animation: ptlPulse 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}
@keyframes ptlPulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 78, 58, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(200, 78, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 78, 58, 0); }
}
.ptl-now {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.ptl-now-row {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.ptl-now-lbl {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2, var(--mute));
}
.ptl-now-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}
.ptl-now-tz {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--mute);
}
.ptl-sun {
  display: inline-flex;
  gap: 18px;
  flex-wrap: wrap;
}
.ptl-sun-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink-2, var(--ink));
  font-variant-numeric: tabular-nums;
}
.ptl-sun-ic {
  color: var(--terra);
  flex-shrink: 0;
  transition: transform 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}
.ptl-sun-item:hover .ptl-sun-ic { transform: translateY(-2px) scale(1.08); }
.ptl-sun-lbl {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 600;
}
.ptl-sun-time {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--ink);
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.ptl-stops {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.ptl-stop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px 8px;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line);
  text-align: center;
  min-height: 96px;
  position: relative;
  overflow: hidden;
  transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}
.ptl-stop::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(181, 107, 74, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.ptl-stop:hover {
  transform: translateY(-3px);
  border-color: var(--terra);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.ptl-stop:hover::before { opacity: 1; }
.ptl-stop-name {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2, var(--mute));
  margin-bottom: 10px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.ptl-stop-temp {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  position: relative;
  z-index: 1;
  line-height: 1;
}
.ptl-icn {
  font-size: 22px;
  line-height: 1;
  align-self: center;
}
.ptl-tmp {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 32px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  line-height: 1;
  display: inline-block;
}
.ptl-deg {
  font-family: var(--sans);
  font-weight: 300;
  font-size: 22px;
  color: var(--terra);
  line-height: 1;
  margin-left: -3px;
}
.ptl-pulse {
  animation: ptlStopPulse 1.6s ease-out;
}
@keyframes ptlStopPulse {
  0%   { background: var(--cream); }
  20%  { background: rgba(181, 107, 74, 0.16); }
  100% { background: var(--cream); }
}

[data-theme="dark"] .pt-live {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}
[data-theme="dark"] .ptl-stop {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

@media (max-width: 720px) {
  .pt-live { margin: 0 16px 18px; padding: 14px 16px; }
  .ptl-head { gap: 10px; padding-bottom: 12px; margin-bottom: 12px; }
  .ptl-now { gap: 14px; }
  .ptl-now-time { font-size: 22px; }
  .ptl-sun { gap: 14px; }
  .ptl-sun-lbl { display: none; } /* nur icon + time mobil */
  .ptl-stops { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .ptl-stop { padding: 12px 6px; min-height: 88px; }
  .ptl-stop-name { font-size: 10.5px; margin-bottom: 8px; }
  .ptl-tmp { font-size: 26px; }
  .ptl-deg { font-size: 18px; }
  .ptl-icn { font-size: 19px; }
}

/* ===========================================================
   GLOBAL ANIMATIONS — sparkle particles, hover bling, parallax
   =========================================================== */

/* Hero: golden floating particles */
.hero-magazine { position: relative; }
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.hero-particle {
  position: absolute;
  bottom: -8px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 220, 160, 0.85), rgba(255, 220, 160, 0));
  opacity: 0;
  animation: floatUp 14s linear infinite;
}
@keyframes floatUp {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}
.hero-particle:nth-child(1)  { left: 8%;  animation-delay: 0s;  animation-duration: 16s; }
.hero-particle:nth-child(2)  { left: 18%; animation-delay: 2s;  animation-duration: 18s; width: 2px; height: 2px; }
.hero-particle:nth-child(3)  { left: 30%; animation-delay: 5s;  animation-duration: 14s; }
.hero-particle:nth-child(4)  { left: 42%; animation-delay: 8s;  animation-duration: 17s; width: 4px; height: 4px; }
.hero-particle:nth-child(5)  { left: 55%; animation-delay: 1s;  animation-duration: 15s; }
.hero-particle:nth-child(6)  { left: 65%; animation-delay: 6s;  animation-duration: 13s; width: 2px; height: 2px; }
.hero-particle:nth-child(7)  { left: 75%; animation-delay: 3s;  animation-duration: 19s; }
.hero-particle:nth-child(8)  { left: 85%; animation-delay: 9s;  animation-duration: 16s; width: 3px; height: 3px; }
.hero-particle:nth-child(9)  { left: 92%; animation-delay: 11s; animation-duration: 14s; }
.hero-content { position: relative; z-index: 2; }

/* Stat-tile hover */
.stat-tile {
  transition: transform 320ms cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 280ms ease;
}
.stat-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

/* Fact-card hover */
.fact-card {
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}
.fact-card:hover {
  transform: translateY(-2px);
  border-color: var(--terra);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

/* Stop-Card lift on hover */
.pt-card {
  transition: transform 380ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 380ms ease;
}
.pt-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.14);
}
.pt-card .ptc-img {
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}
.pt-card:hover .ptc-img { transform: scale(1.04); }

/* Bali-time digit micro-pulse on tick */
.ptl-now-time {
  transition: color 320ms ease;
}
.ptl-now-time.ptl-tick {
  animation: timeTick 600ms ease-out;
}
@keyframes timeTick {
  0%   { color: var(--ink); }
  30%  { color: var(--terra); }
  100% { color: var(--ink); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-particle { animation: none; opacity: 0; }
  .stat-tile, .fact-card, .pt-card, .pt-card .ptc-img { transition: none; }
  .ptl-now-time.ptl-tick { animation: none; }
}
.pt-section-head {
  text-align: center;
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.pt-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 14px;
}
.pt-section-head h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--ink);
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.pt-sub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mute);
  line-height: 1.6;
}
.pt-map {
  width: 100%;
  height: clamp(340px, 48vh, 500px);
  border-radius: 18px;
  margin-bottom: 48px;
  background: var(--paper-2);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  position: relative;
}
.pt-stops {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 580px;
  margin: 0 auto;
}
.pt-stops li.pt-stop {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  list-style: none;
}
.pt-stops li.pt-stop:last-child { border-bottom: none; }
.pt-stops li.pt-leg {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  align-items: center;
  padding: 6px 0;
  border-bottom: 1px solid var(--line-soft);
  list-style: none;
}
.pt-leg-line {
  width: 1px;
  height: 30px;
  background: var(--terra);
  opacity: 0.4;
  margin: 0 auto;
  display: block;
}
.pt-leg-meta {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pt-leg-dist {
  color: var(--terra);
  font-weight: 700;
  letter-spacing: 1.2px;
  font-variant-numeric: tabular-nums;
}

/* ================ STOP CHARACTER CARDS ================ */
.pt-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
}
.pt-card {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--card-bg, var(--cream, #fdfaf3));
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 32px rgba(20, 17, 13, 0.06);
  border: 1px solid var(--line);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.pt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(181, 107, 74, 0.18);
}
.ptc-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
  filter: saturate(0.95) contrast(1.05);
}
.ptc-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 17, 13, 0.4) 100%);
}
/* No-image "Zuhause" card — decorative panel instead of photo */
.ptc-img-home {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.18), transparent 55%),
    linear-gradient(135deg, var(--terra) 0%, #c98a5e 45%, var(--sand, #ebe1cd) 130%);
  filter: none;
  overflow: hidden;
}
.ptc-img-home::after {
  background: linear-gradient(180deg, transparent 55%, rgba(20, 17, 13, 0.18) 100%);
}
/* subtle dotted texture */
.ptc-img-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1.4px);
  background-size: 18px 18px;
  opacity: 0.5;
}
.ptc-home-deco {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.ptc-home-deco svg {
  opacity: 0.95;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.2));
}
.ptc-home-label {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: rgba(255,255,255,0.92);
}
.pt-card-home .ptc-num { opacity: 0.55; }

.ptc-body {
  padding: 28px clamp(20px, 4vw, 36px) 32px;
}
.ptc-num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 6px;
}
.ptc-num-alt {
  font-size: 1.4rem;
  opacity: 0.5;
  margin-left: 4px;
  font-weight: 400;
}
.ptc-region {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 8px;
}
.ptc-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.015em;
  line-height: 1;
  margin: 0 0 14px;
}
.ptc-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--terra);
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 18px;
  padding-left: 14px;
  border-left: 2px solid var(--terra);
}
.ptc-desc {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.ptc-desc strong {
  color: var(--ink);
  font-weight: 600;
}
.ptc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.ptc-tags li {
  font-family: var(--sans);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.3px;
  padding: 5px 11px;
  background: var(--sand, #ebe1cd);
  color: var(--ink-2);
  border-radius: 999px;
}

/* Closing card variant — visually distinct (final stop, return) */
.pt-card-closing {
  opacity: 0.93;
}
.pt-card-closing .ptc-tagline {
  border-left-color: var(--mute);
  color: var(--mute);
}

/* Leg dividers between cards — visible journey beat */
.pt-leg-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 12px;
  margin: 0;
}
.ptl-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 30%, var(--line) 70%, transparent);
}
.ptl-text {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--mute);
  font-weight: 600;
  white-space: nowrap;
}

/* Desktop layout: image left, body right */
@media (min-width: 740px) {
  .pt-card {
    grid-template-columns: 42% 58%;
  }
  .ptc-img { height: 100%; min-height: 300px; }
  .pt-card-closing {
    grid-template-columns: 58% 42%;
    direction: rtl;
  }
  .pt-card-closing .ptc-body { direction: ltr; }
  .pt-card-closing .ptc-img { direction: ltr; }
}

/* Dark theme */
[data-theme="dark"] .pt-card {
  background: rgba(255, 255, 255, 0.025);
  border-color: rgba(255, 255, 255, 0.08);
}
[data-theme="dark"] .ptc-tags li {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-2);
}

/* ================ STOP PHOTO CAROUSEL ================ */
.ptc-photos {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.ptc-photos[hidden] { display: none; }
.ptc-photos-head {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ptc-photos-head::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--terra) 0%, transparent 100%);
  opacity: 0.3;
}
.ptc-photos-track {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding-bottom: 8px;
}
.ptc-photos-track::-webkit-scrollbar { height: 6px; }
.ptc-photos-track::-webkit-scrollbar-thumb {
  background: var(--terra);
  border-radius: 999px;
  opacity: 0.4;
}
.ptc-photo {
  flex: 0 0 auto;
  width: 200px;
  height: 200px;
  scroll-snap-align: start;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s var(--ease-out);
  overflow: hidden;
}
@media (min-width: 740px) {
  .ptc-photo { width: 240px; height: 240px; }
}
.ptc-photo:hover { transform: scale(1.02); }
.ptc-photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(20, 17, 13, 0.85));
  color: #fdfaf3;
  padding: 28px 12px 10px;
  font-family: var(--sans);
  font-size: 11.5px;
  line-height: 1.3;
}

/* Lightbox for photo carousel */
.blog-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 24px;
}
.blog-lightbox.show { display: flex; }
.blog-lightbox img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.blb-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  cursor: pointer;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pt-num {
  width: 36px; height: 36px;
  border: 1.5px solid var(--terra);
  border-radius: 50%;
  background: transparent;
  color: var(--terra);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 600;
  flex-shrink: 0;
}
.pt-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.01em;
}
.pt-isle {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-weight: 500;
  text-align: right;
}

/* ===========================================================
   TIMELINE (during/post-trip)
   =========================================================== */
.timeline {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(40px, 7vh, 80px) 20px;
}
.tl-head-wrap {
  text-align: center;
  margin-bottom: 56px;
}
.tl-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--terra);
  font-weight: 600;
  margin-bottom: 14px;
}
.tl-head {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.tl-loading, .tl-empty {
  text-align: center;
  color: var(--mute);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  padding: 60px 24px;
}
.tl-empty {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  max-width: 580px;
  margin: 0 auto;
  padding: 56px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tl-empty[hidden] { display: none !important; }
.tl-empty-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--terra);
  border-radius: 50%;
  color: var(--terra);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}
.tl-empty-text {
  line-height: 1.6;
  max-width: 440px;
}

.tl-day {
  margin-bottom: clamp(60px, 10vh, 100px);
  position: relative;
}
.tl-day-head {
  text-align: center;
  margin-bottom: 36px;
}
.tl-day-eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--mute);
  font-weight: 600;
  margin-bottom: 10px;
}
.tl-day-date {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--ink);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 6px;
}
.tl-day-meta {
  font-family: var(--sans);
  font-size: 11.5px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* Photos grid */
.tl-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) {
  .tl-photos { grid-template-columns: repeat(3, 1fr); }
}
/* Single photo: span full row width */
.tl-photos > .tl-photo:only-child {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 10;
}
/* Inside an entry, give photos a top margin to breathe */
.tl-entry > .tl-photos {
  margin-top: 24px;
  margin-bottom: 0;
}
.tl-photo {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}
.tl-photo-image-wrap {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--paper-2);
}
.tl-photo.tl-photo-wide .tl-photo-image-wrap { aspect-ratio: 16/10; }
.tl-photo.tl-photo-wide { grid-column: span 2; }
.tl-photo:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.tl-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}
.tl-photo:hover img { transform: scale(1.04); }
.tl-photo .tl-author {
  position: absolute;
  top: 10px; left: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 700;
  color: #fbf6ec;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.35);
  letter-spacing: 0.5px;
}
.tl-photo .tl-author.author-thorsten { background: var(--terra); }
.tl-photo .tl-author.author-patricia { background: var(--sage-deep); }

/* Caption is its OWN block UNDER the image, never overlay */
.tl-photo .tl-caption {
  padding: 14px 16px 16px;
  background: var(--cream, var(--surface));
  color: var(--ink);
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 15px;
  line-height: 1.55;
  border-top: 1px solid var(--line);
  flex: 1 0 auto;
}
.tl-photo .tl-caption:empty { display: none; padding: 0; border: 0; }
[data-theme="dark"] .tl-photo .tl-caption {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.10);
}

/* ============================================================
 * MEDIA CAROUSEL (images + videos · entries + photo-posts)
 * ============================================================ */
.tl-media {
  margin-top: 20px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.tlm-viewport { position: relative; }
.tlm-track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.tlm-track::-webkit-scrollbar { display: none; }
.tlm-slide {
  flex: 0 0 100%;
  scroll-snap-align: start;
  position: relative;
  background: var(--paper-2);
  /* Compact preview height (fixed — robust on iOS, no aspect-ratio quirk) */
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
/* Blurred backdrop fills the frame so the real photo can show FULLY (contain) */
.tlm-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(22px) brightness(0.55) saturate(1.1);
  transform: scale(1.18);
  z-index: 0;
}
.tlm-media {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;   /* whole photo, no crop — portrait + landscape both fit */
  display: block;
  cursor: zoom-in;
}
.tlm-video {
  object-fit: contain;
  background: #000;
  cursor: default;
}
/* Enlarge button (bottom-right on images) */
.tlm-enlarge {
  position: absolute;
  bottom: 10px; right: 10px;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 16, 12, 0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.tlm-enlarge:hover { background: rgba(20, 16, 12, 0.85); }
.tlm-enlarge:active { transform: scale(0.92); }
.tlm-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(20, 16, 12, 0.5);
  color: #fff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.15s;
  -webkit-tap-highlight-color: transparent;
}
.tlm-arrow:hover { background: rgba(20, 16, 12, 0.82); }
.tlm-arrow:active { transform: translateY(-50%) scale(0.92); }
.tlm-prev { left: 10px; padding-right: 3px; }
.tlm-next { right: 10px; padding-left: 3px; }
.tlm-counter {
  position: absolute;
  top: 10px; right: 10px;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(20, 16, 12, 0.62);
  color: #fff;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  z-index: 2;
  font-variant-numeric: tabular-nums;
}
.tlm-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  padding: 12px;
}
.tlm-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.tlm-dot.active { background: var(--terra); transform: scale(1.35); }
.tlm-caption {
  padding: 16px 18px 18px;
  font-family: var(--sans);
  font-style: normal;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.tlm-caption:empty { display: none; }
[data-theme="dark"] .tl-media { background: rgba(255,255,255,0.04); }
[data-theme="dark"] .tlm-caption { border-color: rgba(255,255,255,0.10); }

/* Photo-post (orphan photos with author header — social-style) */
.tl-photo-post {
  background: var(--surface);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 26px;
  border: 1px solid var(--line-soft);
}
.tlpp-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
}
.tlpp-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  color: #fbf6ec;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}
.tlpp-avatar.author-thorsten { background-color: var(--terra); }
.tlpp-avatar.author-patricia { background-color: var(--sage-deep); }
.tlpp-avatar.has-avatar { color: transparent; text-shadow: none; }
.tlpp-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 19px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.tlpp-dot { color: var(--mute); }
.tlpp-headtext {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.tlpp-sub {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.tlpp-meta {
  font-family: var(--sans);
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mute);
  font-weight: 600;
}
.tl-photo-post .tl-media {
  margin-top: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

/* Type badges — distinguish photo-post vs journal entry */
.tl-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.tl-type-photo {
  background: rgba(181, 107, 74, 0.12);
  color: var(--terra);
}
.tl-type-entry {
  background: rgba(122, 139, 120, 0.16);
  color: var(--sage-deep, #5f7259);
}
[data-theme="dark"] .tl-type-photo { background: rgba(181, 107, 74, 0.22); }
[data-theme="dark"] .tl-type-entry { background: rgba(122, 139, 120, 0.24); color: #9fb09a; }

/* Journal entries */
.tl-entry {
  background: var(--surface);
  border-radius: 14px;
  padding: 32px 28px;
  margin-bottom: 22px;
  position: relative;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--terra);
}
.tl-entry.author-patricia { border-left-color: var(--sage-deep); }
.tl-entry-head {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.tl-author-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 14px 4px 4px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--ink);
  background: var(--paper-2);
}
.tl-author-pill .tl-author-init {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 10px;
  color: #fbf6ec;
}
.tl-author-pill.author-thorsten .tl-author-init { background: var(--terra); }
.tl-author-pill.author-patricia .tl-author-init { background: var(--sage-deep); }
.tl-mood {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 1.5px;
}
.tl-entry-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  color: var(--terra);
  margin: 0 0 14px 0;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.tl-entry-content {
  font-family: var(--sans);
  font-style: normal;
  font-size: 16.5px;
  color: var(--ink);
  line-height: 1.72;
  letter-spacing: 0;
  white-space: pre-wrap;
}
/* Serif drop-cap for editorial flair — body stays readable sans */
.tl-entry-content::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.1em;
  font-weight: 600;
  line-height: 0.82;
  float: left;
  margin: 0.04em 0.1em 0 0;
  color: var(--terra);
  font-style: italic;
}

/* Hashtags — own line under entry text, Instagram-style */
.tl-hashtags {
  margin-top: 14px;
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--terra);
  font-weight: 500;
  word-spacing: 0.1em;
}
[data-theme="dark"] .tl-hashtags { color: #d89a7e; }

/* Activities */
.tl-act {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
  border-left: 3px solid var(--terra);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.tl-act.author-patricia { border-left-color: var(--sage-deep); }
.tl-act-hero { width: 100%; line-height: 0; }
.tl-act-hero-img {
  width: 100%; height: 220px;
  background-size: cover; background-position: center;
  background-color: var(--paper-2);
}
.tl-act-body { min-width: 0; padding: 18px 20px 20px; }
.tl-act-head {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
.tl-act-head .tl-act-eyebrow { margin-bottom: 0; }
.tl-act:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.tl-act-thumb {
  width: 100px; height: 100px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
  flex-shrink: 0;
}
.tl-act-body { min-width: 0; }
.tl-act-eyebrow {
  font-family: var(--sans);
  font-size: 9.5px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--terra);
  font-weight: 700;
  margin-bottom: 6px;
}
.tl-act-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 4px;
}
.tl-act-meta {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.tl-act-caption {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.5;
  margin-top: 8px;
}

/* ===========================================================
   WEATHER SNAPSHOT PILL
   =========================================================== */
.tl-wx {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: auto;
  padding: 4px 10px;
  background: var(--paper-2);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  color: var(--mute);
  letter-spacing: 0.02em;
}
.tl-wx-icon { font-size: 12px; line-height: 1; filter: saturate(0.85); }
.tl-wx-temp { color: var(--terra); font-weight: 700; font-variant-numeric: tabular-nums; }
.tl-wx-loc { color: var(--mute); }
.tl-act .tl-wx { margin-top: 8px; margin-left: 0; align-self: flex-start; }
.tl-act .tl-act-thumb { background-color: var(--paper-2); background-size: cover; background-position: center; }

/* ===========================================================
   FOOTER
   =========================================================== */
.ft {
  background: linear-gradient(180deg, transparent 0%, var(--paper-2) 100%);
  padding: clamp(60px, 10vh, 110px) 24px clamp(50px, 8vh, 90px);
  text-align: center;
  margin-top: clamp(40px, 6vh, 80px);
  border-top: 1px solid var(--line-soft);
}
.ft-ornament {
  width: 60px;
  height: 1px;
  background: var(--terra);
  margin: 0 auto 26px;
  position: relative;
  opacity: 0.5;
}
.ft-ornament::before {
  content: '';
  position: absolute;
  top: -3.5px; left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--terra);
}
.ft-sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  color: var(--terra);
  margin-bottom: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.ft-meta {
  font-family: var(--sans);
  font-size: 10.5px;
  color: var(--mute);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 8px;
  font-weight: 500;
}
.ft-byline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  color: var(--mute);
}

/* ===========================================================
   MAP MARKERS
   =========================================================== */
@keyframes markerIn {
  from { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  to   { transform: scale(1); opacity: 1; }
}
.pt-marker-bubble { transform-origin: center center; }

.leaflet-container { background: var(--paper-2); }
:root[data-theme="dark"] .leaflet-tile { filter: brightness(0.92) contrast(0.95); }
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: var(--surface) !important;
  color: var(--ink) !important;
}

/* ===========================================================
   SCROLL ANIMATIONS
   =========================================================== */
@keyframes revealUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal.in-view {
  animation: revealUp 0.7s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ===========================================================
   MOBILE
   =========================================================== */
@media (max-width: 540px) {
  .pt-stops li.pt-stop {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 18px 0;
  }
  .pt-stops li.pt-leg {
    grid-template-columns: 44px 1fr;
    gap: 14px;
    padding: 6px 0;
  }
  .pt-isle {
    grid-column: 2;
    text-align: left;
    margin-top: 4px;
  }
  .pt-name { font-size: 1.3rem; }
  .pt-leg-meta { font-size: 10.5px; gap: 8px; }
  .stat-tile { padding: 22px 12px; min-height: 110px; }
  .stat-num { font-size: 1.7rem; }
  .fact-card { padding: 18px; }
}

/* ============================================================
 * MULTI-PAGE NAV (sticky tabs · magazine-style)
 * ============================================================ */
.bp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface, var(--cream));
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.bp-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 6px 14px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.bp-nav-inner::-webkit-scrollbar { display: none; }
.bp-tab {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-2, var(--mute));
  padding: 14px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  transition: color 200ms ease, background 200ms ease;
  flex-shrink: 0;
}
.bp-tab:hover {
  color: var(--terra);
  background: rgba(181, 107, 74, 0.06);
}
.bp-tab.active {
  color: var(--terra);
}
.bp-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--terra);
  border-radius: 2px;
  animation: bpTabIn 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes bpTabIn {
  from { transform: scaleX(0); opacity: 0; }
  to   { transform: scaleX(1); opacity: 1; }
}

/* Page sections — only active is shown */
.bp-page {
  display: none;
  animation: bpPageIn 420ms cubic-bezier(0.22, 1, 0.36, 1);
}
.bp-page.active {
  display: block;
}
@keyframes bpPageIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Page-Head (common across all pages except start which has hero) */
.bp-page-head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 72px 24px 36px;
}
.bp-page-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 16px;
}
.bp-page-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--ink);
  margin: 0 0 18px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.bp-page-sub {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2, var(--mute));
  margin: 0;
}
.bp-page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 80px;
}
.bp-page-foot {
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  color: var(--mute);
  margin: 24px auto 0;
  max-width: 600px;
  padding: 0 20px;
}
.bp-page-foot a { color: var(--terra); text-decoration: none; }
.bp-page-foot a:hover { text-decoration: underline; }

@media (max-width: 720px) {
  .bp-tab { padding: 12px 12px; font-size: 11.5px; letter-spacing: 0.06em; }
  .bp-tab.active::after { left: 12px; right: 12px; }
  .bp-nav-inner { gap: 0; padding: 4px 10px; justify-content: flex-start; }
  .bp-page-head { padding: 44px 20px 28px; }
  .bp-page-content { padding: 0 16px 60px; max-width: 100%; box-sizing: border-box; }

  /* Reiseinfos-Seite: Facts-Grid + Stop-Cards skalieren sauber */
  .facts-section { margin: 0 auto clamp(40px, 7vh, 70px); }
  .facts-grid { grid-template-columns: 1fr; gap: 12px; }
  .fact-card { padding: 16px 18px; }
  .facts-head { margin-bottom: 22px; }
  .pt-route { margin: 0; }
  .pt-section-head { margin-bottom: 28px; }
  .pt-cards { gap: 0; margin-top: 24px; }
  .ptc-body { padding: 22px 18px 26px; }
  .ptc-img { height: 200px; }
  .ptc-name { font-size: 2rem; }
  .ptc-desc { font-size: 14px; }
  .pt-leg-card { padding: 18px 8px; }
  .ptl-text { font-size: 10.5px; white-space: normal; text-align: center; letter-spacing: 1.5px; }
}

/* ============================================================
 * START · Quick-Links (4-card grid)
 * ============================================================ */
.quick-links {
  max-width: 980px;
  margin: 56px auto 80px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.ql-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--surface, var(--cream));
  border: 1px solid var(--line);
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: var(--ink);
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 320ms ease, border-color 280ms ease, background 280ms ease;
  position: relative;
  overflow: hidden;
}
.ql-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(181, 107, 74, 0.10), transparent 70%);
  opacity: 0;
  transition: opacity 320ms ease;
  pointer-events: none;
}
.ql-card:hover {
  transform: translateY(-4px);
  border-color: var(--terra);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.10);
}
.ql-card:hover::before { opacity: 1; }
.ql-ic {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 28px;
  color: var(--terra);
  margin-bottom: 12px;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.ql-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
}
.ql-sub {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2, var(--mute));
  line-height: 1.4;
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) {
  .quick-links { grid-template-columns: 1fr 1fr; gap: 12px; margin: 36px 16px 60px; padding: 0; }
  .ql-card { padding: 22px 14px; }
  .ql-name { font-size: 19px; }
}

[data-theme="dark"] .bp-nav { background: rgba(20, 17, 13, 0.85); border-color: rgba(255, 255, 255, 0.10); }
[data-theme="dark"] .ql-card { background: rgba(255, 255, 255, 0.04); border-color: rgba(255, 255, 255, 0.12); }

/* Timeline inside its page-content — restore proper inner padding */
.bp-page[data-page="tagebuch"] .timeline-inner {
  padding: 0 20px;
}

/* Inside wetter-page: ensure map renders even after initial display:none */
.bp-page[data-page="wetter"] .pt-map {
  margin: 0 auto;
  max-width: 1100px;
}

/* About-us inside its page-content shouldn't have its own margin */
.bp-page[data-page="ueber-uns"] .about-us {
  margin: 0 auto;
}

/* ============================================================
 * AUTHOR-PILL AVATAR (replaces initial when profile-pic exists)
 * ============================================================ */
.tl-author.has-avatar {
  background-size: cover !important;
  background-position: center !important;
  color: transparent !important;
  text-shadow: none !important;
}
.tl-author-init.has-avatar {
  background-size: cover !important;
  background-position: center !important;
  color: transparent !important;
  text-shadow: none !important;
}

/* ============================================================
 * ÜBER UNS · End-of-Page Profile Section
 * ============================================================ */
.about-us {
  max-width: 980px;
  margin: 80px auto 60px;
  padding: 0 28px;
}
.au-head {
  text-align: center;
  margin-bottom: 48px;
}
.au-eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 12px;
}
.au-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--ink);
  margin: 0 0 16px;
  line-height: 1.1;
}
.au-intro {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 auto;
}
.au-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  margin: 0 0 56px;
}
.au-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.au-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  border: 3px solid var(--surface);
  position: relative;
  overflow: hidden;
}
.au-pic::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid var(--terra);
  pointer-events: none;
}
.au-pic-thorsten { background-color: var(--terra); }
.au-pic-thorsten::after { border-color: var(--terra); }
.au-pic-patricia { background-color: var(--sage-deep); }
.au-pic-patricia::after { border-color: var(--sage-deep); }
.au-pic.au-pic-loaded .au-init { display: none; }
.au-init {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 68px;
  color: white;
  font-weight: 500;
  user-select: none;
  line-height: 1;
}
.au-name {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.9rem;
  color: var(--ink);
  margin: 0 0 6px;
  letter-spacing: 0.01em;
}
.au-role {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--terra);
  margin-bottom: 16px;
}
.au-bio {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0;
  max-width: 380px;
}
.au-quote-wrap {
  border-top: 1px solid var(--line);
  padding-top: 40px;
  margin-top: 8px;
  text-align: center;
}
.au-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  padding: 0 24px;
}
.au-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-style: normal;
  font-size: 2.6rem;
  color: var(--terra);
  line-height: 1;
  vertical-align: -0.15em;
  margin-right: 0.05em;
  opacity: 0.7;
}
.au-quote-sig {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3, var(--ink-2));
  opacity: 0.7;
  margin-top: 18px;
}

@media (max-width: 720px) {
  .about-us { margin: 56px auto 40px; padding: 0 20px; }
  .au-head h2 { font-size: 2rem; }
  .au-intro { font-size: 14.5px; }
  .au-grid { grid-template-columns: 1fr; gap: 40px; margin-bottom: 40px; }
  .au-pic { width: 130px; height: 130px; }
  .au-init { font-size: 58px; }
  .au-name { font-size: 1.6rem; }
  .au-quote { font-size: 1.25rem; padding: 0 12px; }
  .au-quote-mark { font-size: 2rem; }

  /* Mobile-friendly journal-entry padding */
  .tl-entry { padding: 22px 18px; }
  .tl-entry-content { font-size: 16px; line-height: 1.68; }
  .tl-entry-title { font-size: 1.3rem; }
  .tl-day-head { margin-bottom: 24px; }
  /* Compact media on mobile (taller so portrait photos show well) */
  .tlm-slide { height: 320px; }
  .tlm-caption { font-size: 15px; padding: 14px 16px 16px; }
  .tlpp-name { font-size: 17px; }
}
