/* ═══════════════════════════════════════════
   BALANCE-VISIONÄRE — Grundpfeiler-Seiten
   Gemeinsames Stylesheet · Stand August 2026
   ═══════════════════════════════════════════ */

:root {
  --gold: #B4821A;
  --gold-light: #D4A84B;
  --cream: #FAF7F2;
  --dark: #1C1C1A;
  --mid: #5C5A55;
  --light: #F0EBE1;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── HEADER ── */
header {
  position: sticky; top: 0; z-index: 99;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 0.5px solid rgba(180,130,26,0.15);
}
.header-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 2rem;
}
.header-logo img { height: 44px; width: auto; mix-blend-mode: multiply; }
.header-nav { display: flex; align-items: center; gap: 2rem; }
.header-nav a {
  font-size: 15px; font-weight: 400; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--mid); transition: color 0.2s;
}
.header-nav a:hover { color: var(--gold); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.3rem; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--dark); }
.mobile-nav {
  display: none; flex-direction: column; gap: 0.8rem; padding: 1.2rem 2rem;
  background: var(--cream); border-bottom: 0.5px solid rgba(180,130,26,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 16px; font-weight: 400; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--mid);
}

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--gold); color: #fff;
  padding: 0.85rem 2rem; border-radius: 2px;
  font-family: var(--sans); font-size: 15px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.22s; border: none; cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-light); transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(180,130,26,0.3);
  color: #fff;
}
.btn-gold-sm { padding: 0.5rem 1.2rem; font-size: 14px; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: transparent; color: #fff;
  padding: 0.85rem 2rem; border-radius: 2px;
  font-family: var(--sans); font-size: 15px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; transition: all 0.22s;
  border: 1px solid rgba(255,255,255,0.45);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.75); color: #fff; }
.link-arrow {
  font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(180,130,26,0.3); padding-bottom: 1px;
  display: inline-block;
}
.link-arrow:hover { border-color: var(--gold); }

/* ── GRUNDPFEILER-NAVIGATOR ── */
.pfeiler-nav {
  background: var(--dark);
  padding: 0; overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.pfeiler-nav::-webkit-scrollbar { display: none; }
.pfeiler-nav-inner {
  max-width: 960px; margin: 0 auto;
  display: flex; align-items: stretch; justify-content: center;
  min-width: max-content;
}
.pfeiler-nav a {
  display: flex; align-items: center; gap: 0.45rem;
  padding: 0.85rem 1.1rem;
  font-size: 14px; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(250,247,242,0.6);
  transition: all 0.2s; white-space: nowrap;
  border-bottom: 2px solid transparent;
  position: relative;
}
.pfeiler-nav a:hover { color: rgba(250,247,242,0.9); }
.pfeiler-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.pfeiler-nav a .pn-icon { font-size: 1rem; }
.pfeiler-nav-divider {
  width: 0.5px; background: rgba(250,247,242,0.1);
  margin: 0.5rem 0; flex-shrink: 0;
}

/* ── HERO ── */
.hero {
  position: relative; min-height: 520px;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(28,28,26,0.08) 0%, rgba(28,28,26,0.48) 55%, rgba(28,28,26,0.78) 100%);
}
.hero-content {
  position: relative; z-index: 2; text-align: center;
  max-width: 780px; padding: 4rem 2rem;
}
.hero h1 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2.4rem, 7vw, 6.5rem);
  color: #fff; line-height: 1.15; margin-bottom: 1.2rem;
}
.hero h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.05rem, 1.8vw, 1.375rem);
  color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 2rem;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── GOLD STRIP ── */
.strip {
  background: var(--gold);
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; padding: 0.85rem 2rem;
}
.strip-item {
  font-size: 14px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: #fff;
  display: flex; align-items: center; gap: 0.5rem;
}
.strip-item::before { content: '◆'; font-size: 0.38rem; opacity: 0.7; }

