/* =========================================================================
   Bea's World — Premium Design System
   Palette, Typography & Components per Design-Handbuch v1.0
   ========================================================================= */

:root {
  /* Farbwelt */
  --teal: #007A8C;
  --teal-2: #0097A8;
  --teal-deep: #00606E;
  --mint: #DCEFF3;
  --mint-2: #EAF6F9;
  --white: #FFFFFF;
  --dark: #16333B;
  --text: #2B2B2B;
  --muted: #5C7177;
  --line: #E3EEF1;

  /* Verlauf Buttons */
  --grad: linear-gradient(135deg, var(--teal-2) 0%, var(--teal) 100%);
  --grad-deep: linear-gradient(135deg, var(--teal) 0%, var(--teal-deep) 100%);

  /* Schatten */
  --shadow-sm: 0 4px 14px rgba(16, 51, 59, .08);
  --shadow: 0 12px 32px rgba(16, 51, 59, .12);
  --shadow-lg: 0 24px 60px rgba(16, 51, 59, .18);

  /* Radius */
  --r-sm: 16px;
  --r: 24px;
  --r-lg: 32px;

  /* Layout */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 56px);

  /* Fonts */
  --f-head: "Poppins", system-ui, sans-serif;
  --f-body: "Inter", system-ui, sans-serif;
  --f-hand: "Caveat", "Segoe Script", cursive;
}

