/* ════════════════════════════════════════════════
   PASCAL VOGGENHUBER — PERSONAL BRAND HOMEPAGE
   Navy + Gold + Jost · Premium · Personal · Warm
   ════════════════════════════════════════════════ */

/* ── Self-hosted Fonts (replaces Google Fonts blocking request) ── */
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/jost-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/jost-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/jost-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Jost';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('assets/fonts/jost-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/open-sans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/open-sans-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/open-sans-600.woff2') format('woff2');
}

/* ─────────────  TOKENS  ───────────── */
:root {
  /* Brand colors — extracted from pascal-voggenhuber.com */
  --navy: #0C2137;
  --navy-deep: #081726;
  --navy-soft: #143052;
  --gold: #C4942F;
  --gold-light: #D4A856;
  --gold-deep: #A57826;
  --gold-pale: #EDD8A2;

  --bg-light: #F5F7FA;
  --bg-cream: #FAFAF8;
  --white: #FFFFFF;

  --text-dark: #222222;
  --text-body: #4A4A4A;
  --text-mute: #888888;
  --line: rgba(12, 33, 55, 0.10);
  --line-light: rgba(255, 255, 255, 0.16);

  --jost: 'Jost', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --opensans: 'Open Sans', -apple-system, system-ui, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --max: 1240px;
  --max-narrow: 920px;

  --shadow-card: 0 2px 8px rgba(12, 33, 55, 0.04), 0 12px 32px rgba(12, 33, 55, 0.06);
  --shadow-card-hover: 0 4px 12px rgba(12, 33, 55, 0.06), 0 24px 50px rgba(12, 33, 55, 0.12);
  --shadow-image: 0 30px 70px rgba(12, 33, 55, 0.25);
}

/* ─────────────  RESET  ───────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--opensans);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--text-dark); }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ─────────────  CONTAINERS  ───────────── */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ─────────────  TYPOGRAPHY  ───────────── */
.eyebrow {
  display: inline-block;
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  position: relative;
  padding-left: 32px;
}
.eyebrow::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 22px; height: 1.5px;
  background: var(--gold);
  transform: translateY(-50%);
}
.eyebrow-light { color: var(--gold-light); }
.eyebrow-light::before { background: var(--gold-light); }

.section-h2 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-bottom: 24px;
}
.section-h2--light { color: var(--white); }
.section-h2 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.section-h2--light em { color: var(--gold-light); }

.section-sub {
  font-family: var(--opensans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 600px;
}

/* Gold underline brushstroke style — allows wrapping on narrow screens */
.gold-underline {
  position: relative;
  display: inline;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' fill='none' stroke='%23C4942F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 7 Q75 13 150 7 T296 5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 100% 8px;
  padding-bottom: 12px;
}
/* For wider screens — single-line emphasis with crisp underline */
@media (min-width: 769px) {
  .gold-underline {
    display: inline-block;
    white-space: nowrap;
    padding-bottom: 0;
  }
  .gold-underline::after {
    content: '';
    position: absolute;
    left: 0; right: 0;
    bottom: -8px;
    height: 8px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' fill='none' stroke='%23C4942F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 7 Q75 13 150 7 T296 5'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  }
  .gold-underline {
    background: none;
  }
}
.gold-underline-light {
  display: block;
  width: 220px;
  height: 12px;
  margin-top: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' fill='none' stroke='%23D4A856' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 7 Q75 13 150 7 T296 5'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}

.gold-accent {
  color: var(--gold);
  font-style: italic;
}

/* ─────────────  LINKS & BUTTONS  ───────────── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--gold-deep);
  position: relative;
  padding-bottom: 4px;
  transition: color 300ms var(--ease);
}
.link-arrow::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 28px; height: 1.5px;
  background: var(--gold);
  transition: width 400ms var(--ease);
}
.link-arrow:hover { color: var(--gold); }
.link-arrow:hover::after { width: 100%; }
.link-arrow .arrow {
  transition: transform 400ms var(--ease);
}
.link-arrow:hover .arrow { transform: translateX(5px); }
.link-arrow-light { color: var(--white); }
.link-arrow-light::after { background: var(--gold-light); }
.link-arrow-light:hover { color: var(--gold-light); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: all 350ms var(--ease);
  cursor: pointer;
  border: 1.5px solid transparent;
  position: relative;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 148, 47, 0.35);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--gold);
  border-color: var(--gold);
}
.btn-large { padding: 20px 44px; font-size: 15px; }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ─────────────  REVEAL ANIMATIONS  ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 850ms var(--ease), transform 850ms var(--ease);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ─────────────  TOP UTILITY BAR  ───────────── */
.topbar {
  background: var(--gold);
  color: var(--white);
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 102;
}
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  gap: 28px;
  width: 100%;
}
.topbar a {
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: opacity 300ms var(--ease);
}
.topbar a:hover { opacity: 0.75; }
.topbar-login { font-weight: 600; }

/* ─────────────  HEADER / LOGO  ───────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  padding: 20px 0;
  transition: padding 400ms var(--ease), box-shadow 400ms var(--ease);
}
.site-header.is-stuck {
  padding: 14px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
.header-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  transition: opacity 300ms var(--ease);
}
.logo-mark:hover { opacity: 0.85; }
.logo-img {
  display: block;
  height: 50px;
  width: auto;
  user-select: none;
  -webkit-user-drag: none;
}
.is-stuck .logo-img { height: 44px; transition: height 400ms var(--ease); }
.logo-mark--footer .logo-img { height: 56px; }

/* Legacy fragments (kept in case old logo HTML survives anywhere) */
.logo-pascal, .logo-voggenhuber { display: inline-block; }
.logo-fleur {
  display: inline-flex;
  width: 22px;
  height: 28px;
  color: var(--gold);
  align-items: center;
  justify-content: center;
}
.logo-fleur svg { width: 100%; height: 100%; }

.nav-desktop {
  display: flex;
  gap: 36px;
}
.nav-desktop a {
  font-family: var(--jost);
  font-size: 15px;
  font-weight: 400;
  color: var(--white);
  position: relative;
  padding: 6px 0;
  transition: color 350ms var(--ease);
}
.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 400ms var(--ease);
}
.nav-desktop a:hover { color: var(--gold-light); }
.nav-desktop a:hover::after { width: 100%; }

.nav-toggle {
  display: none;
  width: 32px; height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.nav-toggle span {
  width: 22px; height: 1.5px;
  background: var(--white);
  transition: all 400ms var(--ease);
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 20px 32px 28px;
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.nav-mobile a {
  font-family: var(--jost);
  font-size: 18px;
  font-weight: 400;
  color: var(--white);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-mobile a:hover { color: var(--gold-light); }
.nav-mobile-cta {
  margin-top: 12px;
  background: var(--gold);
  text-align: center;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  padding: 18px 0 !important;
}

/* ════════════════════════════════════════════════
   HERO — COVER STORY · CINEMATIC EDITORIAL
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: calc(100vh - 36px);
  background: var(--navy-deep);
  color: var(--white);
  padding: 60px 0 80px;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}

/* ── Atmosphere layers ── */
.hero-atmosphere { position: absolute; inset: 0; z-index: 0; pointer-events: none; }

.hero-spotlight {
  position: absolute;
  top: -10%;
  left: 50%;
  width: 90%;
  height: 120%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse 50% 70% at 70% 35%, rgba(196,148,47,0.22) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 65% 50%, rgba(255,255,255,0.04) 0%, transparent 60%);
  filter: blur(20px);
  animation: spotlightBreath 12s ease-in-out infinite alternate;
}
@keyframes spotlightBreath {
  from { opacity: 0.85; transform: translateX(-50%) scale(1); }
  to   { opacity: 1;    transform: translateX(-50%) scale(1.06); }
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}
.hero-glow--1 {
  width: 480px; height: 480px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(196,148,47,0.35), transparent 60%);
  animation: glowDrift1 18s ease-in-out infinite alternate;
}
.hero-glow--2 {
  width: 380px; height: 380px;
  bottom: -80px; left: 10%;
  background: radial-gradient(circle, rgba(20,48,82,0.6), transparent 60%);
  animation: glowDrift2 20s ease-in-out infinite alternate;
}
@keyframes glowDrift1 {
  from { transform: translate(0,0); }
  to   { transform: translate(-40px, 30px); }
}
@keyframes glowDrift2 {
  from { transform: translate(0,0); }
  to   { transform: translate(50px, -20px); }
}

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.13;
  mix-blend-mode: overlay;
}