/* ── SECTIONS ── */
.container { max-width: 960px; margin: 0 auto; padding: 0 2rem; }
.section-cream { background: var(--cream); padding: 4.5rem 0; }
.section-light { background: var(--light); padding: 4.5rem 0; }
.section-white { background: #fff; padding: 4.5rem 0; }
.section-center { text-align: center; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-size: 14px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow-c { justify-content: center; }
.eyebrow-c::after { content: ''; width: 22px; height: 1px; background: var(--gold); flex-shrink: 0; }

h2.st {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.625rem);
  color: var(--dark); line-height: 1.25; margin-bottom: 1.2rem;
}
h2.st em { font-style: italic; color: var(--gold); }

.section-intro {
  font-size: 16px; line-height: 1.8; color: var(--mid);
  max-width: 620px; margin: 0 auto 2.5rem;
}
.section-intro.center { text-align: center; }

.intro-text {
  font-size: 16px; line-height: 1.85; color: var(--mid);
  max-width: 680px; margin: 0 auto; text-align: center;
}
.intro-text p + p { margin-top: 1.2rem; }

/* ── INSIGHT CARDS ── */
.insight-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem;
}
.insight-card {
  background: #fff; border-radius: 3px; padding: 2rem 1.5rem;
  border: 0.5px solid rgba(180,130,26,0.12); transition: all 0.22s;
}
.insight-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,28,26,0.08);
  border-color: rgba(180,130,26,0.28);
}
.insight-icon { font-size: 1.75rem; margin-bottom: 1rem; display: block; }
.insight-card h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.25rem; color: var(--dark);
  margin-bottom: 0.6rem; line-height: 1.35;
}
.insight-card p { font-size: 16px; line-height: 1.7; color: var(--mid); }

/* ── SPLIT GRID ── */
.split-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; align-items: center;
}
.split-text .tag,
.split-text .eyebrow {
  font-size: 14px; font-weight: 500; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.5rem;
}
.split-text h3 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.4rem; color: var(--dark);
  margin-bottom: 0.6rem; line-height: 1.35;
}
.split-text p {
  font-size: 16px; line-height: 1.85; color: var(--mid); margin-bottom: 1rem;
}
.split-text p:last-of-type { margin-bottom: 1.5rem; }
.split-img img {
  width: 100%; height: 420px; object-fit: cover; border-radius: 3px;
}
.split-reverse .split-text { order: 2; }
.split-reverse .split-img { order: 1; }

/* ── MINI-FACT BAR ── */
.fact-bar {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 780px; margin: 0 auto; text-align: center;
}
.fact-item { padding: 1.5rem 1rem; }
.fact-number {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--gold); line-height: 1;
  margin-bottom: 0.4rem;
}
.fact-label {
  font-size: 14px; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--mid); line-height: 1.5;
}

/* ── ZITAT ── */
.zitat { padding: 0; }
.zitat-inner {
  background: linear-gradient(135deg, #1C1C1A 0%, #2C2416 50%, #1C1C1A 100%);
  padding: 4.5rem 2rem; text-align: center;
}
.zitat-inner blockquote {
  font-family: var(--serif); font-size: clamp(1.1rem, 2vw, 1.5rem);
  font-style: italic; font-weight: 300; color: #fff; line-height: 1.8;
  max-width: 680px; margin: 0 auto 1.5rem;
}
.zitat-inner cite {
  font-family: var(--sans); font-size: 14px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold-light); font-style: normal;
}

/* ── CROSS-LINK GRID ── */
.crosslink-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.crosslink-card {
  background: #fff; border-radius: 3px; padding: 1.6rem 1.4rem;
  border: 0.5px solid rgba(180,130,26,0.12); transition: all 0.22s;
  text-align: center; text-decoration: none; display: block;
}
.crosslink-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,28,26,0.08);
  border-color: var(--gold);
}
.crosslink-icon { font-size: 1.8rem; margin-bottom: 0.8rem; display: block; }
.crosslink-card h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.15rem; color: var(--dark); margin-bottom: 0.4rem;
}
.crosslink-card p {
  font-size: 15px; line-height: 1.7; color: var(--mid); margin-bottom: 0.9rem;
}

/* ── CTA FINALE ── */
.cta-finale {
  position: relative; padding: 5rem 2rem; text-align: center;
  background-size: cover; background-position: center; overflow: hidden;
}
.cta-finale-overlay {
  position: absolute; inset: 0;
  background: rgba(244,240,232,0.82);
}
.cta-finale-content {
  position: relative; z-index: 2; max-width: 620px; margin: 0 auto;
}
.cta-finale h2 {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(1.7rem, 3.2vw, 2.625rem);
  color: var(--dark); line-height: 1.3; margin-bottom: 1rem;
}
.cta-finale h2 em { font-style: italic; color: var(--gold); }
.cta-finale p {
  font-size: 16px; line-height: 1.8; color: var(--mid); margin-bottom: 2rem;
}

