/* ============================================
   IMPRESSUM
   FlirtMastery Child Theme
   ============================================ */

:root {
  --bg: #F4F1ED;
  --bg-card: #FFFFFF;
  --header-bg: #B72B2B;
  --header-dark: #9A2222;
  --text: #1F1F1F;
  --text-mid: #555555;
  --text-light: #999999;
  --accent: #B72B2B;
  --border: #EBEBEB;
  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w: 1280px;
}

body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

/* ============ HERO ============ */
.legal-hero {
  background: var(--header-bg);
  padding: 0 24px 48px;
}
.legal-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  padding-top: 36px;
}
.breadcrumbs {
  font-family: var(--display);
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.breadcrumbs a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: rgba(255,255,255,0.8); }
.breadcrumbs .sep { margin: 0 6px; }

.legal-hero h1 {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.5px;
}

/* ============ CONTENT ============ */
.legal-wrapper {
  max-width: 1050px;
  margin: -24px auto 0;
  padding: 0 24px 80px;
  position: relative;
  z-index: 5;
}
.legal-content {
  background: var(--bg-card);
  border-radius: 8px;
  padding: 40px 48px;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06), 0 0 1px rgba(0,0,0,0.08);
}

.legal-address {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.legal-address strong {
  font-weight: 700;
}

.legal-section {
  margin-bottom: 28px;
}
.legal-section h2 {
  font-family: var(--display);
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text);
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.legal-section p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
}
.legal-section a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}
.legal-section a:hover { opacity: 0.75; }

/* ============ RESPONSIVE ============ */
@media (max-width: 700px) {
  .legal-content {
    padding: 28px 20px;
  }
  .legal-wrapper {
    padding: 0 12px 48px;
  }
}