/* ── Golden particles drifting ── */
.hero-particles { position: absolute; inset: 0; }
.hero-particles span {
  position: absolute;
  width: 4px; height: 4px;
  background: var(--gold-light);
  border-radius: 50%;
  opacity: 0;
  box-shadow: 0 0 12px rgba(196,148,47,0.7);
}
.hero-particles span:nth-child(1)  { left: 12%; top: 80%; animation: floatUp 12s 0.5s ease-in infinite; }
.hero-particles span:nth-child(2)  { left: 22%; top: 90%; animation: floatUp 14s 2s ease-in infinite; }
.hero-particles span:nth-child(3)  { left: 33%; top: 75%; animation: floatUp 16s 4s ease-in infinite; }
.hero-particles span:nth-child(4)  { left: 45%; top: 95%; animation: floatUp 13s 1s ease-in infinite; }
.hero-particles span:nth-child(5)  { left: 58%; top: 85%; animation: floatUp 17s 3s ease-in infinite; }
.hero-particles span:nth-child(6)  { left: 64%; top: 92%; animation: floatUp 15s 5s ease-in infinite; }
.hero-particles span:nth-child(7)  { left: 72%; top: 78%; animation: floatUp 11s 6s ease-in infinite; }
.hero-particles span:nth-child(8)  { left: 80%; top: 88%; animation: floatUp 18s 2.5s ease-in infinite; }
.hero-particles span:nth-child(9)  { left: 88%; top: 82%; animation: floatUp 13s 7s ease-in infinite; width: 3px; height: 3px; }
.hero-particles span:nth-child(10) { left: 16%; top: 70%; animation: floatUp 19s 8s ease-in infinite; width: 3px; height: 3px; }
.hero-particles span:nth-child(11) { left: 50%; top: 80%; animation: floatUp 14s 9s ease-in infinite; width: 2px; height: 2px; }
.hero-particles span:nth-child(12) { left: 75%; top: 90%; animation: floatUp 16s 1.5s ease-in infinite; width: 5px; height: 5px; }

@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) translateX(0) scale(0.5); }
  10%  { opacity: 0.9; }
  90%  { opacity: 0.7; }
  100% { opacity: 0; transform: translateY(-380px) translateX(-30px) scale(1.2); }
}

/* ── Vertical brand strip ── */
.hero-vertical {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: left top;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  z-index: 3;
  white-space: nowrap;
}
.hero-vertical-dot { color: var(--gold); font-size: 7px; }

/* ── Main grid layout ── */
.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 60px;
  align-items: center;
  max-width: var(--max);
  width: 100%;
  margin: 0 auto;
  padding: 20px 32px 20px 80px;
}

/* ── LEFT: Text column ── */
.hero-text { padding-right: 12px; }

.hero-press {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.press-label {
  font-family: var(--jost);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  position: relative;
  padding-right: 18px;
}
.press-label::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  width: 12px; height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
}
.press-list {
  display: flex;
  align-items: center;
  gap: 18px;
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.75);
}
.press-list span { position: relative; }
.press-list span:not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -12px;
  color: var(--gold);
  opacity: 0.8;
  font-weight: 700;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--jost);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 28px;
}
.pulse-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  animation: pulseDot 2s ease-in-out infinite;
}
.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -5px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseDot {
  0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(196,148,47,0.6); }
  50%     { transform: scale(1.15); box-shadow: 0 0 0 6px rgba(196,148,47,0); }
}
@keyframes pulseRing {
  0%   { transform: scale(0.8); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

.hero-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(46px, 5.4vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-title-em {
  display: inline-block;
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  padding-right: 8px;
}
.hero-title-em::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -2px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 12' fill='none' stroke='%23C4942F' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 7 Q80 14 160 7 T316 5'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
  opacity: 0.85;
}

.hero-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  max-width: 320px;
}
.hero-divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 50%, transparent);
  opacity: 0.7;
}
.hero-divider-mark {
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
}

.hero-sub {
  font-family: var(--jost);
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.9);
  max-width: 520px;
  margin-bottom: 28px;
}
.hero-sub em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 500;
}

.hero-quote {
  position: relative;
  font-family: var(--jost);
  font-size: 17px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255,255,255,0.7);
  padding: 14px 0 14px 22px;
  margin-bottom: 40px;
  border-left: 2px solid var(--gold);
  max-width: 480px;
}
.hero-quote cite {
  display: block;
  margin-top: 6px;
  font-style: normal;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}
.hero-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 100%; height: 100%;
  background: linear-gradient(120deg, transparent 25%, rgba(255,255,255,0.35) 50%, transparent 75%);
  transition: left 700ms ease;
}
.hero-btn:hover::before { left: 120%; }
.hero-btn svg { transition: transform 400ms var(--ease); }
.hero-btn:hover svg { transform: translateX(4px); }

/* ── RIGHT: Cinematic Pascal visual ── */
.hero-visual {
  position: relative;
  height: 100%;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-photo-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 580px;
  max-height: 78vh;
  border: 1px solid rgba(196,148,47,0.25);
  background: linear-gradient(160deg, #0F2A47 0%, #08152A 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 60px 120px rgba(0,0,0,0.55),
    0 0 0 1px rgba(196,148,47,0.08),
    inset 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 8%;
  filter: contrast(1.05) brightness(0.97) saturate(1.02);
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
  backface-visibility: hidden;
  animation: kenBurns 26s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes kenBurns {
  from { transform: scale(1.0) translateZ(0); }
  to   { transform: scale(1.05) translateZ(0); }
}

.hero-photo-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 60% 30%, transparent 0%, rgba(8,15,26,0.4) 75%, rgba(8,15,26,0.85) 100%),
    linear-gradient(180deg, rgba(8,15,26,0.18) 0%, transparent 30%, transparent 60%, rgba(8,15,26,0.65) 100%);
  z-index: 1;
}

/* ── Floating badges (positioned relative to .hero-visual) ── */
.hero-visual { z-index: 2; }

.hero-badge {
  position: absolute;
  z-index: 6;
  background: rgba(8, 18, 32, 0.82);
  backdrop-filter: blur(16px) saturate(160%);
  -webkit-backdrop-filter: blur(16px) saturate(160%);
  border: 1px solid rgba(196,148,47,0.45);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--white);
  box-shadow:
    0 24px 60px rgba(0,0,0,0.5),
    0 0 0 1px rgba(0,0,0,0.2),
    inset 0 1px 0 rgba(255,255,255,0.06);
  animation: floatHover 6s ease-in-out infinite alternate;
  overflow: hidden;
  isolation: isolate;
}
@keyframes floatHover {
  from { transform: translateY(0); }
  to   { transform: translateY(-8px); }
}

