/* ==========================================================================
   GorillaSafari.de
   Design system: tokens, layout, components
   Benchmarked page-for-page on tazamaholidays.com — Montserrat type,
   wine/cream/gold palette, pill badges, compact dark tour-hero, sticky
   booking sidebar, table-style route overview, structured day-by-day meta.
   Photography kept as clearly-labelled placeholders (no stock/fake photos),
   everything else (structure, spacing, color, type) matched closely.
   ========================================================================== */

:root{
  --wine:        #30171A;
  --wine-deep:   #1F0D11;
  --wine-soft:   rgba(48,23,26,0.08);
  --wine-soft-2: rgba(48,23,26,0.14);

  --cream:       #FDF8F3;
  --cream-2:     #FDF9F5;
  --surface:     #FFFFFF;
  --line:        rgba(48,23,26,0.08);
  --sand:        #EDE1CE;

  --gold:        #F7B05E;
  --gold-deep:   #C8965A;
  --gold-link:   #9C5F1F;
  --gold-tint:   rgba(247,176,94,0.15);
  --gold-ink:    #1F0D11;

  --green:       #00A651;
  --blue:        #009CDE;
  --forest-deep: #16302A;

  --footer-bg:    #D9CCA8;
  --footer-text:  rgba(48,23,26,0.62);
  --footer-text-strong: var(--wine);

  --ink:         #333333;
  --ink-soft:    #5B5B5B;
  --ink-faint:   #8A8A8A;

  --sans: "Montserrat", -apple-system, "Segoe UI", Arial, sans-serif;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;

  --shadow-sm: 0 2px 10px rgba(48,23,26,0.05);
  --shadow-md: 0 4px 24px rgba(48,23,26,0.14);
  --shadow-lg: 0 32px 80px rgba(0,0,0,0.30);

  --container: 1200px;
}

*, *::before, *::after{ box-sizing: border-box; }
/* overflow-x: clip (not hidden) — blocks horizontal bleed without turning
   html/body into a scroll container, which would break position:sticky
   for every descendant (sidebars, search filters, etc.). */
html{ scroll-behavior: smooth; max-width: 100%; overflow-x: clip; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  max-width: 100%;
  overflow-x: clip;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ margin: 0; padding: 0; list-style: none; }

/* Inline content links (body copy, callouts, cards, tables) — visible on-brand
   color, distinct from surrounding text. Scoped to <p>/<li>/<td> inside content
   areas so it never touches .btn/.card-cta/.link-arrow/.tag-pills, which already
   carry their own explicit styling. */
.section p a, .article-body a, .lede a, .callout p a, .card-body p a,
.feature p a, .feature-compact p a, .compare-table a, .faq-item p a,
.tour-desc a{
  color: var(--gold-link); text-decoration: none; font-weight: 600;
}
.section p a:hover, .article-body a:hover, .lede a:hover, .callout p a:hover,
.card-body p a:hover, .feature p a:hover, .feature-compact p a:hover,
.compare-table a:hover, .faq-item p a:hover, .tour-desc a:hover{
  color: var(--wine); text-decoration: underline;
}
button{ font-family: inherit; background: none; border: none; cursor: pointer; }

h1,h2,h3,h4{
  font-family: var(--sans);
  font-weight: 800;
  color: var(--wine);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 0.5em;
}
h1,h2{
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
}
h1{ font-size: clamp(2.1rem, 4.2vw, 3.4rem); }
h2{ font-size: clamp(1.8rem, 3vw, 2.5rem); }
h3{ font-size: 1.6875rem; letter-spacing: -0.2px; }
h4{ font-size: 1.1rem; letter-spacing: -0.1px; }

p{ margin: 0 0 1rem; color: var(--ink-soft); max-width: 62ch; }
p.lede{ font-size: 1.25rem; color: var(--ink-soft); font-weight: 400; }

.container{ max-width: var(--container); margin: 0 auto; padding: 0 20px; }

/* ==========================================================================
   Sections
   ========================================================================== */
