/* ============================================================
   Auf nach Süden — Design System
   Fonts: Fraunces (display) + Inter (text) via Google Fonts
   Für Produktion: Fonts lokal einbinden (DSGVO)
   ============================================================ */

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

/* ✏️ NAV & FOOTER SCHRIFTART — hier ändern um alle Menüpunkte und Footer zu aktualisieren */

/* === TOKENS ================================================= */
:root {
  /* Brand Colors */
  --green-950: #0a1520;
  --green-900: #1a2744;
  --green-800: #1e3055;
  --green-700: #263d6b;
  --green-600: #2e4d87;
  --green-500: #3b61a8;
  --green-400: #5a80c4;
  --green-300: #8aaad9;
  --green-100: #e8edf8;

  --terra-700: #b03214;
  --terra-600: #e8431a;
  --terra-500: #ed5c30;
  --terra-400: #f07855;
  --terra-300: #f5a080;
  --terra-100: #fde8e3;

  --sand-50:  #fefcf8;
  --sand-100: #fdf8f0;
  --sand-200: #f5e6c8;
  --sand-300: #e8d4a8;

  --gold:      #d4a843;
  --gold-light:#f0cc70;

  --gray-950: #080808;
  --gray-900: #111111;
  --gray-800: #1e1e1e;
  --gray-700: #2d2d2d;
  --gray-600: #333333;
  --gray-500: #555555;
  --gray-400: #747474;
  --gray-300: #c0c0c0;
  --gray-200: #e0e0e0;
  --gray-100: #f2f2f2;
  --gray-50:  #f8f8f8;
  --white:    #ffffff;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Playfair Display', Georgia, serif;
  --font-nav:     'Cormorant Garamond', Georgia, serif; /* ✏️ Nav & Footer Schriftart */

  /* Spacing (8px grid) */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  /* Radius */
  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.14);

  /* Layout */
  --max-w:       1200px;
  --max-w-wide:  1440px;
  --max-w-narrow: 760px;
  --nav-h:       72px;

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   250ms ease;
  --t-slow:   400ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* === RESET ================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* === TYPOGRAPHY ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.display { font-size: clamp(3rem, 8vw, 7rem); line-height: 1.0; }
.lead { font-size: clamp(1.05rem, 2vw, 1.25rem); line-height: 1.7; color: var(--gray-600); }
.caption { font-size: 0.8rem; color: var(--gray-500); letter-spacing: 0.02em; }
.overline {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra-600);
}

/* === LAYOUT ================================================= */
.container      { max-width: var(--max-w);       margin: 0 auto; padding: 0 var(--sp-6); }
.container-wide { max-width: var(--max-w-wide);   margin: 0 auto; padding: 0 var(--sp-6); }
.container-sm   { max-width: var(--max-w-narrow); margin: 0 auto; padding: 0 var(--sp-6); }

.section { padding: var(--sp-20) 0; }
.section-sm { padding: var(--sp-12) 0; }
.section-lg { padding: var(--sp-32) 0; }

/* === NAVIGATION ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav--transparent { background: transparent; }
.nav--solid {
  background: var(--green-900);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.nav__inner {
  width: 100%;
  max-width: var(--max-w-wide);
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  flex-shrink: 0;
}

.nav__logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}


.nav__logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav__logo-main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}
.nav__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terra-400);
  font-weight: 500;
  margin-top: 4px;
  text-align: center;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  flex: 1;
}
.nav__link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
  white-space: nowrap;
  position: relative;
}
.nav__link:hover, .nav__link.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav__link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: var(--sp-3); right: var(--sp-3);
  height: 2px;
  background: var(--terra-400);
  border-radius: var(--r-full);
}
.nav__dropdown { position: relative; }
.nav__dropdown-toggle { display: flex; align-items: center; gap: 4px; }
.nav__dropdown-toggle svg { width: 14px; height: 14px; transition: transform var(--t-fast); }
.nav__dropdown:hover .nav__dropdown-toggle svg { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-base);
  box-shadow: var(--shadow-lg);
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown-link {
  display: block;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav__dropdown-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* === LANGUAGE SWITCHER ===================================== */