.hero-badge--bestseller {
  top: 32px;
  left: -64px;
  animation-delay: 0s;
  padding-right: 26px;
}
.badge-number {
  font-family: var(--jost);
  font-weight: 600;
  font-style: italic;
  font-size: 60px;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}
.badge-number sup {
  font-size: 0.42em;
  vertical-align: super;
  margin-left: 2px;
  -webkit-text-fill-color: var(--gold);
}
.badge-label {
  font-family: var(--jost);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  line-height: 1.5;
  margin-top: 6px;
}

/* Sweeping shine across the bestseller badge — adds premium magic */
.badge-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  z-index: -1;
  animation: badgeShine 5s ease-in-out 2s infinite;
}
@keyframes badgeShine {
  0%   { left: -80%; }
  60%  { left: 140%; }
  100% { left: 140%; }
}

.hero-badge--rating {
  bottom: 36px;
  right: -36px;
  animation-delay: 3s;
}
.badge-stars {
  color: var(--gold-light);
  font-size: 14px;
  letter-spacing: 0.16em;
  line-height: 1;
  text-shadow: 0 0 12px rgba(196,148,47,0.5);
}
.badge-rating {
  font-family: var(--jost);
  font-style: italic;
  font-size: 28px;
  font-weight: 500;
  color: var(--white);
  margin-top: 6px;
  line-height: 1;
  letter-spacing: -0.01em;
}
.badge-rating em {
  color: rgba(255,255,255,0.5);
  font-size: 0.7em;
  margin-left: 2px;
}
.badge-source {
  font-family: var(--jost);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}

/* ── Press quote pill ── */
.hero-presspill {
  position: absolute;
  bottom: -24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 7;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  color: var(--navy-deep);
  padding: 13px 28px;
  font-family: var(--jost);
  font-style: italic;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.005em;
  white-space: nowrap;
  box-shadow:
    0 20px 50px rgba(196,148,47,0.45),
    0 0 0 1px rgba(255,255,255,0.2) inset;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.presspill-mark {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  line-height: 0.5;
  position: relative;
  top: 3px;
  color: var(--navy);
}

/* ── Decorative corner accents on photo ── */
.hero-corner {
  position: absolute;
  width: 28px; height: 28px;
  border: 2px solid var(--gold);
  z-index: 2;
}
.hero-corner--tr { top: 14px; right: 14px; border-left: none; border-bottom: none; }
.hero-corner--bl { bottom: 14px; left: 14px; border-right: none; border-top: none; }

/* ── Marquee ticker ── */
.hero-marquee {
  position: relative;
  z-index: 2;
  background: linear-gradient(180deg, transparent 0%, rgba(196,148,47,0.06) 100%);
  border-top: 1px solid rgba(196,148,47,0.18);
  border-bottom: 1px solid rgba(196,148,47,0.18);
  overflow: hidden;
  padding: 16px 0;
  margin-top: auto;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  white-space: nowrap;
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  animation: marquee 40s linear infinite;
}
.marquee-track span { display: inline-block; }
.marquee-track i {
  font-style: normal;
  color: var(--gold);
  font-size: 10px;
  flex-shrink: 0;
}
.marquee-track sup { font-size: 0.5em; vertical-align: super; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll hint — discreetly tucked left, not center ── */
.hero-scroll {
  position: absolute;
  bottom: 110px;
  left: 80px;
  transform: rotate(-90deg);
  transform-origin: left bottom;
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 5;
  pointer-events: none;
  flex-direction: row;
}
.hero-scroll span:first-child {
  font-family: var(--jost);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.scroll-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--gold-light) 100%);
  animation: scrollPulse 2.4s ease-in-out infinite;
  transform-origin: left;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleX(0.4); opacity: 0.3; }
  50%     { transform: scaleX(1); opacity: 0.9; }
}

/* ─────────────  TRUST BAR / BEKANNT AUS  ───────────── */
.trust-bar {
  background: var(--bg-light);
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.trust-bar .container {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-label {
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.trust-label::after { content: ':'; }
.trust-logos {
  display: flex;
  align-items: center;
  gap: 12px 32px;
  flex-wrap: wrap;
  flex: 1;
}
.tv-logo {
  font-family: var(--jost);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text-mute);
  opacity: 0.75;
  transition: opacity 350ms var(--ease), color 350ms var(--ease);
  font-size: 22px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}
.tv-logo:hover { opacity: 1; color: var(--text-dark); }
.tv-swr { font-style: italic; letter-spacing: -0.03em; }
.tv-swr::before { content: '»»'; font-weight: 800; margin-right: 3px; color: inherit; }
.tv-rtl { letter-spacing: 0.2em; font-weight: 700; }
.tv-prosieben {
  background: var(--text-mute);
  color: var(--bg-light) !important;
  padding: 2px 14px;
  font-style: italic;
  transform: skewX(-12deg);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.tv-prosieben:hover { background: var(--text-dark); }
.tv-sat::before {
  content: '●';
  margin-right: 6px;
  font-size: 14px;
  color: var(--text-mute);
}
.tv-zdf { font-weight: 800; letter-spacing: -0.03em; }
.tv-zdf::before { content: ''; }
.tv-zdf::after { content: ''; }
.tv-sep {
  width: 1px;
  height: 24px;
  background: var(--line);
  flex-shrink: 0;
}

/* ─────────────  INTRO / DU BIST HIER RICHTIG  ───────────── */
.intro {
  padding: 120px 0;
  background: var(--white);
}
.intro-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 100px;
  align-items: center;
}

/* Decorative image frame (reused) */
.image-frame {
  position: absolute;
  border: 2px solid var(--gold);
  pointer-events: none;
}

.intro-image {
  position: relative;
  aspect-ratio: 4/5;
  max-width: 480px;
}
.intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  box-shadow: var(--shadow-image);
  position: relative;
  z-index: 2;
}
.intro-image .image-frame {
  inset: 24px -24px -24px 24px;
  z-index: 1;
}

.intro-text .section-h2 {
  margin-bottom: 36px;
}
.intro-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}
.intro-list li {
  display: flex;
  gap: 18px;
  font-family: var(--opensans);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-body);
}
.bullet-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 148, 47, 0.12);
  color: var(--gold);
  border-radius: 50%;
  font-size: 12px;
  margin-top: 2px;
}