/* ---------- Reset / Base ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 800; color: var(--dark); line-height: 1.1; letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.6rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }
p { color: var(--muted); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 110px); position: relative; }
.section--mint { background: var(--mint-2); }
.center { text-align: center; }

.eyebrow {
  font-family: var(--f-head); font-weight: 800;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); font-size: .82rem;
  display: inline-flex; align-items: center; gap: .5em;
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(36px, 5vw, 60px); }
.section-head h2 { margin-block: 10px 14px; }
.section-head .heart { color: var(--teal-2); }
.handwriting { font-family: var(--f-hand); color: var(--teal); font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; line-height: 1.2; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--f-head); font-weight: 700; font-size: .98rem;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: 0 10px 24px rgba(0, 122, 140, .35); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(0, 122, 140, .45); }
.btn-ghost { background: rgba(255, 255, 255, .14); color: #fff; border: 1.5px solid rgba(255, 255, 255, .55); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: #fff; color: var(--teal); transform: translateY(-3px); }
.btn-outline { background: #fff; color: var(--teal); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); }
.btn-outline:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--teal); }
.btn .ico-circle { display: inline-grid; place-items: center; width: 26px; height: 26px; border-radius: 50%; background: rgba(255, 255, 255, .25); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding-block: 18px;
}
.site-header .container { display: flex; align-items: center; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-family: var(--f-head); font-weight: 800; font-size: 1.5rem; line-height: 1; }
.brand .brand-mark { width: 42px; height: 42px; flex: 0 0 auto; }
.brand small { display: block; font-size: .62rem; letter-spacing: .35em; font-weight: 700; opacity: .8; margin-top: 3px; }
.brand .b1 { color: var(--teal); }
.nav { margin-left: auto; display: flex; align-items: center; gap: 6px; }
.nav a {
  font-family: var(--f-head); font-weight: 600; font-size: .98rem;
  padding: 8px 14px; border-radius: 999px; position: relative; color: var(--dark);
  transition: color .2s ease;
}
.nav a::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--teal-2); border-radius: 2px; transform: scaleX(0); transform-origin: left; transition: transform .28s ease;
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: var(--teal); }
.social { display: flex; gap: 10px; align-items: center; margin-left: 8px; }
.social a {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(0, 122, 140, .1); color: var(--teal); transition: all .25s ease;
}
.social a:hover { background: var(--grad); color: #fff; transform: translateY(-3px); }
.social a svg { width: 18px; height: 18px; }

/* Transparent over hero */
.site-header.over-hero { background: transparent; }
.site-header.over-hero .nav a, .site-header.over-hero .brand { color: #fff; }
.site-header.over-hero .brand .b1 { color: #fff; }
.site-header.over-hero .social a { background: rgba(255, 255, 255, .18); color: #fff; }
.site-header.over-hero .brand-mark path[fill] { fill: #fff; }
/* Scrolled state */
.site-header.scrolled { background: rgba(255, 255, 255, .92); backdrop-filter: blur(12px); box-shadow: 0 6px 24px rgba(16, 51, 59, .08); padding-block: 12px; }
.site-header.scrolled .nav a, .site-header.scrolled .brand { color: var(--dark); }
.site-header.scrolled .brand .b1 { color: var(--teal); }
.site-header.scrolled .social a { background: rgba(0, 122, 140, .1); color: var(--teal); }

.nav-toggle { display: none; margin-left: auto; width: 46px; height: 46px; border-radius: 12px; }
.nav-toggle span { display: block; width: 22px; height: 2.5px; background: currentColor; margin: 4px auto; border-radius: 2px; transition: .3s; }
.over-hero .nav-toggle { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center;
  color: #fff; padding-top: 120px; padding-bottom: 120px; overflow: hidden;
}
.hero--page { min-height: 78vh; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(100deg, rgba(16, 51, 59, .72) 0%, rgba(16, 51, 59, .35) 45%, rgba(16, 51, 59, .05) 75%);
}
.hero__inner { max-width: 620px; position: relative; }
.hero .eyebrow { color: #cdeef3; }
.hero h1 { color: #fff; margin-block: 14px 18px; }
.hero h1 .accent { color: #7fe0ee; display: block; }
.hero p { color: rgba(255, 255, 255, .9); font-size: 1.12rem; max-width: 30em; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }

/* white wave at bottom of hero / sections */
.wave { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; line-height: 0; z-index: 1; }
.wave svg { width: 100%; height: clamp(50px, 7vw, 110px); display: block; }
.wave--top { bottom: auto; top: -1px; transform: rotate(180deg); }

/* ---------- Wooden sign ---------- */
.wood-sign {
  position: absolute; right: clamp(16px, 4vw, 60px); top: 50%; transform: translateY(-50%) rotate(-3deg);
  display: flex; flex-direction: column; gap: 12px; z-index: 2;
}
.wood-sign .plank {
  font-family: var(--f-hand); font-weight: 700; font-size: clamp(1.1rem, 1.8vw, 1.7rem); color: #fff5e6;
  background: linear-gradient(180deg, #8a5a33 0%, #6f4527 100%);
  padding: 10px 30px; border-radius: 8px;
  box-shadow: inset 0 2px 0 rgba(255, 255, 255, .15), 0 8px 20px rgba(0, 0, 0, .3);
  text-shadow: 0 1px 2px rgba(0, 0, 0, .4); white-space: nowrap; text-align: center;
  border: 2px solid rgba(0, 0, 0, .15);
}
.wood-sign .plank:nth-child(even) { transform: translateX(14px) rotate(1.5deg); }
.wood-sign .plank:nth-child(odd) { transform: translateX(-6px) rotate(-1deg); }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease; display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.card:hover .card__media img { transform: scale(1.08); }
.card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card__body h3 { color: var(--teal); display: flex; align-items: center; gap: 8px; }
.card__body p { font-size: .95rem; }
.card__link { margin-top: auto; color: var(--teal); font-family: var(--f-head); font-weight: 700; font-size: .9rem; display: inline-flex; align-items: center; gap: 6px; }
.card__link svg { width: 16px; transition: transform .25s; }
.card:hover .card__link svg { transform: translateX(4px); }

.badge {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  font-family: var(--f-head); font-weight: 700; font-size: .72rem; letter-spacing: .08em;
  padding: 6px 14px; border-radius: 999px; color: #fff; text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}
.badge--new { background: linear-gradient(135deg, #ff8a3d, #ff6b6b); }
.badge--soon { background: var(--grad); }
.flag { position: absolute; top: 14px; right: 14px; z-index: 2; width: 40px; height: 40px; border-radius: 50%; overflow: hidden; box-shadow: 0 4px 12px rgba(0, 0, 0, .25); border: 2px solid #fff; }
.flag img, .flag svg { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Über-Block (split) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split__media { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__media .heart-tag { position: absolute; bottom: 16px; right: 16px; width: 52px; height: 52px; display: grid; place-items: center; background: #fff; border-radius: 50%; color: var(--teal-2); box-shadow: var(--shadow); }
.split ul.ticks { display: grid; gap: 12px; margin-top: 8px; }
.split ul.ticks li { display: flex; gap: 12px; align-items: flex-start; color: var(--text); }
.split ul.ticks li svg { flex: 0 0 auto; width: 24px; height: 24px; color: var(--teal-2); margin-top: 2px; }

/* ---------- Value cards ---------- */
.values { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.value {
  text-align: center; padding: 30px 18px; border-radius: var(--r); background: #fff;
  box-shadow: var(--shadow-sm); transition: transform .3s, box-shadow .3s;
}
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.value .v-ico { width: 64px; height: 64px; margin: 0 auto 16px; border-radius: 20px; display: grid; place-items: center; background: var(--mint); color: var(--teal); }
.value .v-ico svg { width: 30px; height: 30px; }
.value h3 { font-size: 1.05rem; color: var(--dark); margin-bottom: 6px; }
.value p { font-size: .9rem; }

/* ---------- Polaroids ---------- */
.polaroids { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; }
.polaroid {
  background: #fff; padding: 12px 12px 44px; border-radius: 6px; box-shadow: var(--shadow);
  width: 240px; transition: transform .35s ease, box-shadow .35s ease;
}
.polaroid img { border-radius: 3px; aspect-ratio: 1; object-fit: cover; }
.polaroid figcaption { font-family: var(--f-hand); text-align: center; color: var(--teal); font-size: 1.3rem; margin-top: 8px; font-weight: 700; }
.polaroid:nth-child(1) { transform: rotate(-5deg); }
.polaroid:nth-child(2) { transform: rotate(2deg) translateY(-12px); }
.polaroid:nth-child(3) { transform: rotate(5deg); }
.polaroid:hover { transform: rotate(0) scale(1.04); box-shadow: var(--shadow-lg); z-index: 3; }

/* ---------- Video cards ---------- */
.video-card .card__media::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, .35));
}
.play-btn {
  position: absolute; inset: 0; margin: auto; width: 64px; height: 64px; z-index: 3;
  background: rgba(255, 255, 255, .9); color: var(--teal); border-radius: 50%; display: grid; place-items: center;
  transition: transform .3s ease, background .3s ease; box-shadow: var(--shadow);
}
.play-btn svg { width: 26px; height: 26px; margin-left: 3px; }
.card:hover .play-btn { transform: scale(1.12); background: #fff; }
.play-btn::before { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid rgba(255, 255, 255, .6); animation: pulse 2.4s infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: .8; } 100% { transform: scale(1.4); opacity: 0; } }
.duration { position: absolute; bottom: 12px; right: 12px; z-index: 3; background: rgba(0, 0, 0, .7); color: #fff; font-size: .75rem; font-weight: 600; padding: 3px 9px; border-radius: 6px; }
.meta { display: flex; gap: 16px; font-size: .82rem; color: var(--muted); }
.meta span { display: inline-flex; align-items: center; gap: 5px; }
.meta svg { width: 14px; height: 14px; }

/* Shorts strip */
.shorts { display: flex; gap: 18px; overflow-x: auto; padding-bottom: 12px; scroll-snap-type: x mandatory; }
.short { flex: 0 0 180px; aspect-ratio: 9 / 16; border-radius: var(--r-sm); overflow: hidden; position: relative; scroll-snap-align: start; box-shadow: var(--shadow); }
.short img { width: 100%; height: 100%; object-fit: cover; }
.short::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .55)); }
.short .play-btn { width: 48px; height: 48px; }
.short .views { position: absolute; bottom: 10px; left: 10px; z-index: 3; color: #fff; font-size: .78rem; font-weight: 600; display: flex; align-items: center; gap: 4px; }

/* ---------- Pills / filter ---------- */
.filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 40px; }
.pill {
  font-family: var(--f-head); font-weight: 600; font-size: .9rem; padding: 9px 20px; border-radius: 999px;
  background: #fff; color: var(--dark); border: 1.5px solid var(--line); transition: all .25s ease;
  display: inline-flex; align-items: center; gap: 7px;
}
.pill:hover { border-color: var(--teal-2); color: var(--teal); }
.pill.active { background: var(--grad); color: #fff; border-color: transparent; box-shadow: 0 8px 18px rgba(0, 122, 140, .3); }

/* ---------- Masonry gallery ---------- */
.masonry { columns: 4; column-gap: 18px; }
.masonry .tile { break-inside: avoid; margin-bottom: 18px; border-radius: var(--r-sm); overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow-sm); }
.masonry .tile img { width: 100%; transition: transform .6s ease; }
.masonry .tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(0, 122, 140, .55)); opacity: 0; transition: opacity .3s; }
.masonry .tile:hover img { transform: scale(1.06); }
.masonry .tile:hover::after { opacity: 1; }
.masonry .tile .tile-ico { position: absolute; bottom: 12px; right: 12px; z-index: 2; color: #fff; opacity: 0; transform: translateY(8px); transition: .3s; }
.masonry .tile:hover .tile-ico { opacity: 1; transform: translateY(0); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16, 51, 59, .92); display: none; align-items: center; justify-content: center; padding: 4vw; }
.lightbox.open { display: flex; animation: fade .3s ease; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); }
.lightbox button { position: absolute; color: #fff; width: 54px; height: 54px; border-radius: 50%; background: rgba(255, 255, 255, .12); display: grid; place-items: center; transition: background .25s; }
.lightbox button:hover { background: rgba(255, 255, 255, .25); }
.lb-close { top: 24px; right: 24px; }
.lb-prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 24px; top: 50%; transform: translateY(-50%); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- Blog ---------- */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; align-items: start; }
.post-card .card__media { aspect-ratio: 16 / 10; }
.tags { display: flex; gap: 8px; flex-wrap: wrap; }
.tag { font-size: .74rem; font-weight: 600; font-family: var(--f-head); padding: 4px 12px; border-radius: 999px; background: var(--mint); color: var(--teal); }
.post-date { font-size: .8rem; color: var(--muted); font-weight: 600; }
.sidebar { display: grid; gap: 28px; position: sticky; top: 100px; }
.widget { background: #fff; border-radius: var(--r); padding: 26px; box-shadow: var(--shadow-sm); }
.widget h3 { color: var(--dark); margin-bottom: 16px; }
.cat-list li { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-weight: 600; color: var(--text); transition: color .2s; }
.cat-list li:last-child { border-bottom: none; }
.cat-list li:hover { color: var(--teal); }
.cat-list .count { background: var(--mint); color: var(--teal); border-radius: 999px; padding: 1px 11px; font-size: .8rem; }
.widget--teal { background: var(--grad-deep); color: #fff; }
.widget--teal h3 { color: #fff; }
.widget--teal p { color: rgba(255, 255, 255, .85); font-size: .9rem; margin-bottom: 14px; }
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 44px; }
.pagination a { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm); font-weight: 700; font-family: var(--f-head); transition: all .25s; }
.pagination a:hover, .pagination a.active { background: var(--grad); color: #fff; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 16px; }
.field label { display: block; font-family: var(--f-head); font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--f-body); font-size: 1rem; padding: 14px 16px; border-radius: 14px;
  border: 1.5px solid var(--line); background: #fff; color: var(--text); transition: border .2s, box-shadow .2s;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--teal-2); box-shadow: 0 0 0 4px rgba(0, 151, 168, .12); }
.field small.err { color: #e05656; font-size: .8rem; display: none; margin-top: 4px; }
.field.invalid small.err { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e05656; }
.form-note { font-size: .85rem; color: var(--muted); }
.form-ok { background: #e6f6ef; color: #1c7a4f; border-radius: 14px; padding: 14px 18px; font-weight: 600; display: none; }
.form-ok.show { display: block; }

/* contact info cards */
.contact-card { display: flex; gap: 16px; align-items: center; background: #fff; padding: 18px; border-radius: var(--r-sm); box-shadow: var(--shadow-sm); transition: transform .3s; }
.contact-card:hover { transform: translateX(6px); }
.contact-card .c-ico { width: 50px; height: 50px; flex: 0 0 auto; border-radius: 14px; background: var(--grad); color: #fff; display: grid; place-items: center; }
.contact-card h4 { font-family: var(--f-head); color: var(--dark); font-size: 1rem; }
.contact-card p { font-size: .88rem; margin: 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item { background: #fff; border-radius: var(--r-sm); box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; font-family: var(--f-head); font-weight: 700; color: var(--dark); font-size: 1.02rem; }
.faq-q .chev { transition: transform .3s; color: var(--teal); flex: 0 0 auto; }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a p { padding: 0 24px 20px; font-size: .95rem; }

/* ---------- Banner / CTA ---------- */
.banner { position: relative; overflow: hidden; border-radius: var(--r-lg); background: var(--grad-deep); color: #fff; padding: clamp(32px, 5vw, 60px); }
.banner.with-img { display: grid; grid-template-columns: 1.3fr 1fr; gap: 32px; align-items: center; }
.banner h2 { color: #fff; }
.banner p { color: rgba(255, 255, 255, .88); }
.banner .strip { display: flex; gap: 10px; }
.banner .strip img { width: 100%; height: 110px; object-fit: cover; border-radius: 12px; }
.banner__deco { position: absolute; inset: 0; opacity: .15; pointer-events: none; }

/* Newsletter inline */
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; max-width: 480px; }
.newsletter-form input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 999px; border: none; font-size: 1rem; }
.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 4px rgba(255, 255, 255, .25); }

/* ---------- Footer ---------- */
.site-footer { background: var(--grad-deep); color: #fff; padding-block: clamp(48px, 6vw, 72px) 28px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: #fff; }
.site-footer .brand .b1 { color: #fff; }
.site-footer p { color: rgba(255, 255, 255, .8); font-size: .92rem; margin-top: 14px; }
.footer-grid h4 { color: #fff; font-family: var(--f-head); font-size: 1rem; margin-bottom: 16px; }
.footer-grid a { color: rgba(255, 255, 255, .8); display: block; padding: 5px 0; font-size: .92rem; transition: color .2s, padding-left .2s; }
.footer-grid a:hover { color: #fff; padding-left: 5px; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255, 255, 255, .14); display: grid; place-items: center; transition: all .25s; }
.footer-social a:hover { background: #fff; color: var(--teal); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .18); margin-top: 44px; padding-top: 22px; text-align: center; font-size: .85rem; color: rgba(255, 255, 255, .7); }

/* ---------- Floating deco + scroll reveal ---------- */
.floaty { position: absolute; color: rgba(0, 122, 140, .18); pointer-events: none; z-index: 0; animation: floaty 7s ease-in-out infinite; }
.floaty svg { width: 100%; height: 100%; }
@keyframes floaty { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(-22px) rotate(8deg); } }

.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s ease, transform .7s ease, filter .7s ease; filter: blur(4px); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal.d1 { transition-delay: .08s; } .reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; } .reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .blog-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; grid-template-columns: repeat(3, 1fr); display: grid; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 860px) {
  .nav, .social { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .nav-toggle { display: block; }
  .nav.open {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border-radius: var(--r); padding: 16px; box-shadow: var(--shadow-lg); gap: 4px; margin-top: 8px;
  }
  .nav.open a { color: var(--dark); width: 100%; }
  .split { grid-template-columns: 1fr; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .banner.with-img { grid-template-columns: 1fr; }
  .wood-sign { display: none; }
  .sidebar { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .hero { min-height: 88vh; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  body { font-size: 16px; }
}

/* ---------- Video-Lightbox (Popup-Player) ---------- */
.card.video-card, .short { cursor: pointer; }
.vlightbox { position: fixed; inset: 0; z-index: 200; background: rgba(16, 51, 59, .94); display: none; align-items: center; justify-content: center; padding: 4vw; }
.vlightbox.open { display: flex; animation: fade .3s ease; }
.vlightbox video { max-width: min(92vw, 460px); max-height: 86vh; border-radius: var(--r-sm); box-shadow: var(--shadow-lg); background: #000; }
.vlb-close { position: absolute; top: 22px; right: 22px; color: #fff; width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, .14); display: grid; place-items: center; transition: background .25s; }
.vlb-close:hover { background: rgba(255, 255, 255, .28); }

/* ---------- Reise-Weltkarte ---------- */
.worldmap { position: relative; max-width: 1000px; margin: 0 auto; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); background: #E7F4F7; }
.worldmap__img { width: 100%; display: block; }
.worldmap__routes { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.route { fill: none; stroke-linecap: round; }
.route--done { stroke: var(--teal-2); stroke-width: 3.5; stroke-dasharray: 6 10; animation: dashflow 2.6s linear infinite; }
.route--next { stroke: #f2941f; stroke-width: 3; stroke-dasharray: 1.5 11; animation: dashflow 2.6s linear infinite; }

.pin { position: absolute; transform: translate(-50%, -50%); z-index: 3; }
.pin__dot { display: block; width: 15px; height: 15px; border-radius: 50%; background: var(--teal); border: 3px solid #fff; box-shadow: 0 2px 8px rgba(16, 51, 59, .35); position: relative; transition: transform .2s ease; }
.pin__dot::before { content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid var(--teal); animation: pulse 2.2s infinite; }
.pin__label { position: absolute; left: 50%; bottom: calc(100% + 9px); transform: translateX(-50%); white-space: nowrap; background: #fff; color: var(--dark); font-family: var(--f-head); font-weight: 700; font-size: .8rem; padding: 5px 12px; border-radius: 999px; box-shadow: var(--shadow); opacity: 0; pointer-events: none; transition: opacity .2s ease, transform .2s ease; }
.pin__label::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); border: 6px solid transparent; border-top-color: #fff; }
.pin:hover { z-index: 6; }
.pin:hover .pin__dot { transform: scale(1.25); }
.pin:hover .pin__label { opacity: 1; transform: translateX(-50%) translateY(-2px); }
.pin--next .pin__dot { background: #f2941f; }
.pin--next .pin__dot::before { border-color: #f2941f; }
.pin--next .pin__label { opacity: 1; background: linear-gradient(135deg, #ffa63d, #f2770f); color: #fff; }
.pin--next .pin__label::after { border-top-color: #f2770f; }

.map-legend { display: inline-flex; align-items: center; gap: 8px; margin: 0 14px; font-weight: 600; font-size: .9rem; color: var(--muted); }
.map-legend .ldot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; }
.map-legend .ldot--done { background: var(--teal); }
.map-legend .ldot--next { background: #f2941f; }

.map-stops { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 26px; }
.stop-chip { display: inline-flex; align-items: center; gap: 6px; font-family: var(--f-head); font-weight: 600; font-size: .9rem; padding: 8px 16px; border-radius: 999px; background: #fff; color: var(--dark); border: 1.5px solid var(--line); box-shadow: var(--shadow-sm); transition: all .25s ease; }
.stop-chip:hover { transform: translateY(-3px); border-color: var(--teal-2); color: var(--teal); }
.stop-chip--next { background: linear-gradient(135deg, #ffa63d, #f2770f); color: #fff; border-color: transparent; }
.stop-chip--next:hover { color: #fff; }

@media (max-width: 560px) {
  .pin__label { font-size: .68rem; padding: 3px 8px; }
  .pin__dot { width: 12px; height: 12px; }
}

/* ---------- Marken-Logo (Header) ---------- */
.brand-logo { height: 46px; width: auto; display: block; }
.site-header:not(.scrolled) .brand-logo { filter: drop-shadow(0 2px 7px rgba(0, 0, 0, .3)); }
@media (max-width: 560px) { .brand-logo { height: 38px; } }

/* ---------- „Als Nächstes reist Bea nach …" ---------- */
.next-trip { display: grid; grid-template-columns: 1fr 1fr; background: var(--grad-deep); color: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.next-trip__media { position: relative; min-height: 340px; }
.next-trip__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.next-trip__body { padding: clamp(28px, 4vw, 54px); display: flex; flex-direction: column; justify-content: center; }
.next-trip__body .eyebrow { color: #9fe4ef; }
.next-trip__body h2 { color: #fff; font-size: clamp(1.4rem, 2.4vw, 2rem); margin: 10px 0 2px; }
.next-trip__dest { font-family: var(--f-head); font-weight: 800; font-size: clamp(2.2rem, 4.5vw, 3.2rem); line-height: 1; color: #7fe0ee; margin: 2px 0 14px; display: flex; align-items: center; gap: 12px; }
.next-trip__body p { color: rgba(255, 255, 255, .9); max-width: 34em; }
.next-trip__cta { margin-top: 22px; }
.next-trip .badge { top: 18px; left: 18px; z-index: 2; }
@media (max-width: 760px) {
  .next-trip { grid-template-columns: 1fr; }
  .next-trip__media { min-height: 220px; }
}

/* ---------- Große, immersive Abenteuerkarten ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.adv-card { position: relative; display: block; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 10; transition: transform .35s ease, box-shadow .35s ease; }
.adv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.adv-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2, .7, .2, 1); }
.adv-card:hover > img { transform: scale(1.06); }
.adv-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(16, 51, 59, 0) 38%, rgba(16, 51, 59, .55) 68%, rgba(16, 51, 59, .88) 100%); z-index: 1; }
.adv-card__content { position: absolute; inset: auto 0 0 0; padding: clamp(20px, 3vw, 32px); z-index: 2; color: #fff; }
.adv-card__content h3 { color: #fff; font-size: clamp(1.3rem, 2.2vw, 1.75rem); display: flex; align-items: center; gap: 10px; }
.adv-card__content p { color: rgba(255, 255, 255, .92); margin-top: 6px; font-size: 1rem; max-width: 32em; }
.adv-card__link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; font-family: var(--f-head); font-weight: 700; font-size: .95rem; color: #fff; }
.adv-card__link svg { width: 17px; transition: transform .25s ease; }
.adv-card:hover .adv-card__link svg { transform: translateX(5px); }
.adv-card .badge { z-index: 3; }
@media (max-width: 860px) { .adv-grid { grid-template-columns: 1fr; } }

/* ---------- Reisetagebuch ---------- */
.diary { background: #fff; border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.diary:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.diary__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.diary__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2, .7, .2, 1); }
.diary:hover .diary__media img { transform: scale(1.06); }
.diary__date { position: absolute; top: 14px; left: 14px; font-family: var(--f-hand); font-weight: 700; font-size: 1.3rem; line-height: 1; color: #fff; background: var(--grad); padding: 7px 16px 5px; border-radius: 999px; box-shadow: var(--shadow-sm); transform: rotate(-3deg); }
.diary__body { padding: 22px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.diary__body h3 { color: var(--teal); display: flex; align-items: center; gap: 8px; font-size: 1.1rem; }
.diary__body p { font-size: .95rem; }
.diary__sign { font-family: var(--f-hand); color: var(--teal-2); font-size: 1.5rem; font-weight: 700; margin-top: 6px; }

/* ============ Animationen (Reise-Deko, Hero, Mikro) ============ */

/* Ken-Burns-Zoom auf Hero-Bildern */
@keyframes kenburns { from { transform: scale(1); } to { transform: scale(1.12) translate(-1.5%, -1.5%); } }
.hero__bg img { animation: kenburns 22s ease-in-out infinite alternate; }

/* Hero-Deko-Ebene (per JS eingefügt) */
.hero .container { position: relative; z-index: 2; }
.hero-deco { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 1; }
.hero-deco .flightline { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-deco .flightline path { animation: dashflow 2.8s linear infinite; }
@keyframes dashflow { to { stroke-dashoffset: -105; } }

/* Papierflieger fliegt durch den Hero */
.hero-deco .plane { position: absolute; top: 34%; left: 0; font-size: 24px; color: #fff; opacity: 0; text-shadow: 0 2px 6px rgba(0,0,0,.25); animation: planefly 17s linear infinite; }
@keyframes planefly {
  0% { transform: translate(-10vw, 0) rotate(8deg); opacity: 0; }
  10% { opacity: .9; }
  50% { transform: translate(50vw, -70px) rotate(-5deg); }
  90% { opacity: .9; }
  100% { transform: translate(115vw, -150px) rotate(6deg); opacity: 0; }
}

/* Schwebende Herzen */
.hero-deco .fheart { position: absolute; bottom: -24px; color: rgba(255,255,255,.55); animation-name: floatUp; animation-timing-function: linear; animation-iteration-count: infinite; }
@keyframes floatUp {
  0% { transform: translateY(0) scale(.7) rotate(0); opacity: 0; }
  12% { opacity: .75; }
  100% { transform: translateY(-72vh) scale(1.1) rotate(20deg); opacity: 0; }
}

/* Button-Glanz beim Hover */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; width: 40%; pointer-events: none; background: linear-gradient(100deg, transparent, rgba(255,255,255,.4), transparent); transform: translateX(-260%) skewX(-18deg); }
.btn-primary:hover::after { animation: btnshine .85s ease; }
@keyframes btnshine { to { transform: translateX(420%) skewX(-18deg); } }

/* Sanft wogende Wellen */
.wave svg { animation: wavebob 6.5s ease-in-out infinite; }
@keyframes wavebob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }

/* Schlagende Herz-Akzente */
.heart, .section-head .heart, .card__body h3 .heart { display: inline-block; animation: heartbeat 2.6s ease-in-out infinite; transform-origin: center; }
@keyframes heartbeat { 0%, 40%, 100% { transform: scale(1); } 12% { transform: scale(1.28); } 26% { transform: scale(1.05); } }

/* reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; }
  .hero-deco { display: none; }
}