.lang-switcher {
  position: relative;
}
.lang-switcher__btn {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--r-full);
  padding: 0.3rem 0.7rem 0.3rem 0.55rem;
  color: var(--white);
  font-family: var(--font-nav);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--t-fast), border-color var(--t-fast);
  line-height: 1;
}
.lang-switcher__btn:hover,
.lang-switcher__btn[aria-expanded="true"] {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
}
.lang-switcher__flag { font-size: 1rem; line-height: 1; }
.lang-switcher__btn svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.lang-switcher__btn[aria-expanded="true"] svg { transform: rotate(180deg); }

.lang-switcher__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--green-900);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: var(--sp-2);
  min-width: 150px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all var(--t-base);
  z-index: 300;
}
.lang-switcher__dropdown.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-switcher__option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.45rem 0.65rem;
  border: none;
  background: none;
  color: rgba(255,255,255,0.72);
  font-family: var(--font-nav);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border-radius: var(--r-sm);
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
  line-height: 1;
}
.lang-switcher__option:hover {
  background: rgba(255,255,255,0.08);
  color: var(--white);
}
.lang-switcher__option--active {
  color: var(--white);
  font-weight: 700;
  background: rgba(232,67,26,0.18);
}

.nav__cta {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--terra-600);
  color: var(--white);
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  transition: background var(--t-fast);
  white-space: nowrap;
  margin-left: auto;
}
.nav__cta:hover { background: var(--terra-700); }
.nav__cta svg { width: 16px; height: 16px; flex-shrink: 0; }

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--t-base);
}
.nav__burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0; bottom: 0;
  background: var(--green-900);
  z-index: 99;
  overflow-y: auto;
  padding: var(--sp-6);
  flex-direction: column;
  gap: var(--sp-2);
}
.nav__mobile.open { display: flex; }
.nav__mobile-link {
  color: rgba(255,255,255,0.85);
  font-family: var(--font-nav);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: var(--sp-4);
  border-radius: var(--r-md);
  transition: all var(--t-fast);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav__mobile-link:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav__mobile-sub {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-4) var(--sp-4) var(--sp-2);
  margin-top: var(--sp-4);
}