/* ─────────────  ABOUT PASCAL (DARK)  ───────────── */
.dark-section {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.about-pascal {
  padding: 140px 0;
}
.about-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.about-image {
  position: absolute;
  inset: 0;
  background: url('assets/bilder/pascal-graz.jpg') right center / cover no-repeat;
  filter: contrast(1.08) brightness(0.9);
}
.about-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12,33,55,0.97) 0%, rgba(12,33,55,0.88) 45%, rgba(12,33,55,0.4) 75%, rgba(12,33,55,0.2) 100%),
    radial-gradient(ellipse at 15% 50%, rgba(196,148,47,0.10) 0%, transparent 50%);
}
.about-pascal .container { position: relative; z-index: 2; }
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 620px);
  gap: 60px;
}
.about-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 36px;
  position: relative;
}
.about-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.gold-underline-light {
  display: block;
  width: 200px;
  height: 12px;
  margin-top: 12px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 12' fill='none' stroke='%23D4A856' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M4 7 Q75 13 150 7 T296 5'/%3E%3C/svg%3E") no-repeat left center / 100% 100%;
}
.about-body {
  font-family: var(--opensans);
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}
.about-body p { margin-bottom: 20px; }
.about-body em { color: var(--gold-light); font-style: italic; }
.about-body strong { color: var(--white); font-weight: 600; }
.about-highlight {
  padding-left: 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--jost);
  font-size: 19px !important;
  font-weight: 400 !important;
  line-height: 1.55 !important;
  font-style: italic;
  color: var(--white) !important;
  margin: 32px 0 !important;
}
.about-signature {
  margin-top: 40px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.signature-name {
  font-family: var(--jost);
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.signature-line {
  width: 60px;
  height: 1.5px;
  background: var(--gold-light);
}

/* ─────────────  SECTION HEADERS  ───────────── */
.section-header {
  max-width: 760px;
  margin-bottom: 72px;
}
.section-header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-header--center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

/* ─────────────  ANGEBOTE (5 CARDS)  ───────────── */
.angebote {
  padding: 140px 0;
  background: var(--bg-cream);
}
.angebote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
/* Magazine layout — 4 cards left in 2×2, 1 tall featured right */
.angebote-grid > .angebot-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.angebote-grid > .angebot-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.angebote-grid > .angebot-card--featured    { grid-column: 3; grid-row: 1 / span 2; }
.angebote-grid > .angebot-card:nth-child(4) { grid-column: 1; grid-row: 2; }
.angebote-grid > .angebot-card:nth-child(5) { grid-column: 2; grid-row: 2; }

.angebot-card {
  position: relative;
  background: var(--white);
  padding: 44px 36px 36px;
  box-shadow: var(--shadow-card);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 3px solid transparent;
  min-height: 100%;
}
.angebot-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}
.angebot-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}
.angebot-card:hover::before { transform: scaleX(1); }

.angebot-card--featured {
  background: var(--navy);
  color: var(--white);
  padding: 56px 44px 44px;
  box-shadow: 0 24px 60px rgba(12, 33, 55, 0.3);
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.angebot-card--featured::before { background: var(--gold-light); height: 3px; }
.angebot-card--featured::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(196,148,47,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(20,48,82,0.6) 0%, transparent 60%);
  z-index: -1;
}
.angebot-card--featured > * { position: relative; z-index: 1; }
.angebot-card--featured .angebot-icon {
  color: var(--gold-light);
  width: 64px; height: 64px;
}
.angebot-card--featured .angebot-title {
  color: var(--white);
  font-size: 30px;
  letter-spacing: 0.02em;
}
.angebot-card--featured .angebot-body {
  color: rgba(255,255,255,0.85);
  font-size: 16.5px;
  line-height: 1.7;
}
.angebot-card--featured .link-arrow { color: var(--gold-light); font-size: 15px; }
.angebot-card--featured .link-arrow::after { background: var(--gold-light); }
.angebot-card--featured:hover {
  transform: translateY(-8px);
  box-shadow: 0 36px 80px rgba(12, 33, 55, 0.4);
}

/* Extra visual flourishes for the tall featured card */
.angebot-card--featured .featured-stats {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  margin-top: auto;
  border-top: 1px solid rgba(196, 148, 47, 0.25);
  border-bottom: 1px solid rgba(196, 148, 47, 0.25);
}
.angebot-card--featured .featured-stat {
  flex: 1;
}
.angebot-card--featured .featured-stat-number {
  font-family: var(--jost);
  font-style: italic;
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--gold-light);
  display: block;
  margin-bottom: 4px;
}
.angebot-card--featured .featured-stat-label {
  font-family: var(--jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.angebot-card--featured .featured-divider {
  width: 50px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.6;
  margin: 8px 0;
}

.angebot-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--jost);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 4px 12px;
  background: var(--gold);
  color: var(--white);
}

.angebot-icon {
  width: 52px;
  height: 52px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.angebot-icon svg { width: 100%; height: 100%; }

.angebot-title {
  font-family: var(--jost);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.angebot-body {
  font-family: var(--opensans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
}
.angebot-body em { color: var(--gold-deep); font-style: italic; font-weight: 600; }
.angebot-card .link-arrow { margin-top: 12px; }

/* ─────────────  FLAGSHIP  ───────────── */
.flagship {
  background: var(--navy);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.flagship::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(196,148,47,0.12) 0%, transparent 55%);
  z-index: 0;
}
.flagship > .container { position: relative; z-index: 2; }
.flagship-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.flagship-text .eyebrow { color: var(--gold-light); }
.flagship-text .eyebrow::before { background: var(--gold-light); }
.flagship-text .gold-underline-light { margin: 16px 0 32px; }
.flagship-lead {
  font-family: var(--jost);
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--gold-light);
  margin-bottom: 36px;
  max-width: 480px;
}
.flagship-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}
.flagship-features li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--opensans);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255,255,255,0.88);
}
.check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}
.flagship-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.flagship-microcopy {
  font-family: var(--jost);
  font-size: 13px;
  font-style: italic;
  color: rgba(255,255,255,0.55);
}

.flagship-image {
  position: relative;
  aspect-ratio: 4/5;
}
.flagship-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 2;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.flagship-image .image-frame {
  inset: -24px 24px 24px -24px;
  border-color: var(--gold-light);
  z-index: 1;
}
.image-tag {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--gold);
  color: var(--white);
  padding: 10px 18px;
  font-family: var(--jost);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 3;
}

/* ─────────────  STIMMEN  ───────────── */
.stimmen {
  padding: 140px 0;
  background: var(--bg-cream);
}
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 12px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 4px;
}
.rating-stars {
  color: var(--gold);
  font-size: 17px;
  letter-spacing: 0.15em;
}
.rating-text {
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.04em;
}

.stimmen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.stimme {
  background: var(--white);
  padding: 36px 32px;
  border: 1px solid var(--line);
  position: relative;
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stimme::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: 'Georgia', serif;
  font-size: 80px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.25;
}
.stimme:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold-pale);
}
.stimme--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.stimme--featured::before { color: var(--gold-light); opacity: 0.45; }
.stimme--featured .stimme-source { color: rgba(255,255,255,0.6); }
.stimme-quote {
  font-family: var(--opensans);
  font-size: 16px;
  font-style: italic;
  line-height: 1.65;
  color: var(--text-body);
  flex: 1;
  position: relative;
  z-index: 1;
}
.stimme--featured .stimme-quote { color: rgba(255,255,255,0.95); }
.stimme figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.stimme--featured figcaption { border-top-color: rgba(255,255,255,0.15); }
.stimme-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.stimme--featured .stimme-stars { color: var(--gold-light); }
.stimme-source {
  font-family: var(--jost);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-mute);
}