/* ── ANGEBOTS-TEASER ── */
.angebote-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 960px; margin: 2.5rem auto 0;
}
.angebot-teaser {
  background: #fff; border-radius: 3px; padding: 1.8rem 1.5rem;
  border: 0.5px solid rgba(180,130,26,0.12); transition: all 0.22s;
  display: block; text-decoration: none; text-align: left;
}
.angebot-teaser:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(28,28,26,0.08);
  border-color: var(--gold);
}
.angebot-teaser .tag {
  font-size: 14px; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem;
  display: block;
}
.angebot-teaser h4 {
  font-family: var(--serif); font-weight: 400;
  font-size: 1.2rem; color: var(--dark); margin-bottom: 0.4rem;
}
.angebot-teaser p {
  font-size: 15px; line-height: 1.75; color: var(--mid); margin-bottom: 1rem;
}

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(250,247,242,0.7); }
.footer-top {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  padding: 3.5rem 2rem 2.5rem;
}
.fc h4 {
  font-family: var(--sans); font-size: 14px; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.fc p, .fc a {
  font-size: 15px; line-height: 1.9; display: block;
  color: rgba(250,247,242,0.6); transition: color 0.2s;
}
.fc a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 0.5px solid rgba(250,247,242,0.08);
  padding: 1.5rem 2rem; text-align: center;
}
.footer-bottom p { font-size: 14px; color: rgba(250,247,242,0.4); letter-spacing: 0.05em; }
.footer-bottom nav { margin-top: 0.5rem; }
.footer-bottom nav a {
  font-size: 14px; color: rgba(250,247,242,0.4);
  margin: 0 0.8rem; transition: color 0.2s;
}
.footer-bottom nav a:hover { color: var(--gold-light); }
.footer-disc {
  padding: 1.5rem 2rem 2.2rem; text-align: center;
  border-top: 0.5px solid rgba(250,247,242,0.05);
}
.footer-disc p {
  font-size: 12px; line-height: 1.7; color: rgba(250,247,242,0.32);
  max-width: 860px; margin: 0 auto 0.8rem;
}
.footer-disc p:last-child { margin-bottom: 0; }
.footer-disc strong { color: rgba(250,247,242,0.5); font-weight: 500; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Startzustand nur setzen, wenn JS die Animation auch ausführen kann.
   Die Klasse .js vergibt ein Inline-Skript im <head>. Ohne JS oder ohne
   IntersectionObserver bleibt der Inhalt sichtbar. */
.js .animate-on-scroll { opacity: 0; transform: translateY(20px); }
.fu { animation: fadeUp 0.7s ease both; }
.d1 { animation-delay: 0.1s; }
.d2 { animation-delay: 0.25s; }
.d3 { animation-delay: 0.4s; }
.d4 { animation-delay: 0.55s; }

/* Fallback bei reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
  .js .animate-on-scroll { opacity: 1 !important; transform: none !important; }
  .fu { animation: none !important; }
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */

/* ── TABLET (max 900px) ── */
@media (max-width: 900px) {
  .header-inner { padding: 0.7rem 1.5rem; }
  .insight-grid { grid-template-columns: repeat(2, 1fr); }
  .crosslink-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .angebote-row { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .split-grid { gap: 2rem; }
  .split-img img { height: 340px; }
}

/* ── TABLET KLEIN (max 768px) ── */
@media (max-width: 768px) {
  .header-nav { display: none; }
  .burger { display: flex; }
  .section-cream, .section-light, .section-white { padding: 3.5rem 0; }
  .container { padding: 0 1.5rem; }
  .hero { min-height: 460px; }
  .hero-content { padding: 3.5rem 1.5rem; }
  .zitat-inner { padding: 3.5rem 1.5rem; }
  .cta-finale { padding: 4rem 1.5rem; }
  .insight-grid { grid-template-columns: 1fr; }
  .crosslink-grid { grid-template-columns: 1fr; }
  .angebote-row { grid-template-columns: 1fr; max-width: 480px; }
  .fact-bar { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .fact-item { padding: 1rem 0.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 1.8rem; padding: 3rem 1.5rem 2rem; }
  .pfeiler-nav-inner { justify-content: flex-start; }
}

/* ── SMARTPHONE (max 640px) ── */
@media (max-width: 640px) {
  .section-cream, .section-light, .section-white { padding: 3rem 0; }
  .container { padding: 0 1.2rem; }
  .header-inner { padding: 0.6rem 1.2rem; }
  .header-logo img { height: 40px; }
  .mobile-nav { padding: 1rem 1.2rem; }
  .mobile-nav a { font-size: 15px; }

  .hero { min-height: 400px; }
  .hero-content { padding: 3rem 1.2rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; margin-bottom: 1.6rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; gap: 0.8rem; }
  .hero-buttons .btn-gold,
  .hero-buttons .btn-ghost { width: 100%; justify-content: center; padding: 0.85rem 1rem; font-size: 14px; }

  .strip { gap: 0.7rem; padding: 0.75rem 1.2rem; }
  .strip-item { font-size: 12px; letter-spacing: 0.08em; gap: 0.35rem; }
  .strip-item::before { font-size: 0.3rem; }

  .pfeiler-nav a { padding: 0.75rem 0.85rem; font-size: 12px; letter-spacing: 0.06em; gap: 0.35rem; }
  .pfeiler-nav a .pn-icon { font-size: 0.9rem; }

  .eyebrow { font-size: 14px; letter-spacing: 0.16em; }
  .intro-text, .section-intro { font-size: 15px; }
  .insight-card { padding: 1.6rem 1.3rem; }
  .insight-card p { font-size: 15px; }

  .split-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .split-img { order: -1 !important; }
  .split-text { order: 0 !important; }
  .split-img img { height: 260px; }
  .split-text p { font-size: 15px; }

  .fact-bar { grid-template-columns: 1fr; gap: 0.4rem; }
  .fact-item { padding: 0.9rem; }
  .fact-label { font-size: 14px; }

  .zitat-inner { padding: 3rem 1.2rem; }
  .zitat-inner cite { font-size: 13px; }

  .crosslink-card p { font-size: 15px; }
  .angebot-teaser { padding: 1.5rem 1.3rem; }
  .angebot-teaser p { font-size: 15px; }

  .cta-finale { padding: 3rem 1.2rem; }
  .cta-finale p { font-size: 15px; }

  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; padding: 2.5rem 1.2rem 1.5rem; }
  .footer-bottom { padding: 1.2rem 1.2rem; }
  .footer-bottom nav a { margin: 0 0.5rem; }
  .footer-disc { padding: 1.2rem 1.2rem 1.8rem; }
}

/* ── KLEINES SMARTPHONE (max 420px) ── */
@media (max-width: 420px) {
  .container { padding: 0 1rem; }
  .section-cream, .section-light, .section-white { padding: 2.5rem 0; }
  .header-logo img { height: 36px; }
  .hero { min-height: 350px; }
  .hero-content { padding: 2.5rem 1rem; }
  .hero h1 { font-size: 1.9rem; }
  .hero-sub { font-size: 0.95rem; }
  .strip-item { font-size: 11px; }
  .pfeiler-nav a { padding: 0.7rem 0.7rem; font-size: 11px; }
  .insight-card { padding: 1.4rem 1.1rem; }
  .split-img img { height: 210px; }
  .zitat-inner { padding: 2.5rem 1rem; }
  .cta-finale { padding: 2.5rem 1rem; }
  .angebot-teaser { padding: 1.3rem 1.1rem; }
}

/* SOCIAL-LINKS (reine Verlinkung, Icons inline — keine externen Requests) */
.bv-social { display:flex; gap:0.7rem; align-items:center; margin-top:1rem; }
.bv-social a {
  display:inline-flex; align-items:center; justify-content:center;
  width:36px; height:36px; border-radius:50%;
  color:rgba(250,247,242,0.6);
  border:0.5px solid rgba(250,247,242,0.18);
  text-decoration:none; transition:color .2s, border-color .2s, transform .2s;
}
.bv-social a:hover { color:var(--gold-light); border-color:var(--gold-light); transform:translateY(-2px); }
.bv-social a:focus-visible { outline:2px solid var(--gold-light); outline-offset:2px; }