/* === BUTTONS =============================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-full);
  transition: all var(--t-fast);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--terra-600);
  color: var(--white);
  border-color: var(--terra-600);
}
.btn-primary:hover { background: var(--terra-700); border-color: var(--terra-700); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-dark {
  background: var(--green-800);
  color: var(--white);
  border-color: var(--green-800);
}
.btn-dark:hover { background: var(--green-900); }
.btn-outline {
  background: transparent;
  color: var(--terra-600);
  border-color: var(--terra-600);
}
.btn-outline:hover { background: var(--terra-600); color: var(--white); }
.btn-lg { font-size: 1rem; padding: var(--sp-4) var(--sp-8); }
.btn-sm { font-size: 0.8rem; padding: var(--sp-2) var(--sp-4); }

/* === HERO ================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: #0b1c10;
  z-index: 0;
}
.hero__bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}
.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.025;
  background-image: radial-gradient(circle, white 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 1;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    /* links für Textlesbarkeit */
    linear-gradient(
      100deg,
      rgba(10, 21, 32, 0.78) 0%,
      rgba(10, 21, 32, 0.58) 28%,
      rgba(10, 21, 32, 0.24) 52%,
      rgba(10, 21, 32, 0.06) 78%,
      rgba(10, 21, 32, 0.00) 100%
    ),

    /* oben für Header/Navigation stärker */
    linear-gradient(
      to bottom,
      rgba(10, 21, 32, 0.70) 0%,
      rgba(10, 21, 32, 0.45) 12%,
      rgba(10, 21, 32, 0.20) 24%,
      rgba(10, 21, 32, 0.00) 42%
    ),

    /* unten nur ganz leicht */
    linear-gradient(
      to top,
      rgba(10, 21, 32, 0.32) 0%,
      rgba(10, 21, 32, 0.12) 16%,
      rgba(10, 21, 32, 0.00) 34%
    );

  z-index: 1;
} 
.hero__photo-card {
  position: absolute;
  right: clamp(3rem, 8vw, 10rem);
  bottom: 12%;
  width: 230px;
  aspect-ratio: 3/4;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 3px rgba(255,255,255,0.12);
  z-index: 2;
  transform: rotate(6deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
  display: block;
}
.hero__photo-card:hover {
  transform: rotate(0deg) scale(1.03);
  box-shadow: 0 30px 80px rgba(0,0,0,0.7), 0 0 0 3px rgba(255,255,255,0.25);
}
.hero__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 18%;
}
@media (max-width: 1100px) {
  .hero__photo-card { display: none; }
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-bottom: 25px;
  padding: 0 var(--sp-6);
  padding-top: var(--nav-h);
  width: 100%;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: rgba(196,98,45,0.15);
  border: 1px solid rgba(196,98,45,0.3);
  color: var(--terra-400);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  margin-bottom: var(--sp-6);
}
.hero__tag-dot {
  width: 6px; height: 6px;
  background: var(--terra-500);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  margin-bottom: var(--sp-6);
  letter-spacing: -0.01em;
  
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.82);
  max-width: 540px;
  line-height: 1.7;
  margin-bottom: var(--sp-10);
}
.hero__actions { display: flex; align-items: center; gap: var(--sp-4); flex-wrap: wrap; }
.hero__scroll {
  position: absolute;
  bottom: var(--sp-10);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce-up 2s ease infinite;
}
.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* === STATS BAR ============================================= */
.stats-bar {
  background: var(--green-800);
  color: var(--white);
  padding: var(--sp-8) 0;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-4);
  text-align: center;
}
.stats-bar__item { padding: var(--sp-4); }
.stats-bar__number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  color: var(--terra-400);
  margin-bottom: var(--sp-2);
}
.stats-bar__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.stats-bar__divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  margin: var(--sp-4) 0;
  display: none;
}

/* === SECTION HEADERS ======================================= */
.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header--left { text-align: left; }
.section-header .overline { margin-bottom: var(--sp-3); }
.section-header h2 { margin-bottom: var(--sp-4); }
.section-header .lead { max-width: 600px; margin: 0 auto; }
.section-header--left .lead { margin: 0; }

/* === VIDEO / VLOG CARDS ==================================== */
.vlogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.vlogs-grid--2col { grid-template-columns: repeat(2, 1fr); }

.vlog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}
.vlog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.vlog-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.vlog-card__img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.vlog-card:hover .vlog-card__img { transform: scale(1.06); }
.vlog-card__thumb-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vlog-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-fast), background var(--t-fast);
  box-shadow: var(--shadow-lg);
}
.vlog-card:hover .vlog-card__play { transform: translate(-50%, -50%) scale(1.1); background: var(--white); }
.vlog-card__play svg { width: 24px; height: 24px; color: var(--terra-600); margin-left: 3px; }
.vlog-card__badge {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--terra-600);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.vlog-card__duration {
  position: absolute;
  bottom: var(--sp-3);
  right: var(--sp-3);
  background: rgba(0,0,0,0.75);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: var(--r-sm);
}
.vlog-card__body { padding: var(--sp-5); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.vlog-card__meta { display: flex; align-items: center; gap: var(--sp-3); }
.vlog-card__country {
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  color: var(--terra-600);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.vlog-card__date { color: var(--gray-400); font-size: 0.78rem; margin-left: auto; }
.vlog-card__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
}
.vlog-card__desc { font-size: 0.875rem; color: var(--gray-600); line-height: 1.6; }
.vlog-card__footer {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--gray-100);
  margin-top: auto;
}
.vlog-card__views { font-size: 0.78rem; color: var(--gray-500); display: flex; align-items: center; gap: 4px; }
.vlog-card__views svg { width: 14px; height: 14px; }
.vlog-card__watch {
  margin-left: auto;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--terra-600);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--t-fast);
}
.vlog-card:hover .vlog-card__watch { gap: 8px; }