.stimmen-footnote {
  text-align: center;
  margin-top: 56px;
  font-family: var(--jost);
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.stimmen-footnote strong { color: var(--gold-deep); }

/* ─────────────  KAMMER DER WEISHEIT (BLOG)  ───────────── */
.kammer {
  padding: 140px 0;
  background: var(--white);
}
.kammer-title {
  position: relative;
  padding-bottom: 12px;
}

/* Force section-header eyebrows to stack above title — fixes inline-block flow */
.section-header .eyebrow,
.section-header--center .eyebrow {
  display: block;
  margin-left: 0;
  margin-bottom: 28px;
}
.section-header--center .eyebrow {
  margin-left: auto;
  margin-right: auto;
  text-align: left;
  width: max-content;
  max-width: 100%;
}
.kammer-stroke {
  display: block;
  width: 100%;
  max-width: 280px;
  height: 14px;
  margin: 8px auto 0;
  color: var(--gold);
}
.kammer-stroke svg { width: 100%; height: 100%; }

.kammer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.blog-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-soft);
  position: relative;
  overflow: hidden;
}
.blog-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,33,55,0.4) 100%);
  transition: opacity 500ms var(--ease);
}
.blog-card:hover .blog-image::after { opacity: 0.7; }
.blog-content {
  padding: 28px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.blog-meta {
  font-family: var(--jost);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.blog-title {
  font-family: var(--jost);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-dark);
}
.blog-excerpt {
  font-family: var(--opensans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}
.blog-card .link-arrow { margin-top: 8px; }

.kammer-cta {
  text-align: center;
  margin-top: 64px;
}

/* ─────────────  NEWSLETTER  ───────────── */
.newsletter {
  padding: 140px 0;
  background: var(--bg-light);
  position: relative;
  overflow: hidden;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.newsletter-text .eyebrow {
  font-style: italic;
  text-transform: none;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: var(--text-mute);
  padding-left: 0;
  font-family: var(--jost);
}
.newsletter-text .eyebrow::before { display: none; }
.newsletter-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin: 20px 0 36px;
}
.newsletter-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-deep);
}
.newsletter-body {
  font-family: var(--opensans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 36px;
  max-width: 540px;
}
.newsletter-body p { margin-bottom: 14px; }
.newsletter-body strong { color: var(--text-dark); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 540px;
}
.newsletter-form input {
  background: var(--white);
  border: 1.5px solid var(--line);
  padding: 18px 22px;
  font-family: var(--opensans);
  font-size: 16px;
  color: var(--text-dark);
  outline: none;
  transition: border-color 400ms var(--ease);
}
.newsletter-form input:focus { border-color: var(--gold); }
.newsletter-form input::placeholder { color: var(--text-mute); }
.newsletter-form button {
  background: var(--gold);
  color: var(--white);
  padding: 20px 28px;
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: all 400ms var(--ease);
  text-align: center;
}
.newsletter-form button:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(196, 148, 47, 0.35);
}
.newsletter-fineprint {
  font-family: var(--opensans);
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-mute);
  margin-top: 24px;
  max-width: 480px;
  line-height: 1.5;
}

.newsletter-image {
  position: relative;
  aspect-ratio: 3/4;
  max-width: 420px;
  margin-left: auto;
}
.newsletter-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.05);
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-image);
}
.newsletter-image .image-frame {
  inset: -20px -20px 20px 20px;
  z-index: 1;
}

/* ─────────────  FOOTER  ───────────── */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.78);
  padding: 80px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-mark--footer {
  margin-bottom: 20px;
}
.footer-tagline {
  font-family: var(--jost);
  font-size: 15px;
  font-style: italic;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}
.footer-heading {
  font-family: var(--jost);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 14px;
  position: relative;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 40px; height: 1.5px;
  background: var(--gold);
}
.footer-col a {
  display: block;
  font-family: var(--opensans);
  font-size: 14.5px;
  line-height: 2.1;
  color: rgba(255,255,255,0.7);
  transition: color 300ms var(--ease);
}
.footer-col a:hover { color: var(--gold-light); }

.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 600;
  transition: all 300ms var(--ease);
  line-height: 1;
}
.footer-social a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}
.footer-bottom p {
  font-family: var(--opensans);
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

/* ─────────────  RESPONSIVE  ───────────── */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 60px; }
  .intro-image { max-width: 420px; margin: 0 auto; }

  .about-grid { grid-template-columns: 1fr; }

  .angebote-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .angebote-grid > .angebot-card,
  .angebote-grid > .angebot-card--featured {
    grid-column: auto !important;
    grid-row: auto !important;
  }
  .angebote-grid > .angebot-card--featured {
    grid-column: 1 / -1 !important;
    padding: 44px 36px 40px;
  }
  .angebot-card--featured .angebot-title { font-size: 26px; }
  .angebot-card--featured:hover { transform: translateY(-8px); }

  .flagship-grid { grid-template-columns: 1fr; gap: 72px; }
  .flagship-image { max-width: 420px; margin: 0 auto; }

  .stimmen-grid, .kammer-grid { grid-template-columns: repeat(2, 1fr); }

  .newsletter-grid { grid-template-columns: 1fr; gap: 60px; }
  .newsletter-image { max-width: 360px; margin: 0 auto; }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  body { font-size: 16px; }
  .container { padding: 0 24px; }

  .topbar { display: none; }
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .nav-open .nav-mobile { display: flex !important; }
  .site-header { position: sticky; }

  .hero { min-height: auto; padding: 40px 0 0; }
  .hero-vertical { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; padding: 16px 24px 60px; }
  .hero-text { padding-right: 0; }
  .hero-press { gap: 12px; }
  .press-list { gap: 12px; font-size: 11px; }
  .press-list span:not(:last-child)::after { right: -8px; }
  .hero-title { font-size: clamp(40px, 10vw, 64px); }
  .hero-quote { font-size: 15px; }
  .hero-cta { flex-direction: column; align-items: stretch; gap: 20px; }
  .hero-cta .btn { width: 100%; text-align: center; justify-content: center; }
  .hero-visual { min-height: 480px; }
  .hero-photo-wrap { min-height: 480px; max-height: 60vh; }
  .hero-badge--bestseller { top: 16px; left: 16px; padding: 14px 18px; }
  .badge-number { font-size: 42px; }
  .hero-badge--rating { bottom: 18px; right: 16px; padding: 12px 18px; }
  .badge-rating { font-size: 20px; }
  .hero-corner { width: 22px; height: 22px; }
  .hero-presspill { font-size: 12px; padding: 11px 22px; white-space: normal; max-width: 88%; text-align: center; }
  .hero-scroll { display: none; }
  .marquee-track { gap: 28px; font-size: 11px; }
  .hero-marquee { padding: 14px 0; }

  .trust-bar { padding: 24px 0; }
  .trust-bar .container { gap: 20px; }
  .trust-logos { gap: 8px 18px; }
  .tv-logo { font-size: 17px; }
  .tv-sep { display: none; }

  .intro { padding: 80px 0; }
  .intro-grid { gap: 48px; }
  .intro-list { gap: 16px; }

  .about-pascal { padding: 100px 0; }
  .about-image { background-position: 25% center; }
  .about-overlay { background: linear-gradient(180deg, rgba(12,33,55,0.92) 0%, rgba(12,33,55,0.78) 50%, rgba(12,33,55,0.92) 100%); }
  .about-title { font-size: clamp(34px, 9vw, 48px); }
  .about-highlight { font-size: 17px !important; padding-left: 18px; }

  .angebote { padding: 80px 0; }
  .angebote-grid { grid-template-columns: 1fr; gap: 20px; }

  .flagship { padding: 80px 0; }
  .flagship-grid { gap: 48px; }
  .flagship-features li { font-size: 15px; }

  .stimmen { padding: 80px 0; }
  .stimmen-grid { grid-template-columns: 1fr; }

  .kammer { padding: 80px 0; }
  .kammer-grid { grid-template-columns: 1fr; }

  .newsletter { padding: 80px 0; }
  .newsletter-form { max-width: 100%; }
  .newsletter-image { max-width: 280px; }

  .section-header { margin-bottom: 48px; }
  .section-h2 { font-size: clamp(28px, 8vw, 42px); }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer-brand { grid-column: auto; }
}