.section{ padding: 64px 0; }
.section-tight{ padding: 40px 0; }
.section-dark{ background: var(--wine); color: #fff; }
.section-dark h2, .section-dark h3{ color: #fff; }
.section-dark p{ color: rgba(255,255,255,0.75); }
.section-deep{ background: var(--wine-deep); color: #fff; }
.section-deep h2, .section-deep h3{ color: #fff; }
.section-deep p{ color: rgba(255,255,255,0.75); }
.section-forest{ background: var(--forest-deep); color: #fff; }
.section-forest h2, .section-forest h3{ color: #fff; }
.section-forest p{ color: rgba(255,255,255,0.75); }
.section-cream{ background: var(--cream); }
.section-sand{ background: var(--sand); }

.section-head{ max-width: 700px; margin: 0 0 32px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.section-head p{ max-width: 62ch; }
.section-head.center p{ margin-left: auto; margin-right: auto; }

.eyebrow{
  font-family: var(--sans); font-size: 0.6875rem; font-weight: 700; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 12px;
}

.text-center{ text-align: center; }
.mt-lg{ margin-top: 44px; }

/* ==========================================================================
   Buttons / pills / badges
   ========================================================================== */
.btn{
  font-family: var(--sans); font-weight: 800; font-size: 0.875rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius-pill); border: 1px solid transparent;
  cursor: pointer; transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{ background: var(--gold); color: var(--gold-ink); }
.btn-primary:hover{ background: var(--gold-deep); }
.btn-outline{ background: transparent; border-color: rgba(255,255,255,0.35); color: #fff; }
.btn-outline:hover{ background: rgba(255,255,255,0.12); }
.btn-outline-dark{ background: transparent; border-color: var(--wine); color: var(--wine); }
.btn-outline-dark:hover{ background: var(--wine); color: #fff; }
.btn-blue{ background: var(--blue); color: #fff; }
.btn-blue:hover{ background: #0089c2; }
.btn-block{ width: 100%; }
.btn-sm{ padding: 9px 18px; font-size: 0.8rem; }

.pill{
  display: inline-flex; align-items: center; gap: 6px; font-family: var(--sans);
  font-size: 0.8125rem; font-weight: 500; color: #fff; background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); padding: 6px 14px;
}
.pill i{ font-size: 12px; }

.badge{
  display: inline-flex; align-items: center; font-family: var(--sans); font-size: 0.65625rem;
  font-weight: 700; letter-spacing: 0.3px; text-transform: uppercase; color: #fff;
  background: var(--green); border-radius: 20px; padding: 3px 12px;
}
.badge-gold{ background: var(--gold); color: var(--gold-ink); }
.badge-wine{ background: var(--wine); color: #fff; }

/* ==========================================================================
   Top bar — phone, email, language switch, social icons
   ========================================================================== */
.topbar{ background: var(--wine-deep); color: rgba(255,255,255,0.75); font-family: var(--sans); font-size: 0.78rem; }
.topbar-row{ display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 9px 0; flex-wrap: wrap; }
.topbar-links{ display: flex; align-items: center; gap: 20px; flex-wrap: wrap; row-gap: 4px; }
.topbar-links a{ white-space: nowrap; transition: color 0.15s ease; }
.topbar-links a:hover{ color: var(--gold); }
.topbar-links i{ font-size: 12px; margin-right: 5px; }
@media (max-width: 700px){ .topbar-links.topbar-secondary{ gap: 14px; } .topbar-links:not(.topbar-secondary) a:nth-child(2){ display: none; } }
@media (max-width: 480px){ .topbar-row{ justify-content: center; } .topbar-links:not(.topbar-secondary){ display: none; } }

.social-row{ display: flex; gap: 8px; }
.social-row a{
  width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid currentColor; opacity: 0.85; font-size: 11px;
  transition: opacity 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.social-row a:hover{ opacity: 1; background: var(--gold); color: var(--wine-deep); border-color: var(--gold); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header{ position: sticky; top: 0; z-index: 60; background: var(--wine); }
.nav-row{ display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 16px 0; min-height: 78px; }

.logo{ display: flex; align-items: center; }
/* Logo artwork is dark-ink-on-transparent, made for light backgrounds — the header
   is dark wine, so the image sits on a small light card to stay legible there. */
.logo-img{ height: 58px; width: auto; display: block; background: #fff; padding: 9px 18px; border-radius: 10px; }
.logo-text{ font-family: var(--sans); font-size: 1.4rem; font-weight: 800; color: #fff; white-space: nowrap; letter-spacing: -0.3px; }
.footer-logo-img{ height: 68px; width: auto; display: block; margin-bottom: 16px; }
@media (max-width: 560px){
  .nav-row{ min-height: 66px; }
  .logo-img{ height: 42px; padding: 7px 13px; border-radius: 8px; }
}
.logo-text span{ color: var(--gold); }

.header-cta{ display: flex; align-items: center; gap: 14px; }
.nav-cta{ white-space: nowrap; }

.menu-toggle{
  display: flex; align-items: center; gap: 9px; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.22); border-radius: var(--radius-pill); padding: 10px 20px 10px 16px;
  font-family: var(--sans); font-weight: 700; font-size: 0.85rem; color: #fff;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.menu-toggle:hover{ border-color: var(--gold); background: rgba(247,176,94,0.1); }

.caret{ font-size: 0.65em; transition: transform 0.15s ease; }

/* Full-screen mega menu overlay */
.menu-overlay{
  position: fixed; inset: 0; z-index: 200; background: var(--surface);
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  overflow-y: auto; overflow-x: hidden; max-width: 100vw;
}
.menu-overlay.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.menu-overlay-inner{ max-width: 1400px; margin: 0 auto; padding: 96px 32px 60px; position: relative; }
.menu-close{
  position: absolute; top: 26px; right: 32px; display: flex; align-items: center; gap: 8px;
  border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 9px 18px 9px 14px;
  font-family: var(--sans); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--wine); cursor: pointer; transition: background 0.15s ease, color 0.15s ease;
}
.menu-close:hover{ background: var(--wine); border-color: var(--wine); color: #fff; }

.menu-columns{ display: grid; grid-template-columns: repeat(5, minmax(0,1fr)) 300px; gap: 30px; align-items: start; }
.menu-col h4{
  font-family: var(--sans); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--wine); margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--wine);
}
.menu-subgroup{ margin-bottom: 18px; }
.menu-subgroup:last-child{ margin-bottom: 0; }
.menu-subhead{ display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 700; color: var(--gold-deep); margin-bottom: 6px; }
.menu-list li{ border-bottom: 1px solid var(--line); }
.menu-list li:first-child a{ padding-top: 0; }
.menu-list a{
  display: block; padding: 8px 0; font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--ink);
  transition: color 0.15s ease;
}
.menu-list a:hover, .menu-list a:focus-visible{ color: var(--gold-deep); font-weight: 700; }
.menu-col > .btn{ margin-top: 18px; width: 100%; padding: 11px 16px; font-size: 0.78rem; }

.menu-feature{ position: sticky; top: 0; }
.menu-feature .scene{ aspect-ratio: 3/4; }
.menu-feature-cap{
  margin-top: 12px; font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  color: var(--wine); text-align: center;
}

@media (max-width: 1200px){
  .menu-columns{ grid-template-columns: repeat(3, minmax(0,1fr)); gap: 30px 24px; }
  .menu-feature{ display: none; }
}
@media (max-width: 900px){
  .menu-columns{ grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px 24px; }
  .menu-overlay-inner{ padding-top: 88px; }
}
@media (max-width: 620px){
  .menu-columns{ grid-template-columns: minmax(0,1fr); gap: 26px; }
  /* The header CTA text doesn't fit next to the logo + hamburger at this
     width; hide the whole button rather than leave an empty pill — the
     mega-menu overlay already carries an identical "Safari anfragen" CTA. */
  .header-cta .nav-cta{ display: none; }
  .menu-toggle span{ display: none; }
  .menu-close span{ display: none; }
}

/* Hidden until real /en/ pages exist — the EN button currently only toggles
   its own active state with no English content behind it. Remove this
   display:none (and the DE-only label change in main.js, if added) once
   English pages ship and hreflang is wired up. */
.lang-switch{ display: none; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.55); align-items: center; gap: 4px; }
.lang-switch button{ color: rgba(255,255,255,0.55); padding: 2px; cursor: pointer; }
.lang-switch button.is-active{ color: var(--gold); }

/* ==========================================================================
   Image placeholders — deliberately obvious, so real photography is easy
   to find and swap in later. Structure matches the reference's photo
   treatments (full-bleed slider, card thumbs); surface is placeholder-only.
   ========================================================================== */
.scene{
  position: relative; overflow: hidden; border-radius: var(--radius-md);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  aspect-ratio: 4 / 3; container-type: inline-size;
  background-image: repeating-linear-gradient(45deg, #F1E4D4, #F1E4D4 12px, #E9D6BE 12px, #E9D6BE 24px);
  border: 1.5px dashed rgba(48,23,26,0.18);
  text-align: center; padding: 18px; isolation: isolate;
}
.scene::before{
  content: "Image placeholder"; position: relative; z-index: 1;
  font-family: var(--sans); font-size: 0.625rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(255,255,255,0.8); padding: 4px 10px; border-radius: 100px;
}
.scene .scene-icon{ font-size: clamp(24px, 22cqw, 92px); color: rgba(48,23,26,0.35); opacity: 0.9; position: relative; z-index: 1; line-height: 1; }
.scene .scene-cap{ position: relative; z-index: 1; font-family: var(--sans); font-size: 0.75rem; color: rgba(48,23,26,0.55); padding: 0 6px; }
.scene--wide{ aspect-ratio: 16/9; }
/* Fills the height of a taller sibling (e.g. a text column) instead of
   sitting at a fixed aspect ratio — used where a 16:9 image next to a
   taller text block left an awkward gap above/below it. Needs the parent
   to use align-items:stretch (grid's default) rather than center. */
.scene--fill{ aspect-ratio: auto; width: 100%; height: 100%; min-height: 300px; }
.scene--tall{ aspect-ratio: 3/4; }
.scene--square{ aspect-ratio: 1/1; }
.scene--thumb{ aspect-ratio: 4/3; border-radius: var(--radius-sm); }
.on-dark-scene, .hero .scene, .section-dark .scene, .section-deep .scene{
  background-image: repeating-linear-gradient(45deg, #241014, #241014 12px, #1B0C0F 12px, #1B0C0F 24px);
  border-color: rgba(255,255,255,0.16);
}
.on-dark-scene::before, .hero .scene::before, .section-dark .scene::before, .section-deep .scene::before{ color: var(--gold); background: rgba(31,13,17,0.6); }
.on-dark-scene .scene-icon, .hero .scene .scene-icon, .section-dark .scene .scene-icon, .section-deep .scene .scene-icon{ color: rgba(255,255,255,0.5); }
.on-dark-scene .scene-cap, .hero .scene .scene-cap, .section-dark .scene .scene-cap, .section-deep .scene .scene-cap{ color: rgba(255,255,255,0.55); }

.scene.has-photo{ background-size: cover; background-position: center; background-repeat: no-repeat; border: none; }
.scene.has-photo::before{ content: none; }
.scene.has-photo .scene-icon, .scene.has-photo .scene-cap{ display: none; }

/* ==========================================================================
   Homepage hero — rotating full-bleed slider, search bar overlapping the base
   ========================================================================== */
.hero{
  position: relative; overflow: hidden; color: #fff;
  min-height: 620px; display: flex; align-items: center;
}
.hero-slide{
  position: absolute; inset: 0; z-index: 0;
  opacity: 0; visibility: hidden; transition: opacity 0.9s ease;
  background-image:
    radial-gradient(ellipse at 80% 10%, rgba(247,176,94,0.20), transparent 55%),
    radial-gradient(ellipse at 6% 92%, rgba(0,0,0,0.3), transparent 55%),
    repeating-linear-gradient(45deg, #241014, #241014 12px, #1B0C0F 12px, #1B0C0F 24px);
}
.hero-slide.is-active{ opacity: 1; visibility: visible; z-index: 1; }
.hero-slide.has-photo{ background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-slide.has-photo::before{ content: none; }
.hero-slide.has-photo .hero-slide-icon{ display: none; }
/* Slow breathing zoom while a slide is on screen — scale oscillates gently
   between 1 and 1.08 for the whole time it's active, then resets the moment
   a slide loses .is-active so the next rotation starts from scale(1) again. */
@keyframes heroZoom{ from{ transform: scale(1); } to{ transform: scale(1.08); } }
.hero-slide.is-active{ animation: heroZoom 9s ease-in-out infinite alternate; transform-origin: center center; will-change: transform; }
@media (prefers-reduced-motion: reduce){ .hero-slide.is-active{ animation: none; } }
.hero-slide-icon{
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-size: min(30vw, 320px); color: rgba(255,255,255,0.05); z-index: 0; pointer-events: none;
}
.hero-slide::before{
  content: "Background slider placeholder — rotating destination photography"; position: absolute; top: 18px; right: 26px; z-index: 2;
  font-family: var(--sans); font-size: 0.65rem; letter-spacing: 0.05em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); border: 1px dashed rgba(255,255,255,0.3); padding: 5px 10px; border-radius: 100px; max-width: 260px; text-align: right;
}
.hero::after{
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(0deg, rgba(20,10,12,0.88) 6%, rgba(20,10,12,0.45) 50%, rgba(20,10,12,0.15) 100%);
  pointer-events: none;
}
.hero-content{
  position: relative; z-index: 2; width: 100%; padding: 120px 0 0;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero-badge{
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 0.76rem; font-weight: 700;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold); background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25); border-radius: var(--radius-pill); padding: 9px 20px;
}
.hero-badge i{ color: var(--gold); }
.hero h1{ color: #fff; margin-top: 18px; max-width: 22ch; transition: opacity 0.4s ease; }
.hero p.lede{ color: rgba(255,255,255,0.82); max-width: 56ch; margin-left: auto; margin-right: auto; transition: opacity 0.4s ease; }
.hero-ctas{ display: flex; gap: 14px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }

.hero-slide-dots{ display: flex; align-items: center; justify-content: center; gap: 8px; position: relative; z-index: 2; margin-top: 34px; }
.hero-slide-dots button{ width: 8px; height: 8px; padding: 0; border-radius: 100px; background: rgba(255,255,255,0.35); border: none; cursor: pointer; transition: width 0.25s ease, background 0.25s ease; }
.hero-slide-dots button.is-active{ width: 26px; background: var(--gold); }

/* Search widget — one seamless white card: icon + label + input, then a
   solid CTA button fused to its right edge */
.hero-widget{
  background: var(--surface); border-radius: var(--radius-md);
  box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 16px 60px rgba(0,0,0,0.35);
  margin-top: 44px; width: 100%; max-width: 760px; overflow: hidden;
}
.hero-search{ display: flex; align-items: stretch; min-height: 76px; }
.hero-search-field{
  flex: 1; display: flex; align-items: center; gap: 14px; padding: 12px 22px; text-align: left; min-width: 0;
}
.hero-search-field .hf-icon{ color: var(--gold-deep); font-size: 20px; flex-shrink: 0; }
.hero-search-field .hf-body{ display: flex; flex-direction: column; gap: 3px; min-width: 0; flex: 1; }
.hero-search-field label{
  font-family: var(--sans); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-faint);
}
.hero-search-field input{
  border: none; padding: 0; font-family: var(--sans); font-size: 0.95rem; font-weight: 500; color: var(--ink); background: transparent; width: 100%;
}
.hero-search-field input:focus{ outline: none; }
.hero-search-btn{
  flex-shrink: 0; background: var(--gold-deep); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 0.9rem;
  padding: 0 34px; white-space: nowrap; transition: background 0.15s ease;
}
.hero-search-btn:hover{ background: var(--wine); }
@media (max-width: 560px){
  .hero-search{ flex-direction: column; }
  .hero-search-field{ padding: 16px 20px 6px; }
  .hero-search-btn{ padding: 14px; }
}

.hero-popular{ margin-top: 20px; display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; font-family: var(--sans); font-size: 0.82rem; color: rgba(255,255,255,0.6); position: relative; z-index: 2; }
.hero-popular span.label{ font-weight: 700; text-transform: uppercase; font-size: 0.72rem; letter-spacing: 0.04em; }
.hero-popular a{
  color: var(--wine); background: var(--cream); font-weight: 600; font-size: 0.82rem;
  padding: 8px 16px; border-radius: var(--radius-pill); transition: background 0.15s ease, color 0.15s ease;
}
.hero-popular a:hover{ background: var(--gold); color: var(--gold-ink); }

/* Stats strip below hero */
.stats-strip{ background: #111827; position: relative; z-index: 2; }
.stats-strip .container{ display: flex; justify-content: center; gap: 50px; flex-wrap: wrap; padding-top: 26px; padding-bottom: 26px; text-align: center; }
.stat-block{ display: flex; align-items: center; gap: 14px; }
.stat-block i{ font-size: 26px; color: var(--gold); flex-shrink: 0; }
.stat-block strong{ display: block; font-family: var(--sans); font-size: 1.4rem; font-weight: 800; color: #fff; text-align: left; }
.stat-block span{ font-family: var(--sans); font-size: 0.75rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.03em; }

/* Interior page hero (compact, dark, badge + title + pills + CTA) — also centred */
.page-hero{ min-height: 300px; align-items: center; padding-bottom: 30px; }
.page-hero .hero-content{ padding: 110px 0 0; }
.breadcrumb{ font-family: var(--sans); font-size: 0.8rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; position: relative; z-index: 2; }
.breadcrumb a:hover{ color: var(--gold); }
.page-hero-pills{ display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; justify-content: center; }
.page-hero-book{ margin-top: 22px; }
.quick-facts{ justify-content: center; }

/* Activity-page overview — copy + a proper stats card on the left,
   a tall featured photo on the right (stretched to match, same technique
   as .scene--fill elsewhere). */
.activity-overview{ display: grid; grid-template-columns: minmax(0,1.1fr) minmax(0,0.9fr); gap: 48px; align-items: stretch; }
@media (max-width: 860px){
  .activity-overview{ grid-template-columns: minmax(0,1fr); }
  .activity-overview .scene--fill{ aspect-ratio: 16/9; height: auto; }
}
.facts-bar{
  display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 1px;
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm); overflow: hidden; margin-top: 26px;
}
.fb{
  display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
  padding: 20px 18px; background: var(--surface);
}
.fb i{
  width: 36px; height: 36px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 14px; flex-shrink: 0;
}
.fb strong{ font-family: var(--sans); font-size: 0.92rem; color: var(--wine); font-weight: 800; line-height: 1.25; }
.fb span{ font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); }
@media (max-width: 560px){ .facts-bar{ grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ==========================================================================
   Awards / trust strip
   ========================================================================== */
.awards-strip{ background: var(--cream); padding: 36px 0 40px; }
.awards-header{ display: flex; align-items: center; gap: 18px; justify-content: center; margin-bottom: 24px; }
.awards-line{ flex: 1; max-width: 140px; height: 1px; background: var(--line); }
.awards-label{ font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--wine); display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.awards-label i{ color: var(--gold-deep); }
.awards-row{ display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.award-chip{ font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--ink-faint); border: 1px dashed var(--line); border-radius: 100px; padding: 8px 18px; }

.partner-logos{
  display: flex; justify-content: space-evenly; align-items: flex-start; flex-wrap: wrap;
  width: 100%; padding: 0 40px; gap: 20px;
}
.partner-logo{ display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; min-width: 140px; max-width: 200px; opacity: 0.82; transition: opacity 0.15s ease; }
.partner-logo:hover{ opacity: 1; }
.partner-logo-mark{
  width: 100%; max-width: 128px; height: 66px; border-radius: var(--radius-sm); background: #fff; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--wine); font-size: 22px; box-shadow: var(--shadow-sm); padding: 10px;
}
.partner-logo-mark img{ max-width: 100%; max-height: 100%; object-fit: contain; }
.partner-logo-name{ font-family: var(--sans); font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-faint); text-align: center; line-height: 1.3; }
@media (max-width: 720px){ .partner-logos{ padding: 0 20px; } }

/* ==========================================================================
   Grids, features, cards
   ========================================================================== */
.grid-2{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }
.grid-3{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 26px; }
.grid-4{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; }
.grid-5{ display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 20px; }
@media (max-width: 980px){ .grid-3, .grid-4{ grid-template-columns: repeat(2, minmax(0,1fr)); } .grid-5{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 680px){
  .grid-2, .grid-3, .grid-4, .grid-5{ grid-template-columns: minmax(0,1fr); }
  .grid-2 .scene--fill{ aspect-ratio: 16/9; height: auto; max-height: none; }
}

.tour-grid{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 24px; }
@media (max-width: 980px){ .tour-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 560px){ .tour-grid{ grid-template-columns: minmax(0,1fr); } }

/* Plain destination/activity/park card (.card/.card-img/.card-body) used across
   many destination and activity pages — base typography only, no card chrome
   opinions here since it's reused inside varied grids. */
.card-body h3{ font-size: 1.15rem; margin-bottom: 8px; line-height: 1.3; }
.card-body p{ font-size: 0.9rem; }

.feature{ display: flex; gap: 16px; align-items: flex-start; }
.feature-icon{
  flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-tint);
  color: var(--gold-deep); font-family: var(--sans); font-weight: 800; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.section-dark .feature-icon, .section-deep .feature-icon{ background: rgba(247,176,94,0.18); color: var(--gold); }
.feature h3{ font-size: 1.05rem; margin-bottom: 5px; }
.feature p{ font-size: 0.9rem; margin-bottom: 0; }
.section-dark .feature p, .section-deep .feature p{ color: rgba(255,255,255,0.72); }

/* Reason card — rounded-square icon badge on a dark section, used by the
   "Why Gorilla Trek With Us" homepage block. */
.reason-card{ padding: 26px 24px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-md); }
.reason-icon{
  width: 48px; height: 48px; border-radius: 12px; background: rgba(247,176,94,0.18); color: var(--gold);
  display: flex; align-items: center; justify-content: center; margin-bottom: 16px; font-size: 20px;
}
.reason-card h3{ color: #fff; font-size: 1.05rem; margin-bottom: 6px; }
.reason-card p{ color: rgba(255,255,255,0.72); font-size: 0.9rem; margin-bottom: 0; }

/* Lodge card — split image/text card for the "Where We Stay" homepage block. */
.lodge-card{
  display: grid; grid-template-columns: 200px minmax(0,1fr); gap: 0;
  background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.lodge-card .scene{ border-radius: 0; height: 100%; aspect-ratio: auto; }
.lodge-card-body{ padding: 24px 26px; min-width: 0; }
.lodge-card-body .badge{ margin-bottom: 10px; }
.lodge-card-body h3{ font-size: 1.1rem; margin-bottom: 8px; }
.lodge-card-body p{ font-size: 0.9rem; margin-bottom: 0; }
@media (max-width: 620px){ .lodge-card{ grid-template-columns: minmax(0,1fr); } .lodge-card .scene{ aspect-ratio: 16/9; } }

/* Tour card — benchmarked on the Go With Taj tour cards: photo with a
   place tag + duration pill, then title/description/features/price+CTA,
   no corner ribbons. */
.tour-card{
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.tour-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-5px); }
.tour-photo{ aspect-ratio: 4/3; position: relative; }
.tour-photo .scene{ border-radius: 0; aspect-ratio: auto; height: 100%; }
.tour-photo .place{
  position: absolute; left: 14px; bottom: 14px; z-index: 2; color: #fff;
  font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase;
  background: rgba(31,13,17,0.65); padding: 5px 11px; border-radius: 4px;
}
.tour-photo .duration-tag{
  position: absolute; top: 14px; right: 14px; z-index: 2; color: var(--wine);
  font-family: var(--sans); font-weight: 800; font-size: 0.72rem; letter-spacing: 0.02em;
  background: var(--surface); padding: 6px 13px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm);
}
.tour-body{ padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.tour-body h3{ font-size: 1.1rem; margin-bottom: 0; }
.tour-body h3 a{ color: inherit; }
.tour-body h3 a:hover{ color: var(--gold-deep); }
.tour-desc{ color: var(--ink-soft); font-size: 0.875rem; margin-top: 8px; margin-bottom: 0; }
.tour-features{ display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); }
.tour-features span{ display: flex; align-items: center; gap: 6px; font-family: var(--sans); font-size: 0.75rem; color: var(--ink-soft); font-weight: 600; }
.tour-features i{ font-size: 12px; color: var(--gold-deep); }
.tour-foot{ display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 16px; border-top: 1px solid var(--line); }
.tour-foot .price-wrap{ display: flex; flex-direction: column; }
.tour-foot .price{ font-family: var(--sans); color: var(--wine); font-size: 1.05rem; font-weight: 800; }
.tour-foot .price-note{ font-family: var(--sans); font-size: 0.66rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.03em; }
.tour-foot a{ font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--gold-deep); display: flex; align-items: center; gap: 5px; }
.tour-foot a i{ font-size: 11px; transition: transform 0.15s ease; }
.tour-card:hover .tour-foot a i{ transform: translateX(3px); }

/* ==========================================================================
   Destination explorer (numbered tabs + panel)
   ========================================================================== */
.dest-explorer{ border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 260px minmax(0,1fr); background: var(--wine-deep); }
.dest-tabs{ background: rgba(0,0,0,0.2); padding: 10px; display: flex; flex-direction: column; }
.dest-tab{ display: flex; align-items: center; gap: 14px; padding: 16px 14px; border-radius: var(--radius-sm); cursor: pointer; transition: background 0.15s ease; }
.dest-tab:hover, .dest-tab.is-active{ background: rgba(247,176,94,0.12); }
.dest-tab-num{ font-family: var(--sans); font-size: 0.7rem; font-weight: 800; color: var(--gold); }
.dest-tab-name{ font-family: var(--sans); font-size: 0.95rem; font-weight: 700; color: #fff; }
.dest-tab-count{ font-family: var(--sans); font-size: 0.72rem; color: rgba(255,255,255,0.5); display: block; margin-top: 2px; }
.dest-panel{ padding: 40px; display: none; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 36px; align-items: stretch; }
.dest-panel.is-active{ display: grid; }
.dest-panel-region{ font-family: var(--sans); font-size: 0.75rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 8px; display: block; }
.dest-panel h3{ color: #fff; margin-bottom: 8px; }
.dest-panel p{ color: rgba(255,255,255,0.7); }
.dest-panel-rating{ display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.dest-panel-rating .stars{ color: var(--gold); font-size: 0.78rem; letter-spacing: 2px; }
.dest-panel-rating span{ font-family: var(--sans); font-size: 0.8rem; color: rgba(255,255,255,0.6); }
.dest-panel-chips{ display: flex; gap: 10px; flex-wrap: wrap; margin: 18px 0 22px; }
.dest-chip{
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans);
  font-size: 0.8125rem; font-weight: 600; color: #fff; background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16); border-radius: var(--radius-pill); padding: 6px 14px 6px 6px;
}
.dest-chip-icon{
  width: 24px; height: 24px; border-radius: 50%; background: rgba(247,176,94,0.18);
  color: var(--gold); display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; flex-shrink: 0;
}
.dest-explorer-foot{ text-align: center; margin-top: 30px; }
@media (max-width: 900px){
  .dest-explorer{ grid-template-columns: minmax(0,1fr); }
  .dest-tabs{ flex-direction: row; overflow-x: auto; }
  .dest-panel{ grid-template-columns: minmax(0,1fr); padding: 26px; }
  .dest-panel .scene--fill{ aspect-ratio: 16/9; height: auto; max-height: none; }
}

/* ==========================================================================
   Tour listing filters
   ========================================================================== */
.filter-tabs{ display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 40px; }
.filter-tabs a{ font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); background: var(--cream); border: 1px solid var(--line); padding: 10px 18px; border-radius: var(--radius-pill); }
.filter-tabs a:hover{ border-color: var(--gold); color: var(--gold-deep); }
.filter-tabs a.is-active{ background: var(--wine); color: #fff; border-color: var(--wine); }
.rating-strip{ display: flex; align-items: center; gap: 12px; font-family: var(--sans); font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 10px; }
.rating-strip .stars{ color: var(--gold); letter-spacing: 2px; }
.pagination{ display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.pagination a, .pagination span{ width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; border-radius: 50%; font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: var(--ink-soft); }
.pagination a:hover{ background: var(--cream); }
.pagination .is-active{ background: var(--wine); color: #fff; }

/* ==========================================================================
   Tour detail: quick facts, route table, compact features
   ========================================================================== */
.quick-facts{ display: flex; gap: 34px; flex-wrap: wrap; padding-top: 18px; position: relative; z-index: 2; }
.quick-fact{ font-family: var(--sans); font-size: 0.85rem; color: rgba(255,255,255,0.8); display: flex; align-items: center; gap: 8px; }
.quick-fact i{ color: var(--gold); }
.quick-fact strong{ color: #fff; }

.tour-layout{ display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: 50px; align-items: start; }
@media (max-width: 980px){ .tour-layout{ grid-template-columns: minmax(0,1fr); } }

.route-table{ width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 0.8125rem; margin: 8px 0; }
.route-table td{ padding: 10px 16px; border-bottom: 1px solid var(--line); }
.route-table td:first-child{ font-weight: 700; color: var(--wine); width: 130px; }
.route-table tr:last-child td{ border-bottom: none; }
.route-table .route-endpoint td{ color: var(--gold-deep); font-weight: 800; }

.features-compact{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; }
@media (max-width: 760px){ .features-compact{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 500px){ .features-compact{ grid-template-columns: minmax(0,1fr); } }
.feature-compact{ background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 14px; display: flex; gap: 12px; align-items: flex-start; }
.feature-compact-icon{ width: 34px; height: 34px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 14px; }
.feature-compact h4{ font-family: var(--sans); font-size: 0.875rem; font-weight: 700; margin-bottom: 3px; }
.feature-compact p{ font-size: 0.8rem; margin-bottom: 0; color: var(--ink-faint); }

/* ==========================================================================
   Day-by-day itinerary — numbered timeline with structured meta lines
   ========================================================================== */
.itinerary-timeline{ display: grid; gap: 0; }
.itinerary-day{ display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 22px; position: relative; padding-bottom: 34px; }
.itinerary-day:last-child{ padding-bottom: 0; }
.itinerary-day::after{ content: ""; position: absolute; left: 23px; top: 48px; bottom: 0; width: 2px; background: var(--line); }
.itinerary-day:last-child::after{ display: none; }
.itinerary-day-num{
  width: 48px; height: 48px; border-radius: 50%; background: var(--wine); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; z-index: 1; font-family: var(--sans); font-weight: 800; font-size: 1.05rem;
}
.itinerary-day-body{ padding-top: 4px; }
.itinerary-day-body h3{ font-size: 1.15rem; margin-bottom: 10px; }
.itinerary-day-body p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
/* Justify long-form body copy site-wide, scoped to the actual prose wrapper
   in each template so short card/UI text is never touched:
   - .tour-layout > div:first-child > p — reiserouten intros, legal pages,
     FAQ page body (direct children only, so nested short bits like
     .callout p / figcaption / .faq-item p / .feature-compact p are excluded)
   - .article-body > p — blog post paragraphs (excludes .callout, .pull-quote,
     figcaption, .faq-item, all nested deeper than a direct child)
   - .dest-intro-col > p / .dest-info-row > p — sub-destination prose, now in
     the two-column intro/info layout (see further down for those rules) */
.tour-layout > div:first-child > p,
.article-body > p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
/* Restore centering for the short single-line CTA paragraphs that sit inside
   an inline text-align:center box (closing "Bereit für ...?" prompts etc.) —
   justify's single-line fallback is left-aligned, not centered, so without
   this override those short prompts would visibly shift off-center. */
[style*="text-align:center"] > p{ text-align: center !important; }
.day-meta{ display: flex; flex-direction: column; gap: 5px; margin-top: 14px; font-family: var(--sans); font-size: 0.8125rem; }
.day-meta div{ display: flex; gap: 6px; }
.day-meta .label{ font-weight: 800; color: var(--wine); letter-spacing: 0.02em; flex-shrink: 0; }
.day-meta .value{ color: var(--ink-soft); }

/* ==========================================================================
   Includes / excludes
   ========================================================================== */
.includes-grid{ display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 40px; }
@media (max-width: 680px){ .includes-grid{ grid-template-columns: minmax(0,1fr); } }
.includes-list li, .excludes-list li{ display: flex; gap: 10px; align-items: flex-start; font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 12px; }
.includes-list .icon, .excludes-list .icon{
  flex-shrink: 0; margin-top: 1px; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px;
}
.includes-list .icon{ color: #fff; background: var(--green); }
.excludes-list .icon{ color: var(--ink-faint); background: var(--line); }

.ib-check{
  flex-shrink: 0; margin-top: 0; width: 20px; height: 20px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center; font-size: 10px;
  background: var(--gold-tint); color: var(--gold-deep);
}
.ib-check--dark{ background: rgba(247,176,94,0.18); color: var(--gold); }

/* ==========================================================================
   Sticky booking sidebar
   ========================================================================== */
.sidebar-stack{ display: flex; flex-direction: column; gap: 22px; position: sticky; top: 100px; }
.book-card{ background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-md); overflow: hidden; }
.book-card-head{ background: var(--wine); padding: 20px 22px; }
.book-card-head .from{ font-family: var(--sans); font-size: 0.7rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 4px; }
.book-card-head .price{ font-family: var(--sans); font-size: 1.7rem; font-weight: 800; color: #fff; }
.book-card-head .pp{ font-family: var(--sans); font-size: 0.75rem; color: rgba(255,255,255,0.6); }
.book-card-body{ padding: 22px; display: flex; flex-direction: column; gap: 12px; }
.book-facts{ display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.book-fact{ display: flex; justify-content: space-between; font-family: var(--sans); font-size: 0.8125rem; padding-bottom: 10px; border-bottom: 1px dotted var(--line); }
.book-fact span:first-child{ color: var(--ink-faint); }
.book-fact span:last-child{ color: var(--wine); font-weight: 700; }

.sidebar-card{ background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); padding: 20px; }
.sidebar-card h4{ font-family: var(--sans); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-deep); margin-bottom: 14px; }
.sidebar-tour{ display: flex; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px dotted var(--line); }
.sidebar-tour:last-child{ border-bottom: none; padding-bottom: 0; }
.sidebar-tour:first-child{ padding-top: 0; }
.sidebar-tour .scene{ width: 64px; height: 52px; flex-shrink: 0; aspect-ratio: auto; padding: 4px; }
.sidebar-tour .scene-icon{ font-size: 16px; }
.sidebar-tour .scene::before, .sidebar-tour .scene-cap{ display: none; }
.sidebar-tour-name{ font-family: var(--sans); font-size: 0.8125rem; font-weight: 700; color: var(--wine); line-height: 1.35; }

/* ==========================================================================
   Blog
   ========================================================================== */
.blog-card{
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s ease, transform 0.2s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-5px); }
.blog-card .scene{ border-radius: 0; aspect-ratio: 4/3; }
.blog-card-body{ padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body .badge{ margin-bottom: 12px; align-self: flex-start; }
.blog-card-body h3{ font-size: 1.08rem; margin-bottom: 8px; line-height: 1.35; }
.blog-card-body p{ font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 18px; flex: 1; }
.blog-card-foot{ margin-top: auto; }
.link-arrow{ display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 0.82rem; font-weight: 700; color: var(--wine); }
.link-arrow i{ font-size: 12px; transition: transform 0.15s ease; }
.blog-card:hover .link-arrow i{ transform: translateX(3px); }

.post-meta-row{ display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 20px; position: relative; z-index: 2; }
.article-meta{ display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-family: var(--sans); font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.article-meta .dot{ width: 3px; height: 3px; border-radius: 50%; background: rgba(255,255,255,0.4); }
.share-row{ display: flex; align-items: center; gap: 10px; }
.share-row span{ font-family: var(--sans); font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-right: 4px; }
.share-row button{
  width: 32px; height: 32px; border-radius: 50%; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: #fff; display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; transition: background 0.15s ease;
}
.share-row button:hover{ background: var(--gold); color: var(--gold-ink); }

.article-body p{ max-width: none; font-size: 1rem; }
.article-body h2{ font-size: 1.5rem; margin-top: 42px; margin-bottom: 14px; }
.article-body h2:first-of-type{ margin-top: 0; }

.callout{ background: var(--cream); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 22px 26px; margin: 26px 0; }
.callout--gold{ background: var(--gold-tint); }
.callout-label{ display: block; font-family: var(--sans); font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold-deep); margin-bottom: 8px; }
.callout p{ margin-bottom: 14px; }
.callout p:last-child{ margin-bottom: 0; }
.callout .btn{ margin-top: 6px; }

.compare-table-wrap{ overflow-x: auto; margin: 26px 0; }
.compare-table{ width: 100%; border-collapse: collapse; font-family: var(--sans); font-size: 0.85rem; }
.compare-table caption{ text-align: left; font-weight: 700; color: var(--wine); margin-bottom: 10px; font-size: 0.9rem; }
.compare-table th, .compare-table td{ padding: 12px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.compare-table thead th{ background: var(--wine); color: #fff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; }
.compare-table tbody th{ color: var(--wine); font-weight: 700; background: var(--cream); }

.pull-quote{ border-left: 3px solid var(--gold); padding-left: 20px; margin: 26px 0; }
.pull-quote p{ margin: 0; font-size: 1.15rem; font-weight: 600; color: var(--wine); }

.article-figure{ margin: 26px 0; }
.article-figure figcaption{ font-family: var(--sans); font-size: 0.8rem; color: var(--ink-faint); margin-top: 10px; }

.tag-pills{ display: flex; gap: 10px; flex-wrap: wrap; }
.tag-pills a{
  font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--wine); background: var(--cream);
  border-radius: var(--radius-pill); padding: 7px 16px;
}
.tag-pills a:hover{ background: var(--gold-tint); }

/* Static (non-link) pill badge — a lighter-weight sibling to .tag-pills for
   plain keyword/theme chips, e.g. the "Unsere Philosophie" section's country/theme row. */
.pill-tag{
  display: inline-block; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--wine);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-pill); padding: 6px 16px;
}
/* Dark-background variant, for the same chips sitting on a .section-deep band. */
.pill-tag--dark{
  color: #fff; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.2);
}

.toc-list{ display: flex; flex-direction: column; gap: 10px; }
.toc-list a{ font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); }
.toc-list a:hover{ color: var(--wine); }
.sidebar-tour-dur{ font-family: var(--sans); font-size: 0.72rem; color: var(--ink-faint); display: block; margin-top: 3px; }

/* ==========================================================================
   Specialist CTA — talk to a real person, with a photo, wherever we ask
   the reader to get in touch
   ========================================================================== */
.specialist-card{
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 22px; text-align: center;
}
.specialist-card .specialist-photo{
  width: 78px; height: 78px; border-radius: 50%; margin: 0 auto 14px; overflow: hidden;
  border: 3px solid var(--surface); box-shadow: var(--shadow-sm);
}
.specialist-card .specialist-photo img{ width: 100%; height: 100%; object-fit: cover; }
.specialist-card .specialist-name{ font-family: var(--sans); font-weight: 800; color: var(--wine); font-size: 0.95rem; }
.specialist-card .specialist-role{ font-family: var(--sans); font-size: 0.76rem; color: var(--ink-faint); display: block; margin-top: 2px; margin-bottom: 14px; }
.specialist-card .btn{ width: 100%; }

.specialist-inline{ display: flex; align-items: center; gap: 16px; }
.specialist-inline .specialist-photo{
  width: 62px; height: 62px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  border: 3px solid var(--surface); box-shadow: var(--shadow-sm);
}
.specialist-inline .specialist-photo img{ width: 100%; height: 100%; object-fit: cover; }
.specialist-inline .specialist-name{ font-family: var(--sans); font-weight: 800; color: var(--wine); font-size: 0.92rem; }
.specialist-inline .specialist-role{ font-family: var(--sans); font-size: 0.78rem; color: var(--ink-faint); display: block; margin-top: 2px; }
.section-dark .specialist-inline .specialist-name, .section-deep .specialist-inline .specialist-name{ color: #fff; }
.section-dark .specialist-inline .specialist-role, .section-deep .specialist-inline .specialist-role{ color: rgba(255,255,255,0.6); }

/* ==========================================================================
   Testimonials / reviews
   ========================================================================== */
.review-summary{ display: flex; align-items: center; gap: 22px; flex-wrap: wrap; margin-bottom: 34px; }
.review-summary .rating-num{ font-family: var(--sans); font-size: 2.2rem; font-weight: 800; color: var(--wine); }
.review-summary .stars{ color: var(--gold); letter-spacing: 2px; }
.review-stars{ color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review-summary .rs-label{ font-family: var(--sans); font-size: 0.85rem; color: var(--ink-faint); }

.testimonial{ background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); padding: 26px 24px; box-shadow: var(--shadow-sm); }
.testimonial .stars{ color: var(--gold); letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 12px; display: block; }
.testimonial p{ font-size: 0.95rem; color: var(--ink); margin-bottom: 16px; max-width: none; }
.testimonial-author{ font-family: var(--sans); font-size: 0.8rem; font-weight: 700; color: var(--wine); display: flex; align-items: center; gap: 10px; }
.testimonial-avatar{ width: 34px; height: 34px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.8rem; flex-shrink: 0; }
.testimonial-head{ display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.verified-tag{ display: inline-flex; align-items: center; gap: 5px; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; color: var(--green); }
.testimonial-foot{ display: flex; align-items: center; justify-content: space-between; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.testimonial-full{ font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--wine); }
.review-card.is-hidden{ display: none; }

/* Generic row of two action buttons under a grid/section (e.g. "view more" +
   a primary CTA, shown together). */
.section-cta-row{ display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-top: 32px; }
.review-summary-badge{
  width: 52px; height: 52px; border-radius: 50%; background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0;
}
/* ==========================================================================
   Video / YouTube
   ========================================================================== */
.video-frame{ position: relative; aspect-ratio: 16/9; border-radius: var(--radius-md); overflow: hidden; background: var(--wine-deep); box-shadow: var(--shadow-sm); }
.video-frame iframe{ position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

.video-thumb{ position: relative; display: block; }
.video-thumb .play-btn{
  position: absolute; left: 22px; bottom: 22px; z-index: 2;
  display: flex; align-items: center; gap: 10px; padding: 13px 22px;
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.96); color: var(--wine);
  font-family: var(--sans); font-weight: 800; font-size: 0.8rem; letter-spacing: 0.06em; text-transform: uppercase;
  box-shadow: var(--shadow-lg); transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.video-thumb .play-btn i{ font-size: 12px; }
.video-thumb:hover .play-btn{ transform: translateY(-2px); background: var(--gold); color: var(--gold-ink); }
.video-embed{ cursor: pointer; }

.video-info-badge{
  position: absolute; top: 20px; right: 20px; z-index: 2;
  background: rgba(255,255,255,0.95); border-radius: var(--radius-sm); padding: 12px 18px;
  box-shadow: var(--shadow-md); text-align: left;
}
.video-info-badge span{ display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--wine); line-height: 1.5; }
.video-info-badge span:first-child{ color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.04em; font-size: 0.68rem; }

/* Trip facts — label/value rows for the "Most Popular Safari" homepage
   feature (destinations, duration, starting price). */
.trip-facts{ display: flex; flex-direction: column; gap: 14px; margin: 24px 0 26px; max-width: 480px; }
.trip-fact{ display: grid; grid-template-columns: 110px minmax(0,1fr); gap: 16px; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.trip-fact:last-child{ border-bottom: none; padding-bottom: 0; }
.trip-fact dt{ font-family: var(--sans); font-weight: 700; font-size: 0.85rem; color: var(--wine); }
.trip-fact dd{ margin: 0; font-size: 0.9rem; color: var(--ink-soft); }
@media (max-width: 560px){
  .trip-fact{ grid-template-columns: minmax(0,1fr); gap: 4px; }
}

/* Itinerary gallery — mosaic of scene placeholders shown between the tour
   hero and the trip overview. grid-auto-rows (rather than a row count
   baked into grid-template-rows) lets the mosaic take any number of
   images — a 5-image gallery gets one row of small cells after the big
   one, a 9-image gallery just grows two more rows, automatically. */
.itin-gallery{
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 170px;
  gap: 8px; border-radius: var(--radius-md); overflow: hidden;
}
.itin-gallery .scene{ border-radius: 0; height: 100%; aspect-ratio: auto; }
.itin-gallery .scene:first-child{ grid-column: span 2; grid-row: span 2; }
.itin-gallery .scene.has-photo{ cursor: pointer; }
@media (max-width: 720px){
  .itin-gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 140px; }
  .itin-gallery .scene:first-child{ grid-column: span 2; grid-row: span 1; }
}

/* Trip gallery (Gästebuch) — plain uniform grid (3 rows x 4 columns on
   desktop), square corners, tight gaps. Deliberately simpler than the
   .itin-gallery mosaic above. Shares the same lightbox (js/main.js treats
   any .scene.has-photo inside .itin-gallery OR .trip-gallery the same way);
   the video tile opts out via .trip-gallery-video so it just opens YouTube. */
.trip-gallery{
  display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); grid-auto-rows: 190px; gap: 6px;
}
.trip-gallery .scene{ border-radius: 0; height: 100%; aspect-ratio: auto; }
.trip-gallery .scene.has-photo{ cursor: pointer; }
.trip-gallery .scene.is-hidden{ display: none; }
.trip-gallery-video{ cursor: pointer; }
.trip-gallery-video .play-btn{ left: 14px; bottom: 14px; padding: 10px 16px; font-size: 0.72rem; }
@media (max-width: 900px){
  .trip-gallery{ grid-template-columns: repeat(3, minmax(0,1fr)); grid-auto-rows: 160px; }
}
@media (max-width: 620px){
  .trip-gallery{ grid-template-columns: repeat(2, minmax(0,1fr)); grid-auto-rows: 145px; }
}

/* Lightbox — opens a full itinerary-gallery photo full-size with prev/next,
   injected once per page by js/main.js. */
.lightbox-overlay{
  position: fixed; inset: 0; z-index: 500; background: rgba(15,7,9,0.94);
  display: flex; align-items: center; justify-content: center; padding: 70px 20px;
  opacity: 0; visibility: hidden; transition: opacity 0.25s ease;
}
.lightbox-overlay.open{ opacity: 1; visibility: visible; }
.lightbox-figure{ position: relative; max-width: min(1100px, 90vw); text-align: center; }
.lightbox-img{ max-width: 100%; max-height: 76vh; border-radius: var(--radius-sm); box-shadow: 0 20px 60px rgba(0,0,0,0.5); object-fit: contain; display: block; margin: 0 auto; }
.lightbox-caption{ color: rgba(255,255,255,0.8); font-family: var(--sans); font-size: 0.85rem; margin-top: 16px; }
.lightbox-counter{ color: rgba(255,255,255,0.45); font-family: var(--sans); font-size: 0.72rem; margin-top: 6px; letter-spacing: 0.04em; }
.lightbox-close{
  position: absolute; top: -48px; right: 0; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 16px; cursor: pointer; transition: background 0.15s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,0.2); }
.lightbox-nav{
  position: fixed; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 18px; cursor: pointer; transition: background 0.15s ease;
}
.lightbox-nav:hover{ background: rgba(255,255,255,0.2); }
.lightbox-prev{ left: 24px; }
.lightbox-next{ right: 24px; }
@media (max-width: 640px){
  .lightbox-nav{ width: 38px; height: 38px; font-size: 15px; }
  .lightbox-prev{ left: 8px; }
  .lightbox-next{ right: 8px; }
  .lightbox-close{ top: -42px; }
}

/* ==========================================================================
   Newsletter / CTA band
   ========================================================================== */
.newsletter-box{ background: var(--wine); border-radius: var(--radius-lg); padding: 46px 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter-band{ background: var(--wine-deep); padding: 56px 0; }
.newsletter-band h3{ color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.newsletter-band p{ color: rgba(255,255,255,0.7); max-width: 60ch; margin-bottom: 26px; }
.newsletter-form{ display: flex; gap: 12px; width: 100%; flex-wrap: wrap; }
.newsletter-form input{
  flex: 1; min-width: 200px; padding: 15px 18px; border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-sm); background: rgba(255,255,255,0.08); font-family: var(--sans);
  font-size: 0.9rem; color: #fff;
}
.newsletter-form input::placeholder{ color: rgba(255,255,255,0.5); }
.newsletter-form input:focus{ outline: 2px solid var(--gold); outline-offset: -2px; background: rgba(255,255,255,0.12); }
.newsletter-form button{ flex-shrink: 0; }
@media (max-width: 720px){ .newsletter-form{ flex-direction: column; } .newsletter-form input, .newsletter-form button{ width: 100%; } }

/* Specialist CTA band — phone/enquiry block on one side, the full team's
   circular photos on the other. Structure benchmarked on a Tazama-style
   "speak to a specialist" band, rendered in the house wine/gold/cream
   palette rather than importing its sage/blue colors. */
.specialist-cta-card{
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  padding: 40px 44px; display: flex; align-items: center; justify-content: space-between; gap: 50px; flex-wrap: wrap;
}
.specialist-cta-copy{ max-width: 480px; }
.specialist-cta-copy h2{ font-size: 1.9rem; margin-bottom: 12px; }
.specialist-cta-phone{ display: flex; align-items: center; gap: 14px; margin: 22px 0; }
.specialist-cta-phone i{ font-size: 20px; color: var(--gold-deep); }
.specialist-cta-phone-label{ display: block; font-family: var(--sans); font-size: 0.78rem; color: var(--ink-faint); }
.specialist-cta-phone-num{ display: block; font-family: var(--sans); font-size: 1.15rem; font-weight: 800; color: var(--wine); }
.specialist-cta-team{ display: flex; gap: 26px; flex-wrap: wrap; }
.specialist-cta-person{ text-align: center; width: 128px; }
.specialist-cta-photo{
  width: 112px; height: 112px; border-radius: 50%; overflow: hidden; margin: 0 auto 12px;
  box-shadow: var(--shadow-md); border: 3px solid #fff;
}
.specialist-cta-photo img{ width: 100%; height: 100%; object-fit: cover; }
.specialist-cta-photo.is-placeholder{
  display: flex; align-items: center; justify-content: center; background: var(--gold-tint);
  color: var(--gold-deep); font-family: var(--sans); font-weight: 800; font-size: 1.7rem;
}
.specialist-cta-person-name{ display: block; font-family: var(--sans); font-weight: 700; font-size: 0.92rem; color: var(--wine); }
.specialist-cta-person-role{ display: block; font-family: var(--sans); font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.03em; color: var(--ink-faint); margin-top: 3px; }
@media (max-width: 720px){
  .specialist-cta-card{ flex-direction: column; align-items: center; text-align: center; padding: 30px 26px; }
  .specialist-cta-phone{ justify-content: center; }
  .specialist-cta-team{ justify-content: center; width: 100%; }
}

/* Sidebar variant — the same card dropped into the narrow 340px .sidebar-stack
   column (itinerary/blog/legal pages), a container far narrower than this
   component was designed for. Applies the same centered/stacked treatment as
   the mobile breakpoint above, but keyed off the ancestor container rather
   than viewport width, plus smaller avatars so all three still sit in one row. */
.sidebar-stack .specialist-cta-card{ flex-direction: column; align-items: center; text-align: center; padding: 28px 24px; gap: 22px; }
.sidebar-stack .specialist-cta-copy{ max-width: none; }
.sidebar-stack .specialist-cta-copy h2{ font-size: 1.2rem; }
.sidebar-stack .specialist-cta-phone{ justify-content: center; }
.sidebar-stack .specialist-cta-team{ justify-content: center; gap: 14px; }
.sidebar-stack .specialist-cta-person{ width: 68px; }
.sidebar-stack .specialist-cta-photo{ width: 68px; height: 68px; }
.sidebar-stack .specialist-cta-person-name{ font-size: 0.72rem; }
.sidebar-stack .specialist-cta-person-role{ font-size: 0.58rem; }

/* ==========================================================================
   Social / Instagram strip
   ========================================================================== */
.social-strip{ display: grid; grid-template-columns: repeat(6, minmax(0,1fr)); gap: 14px; }
.social-strip .scene{ border-radius: var(--radius-sm); aspect-ratio: 1/1; }
@media (max-width: 760px){ .social-strip{ grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer{ background: var(--footer-bg); color: var(--footer-text); padding-top: 70px; }
.footer-grid{ display: grid; grid-template-columns: 1.4fr minmax(0,1fr) minmax(0,1fr) minmax(0,1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(48,23,26,0.12); }
@media (max-width: 900px){ .footer-grid{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
@media (max-width: 560px){ .footer-grid{ grid-template-columns: minmax(0,1fr); } }
.footer-logo{ font-family: var(--sans); font-size: 1.4rem; font-weight: 800; color: var(--wine); margin-bottom: 14px; }
.footer-desc{ font-size: 0.875rem; color: var(--footer-text); max-width: 34ch; }
.footer-socials{ display: flex; gap: 10px; margin-top: 16px; }
.footer-socials a{
  width: 34px; height: 34px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(48,23,26,0.18); font-family: var(--sans); font-size: 0.72rem; font-weight: 700; color: var(--wine);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.footer-socials a:hover{ background: var(--gold); border-color: var(--gold); color: var(--gold-ink); }
.site-footer h4{ font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--footer-text-strong); margin-bottom: 16px; }
.site-footer ul li{ margin-bottom: 10px; }
.site-footer ul a{ font-family: var(--sans); font-size: 0.875rem; color: var(--footer-text); }
.site-footer ul a:hover{ color: var(--gold-deep); }
.footer-bottom{ padding: 22px 0 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-family: var(--sans); font-size: 0.78rem; color: var(--footer-text); }
.trust-badges{ display: flex; gap: 14px; flex-wrap: wrap; }
.trust-badges span{ border: 1px solid rgba(48,23,26,0.15); border-radius: var(--radius-pill); padding: 5px 14px; font-size: 0.72rem; }

/* ==========================================================================
   Sticky corner actions: chat widget + scroll to top
   ========================================================================== */
.sticky-actions{ position: fixed; right: 20px; bottom: 20px; z-index: 70; display: flex; flex-direction: column; align-items: flex-end; gap: 12px; }
.scrolltop-btn{
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); border: none; cursor: pointer; font-size: 22px;
  background: var(--wine); color: #fff;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s, background 0.15s ease;
}
.scrolltop-btn:hover{ background: var(--gold); color: var(--gold-ink); }
.scrolltop-btn.show{ opacity: 1; visibility: visible; transform: translateY(0); }

/* Chat widget: gold "Speak to an Expert" pill that opens a small popup
   offering to open WhatsApp or place a call — replaces the old bare
   WhatsApp button so the entry point isn't tied to one channel's branding. */
.chat-widget{ position: relative; }
.chat-toggle-btn{
  display: flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--gold-ink); border: none;
  border-radius: var(--radius-pill); padding: 6px 20px 6px 6px;
  box-shadow: var(--shadow-md); cursor: pointer;
  font-family: var(--sans); font-weight: 700; font-size: 0.82rem; white-space: nowrap;
  transition: background 0.15s ease;
}
.chat-toggle-btn:hover{ background: var(--gold-deep); }
.chat-toggle-icon{
  width: 40px; height: 40px; border-radius: 50%; flex-shrink: 0;
  background: rgba(31,13,17,0.12); display: flex; align-items: center; justify-content: center; font-size: 19px;
}

.chat-popup{
  position: absolute; right: 0; bottom: calc(100% + 14px); width: 300px; max-width: calc(100vw - 40px);
  background: var(--surface); border-radius: var(--radius-lg); box-shadow: 0 20px 50px rgba(31,13,17,0.28);
  overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.chat-popup.open{ opacity: 1; visibility: visible; transform: translateY(0); }
.chat-popup-head{ position: relative; background: linear-gradient(135deg, var(--gold-deep), var(--gold)); color: var(--gold-ink); padding: 22px 40px 18px 20px; }
.chat-popup-badge{ width: 46px; height: 46px; border-radius: 50%; object-fit: cover; display: block; margin-bottom: 12px; border: 2px solid rgba(255,255,255,0.7); box-shadow: 0 2px 8px rgba(31,13,17,0.2); }
.chat-popup-head h4{ font-family: var(--sans); font-size: 1rem; font-weight: 800; margin-bottom: 6px; }
.chat-popup-head p{ font-family: var(--sans); font-size: 0.78rem; line-height: 1.5; color: rgba(31,13,17,0.75); }
.chat-popup-close{
  position: absolute; top: 14px; right: 14px; width: 26px; height: 26px; border-radius: 50%; border: none;
  background: rgba(255,255,255,0.5); color: var(--gold-ink); display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 12px;
}
.chat-popup-close:hover{ background: #fff; }
.chat-popup-options{ padding: 10px; }
.chat-popup-option{ display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-md); transition: background 0.15s ease; }
.chat-popup-option:hover{ background: var(--cream); }
.chat-popup-option-icon{ width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.chat-popup-option.is-whatsapp .chat-popup-option-icon{ background: rgba(37,211,102,0.15); color: #1DA851; }
.chat-popup-option.is-call .chat-popup-option-icon{ background: var(--gold-tint); color: var(--gold-deep); }
.chat-popup-option strong{ display: block; font-family: var(--sans); font-size: 0.85rem; color: var(--wine); }
.chat-popup-option small{ display: block; font-family: var(--sans); font-size: 0.72rem; color: var(--ink-faint); margin-top: 2px; }
.chat-popup-arrow{ margin-left: auto; color: var(--ink-faint); font-size: 13px; }

@media (max-width: 620px){
  .sticky-actions{ right: 14px; bottom: 14px; }
  .scrolltop-btn{ width: 46px; height: 46px; font-size: 19px; }
  .chat-toggle-btn{ padding: 5px; }
  .chat-toggle-btn span:not(.chat-toggle-icon){ display: none; }
  .chat-toggle-icon{ width: 46px; height: 46px; font-size: 20px; }
  .chat-popup{ width: calc(100vw - 28px); }
}

/* ==========================================================================
   FAQ accordion
   ========================================================================== */
.faq-list{ display: grid; gap: 2px; max-width: 800px; }
.faq-item{ background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 2px 22px; }
.faq-item summary{
  list-style: none; padding: 16px 0; font-family: var(--sans); font-weight: 700; font-size: 0.95rem; color: var(--wine);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq-item summary::-webkit-details-marker{ display: none; }
.faq-item summary .icon{ color: var(--gold-deep); flex-shrink: 0; transition: transform 0.2s ease; }
.faq-item[open] summary .icon{ transform: rotate(45deg); }
.faq-item p{ padding-bottom: 18px; font-size: 0.9rem; margin: 0; max-width: none; }

/* ==========================================================================
   Season strip
   ========================================================================== */
.season-strip{ display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 8px; margin-top: 8px; max-width: 940px; }
.season-month{ display: flex; flex-direction: column; align-items: center; gap: 8px; }
.season-tier{
  width: 100%; padding: 7px 0; border-radius: var(--radius-pill); text-align: center;
  font-family: var(--sans); font-size: 0.58rem; font-weight: 800; letter-spacing: 0.04em; color: #fff;
  transition: transform 0.15s ease;
}
.season-month:hover .season-tier{ transform: scale(1.1); }
.season-month span{ font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--ink); }
.tier-best{ background: var(--wine); }
.tier-great{ background: var(--gold-deep); }
.tier-good{ background: var(--gold); color: var(--gold-ink); }
.tier-fair{ background: var(--ink-faint); }
.badge-row{ display: flex; gap: 20px; flex-wrap: wrap; margin-top: 22px; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); }
.season-legend{ display: flex; gap: 22px; flex-wrap: wrap; margin-top: 24px; font-family: var(--sans); font-size: 0.82rem; color: var(--ink-soft); align-items: center; }
.season-legend i{ display: inline-block; width: 10px; height: 10px; border-radius: 50%; margin-right: 7px; vertical-align: middle; }
.season-facts{ display: flex; gap: 44px; flex-wrap: wrap; margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--line); max-width: 940px; }
.season-fact span{ display: block; font-family: var(--sans); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); margin-bottom: 5px; }
.season-fact b{ font-family: var(--sans); font-size: 1.1rem; color: var(--wine); }

/* ==========================================================================
   When To Go — interactive month picker (homepage "Wann Sie reisen sollten")
   12 tabs (weather icon + star rating) above a click-to-reveal detail panel
   per month. All 12 panels are pre-rendered in the DOM; js/main.js toggles
   which is visible, so the content works even if JS fails to load (the
   January panel just stays permanently visible instead of being interactive).
   ========================================================================== */
.wtg-widget{
  border: 1.5px solid var(--wine-soft-2); border-radius: var(--radius-md); max-width: 1012px;
  padding: 28px 32px 32px; margin-top: 8px;
}
.wtg-tabs{
  display: grid; grid-template-columns: repeat(12, minmax(0,1fr)); gap: 4px;
  border-bottom: 1.5px solid var(--wine-soft-2); margin-top: 0;
}
.wtg-tab{
  display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 14px 4px 12px;
  background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer;
  font-family: var(--sans); transition: border-color 0.15s ease;
}
.wtg-tab-icon{ font-size: 15px; color: var(--ink-faint); }
.wtg-tab-label{ font-size: 0.78rem; font-weight: 700; color: var(--ink-soft); }
.wtg-tab-stars{ font-size: 8px; letter-spacing: 1px; color: var(--gold); }
.wtg-tab-stars .is-empty{ color: var(--wine-soft-2); }
.wtg-tab:hover{ border-bottom-color: var(--gold-tint); }
.wtg-tab.is-active{ border-bottom-color: var(--wine); }
.wtg-tab.is-active .wtg-tab-label{ color: var(--wine); }
.wtg-tab.is-active .wtg-tab-icon{ color: var(--gold-deep); }

.wtg-panel{ display: none; padding-top: 32px; }
.wtg-panel.is-active{ display: block; }
.wtg-panel-head h3{ font-size: 1.3rem; margin-bottom: 16px; }
.wtg-panel-body{ display: grid; grid-template-columns: minmax(0,1.6fr) minmax(0,1fr); gap: 40px; }
.wtg-panel-text p{ font-size: 0.92rem; }
.wtg-panel-list{ margin: 0; }
.wtg-panel-foot{
  display: flex; gap: 48px; flex-wrap: wrap; margin-top: 28px; padding-top: 22px;
  border-top: 1.5px dashed var(--wine-soft-2);
}
.wtg-foot-label{ display: block; font-family: var(--sans); font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-faint); margin-bottom: 8px; }
.wtg-verdict{ display: flex; flex-direction: column; }
.wtg-verdict-row{ display: flex; align-items: center; gap: 12px; }
.wtg-stars-big{ font-size: 13px; letter-spacing: 2px; color: var(--gold); white-space: nowrap; }
.wtg-stars-big .is-empty{ color: var(--wine-soft-2); }
.wtg-verdict-text{ font-family: var(--sans); font-size: 0.85rem; font-weight: 700; color: var(--wine); }
.wtg-weather-icon{
  width: 34px; height: 34px; border-radius: 9px; background: var(--gold-tint); color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
@media (max-width: 900px){
  .wtg-tabs{ grid-template-columns: repeat(6, minmax(0,1fr)); row-gap: 10px; }
  .wtg-panel-body{ grid-template-columns: minmax(0,1fr); gap: 24px; }
}
@media (max-width: 480px){
  .wtg-tabs{ grid-template-columns: repeat(4, minmax(0,1fr)); }
}

/* ==========================================================================
   Forms (custom safaris, contact)
   ========================================================================== */
.field{ margin-bottom: 20px; }
.field label{ font-family: var(--sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-soft); display: block; margin-bottom: 8px; }
.field .hint{ font-family: var(--sans); font-size: 0.76rem; color: var(--ink-faint); margin-top: 6px; display: block; }

/* Tailor-made safari: how-it-works steps + trust sidebar */
.tms-step{ display: flex; gap: 16px; align-items: flex-start; margin-bottom: 22px; }
.tms-step:last-child{ margin-bottom: 0; }
.tms-step-num{
  width: 34px; height: 34px; border-radius: 50%; background: var(--wine); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-family: var(--sans); font-weight: 800; font-size: 0.9rem;
}
.tms-step h4{ font-family: var(--sans); font-size: 0.9rem; font-weight: 700; margin-bottom: 3px; }
.tms-step p{ font-size: 0.82rem; margin-bottom: 0; }
.trust-mini{ text-align: center; padding-top: 18px; border-top: 1px solid var(--line); margin-top: 18px; }
.trust-mini .stars{ color: var(--gold); letter-spacing: 2px; display: block; margin-bottom: 8px; }
.trust-mini p{ font-size: 0.82rem; margin-bottom: 10px; }
.field input, .field select, .field textarea{
  width: 100%; font-family: var(--sans); font-size: 0.9rem; color: var(--ink);
  border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 13px 15px; background: var(--surface);
}
.field textarea{ resize: vertical; min-height: 110px; }
.field input:focus, .field select:focus, .field textarea:focus{ outline: 2px solid var(--gold); outline-offset: 1px; }
.field-row{ display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 20px; }
@media (max-width: 620px){ .field-row{ grid-template-columns: minmax(0,1fr); } }

.check-grid{ display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 620px){ .check-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* ==========================================================================
   Modal dialog (Write a Review)
   ========================================================================== */
.modal-overlay{
  position: fixed; inset: 0; background: rgba(31,13,17,0.72); z-index: 300;
  display: none; align-items: flex-start; justify-content: center; padding: 60px 20px; overflow-y: auto;
}
.modal-overlay.open{ display: flex; }
.modal-box{
  background: var(--surface); border-radius: var(--radius-lg); max-width: 620px; width: 100%;
  padding: 40px; position: relative; box-shadow: var(--shadow-lg);
}
.modal-close{
  position: absolute; top: 18px; right: 18px; width: 36px; height: 36px; border-radius: 50%;
  background: var(--cream); border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--wine); font-size: 14px;
}
.modal-close:hover{ background: var(--gold-tint); }
.modal-box h3{ font-size: 1.4rem; padding-right: 30px; margin-bottom: 6px; }
.modal-box > p{ color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 0; }
.modal-form{ margin-top: 24px; display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 18px 20px; }
.modal-form .field.full{ grid-column: 1 / -1; margin-bottom: 0; }
.modal-form .field{ margin-bottom: 0; }
.modal-submit{ width: 100%; justify-content: center; }
.rating-input{ display: flex; gap: 6px; }
.rating-input button{ background: none; border: none; padding: 2px; cursor: pointer; font-size: 24px; line-height: 1; color: var(--line); }
.rating-input button.active{ color: var(--gold); }
.form-status{ display: none; margin-top: 16px; font-family: var(--sans); font-size: 0.85rem; padding: 10px 14px; border-radius: var(--radius-sm); }
.form-status.show{ display: block; }
.form-status.ok{ background: rgba(0,166,81,0.12); color: var(--green); }
.form-status.err{ background: rgba(48,23,26,0.08); color: var(--ink-soft); }
@media (max-width: 560px){ .modal-form{ grid-template-columns: minmax(0,1fr); } .modal-box{ padding: 28px 22px; } }

/* ==========================================================================
   Exit-intent popup — shown once per session when the cursor leaves toward
   the browser chrome (desktop) or after genuine engagement (mobile fallback)
   ========================================================================== */
.exit-popup-overlay{
  position: fixed; inset: 0; background: rgba(31,13,17,0.72); z-index: 400;
  display: none; align-items: center; justify-content: center; padding: 20px;
}
.exit-popup-overlay.open{ display: flex; }
.exit-popup-box{
  background: var(--surface); border-radius: var(--radius-lg); max-width: 440px; width: 100%;
  padding: 48px 36px 36px; position: relative; box-shadow: var(--shadow-lg); text-align: center;
}
.exit-popup-close{
  position: absolute; top: 16px; right: 16px; width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); border: none; display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: #fff; font-size: 15px; box-shadow: var(--shadow-sm); transition: background 0.15s ease;
}
.exit-popup-close:hover{ background: var(--gold-deep); }
.exit-popup-avatars{ display: flex; justify-content: center; margin-bottom: 26px; }
.exit-popup-avatar{
  width: 84px; height: 84px; border-radius: 50%; overflow: hidden; border: 3px solid var(--surface);
  box-shadow: var(--shadow-sm); margin-left: -18px; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; color: var(--gold-deep); font-size: 1.4rem; flex-shrink: 0;
}
.exit-popup-avatar:first-child{ margin-left: 0; }
.exit-popup-avatar img{ width: 100%; height: 100%; object-fit: cover; }
.exit-popup-box h3{ font-size: 1.5rem; margin-bottom: 22px; line-height: 1.3; }
.exit-popup-cta{ width: 100%; justify-content: center; }
.exit-popup-note{ display: block; margin-top: 10px; font-family: var(--sans); font-size: 0.78rem; color: var(--ink-faint); }
@media (max-width: 480px){
  .exit-popup-box{ padding: 40px 22px 28px; }
  .exit-popup-avatar{ width: 68px; height: 68px; }
  .exit-popup-box h3{ font-size: 1.3rem; }
}

.check-pill{
  display: flex; align-items: center; gap: 10px; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; font-family: var(--sans); font-size: 0.875rem; color: var(--ink-soft); cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.check-pill:has(input:checked){ border-color: var(--gold); background: var(--gold-tint); color: var(--gold-deep); }
.check-pill input{ width: auto; accent-color: var(--gold-deep); }

.contact-info{ display: flex; flex-direction: column; gap: 24px; }
.contact-info .item{ display: flex; gap: 16px; align-items: flex-start; }
.contact-info .icon-wrap{
  width: 44px; height: 44px; border-radius: 50%; background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info .icon-wrap i{ font-size: 17px; color: var(--gold-deep); }
.contact-info h4{ font-family: var(--sans); font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.contact-info p{ margin-bottom: 0; font-size: 0.9rem; }

/* ==========================================================================
   Team / story / timeline (About pages)
   ========================================================================== */
.value-card{ padding: 28px 24px; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); }
.value-card .icon-wrap{ width: 46px; height: 46px; border-radius: 50%; background: var(--gold-tint); display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.value-card .icon-wrap i{ color: var(--gold-deep); font-size: 19px; }
.value-card h3{ font-size: 1.02rem; margin-bottom: 6px; }
.value-card p{ font-size: 0.875rem; margin-bottom: 0; }

/* Team member card — a horizontal sibling to .value-card built around a
   square-cornered portrait that bleeds to the card's own edges and stretches
   to match the full height of the text column (not a small fixed-size photo
   with dead space around it), used by the "Unser Team" section. */
.team-card{ display: flex; gap: 0; align-items: stretch; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-md); text-align: left; overflow: hidden; }
.team-card-photo{ width: 180px; min-width: 180px; }
.team-card-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card-photo.is-placeholder{
  display: flex; align-items: center; justify-content: center; background: var(--gold-tint);
  color: var(--gold-deep); font-size: 32px;
}
.team-card-body{ flex: 1; min-width: 0; padding: 26px 24px; }
.team-card-name{ font-family: var(--sans); font-weight: 700; font-size: 1rem; color: var(--wine); margin-bottom: 2px; }
.team-card-role{ display: block; font-family: var(--sans); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gold-deep); margin-bottom: 10px; }
.team-card p{ font-size: 0.83rem; color: var(--ink-soft); margin-bottom: 14px; }
.team-card-lang{
  display: inline-flex; align-items: center; gap: 6px; margin-bottom: 12px; font-family: var(--sans);
  font-size: 0.68rem; font-weight: 700; color: var(--wine); background: var(--cream); border-radius: var(--radius-pill); padding: 5px 13px;
}
.team-card-socials{ display: flex; gap: 8px; }
.team-card-social{
  width: 30px; height: 30px; border-radius: 50%; background: var(--cream); display: flex; align-items: center;
  justify-content: center; color: var(--wine); font-size: 12px; transition: background 0.15s ease, color 0.15s ease;
}
.team-card-social:hover{ background: var(--gold); color: var(--gold-ink); }
.team-card-social.is-placeholder{ opacity: 0.32; pointer-events: none; }
/* Compact variant — for role-only placeholder cards with no real photo yet;
   a small centered icon badge with its own padding, not a full-bleed portrait. */
.team-card.is-compact{ align-items: center; padding: 24px 22px; }
.team-card.is-compact .team-card-photo{ width: 72px; height: 72px; min-width: 72px; border-radius: 18px; font-size: 24px; }
.team-card.is-compact .team-card-body{ padding: 0; }
@media (max-width: 560px){
  .team-card{ flex-direction: column; align-items: stretch; text-align: center; }
  .team-card-photo{ width: 100%; height: 220px; min-width: 0; }
  .team-card.is-compact{ align-items: center; }
  .team-card.is-compact .team-card-photo{ width: 72px; height: 72px; }
  .team-card-socials{ justify-content: center; }
}

.story-timeline{ display: grid; gap: 30px; max-width: 720px; }
.story-row{ display: grid; grid-template-columns: 90px minmax(0,1fr); gap: 22px; }
.story-row .year{ font-family: var(--sans); font-size: 1.2rem; font-weight: 800; color: var(--gold-deep); }
.story-row h3{ margin-bottom: 6px; font-size: 1.15rem; }
@media (max-width: 560px){ .story-row{ grid-template-columns: 60px minmax(0,1fr); } .story-row .year{ font-size: 1rem; } }

/* Intro row — full-bleed, edge-to-edge alternating photo/text bands (no
   .container), used for the "Unsere Geschichte" page's opening story beats.
   Landscape photo fills one half, text the other; order in the HTML decides
   which side the photo lands on, and stacks photo-then-text on mobile. */
.intro-row{ display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); min-height: 460px; }
.page-hero + .intro-row{ margin-top: 48px; }
.intro-row-photo{ background-size: cover; background-position: center; min-height: 320px; }
.intro-row-text{ display: flex; flex-direction: column; justify-content: center; padding: 56px 64px; }
.intro-row-text .eyebrow-num{
  display: inline-flex; align-items: center; gap: 10px; font-family: var(--sans); font-weight: 800;
  font-size: 0.8rem; color: var(--gold-deep); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 14px;
}
.intro-row-text h2{ margin-bottom: 0; }
.intro-row-text .accent-rule{ display: block; width: 56px; height: 3px; background: var(--gold); margin: 16px 0 18px; }
.intro-row-text p{ margin-bottom: 0; }
.intro-row-dark{ background: var(--wine-deep); color: #fff; }
.intro-row-dark h2{ color: #fff; }
.intro-row-dark p{ color: rgba(255,255,255,0.78); }
@media (max-width: 780px){
  .intro-row{ grid-template-columns: minmax(0,1fr); min-height: 0; }
  .intro-row-text{ padding: 40px 24px; }
  /* Always stack text above photo on mobile, regardless of the desktop
     left/right order — otherwise two adjacent rows can both put their
     photo on top, and two full-bleed photos end up touching with no
     text between them to break up the stack. */
  .intro-row-photo{ order: 2; }
  .intro-row-text{ order: 1; }
}

/* ==========================================================================
   Park / sub-destination pages (benchmarked on tazamaholidays.com park pages)
   ========================================================================== */
.dest-page-layout{ display: grid; grid-template-columns: minmax(0,0.85fr) minmax(0,1.15fr); gap: 60px; align-items: start; }
.dest-intro-col{ position: sticky; top: 100px; }
.dest-intro-col .dest-facts{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.dest-intro-col > p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
.dest-photo{ margin-top: 26px; border-radius: 0; overflow: hidden; aspect-ratio: 4/3; }
.dest-photo.scene{ margin-top: 26px; }
.dest-cta-box{
  margin-top: 26px; padding: 22px 26px; background: var(--cream); border-left: 4px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; flex-wrap: wrap;
}
.dest-cta-box p{ margin: 0; font-family: var(--sans); font-size: 0.92rem; color: var(--ink); max-width: 32ch; }
.dest-cta-box .btn{ flex-shrink: 0; }
.dest-info-col{ display: flex; flex-direction: column; }
.dest-info-row{ padding: 30px 0; border-bottom: 1px solid var(--line); }
.dest-info-row:first-child{ padding-top: 0; }
.dest-info-row:last-child{ border-bottom: none; }
.dest-info-row h2{ font-size: 1.5rem; margin-bottom: 12px; }
.dest-info-row > p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
@media (max-width: 980px){
  .dest-page-layout{ grid-template-columns: minmax(0,1fr); }
  .dest-intro-col{ position: static; }
}

/* "Wo wir übernachten" — mirrored variant of the layout above: text (with
   the lodge list) on the left, one photo on the right. */
.stay-layout{ display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,0.85fr); gap: 60px; align-items: start; margin-top: 10px; }
.stay-text-col > p{ text-align: justify; text-justify: inter-word; hyphens: auto; }
.stay-photo-col{ position: sticky; top: 100px; }
.stay-photo-col .scene{ border-radius: 0; overflow: hidden; aspect-ratio: 3/4; }
.lodge-list{ margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.lodge-row{
  display: flex; align-items: stretch; gap: 0; background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-md); overflow: hidden;
}
.lodge-photo{ width: 180px; min-width: 180px; }
.lodge-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.lodge-photo.is-placeholder{
  display: flex; align-items: center; justify-content: center; background: var(--gold-tint);
  color: var(--gold-deep); font-size: 32px;
}
.lodge-row-body{ flex: 1; min-width: 0; padding: 22px 24px; display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.lodge-row-body h3{ font-size: 1.05rem; margin-bottom: 0; }
.lodge-row-body p{ margin: 0 0 4px; font-family: var(--sans); font-size: 0.88rem; color: var(--ink-soft); }
.lodge-row-body .btn{ align-self: flex-start; }
@media (max-width: 560px){
  .lodge-row{ flex-direction: column; }
  .lodge-photo{ width: 100%; height: 180px; min-width: 0; }
}
@media (max-width: 980px){
  .stay-layout{ grid-template-columns: minmax(0,1fr); }
  .stay-photo-col{ position: static; }
}

.dest-facts{ display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 22px; margin: 28px 0; padding: 24px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.dest-facts span{ display: block; font-family: var(--sans); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-faint); margin-bottom: 6px; }
.dest-facts b{ font-family: var(--sans); font-size: 0.92rem; color: var(--wine); font-weight: 700; }
@media (max-width: 680px){ .dest-facts{ grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }

.dest-map-frame{ border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.dest-map-frame iframe{ display: block; width: 100%; height: 380px; border: 0; }

.related-park-card{ display: block; }
.related-park-card .scene{ margin-bottom: 14px; }
.related-park-card h3{ font-size: 1.02rem; margin-bottom: 6px; }
.related-park-card p{ font-size: 0.875rem; margin-bottom: 10px; }
.related-park-card .link-arrow{ font-size: 0.8rem; }

/* ==========================================================================
   Search results
   ========================================================================== */
.search-input-row{ display: flex; gap: 10px; max-width: 640px; margin: 0 auto; }
.search-input-row input{
  flex: 1; padding: 14px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  font-family: var(--sans); font-size: 0.95rem; color: var(--ink);
}
.search-input-row input:focus{ outline: 2px solid var(--gold); outline-offset: -2px; }
.search-input-row button{ flex-shrink: 0; }
.search-meta{ font-family: var(--sans); font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 20px; }
.search-results{ display: flex; flex-direction: column; }
.search-result{ display: flex; gap: 22px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--line); }
.search-result:first-child{ padding-top: 0; }
.search-result:last-child{ border-bottom: none; }
.search-result .scene{ width: 130px; height: 96px; flex-shrink: 0; aspect-ratio: auto; border-radius: var(--radius-sm); }
.search-result-body{ min-width: 0; }
.search-result-body .badge{ margin-bottom: 8px; }
.search-result-body h3{ font-size: 1.05rem; margin-bottom: 6px; }
.search-result-body h3 a{ color: var(--ink); }
.search-result-body h3 a:hover{ color: var(--wine); }
.search-result-body p{ font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 0; }
.search-empty{ text-align: center; padding: 50px 0; }
.search-empty i{ font-size: 32px; color: var(--line); margin-bottom: 16px; display: block; }
.search-empty p{ color: var(--ink-faint); max-width: 40ch; margin: 0 auto 22px; }
@media (max-width: 560px){ .search-result{ flex-direction: column; } .search-result .scene{ width: 100%; aspect-ratio: 16/9; } }

.search-layout{ display: grid; grid-template-columns: 220px minmax(0,1fr) 300px; gap: 40px; align-items: start; }
.search-filters{ position: sticky; top: 100px; }
.search-filters h4{ font-family: var(--sans); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gold-deep); margin-bottom: 14px; }
.filter-check{ display: flex; align-items: center; gap: 10px; padding: 7px 0; font-family: var(--sans); font-size: 0.85rem; color: var(--ink-soft); cursor: pointer; }
.filter-check input{ width: 16px; height: 16px; accent-color: var(--wine); flex-shrink: 0; cursor: pointer; }
.filter-check:hover{ color: var(--wine); }
.filter-reset{ margin-top: 14px; font-family: var(--sans); font-size: 0.78rem; font-weight: 700; color: var(--wine); }
@media (max-width: 1100px){ .search-layout{ grid-template-columns: minmax(0,1fr); } .search-filters{ position: static; } }

/* Utility */
.mt-0{ margin-top: 0; }
.pt-0{ padding-top: 0; }
.pb-0{ padding-bottom: 0; }
.visually-hidden{ position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