/* === BLOG / ARTICLE CARDS ================================== */
.artikel-body img {
  width: 100%;
  border-radius: var(--r-lg);
  margin: 2rem 0;
  display: block;
  box-shadow: var(--shadow-md);
}

.artikel-body img + em {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-400);
  margin-top: -1.25rem;
  margin-bottom: 1.5rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.blog-grid--magazine {
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto;
}
.blog-grid--magazine .blog-card:first-child {
  grid-column: 1 / -1;
  flex-direction: row;
}
.blog-grid--magazine .blog-card:first-child .blog-card__thumb { flex: 1; aspect-ratio: unset; }
.blog-grid--magazine .blog-card:first-child .blog-card__body { flex: 1; }

.blog-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-card__thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.blog-card__thumb-placeholder { width: 100%; height: 100%; }
.blog-card__category {
  position: absolute;
  top: var(--sp-3);
  left: var(--sp-3);
  background: var(--white);
  color: var(--terra-600);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: var(--r-full);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-card__body { padding: var(--sp-6); flex: 1; display: flex; flex-direction: column; gap: var(--sp-3); }
.blog-card__meta { display: flex; align-items: center; gap: var(--sp-3); }
.blog-card__author { font-size: 0.8rem; color: var(--gray-600); font-weight: 500; }
.blog-card__date { font-size: 0.78rem; color: var(--gray-400); margin-left: auto; }
.blog-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--gray-900);
}
.blog-card__title:hover { color: var(--terra-600); }
.blog-card__excerpt { font-size: 0.875rem; color: var(--gray-600); line-height: 1.65; flex: 1; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }.blog-card__read {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--terra-600);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* === ABOUT TEASER ========================================== */
.about-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-teaser__visual { position: relative; }
.about-teaser__img-main {
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.about-teaser__img-secondary {
  position: absolute;
  bottom: -var(--sp-8);
  right: -var(--sp-8);
  width: 55%;
  aspect-ratio: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-xl);
}
.about-teaser__badge {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: var(--terra-600);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-teaser__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-teaser__badge-text { font-size: 0.72rem; opacity: 0.85; margin-top: 2px; }
.about-teaser__content { display: flex; flex-direction: column; gap: var(--sp-6); }
.about-teaser__text { font-size: 1rem; color: var(--gray-600); line-height: 1.8; }
.about-teaser__names {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.about-teaser__name-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--terra-300);
}
.about-teaser__name-info { line-height: 1.3; }
.about-teaser__name { font-weight: 600; font-size: 0.95rem; }
.about-teaser__role { font-size: 0.78rem; color: var(--gray-500); }