@media (max-width: 480px) {
  .topbar-inner { gap: 18px; }
  .header-inner { padding: 0 20px; }
  .logo-mark { font-size: 22px; }
  .logo-fleur { width: 18px; height: 22px; }
}

/* ════════════════════════════════════════════════
   SUBPAGE — SHARED PATTERNS
   ════════════════════════════════════════════════ */

/* ── Subpage Hero (compact navy banner with title) ── */
.page-hero {
  position: relative;
  background: var(--navy-deep);
  color: var(--white);
  padding: 100px 0 90px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(196,148,47,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 30% 70%, rgba(20,48,82,0.5) 0%, transparent 60%);
  z-index: 0;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.5 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.08;
  mix-blend-mode: overlay;
  z-index: 0;
}
.page-hero > .container { position: relative; z-index: 2; }

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--jost);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.55);
  transition: color 300ms var(--ease);
}
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span.sep { color: var(--gold); opacity: 0.6; font-size: 9px; }
.breadcrumb span.current { color: var(--gold-light); }

.page-hero-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 900px;
}
.page-hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.page-hero-sub {
  font-family: var(--jost);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
  max-width: 680px;
  margin-bottom: 36px;
}
.page-hero-meta {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 14px;
  padding: 12px 22px;
  max-width: 100%;
  background: rgba(196,148,47,0.1);
  border: 1px solid rgba(196,148,47,0.3);
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  line-height: 1.4;
}
.page-hero-meta strong { color: var(--white); font-weight: 600; }
.page-hero-meta .meta-item { white-space: nowrap; }
.page-hero-meta .meta-sep { color: var(--gold); font-weight: 700; opacity: 0.7; }
@media (max-width: 540px) {
  .page-hero-meta {
    font-size: 12px;
    padding: 10px 16px;
    gap: 4px 10px;
  }
  .page-hero-meta .meta-sep { display: none; }
  .page-hero-meta .meta-item {
    display: block;
    width: 100%;
    text-align: left;
  }
}

/* ── Standard content section ── */
.page-section {
  padding: 110px 0;
  background: var(--white);
}
.page-section--cream { background: var(--bg-cream); }
.page-section--light { background: var(--bg-light); }
.page-section--dark {
  background: var(--navy);
  color: var(--white);
}
.page-section--dark .section-h2 { color: var(--white); }
.page-section--dark .section-h2 em { color: var(--gold-light); }
.page-section--dark .section-sub { color: rgba(255,255,255,0.78); }

/* ── Two-column content with image + text ── */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.split-section--reverse > :first-child { order: 2; }
.split-image {
  position: relative;
  aspect-ratio: 4/5;
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: var(--shadow-image);
}
.split-image .image-frame {
  inset: 24px -24px -24px 24px;
  z-index: -1;
}

/* ── Stat/Highlight tiles ── */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 56px 0;
}
.highlight-tile {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
}
.highlight-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-card);
}
.highlight-number {
  font-family: var(--jost);
  font-weight: 600;
  font-style: italic;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}
.highlight-label {
  font-family: var(--jost);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.highlight-text {
  font-family: var(--opensans);
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--text-body);
}

/* ── Event cards ── */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 56px 0;
}
.event-card {
  display: grid;
  grid-template-columns: 200px 1fr auto;
  gap: 40px;
  align-items: center;
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  transition: transform 400ms var(--ease), box-shadow 400ms var(--ease), border-color 400ms var(--ease);
}
.event-card:hover {
  transform: translateX(6px);
  border-left-color: var(--gold-deep);
  box-shadow: var(--shadow-card);
}
.event-card--featured {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  border-left-color: var(--gold);
}
.event-card--featured .event-date,
.event-card--featured .event-title { color: var(--white); }
.event-card--featured .event-location { color: rgba(255,255,255,0.7); }

.event-date {
  font-family: var(--jost);
  font-style: italic;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--gold-deep);
  text-transform: uppercase;
  line-height: 1.4;
}
.event-date strong {
  display: block;
  font-style: normal;
  font-size: 38px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.event-card--featured .event-date strong { color: var(--white); }

.event-title {
  font-family: var(--jost);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.event-location {
  font-family: var(--opensans);
  font-size: 14px;
  color: var(--text-mute);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-location::before {
  content: '◆';
  color: var(--gold);
  font-size: 9px;
}

/* ── Recommendation / Schützling cards ── */
.recommendations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.rec-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 400ms var(--ease), border-color 400ms var(--ease), box-shadow 400ms var(--ease);
  position: relative;
}
.rec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 40px; height: 3px;
  background: var(--gold);
}
.rec-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-pale);
  box-shadow: var(--shadow-card);
}
.rec-name {
  font-family: var(--jost);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.rec-services {
  font-family: var(--opensans);
  font-size: 14px;
  font-style: italic;
  color: var(--gold-deep);
}
.rec-location {
  font-family: var(--opensans);
  font-size: 14px;
  color: var(--text-body);
  margin-top: 4px;
}
.rec-location::before { content: '📍 '; }
.rec-card .link-arrow { margin-top: auto; padding-top: 14px; }

.country-section {
  margin-top: 64px;
}
.country-title {
  font-family: var(--jost);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
}
.country-title::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--gold);
}

/* ── Books gallery ── */
.books-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.book-tile {
  position: relative;
  aspect-ratio: 3/4.4;
  background: linear-gradient(160deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-card);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
  cursor: pointer;
}
.book-tile:hover {
  transform: translateY(-8px) rotateZ(-1deg);
  box-shadow: var(--shadow-card-hover);
}
.book-tile--gold {
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-deep) 100%);
}
.book-tile--cream {
  background: linear-gradient(160deg, #F0E6D2 0%, #E5D7B8 100%);
  color: var(--text-dark);
}
.book-tile--sage {
  background: linear-gradient(160deg, #6E7868 0%, #4F5A4D 100%);
}
.book-tile-number {
  font-family: var(--jost);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 16px;
}
.book-tile-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.book-tile-title em { font-style: italic; font-weight: 500; }
.book-tile-sub {
  font-family: var(--opensans);
  font-style: italic;
  font-size: 13px;
  opacity: 0.85;
  margin-top: auto;
}
.book-tile-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--jost);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  padding: 4px 10px;
}
.book-tile--gold .book-tile-badge { background: var(--navy); }

/* ── Form / Contact ── */
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.form-grid .form-field--full { grid-column: 1 / -1; }
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-field label {
  font-family: var(--jost);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dark);
}
.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--opensans);
  font-size: 15px;
  padding: 14px 18px;
  background: var(--white);
  border: 1.5px solid var(--line);
  color: var(--text-dark);
  outline: none;
  transition: border-color 350ms var(--ease);
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-color: var(--gold); }
.form-field textarea { min-height: 160px; resize: vertical; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--opensans);
  font-size: 13.5px;
  color: var(--text-body);
}
.form-checkbox input { margin-top: 4px; accent-color: var(--gold); }