/* === MAP PREVIEW =========================================== */
.map-preview {
  background: var(--green-900);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.map-preview__bg {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: radial-gradient(circle, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 30px 30px;
}
.map-preview__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-16);
  align-items: center;
}
.map-preview__info { display: flex; flex-direction: column; gap: var(--sp-6); }
.map-preview__title { color: var(--white); }
.map-preview__desc { color: rgba(255,255,255,0.65); line-height: 1.7; }
.map-preview__location {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--sp-4) var(--sp-5);
}
.map-preview__location-dot {
  width: 10px; height: 10px;
  background: var(--terra-400);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(196,98,45,0.3);
  animation: pulse-dot 2s ease infinite;
  flex-shrink: 0;
}
.map-preview__location-text { font-size: 0.9rem; }
.map-preview__location-label { color: rgba(255,255,255,0.5); font-size: 0.75rem; }
.map-preview__location-name { color: var(--white); font-weight: 600; }
.map-preview__countries {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-2);
}
.country-chip {
  font-size: 0.78rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: var(--r-full);
  border: 1px solid;

  width: 120px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.country-chip--visited {
  background: rgba(74,140,98,0.2);
  border-color: rgba(74,140,98,0.4);
  color: var(--green-300);
}
.country-chip--current {
  background: rgba(196,98,45,0.2);
  border-color: rgba(196,98,45,0.5);
  color: var(--terra-400);
}
.country-chip--planned {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
}

/* Simplified SVG Map */
.map-svg-container {
  position: relative;
}
.map-svg-container svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.map-country {
  fill: rgba(255,255,255,0.06);
  stroke: rgba(255,255,255,0.15);
  stroke-width: 1;
  transition: fill var(--t-base);
  cursor: pointer;
}
.map-country--visited { fill: rgba(74,140,98,0.4); stroke: rgba(74,140,98,0.7); }
.map-country--current { fill: rgba(196,98,45,0.5); stroke: var(--terra-400); stroke-width: 1.5; }
.map-country:hover { fill-opacity: 0.7; }
.map-marker {
  fill: var(--terra-500);
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4));
  animation: marker-pulse 2s ease infinite;
}

/* === NEWSLETTER ============================================ */
.newsletter {
  background: var(--sand-100);
  border-top: 1px solid var(--sand-300);
}
.newsletter__inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter__icon {
  width: 56px; height: 56px;
  background: var(--terra-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-6);
  color: var(--terra-600);
}
.newsletter__icon svg { width: 28px; height: 28px; }
.newsletter h2 { margin-bottom: var(--sp-4); }
.newsletter .lead { margin-bottom: var(--sp-8); }
.newsletter__form { display: flex; gap: var(--sp-3); max-width: 480px; margin: 0 auto; }
.newsletter__input {
  flex: 1;
  padding: var(--sp-4) var(--sp-5);
  border: 2px solid var(--sand-300);
  border-radius: var(--r-full);
  background: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--t-fast);
}
.newsletter__input:focus { border-color: var(--terra-500); }
.newsletter__hint { font-size: 0.78rem; color: var(--gray-500); margin-top: var(--sp-3); }

/* === FILTER BAR ============================================ */
/* === BLOG SUCHLEISTE ======================================= */
.blog-search-bar {
  position: relative;
  margin-bottom: var(--sp-5);
  max-width: 480px;
}
.blog-search-bar svg {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gray-400);
  pointer-events: none;
}
#blog-search {
  width: 100%;
  padding: 0.65rem 1rem 0.65rem 2.6rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
#blog-search:focus {
  outline: none;
  border-color: var(--terra-500);
  box-shadow: 0 0 0 3px rgba(196,98,45,0.12);
}
#blog-search::placeholder { color: var(--gray-400); }

/* Klickbare Tags */
.tag--clickable {
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast);
}
.tag--clickable:hover {
  background: var(--green-800);
  color: white;
  border-color: var(--green-800);
}

.filter-bar {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  flex-wrap: wrap;
  margin-bottom: var(--sp-8);
}
.filter-btn {
  font-size: 0.85rem;
  font-weight: 500;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--r-full);
  border: 1.5px solid var(--gray-200);
  background: var(--white);
  color: var(--gray-600);
  transition: all var(--t-fast);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--green-800);
  border-color: var(--green-800);
  color: var(--white);
}

/* === GALLERY =============================================== */
.gallery-masonry {
  columns: 3;
  column-gap: var(--sp-4);
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: var(--sp-4);
  border-radius: var(--r-md);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery-item img, .gallery-item .gallery-placeholder {
  width: 100%;
  display: block;
  transition: transform var(--t-slow);
}
.gallery-item:hover img, .gallery-item:hover .gallery-placeholder { transform: scale(1.04); }
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7,24,16,0);
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
  transition: background var(--t-base);
}
.gallery-item:hover .gallery-item__overlay { background: rgba(7,24,16,0.4); }
.gallery-item__label {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-base);
}
.gallery-item:hover .gallery-item__label { opacity: 1; transform: translateY(0); }