/* ── Legal page typography ── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-content h2 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin: 56px 0 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 19px;
  color: var(--text-dark);
  margin: 28px 0 12px;
}
.legal-content p {
  font-family: var(--opensans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 16px;
}
.legal-content a { color: var(--gold-deep); text-decoration: underline; }
.legal-content a:hover { color: var(--gold); }
.legal-content ul {
  margin: 12px 0 20px 24px;
  font-family: var(--opensans);
  font-size: 16px;
  color: var(--text-body);
  list-style: disc;
}
.legal-content li { margin-bottom: 6px; line-height: 1.65; }

/* ── Course detail / Bundle ── */
.course-detail {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}
.course-detail-img {
  position: relative;
  aspect-ratio: 4/3;
  background: var(--bg-light);
  overflow: hidden;
}
.course-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.course-detail-price {
  font-family: var(--jost);
  font-weight: 600;
  font-style: italic;
  font-size: 48px;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
  line-height: 1;
}
.course-detail-price small {
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  color: var(--text-mute);
  letter-spacing: 0.04em;
  margin-left: 6px;
}
.course-detail-list {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.course-detail-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-family: var(--opensans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-body);
}
.course-detail-list .check {
  background: var(--gold);
  color: var(--white);
  width: 22px;
  height: 22px;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Notice banner (e.g., "Pascal nimmt keine neuen Schüler an") ── */
.notice-banner {
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(196,148,47,0.08) 0%, rgba(196,148,47,0.02) 100%);
  border: 1px solid rgba(196,148,47,0.3);
  border-left: 3px solid var(--gold);
  margin: 32px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.notice-banner-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jost);
  font-weight: 700;
  font-size: 18px;
  border-radius: 50%;
}
.notice-banner-text {
  font-family: var(--opensans);
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-dark);
}
.notice-banner-text strong { color: var(--gold-deep); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .split-section { grid-template-columns: 1fr; gap: 48px; }
  .split-section--reverse > :first-child { order: 0; }
  .highlight-grid { grid-template-columns: repeat(2, 1fr); }
  .recommendations-grid { grid-template-columns: repeat(2, 1fr); }
  .books-gallery { grid-template-columns: repeat(3, 1fr); }
  .course-detail { grid-template-columns: 1fr; gap: 40px; }
  .event-card { grid-template-columns: 160px 1fr; gap: 24px; }
  .event-card .btn { grid-column: 1 / -1; justify-self: start; }
}

@media (max-width: 768px) {
  .page-hero { padding: 70px 0 64px; }
  .page-section { padding: 70px 0; }
  .page-hero-title { font-size: clamp(32px, 8vw, 48px); }
  .highlight-grid { grid-template-columns: 1fr; gap: 16px; }
  .recommendations-grid { grid-template-columns: 1fr; }
  .books-gallery { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .event-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .event-date strong { font-size: 32px; }
  .form-grid { grid-template-columns: 1fr; }
  .notice-banner { flex-direction: column; gap: 14px; padding: 22px; }
}

/* ════════════════════════════════════════════════
   BLOG — INDEX + POST DESIGN
   ════════════════════════════════════════════════ */

/* ── Blog Index Layout ── */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 64px;
  align-items: start;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.blog-filter {
  font-family: var(--jost);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--text-body);
  transition: all 300ms var(--ease);
  cursor: pointer;
}
.blog-filter:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.blog-filter.is-active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.blog-grid--featured {
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.blog-post-card {
  background: var(--white);
  border: 1px solid var(--line);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease);
}
.blog-post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card-hover);
}
.blog-post-card--horizontal {
  flex-direction: row;
  align-items: stretch;
}
.blog-post-card--horizontal .blog-post-image {
  width: 45%;
  flex-shrink: 0;
  aspect-ratio: auto;
}
.blog-post-card--horizontal .blog-post-content {
  flex: 1;
  padding: 36px 40px;
}

.blog-post-image {
  aspect-ratio: 16/10;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-soft);
  position: relative;
  overflow: hidden;
}
.blog-post-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(12,33,55,0.25) 100%);
  transition: opacity 500ms var(--ease);
}
.blog-post-card:hover .blog-post-image::after { opacity: 0.7; }
.blog-post-image-category {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold);
  color: var(--white);
  font-family: var(--jost);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
}

.blog-post-content {
  padding: 26px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.blog-post-date {
  font-family: var(--jost);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 10px;
}
.blog-post-date::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.blog-post-title {
  font-family: var(--jost);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  transition: color 300ms var(--ease);
}
.blog-post-card:hover .blog-post-title { color: var(--gold-deep); }
.blog-post-card--horizontal .blog-post-title { font-size: 28px; line-height: 1.2; }
.blog-post-excerpt {
  font-family: var(--opensans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
  flex: 1;
}
.blog-post-card--horizontal .blog-post-excerpt { font-size: 16px; }
.blog-post-card .link-arrow { margin-top: 6px; align-self: flex-start; }

/* ── Sidebar ── */
.blog-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.sidebar-block {
  padding: 28px 28px 32px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
}
.sidebar-title {
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 24px;
  padding-bottom: 12px;
  position: relative;
}
.sidebar-title::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1.5px;
  background: var(--gold);
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.sidebar-post {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: opacity 300ms var(--ease);
}
.sidebar-post:hover { opacity: 0.75; }
.sidebar-post-thumb {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-soft);
}
.sidebar-post-text {
  flex: 1;
  font-family: var(--jost);
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text-dark);
}
.sidebar-categories {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sidebar-categories a {
  font-family: var(--opensans);
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(12,33,55,0.06);
  color: var(--text-body);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 300ms var(--ease);
}
.sidebar-categories a:hover { color: var(--gold-deep); }
.sidebar-categories a span {
  font-family: var(--jost);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--gold-deep);
  background: rgba(196,148,47,0.1);
  padding: 2px 8px;
  border-radius: 2px;
}

/* ── Pagination ── */
.blog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.blog-pagination a, .blog-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  font-family: var(--jost);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  border: 1px solid var(--line);
  background: var(--white);
  transition: all 300ms var(--ease);
}
.blog-pagination a:hover {
  border-color: var(--gold);
  color: var(--gold-deep);
}
.blog-pagination .is-current {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.blog-pagination .pagination-dots {
  border: none;
  background: transparent;
}

/* ── Blog Post Article ── */
.post-hero {
  position: relative;
  padding: 80px 0 60px;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.post-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 70% 40%, rgba(196,148,47,0.16) 0%, transparent 55%);
  z-index: 0;
}
.post-hero > .container { position: relative; z-index: 2; }
.post-category {
  display: inline-block;
  font-family: var(--jost);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 6px 14px;
  background: rgba(196,148,47,0.12);
  border: 1px solid rgba(196,148,47,0.3);
  margin-bottom: 24px;
}
.post-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 28px;
  max-width: 960px;
}
.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-family: var(--jost);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
}
.post-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.post-meta-item::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}
.post-meta-item:first-child::before { display: none; }

.post-hero-image {
  margin-top: -40px;
  margin-bottom: 60px;
  position: relative;
  z-index: 3;
}
.post-hero-image img {
  width: 100%;
  aspect-ratio: 16/8;
  object-fit: cover;
  box-shadow: 0 30px 60px rgba(12,33,55,0.25);
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px;
  align-items: start;
}