/* === LIGHTBOX ============================================== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
}
.lightbox.open { display: flex; }
.lightbox__content { position: relative; max-width: 900px; max-height: 80vh; }
.lightbox__img { max-width: 100%; max-height: 80vh; border-radius: var(--r-md); object-fit: contain; }
.lightbox__close {
  position: absolute;
  top: -40px; right: 0;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  width: 32px; height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}
.lightbox__close:hover { color: var(--white); }

/* === VIDEO MODAL =========================================== */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
  padding: var(--sp-8);
}
.video-modal.open { display: flex; }
.video-modal__content { position: relative; width: 100%; max-width: 900px; }
.video-modal__close {
  position: absolute;
  top: -40px; right: 0;
  color: rgba(255,255,255,0.7);
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast);
}
.video-modal__close:hover { color: var(--white); }
.video-modal__iframe-wrap { position: relative; padding-bottom: 56.25%; }
.video-modal__iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  border-radius: var(--r-md);
}

/* === FORMS ================================================= */
.form-group { margin-bottom: var(--sp-5); }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: var(--sp-2);
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--r-md);
  background: var(--white);
  font-size: 0.9rem;
  color: var(--gray-900);
  outline: none;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(61,122,82,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-5); }

/* === COUNTRY CARDS ========================================= */
.country-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.country-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.country-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-xl); }
.country-card__bg { position: absolute; inset: 0; transition: transform var(--t-slow); }
.country-card:hover .country-card__bg { transform: scale(1.06); }
.country-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,24,16,0.85) 0%, rgba(7,24,16,0.2) 50%, transparent 100%);
}
.country-card__content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-5);
  color: var(--white);
}
.country-card__status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: var(--sp-2);
  color: var(--terra-400);
}
.country-card__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--sp-1);
}
.country-card__episodes { font-size: 0.8rem; color: rgba(255,255,255,0.65); }

/* === INTERACTIVE MAP PAGE ================================== */
.map-page-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--sp-8);
  align-items: start;
}
.map-container {
  background: var(--green-950);
  border-radius: var(--r-xl);
  padding: var(--sp-6);
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: calc(var(--nav-h) + var(--sp-6));
}
.map-sidebar { display: flex; flex-direction: column; gap: var(--sp-5); }
.map-country-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--gray-100);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.map-country-card.active { border-color: var(--terra-400); box-shadow: var(--shadow-md); }
.map-country-card__header {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-4) var(--sp-5);
}
.map-country-card__flag { font-size: 1.5rem; }
.map-country-card__title { font-weight: 700; font-size: 0.95rem; }
.map-country-card__status { font-size: 0.72rem; margin-top: 2px; }

/* === FOOTER ================================================ */
.footer {
  background: var(--gray-900);
  color: var(--white);
  padding: var(--sp-16) 0 var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-10);
  margin-bottom: var(--sp-12);
}
.footer__brand-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer__brand-desc {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: var(--sp-6);
}
.footer__social { display: flex; gap: var(--sp-3); }
.footer__social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all var(--t-fast);
}
.footer__social-link:hover { background: var(--terra-600); color: var(--white); }
.footer__social-link svg { width: 18px; height: 18px; }
.footer__heading {
  font-family: var(--font-nav);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: var(--sp-5);
}
.footer__links { display: flex; flex-direction: column; gap: var(--sp-3); }
.footer__link {
  color: rgba(255,255,255,0.6);
  font-family: var(--font-nav);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color var(--t-fast);
}
.footer__link:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copy { color: rgba(255,255,255,0.35); font-family: var(--font-nav); font-size: 0.95rem; }
.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal-link { color: rgba(255,255,255,0.35); font-family: var(--font-nav); font-size: 0.95rem; transition: color var(--t-fast); }
.footer__legal-link:hover { color: rgba(255,255,255,0.7); }
.footer__legal { display: flex; gap: var(--sp-6); }
.footer__legal-link { color: rgba(255,255,255,0.35); font-size: 0.8rem; transition: color var(--t-fast); }
.footer__legal-link:hover { color: rgba(255,255,255,0.7); }

/* === BREADCRUMB ============================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-bottom: var(--sp-6);
}
.breadcrumb a:hover { color: var(--terra-600); }
.breadcrumb__sep { color: var(--gray-300); }

/* === PAGE HERO (subpages) ================================== */
.page-hero {
  background: var(--green-900);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
/* Dunkler Overlay damit Text lesbar bleibt */
.page-hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,21,32,0.75) 0%,
    rgba(10,21,32,0.45) 60%,
    rgba(10,21,32,0.2) 100%
  );
}
/* Wenn ein Bild als <img> drin ist */
.page-hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.page-hero__content {
    position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin-bottom: 25px;
  padding: 0 var(--sp-6);
  padding-top: var(--nav-h);
  width: 100%;
}
.page-hero .overline { margin-bottom: var(--sp-4); }
.page-hero h1 { color: var(--white); margin-bottom: var(--sp-4); }
.page-hero .lead { color: rgba(255,255,255,0.75); max-width: 600px; }

/* === LEGAL PAGES =========================================== */
.legal-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--sp-20) var(--sp-6);
}
.legal-content h1 { margin-bottom: var(--sp-8); }
.legal-content h2 { font-size: 1.3rem; margin: var(--sp-10) 0 var(--sp-4); color: var(--green-800); }
.legal-content h3 { font-size: 1.1rem; margin: var(--sp-6) 0 var(--sp-3); }
.legal-content p { margin-bottom: var(--sp-4); color: var(--gray-700); line-height: 1.8; }
.legal-content ul { margin: var(--sp-4) 0 var(--sp-4) var(--sp-6); }
.legal-content ul li { color: var(--gray-700); margin-bottom: var(--sp-2); line-height: 1.7; list-style: disc; }
.legal-content a { color: var(--terra-600); text-decoration: underline; }

/* === COOKIE BANNER ========================================= */
.cookie-banner {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  right: auto;
  width: calc(100% - var(--sp-10));
  max-width: 420px;
  background: var(--gray-900);
  color: var(--white);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  z-index: 200;
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  gap: var(--sp-3);
  border: 1px solid rgba(255,255,255,0.1);
}
.cookie-banner.show { display: flex; }
.cookie-banner__title { font-weight: 700; font-size: 1rem; }
.cookie-banner__text { font-size: 0.82rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.cookie-banner__actions { display: flex; gap: var(--sp-3); }
.cookie-btn-accept {
  flex: 1;
  background: var(--terra-600);
  color: var(--white);
  border: none;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--t-fast);
}
.cookie-btn-accept:hover { background: var(--terra-700); }
.cookie-btn-decline {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.6);
  border: none;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--r-full);
  font-size: 0.85rem;
  cursor: pointer;
  transition: background var(--t-fast);
}
.cookie-btn-decline:hover { background: rgba(255,255,255,0.12); }