/* ── Article prose styles ── */
.post-content {
  max-width: 760px;
  font-family: var(--opensans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-body);
}
.post-content > p,
.post-content > ul,
.post-content > ol,
.post-content > blockquote,
.post-content > h2,
.post-content > h3,
.post-content > h4 { margin-bottom: 24px; }
.post-content h2 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin-top: 56px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.post-content h3 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: -0.01em;
  color: var(--text-dark);
  margin-top: 44px;
  padding-left: 16px;
  border-left: 3px solid var(--gold);
}
.post-content h4 {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 19px;
  color: var(--text-dark);
  margin-top: 28px;
}
.post-content p strong { color: var(--text-dark); font-weight: 600; }
.post-content a {
  color: var(--gold-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  text-decoration-color: rgba(196,148,47,0.4);
  transition: text-decoration-color 300ms var(--ease);
}
.post-content a:hover { text-decoration-color: var(--gold); }
.post-content ul, .post-content ol {
  padding-left: 24px;
}
.post-content ul li, .post-content ol li {
  margin-bottom: 10px;
  line-height: 1.65;
}
.post-content ul li { list-style: none; position: relative; padding-left: 8px; }
.post-content ul li::before {
  content: '◆';
  color: var(--gold);
  font-size: 10px;
  position: absolute;
  left: -16px;
  top: 8px;
}
.post-content blockquote {
  padding: 24px 28px;
  border-left: 3px solid var(--gold);
  background: rgba(196,148,47,0.05);
  font-family: var(--jost);
  font-style: italic;
  font-size: 21px;
  line-height: 1.5;
  color: var(--text-dark);
}
.post-content img {
  margin: 28px 0;
  width: 100%;
  height: auto;
}
.post-content .lead {
  font-size: 21px;
  line-height: 1.65;
  color: var(--text-dark);
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

/* ── Author block at end of post ── */
.author-block {
  margin-top: 80px;
  padding: 36px;
  background: var(--bg-cream);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 28px;
  align-items: center;
}
.author-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-soft);
}
.author-info p:first-child {
  font-family: var(--jost);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.author-info h4 {
  font-family: var(--jost);
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.author-info p:last-child {
  font-family: var(--opensans);
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-body);
}

/* ── Related posts ── */
.related-posts {
  background: var(--bg-cream);
  padding: 100px 0;
  margin-top: 100px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Migration notice (for content yet to be migrated) ── */
.migration-notice {
  margin: 40px 0;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(196,148,47,0.06) 0%, rgba(196,148,47,0.02) 100%);
  border: 1px dashed rgba(196,148,47,0.4);
  border-radius: 4px;
}
.migration-notice p {
  font-family: var(--opensans);
  font-size: 14px;
  color: var(--text-mute);
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 6px;
}
.migration-notice strong { color: var(--gold-deep); font-style: normal; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .blog-layout, .post-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-post-card--horizontal { flex-direction: column; }
  .blog-post-card--horizontal .blog-post-image { width: 100%; aspect-ratio: 16/10; }
  .blog-post-card--horizontal .blog-post-content { padding: 26px 28px 30px; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .blog-layout, .post-layout { gap: 48px; }
  .blog-grid { grid-template-columns: 1fr; }
  .post-hero { padding: 50px 0 40px; }
  .post-hero-image { margin-top: -20px; }
  .post-content { font-size: 16px; }
  .post-content h2 { font-size: 26px; }
  .post-content h3 { font-size: 21px; }
  .author-block { grid-template-columns: 1fr; text-align: center; padding: 28px 24px; }
  .author-avatar { margin: 0 auto; }
  .related-grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════
   COURSE-CARD-PAIR — Online-Kurse "Mehr von Pascal"
   2-column clean side-by-side cards
   ════════════════════════════════════════════════ */
.course-grid-pair {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 64px;
}
.course-card-pair {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--shadow-card);
  transition: transform 500ms var(--ease), box-shadow 500ms var(--ease), border-color 500ms var(--ease);
  isolation: isolate;
  overflow: hidden;
}
.course-card-pair::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 500ms var(--ease);
}
.course-card-pair:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
  border-color: var(--gold-pale);
}
.course-card-pair:hover::before { transform: scaleX(1); }

.course-card-pair--dark {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.course-card-pair--dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(196,148,47,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(20,48,82,0.6) 0%, transparent 60%);
  z-index: -1;
}
.course-card-pair--dark > * { position: relative; z-index: 1; }

.course-card-pair-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-family: var(--jost);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--gold);
  color: var(--white);
  z-index: 2;
}

.course-card-pair-tag {
  font-family: var(--jost);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: flex;
  align-items: center;
  gap: 12px;
}
.course-card-pair-tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--gold);
}
.course-card-pair--dark .course-card-pair-tag {
  color: var(--gold-light);
}

.course-card-pair-title {
  font-family: var(--jost);
  font-weight: 600;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text-dark);
  margin: 4px 0 0;
}
.course-card-pair--dark .course-card-pair-title { color: var(--white); }

.course-card-pair-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  margin: 4px 0;
}

.course-card-pair-body {
  font-family: var(--opensans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-body);
}
.course-card-pair--dark .course-card-pair-body { color: rgba(255,255,255,0.85); }
.course-card-pair-body em {
  font-style: italic;
  color: var(--gold-deep);
  font-weight: 600;
}
.course-card-pair--dark .course-card-pair-body em { color: var(--gold-light); }

.course-card-pair-bullets {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0 8px;
  list-style: none;
  padding: 0;
}
.course-card-pair-bullets li {
  font-family: var(--opensans);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-body);
  padding-left: 22px;
  position: relative;
}
.course-card-pair-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
}
.course-card-pair--dark .course-card-pair-bullets li {
  color: rgba(255,255,255,0.85);
}
.course-card-pair--dark .course-card-pair-bullets li::before {
  color: var(--gold-light);
}

.course-card-pair-footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.course-card-pair--dark .course-card-pair-footer {
  border-top-color: rgba(255,255,255,0.15);
}

.course-card-pair-price {
  font-family: var(--jost);
  font-weight: 600;
  font-style: italic;
  font-size: 32px;
  letter-spacing: -0.02em;
  color: var(--gold-deep);
  line-height: 1;
}
.course-card-pair--dark .course-card-pair-price { color: var(--gold-light); }
.course-card-pair-price small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  font-style: normal;
  letter-spacing: 0.04em;
  color: var(--text-mute);
  text-decoration: line-through;
  margin-top: 4px;
}
.course-card-pair--dark .course-card-pair-price small {
  color: rgba(255,255,255,0.5);
}

@media (max-width: 768px) {
  .course-grid-pair {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
  }
  .course-card-pair { padding: 36px 30px 32px; }
  .course-card-pair-title { font-size: 26px; }
  .course-card-pair-price { font-size: 28px; }
  .course-card-pair-footer {
    flex-direction: column;
    align-items: stretch;
  }
  .course-card-pair-footer .btn { text-align: center; justify-content: center; }
}

/* ════════════════════════════════════════════════
   CLICKABLE CARDS — full-card click target
   ════════════════════════════════════════════════ */
.angebot-card,
.welten-card,
.blog-card,
.rec-card,
.blog-post-card,
.course-card-pair,
.event-card {
  cursor: pointer;
}
/* Card-stretched-link pattern as fallback for non-JS environments */
.angebot-card:focus-within,
.welten-card:focus-within,
.blog-card:focus-within,
.rec-card:focus-within,
.blog-post-card:focus-within,
.course-card-pair:focus-within,
.event-card:focus-within {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