/* === UTILITY =============================================== */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.mt-auto { margin-top: auto; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* Placeholder image backgrounds */
.bg-jungle   { background: linear-gradient(135deg, #0d2418 0%, #1a3c2a 50%, #2d5a3d 100%); }
.bg-mountains{ background: linear-gradient(135deg, #1a2d3d 0%, #2d4a6b 50%, #3d6080 100%); }
.bg-desert   { background: linear-gradient(135deg, #8b3a15 0%, #c4622d 50%, #e8a870 100%); }
.bg-beach    { background: linear-gradient(135deg, #006994 0%, #0088bb 50%, #00a8d4 100%); }
.bg-city     { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%); }
.bg-sunrise  { background: linear-gradient(135deg, #c4622d 0%, #d4a843 50%, #f0cc70 100%); }
.bg-salt     { background: linear-gradient(135deg, #4a7fa0 0%, #6ab0d0 50%, #c8e8f5 100%); }
.bg-rainforest { background: linear-gradient(135deg, #071810 0%, #0d2418 40%, #1a3c2a 100%); }

/* === ANIMATIONS ============================================ */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}
@keyframes bounce-up {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}
@keyframes marker-pulse {
  0%, 100% { r: 6; opacity: 1; }
  50% { r: 9; opacity: 0.7; }
}
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* === RESPONSIVE ============================================ */
@media (max-width: 1024px) {
  .about-teaser { grid-template-columns: 1fr; gap: var(--sp-10); }
  .about-teaser__img-secondary { display: none; }
  .about-teaser__badge { top: var(--sp-4); right: var(--sp-4); }
  .map-preview__inner { grid-template-columns: 1fr; }
  .map-page-layout { grid-template-columns: 1fr; }
  .map-container { position: static; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .vlogs-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid--magazine { grid-template-columns: 1fr; }
  .blog-grid--magazine .blog-card:first-child { flex-direction: column; }
  .blog-grid--magazine .blog-card:first-child .blog-card__thumb { aspect-ratio: 16/9; }
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  :root { --nav-h: 60px; }
  .section { padding: var(--sp-12) 0; }
  .section-lg { padding: var(--sp-16) 0; }
  .vlogs-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; gap: var(--sp-4); text-align: center; }
  .country-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .newsletter__form { flex-direction: column; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); }
  .cookie-banner { left: var(--sp-3); right: var(--sp-3); bottom: var(--sp-3); }
}

/* ── Instagram Banner ──────────────────────────────────────── */
.instagram-banner {
  position: relative;
  overflow: hidden;
  padding: var(--sp-16) 0;
}
.instagram-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #833ab4 0%, #c13584 30%, #e1306c 55%, #f77737 80%, #fcaf45 100%);
  z-index: 0;
}
.instagram-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.18);
}
.instagram-banner .container { position: relative; z-index: 1; }
.instagram-banner__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.instagram-banner__left { color: white; }
.instagram-banner__icon {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.instagram-banner__handle {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.5rem;
}
.instagram-banner__title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.instagram-banner__desc {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  font-size: 1rem;
  margin-bottom: 2rem;
  max-width: 400px;
}
.instagram-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: white;
  color: #c13584;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.875rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.instagram-banner__btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
}
.instagram-banner__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  border-radius: 1rem;
  overflow: hidden;
}
.instagram-post {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
}
.instagram-post--1 { background: linear-gradient(135deg, #2d5a27, #5a8c2e); }
.instagram-post--2 { background: linear-gradient(135deg, #1a4a1a, #2d7a2d); }
.instagram-post--3 { background: linear-gradient(135deg, #1a5c8c, #2e90cc); }
.instagram-post--4 { background: linear-gradient(135deg, #8c3a1a, #d4622e); }
.instagram-post--5 { background: linear-gradient(135deg, #5c3a1a, #a0622e); }
.instagram-post--6 { background: linear-gradient(135deg, #1a2a5c, #2e4acc); }
.instagram-post__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  opacity: 0;
  transition: all 0.25s;
}
.instagram-post:hover .instagram-post__overlay {
  background: rgba(0,0,0,0.35);
  opacity: 1;
}
.instagram-post__label {
  position: relative;
  z-index: 1;
  padding: 0.4rem 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  width: 100%;
  text-align: center;
}
@media (max-width: 1024px) {
  .instagram-banner__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .instagram-banner__grid { max-width: 400px; }
  .instagram-banner__desc { max-width: 100%; }
}
@media (max-width: 640px) {
  .instagram-banner__grid { grid-template-columns: repeat(3, 1fr); max-width: 100%; }
  .instagram-banner { padding: var(--sp-12) 0; }
}
