/* ============================================================
   SAFAA MOHAJERI — Design System
   Hell & Editorial — Cormorant Garamond + DM Sans
   ============================================================ */

/* === VARIABLES === */
:root {
    --bg-primary:    #FAFAF8;
    --bg-secondary:  #F5F3EF;
    --bg-elevated:   #FFFFFF;
    --text-primary:  #2C2C2C;
    --text-secondary:#6B6560;
    --text-muted:    #9A9590;
    --accent:        #7A6347;
    --accent-dark:   #5C4A33;
    --border:        #E0DDD8;
    --border-strong: #C9C4BC;
    --linkedin:      #0077B5;
    --gold:          #A8864F;
    --gold-text:     #7F6436;

    --serif:  'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans:   'DM Sans', system-ui, -apple-system, sans-serif;

    --max-w: 1140px;
    --pad-x: 40px;
    --nav-h: 128px;

    --shadow-sm: 0 2px 8px rgba(44,44,44,0.06);
    --shadow-md: 0 8px 32px rgba(44,44,44,0.10);
    --shadow-lg: 0 20px 60px rgba(44,44,44,0.12);

    --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --t:    0.3s var(--ease);
    --t-slow: 0.7s var(--ease);
}

/* === RESET === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    background: var(--bg-primary);
}
body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--sans);
    font-weight: 300;
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }

[id] { scroll-margin-top: calc(var(--nav-h) + 24px); }

/* === LAYOUT === */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.section {
    padding: 140px 0;
    background: var(--bg-primary);
}

/* === ANIMATIONS === */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes dotPing {
    0%   { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.6); opacity: 0; }
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.2; transform: scaleY(1); }
    50%       { opacity: 0.6; transform: scaleY(0.75); }
}

.animate-1, .animate-2, .animate-3, .animate-4 {
    opacity: 0;
    animation: fadeUp 0.8s var(--ease) forwards;
}
.animate-1 { animation-delay: 0.15s; }
.animate-2 { animation-delay: 0.35s; }
.animate-3 { animation-delay: 0.55s; }
.animate-4 { animation-delay: 0.75s; }

/* Scroll reveals */
.reveal, .reveal-card {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible, .reveal-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 250, 248, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.navbar.scrolled {
    background: rgba(250, 250, 248, 0.95);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.nav-container {
    width: 100%;
    padding: 0 var(--pad-x);
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
}
.logo-img {
    height: 84px;
    width: auto;
    max-width: 480px;
    display: block;
    object-fit: contain;
    object-position: left center;
}
.logo-svg {
    height: 40px;
    width: auto;
    display: block;
}
.logo-initials {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    line-height: 1;
}
.logo-sep {
    width: 1px;
    height: 28px;
    background: var(--border-strong);
}
.logo-text {
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.logo-name {
    font-family: var(--sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    line-height: 1;
}
.logo-sub {
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 300;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    text-transform: uppercase;
    line-height: 1;
}

/* Nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}
.nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    transition: color var(--t);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links .nav-btn {
    padding: 8px 20px;
    border: 1px solid var(--border-strong);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-primary);
    font-weight: 400;
    letter-spacing: 0.04em;
    transition: background var(--t), border-color var(--t), color var(--t);
}
.nav-links .nav-btn:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: transform var(--t), opacity var(--t);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
    display: none;
    background: var(--bg-elevated);
    border-top: 1px solid var(--border);
    padding: 16px var(--pad-x) 24px;
    box-shadow: var(--shadow-md);
}
.mobile-menu.is-open { display: block; }
.mobile-menu ul { list-style: none; }
.mobile-menu li + li { border-top: 1px solid var(--border); }
.mobile-menu a {
    display: block;
    padding: 14px 0;
    font-size: 15px;
    font-weight: 400;
    color: var(--text-primary);
    letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--bg-primary);
    overflow: hidden;
}
.hero-deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-deco-line {
    position: absolute;
    background: var(--border);
}
.hero-deco-line--1 {
    top: 0;
    right: 15%;
    width: 1px;
    height: 100%;
    opacity: 0.6;
}
.hero-deco-line--2 {
    bottom: 25%;
    left: 0;
    right: 0;
    height: 1px;
    opacity: 0.4;
}
.hero-container {
    width: 100%;
    padding-top: var(--nav-h);
}
.hero-content {
    max-width: 760px;
    padding: 100px 0 120px;
}
.hero-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 28px;
}
.hero-h1 {
    font-family: var(--serif);
    font-size: clamp(52px, 7vw, 88px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    margin-bottom: 32px;
}
.hero-h1 em {
    font-style: italic;
    font-weight: 300;
    color: var(--text-secondary);
}
.hero-sub {
    font-size: 17px;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 580px;
    margin-bottom: 32px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    margin-bottom: 40px;
}
.badge-dot-wrap {
    position: relative;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
}
.badge-dot-ping {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: var(--accent);
    animation: dotPing 2s ease-out infinite;
}
.badge-dot-core {
    position: absolute;
    inset: 2px;
    border-radius: 50%;
    background: var(--accent-dark);
}

/* Hero scroll indicator */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: var(--pad-x);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.hero-scroll-line {
    width: 40px;
    height: 1px;
    background: var(--accent);
    animation: scrollPulse 2.5s ease-in-out infinite;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--sans);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: all var(--t);
    text-decoration: none;
    border: none;
}
.btn-primary {
    background: var(--text-primary);
    color: var(--bg-primary);
    border: 1.5px solid var(--text-primary);
}
.btn-primary:hover {
    background: transparent;
    color: var(--text-primary);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
    border-color: var(--text-primary);
}
.btn-linkedin {
    background: var(--linkedin);
    color: #fff;
    border: 1.5px solid var(--linkedin);
    padding: 12px 22px;
    font-size: 13px;
}
.btn-linkedin:hover {
    background: #005f91;
    border-color: #005f91;
}

/* === SECTION ELEMENTS === */
.section-eyebrow {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 20px;
}
.section-h2 {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 32px;
}

/* === POSITIONIERUNG === */
.positionierung {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.pos-quote {
    font-family: var(--serif);
    font-size: clamp(22px, 3vw, 34px);
    font-weight: 300;
    font-style: italic;
    line-height: 1.45;
    color: var(--text-primary);
    max-width: 820px;
    margin-bottom: 32px;
    padding-left: 28px;
    border-left: 3px solid var(--accent);
}
.pos-text {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    margin-bottom: 40px;
    line-height: 1.8;
}
.pos-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.tag {
    padding: 8px 18px;
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    background: var(--bg-elevated);
    transition: all var(--t);
}
.tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-elevated);
}

/* === LEISTUNGEN === */
.leistungen { background: var(--bg-primary); }
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.service-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px 32px;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}
.svc-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 10px;
    margin-bottom: 20px;
    color: var(--accent-dark);
}
.service-card h3 {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.service-card > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}
.service-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.service-card ul li {
    font-size: 13px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.service-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 5px;
    height: 1px;
    background: var(--accent);
}
.services-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    text-align: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 8px;
    background: var(--bg-secondary);
}

/* === ÜBER SAFAA === */
.ueber { background: var(--bg-secondary); }
.ueber-grid {
    display: grid;
    grid-template-columns: 1fr 360px;
    grid-template-areas: "text photo" "actions photo";
    gap: 48px 72px;
    align-items: start;
}
.ueber-text { grid-area: text; }
.ueber-photo { grid-area: photo; }
.ueber-actions { grid-area: actions; }
.ueber-photo {
    position: sticky;
    top: calc(var(--nav-h) + 32px);
}
.profile-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}
.ueber-text .section-h2 { margin-bottom: 24px; }
.ueber-text p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}
.ueber-meta {
    margin: 32px 0;
    padding: 28px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
}
.ueber-meta-block h4 {
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 14px;
}
.about-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
}
.about-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}
.about-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 5px;
    height: 1px;
    background: var(--accent);
}
.ueber-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* === SIGNATURE TOPICS & KONTEXTE === */
.topics { background: var(--bg-primary); }
.topics-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}
.topics-col .section-eyebrow { margin-bottom: 28px; }
.topics-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.topics-list li {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    padding: 18px 0;
    border-bottom: 1px solid var(--border);
    padding-left: 20px;
    position: relative;
}
.topics-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.kontexte-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.kontext-tag {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    transition: all var(--t);
}
.kontext-tag:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-elevated);
}

/* === ARBEITSWEISE === */
.arbeitsweise {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.aw-intro {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 680px;
    margin-bottom: 48px;
    line-height: 1.6;
}
.aw-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.aw-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    transition: border-color var(--t), box-shadow var(--t);
}
.aw-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.aw-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
}

/* === KEYNOTE === */
.keynote { background: var(--bg-primary); }
.keynote-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 64px;
    max-width: 840px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.keynote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.kn-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.kn-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}
.kn-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
}
.kn-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 640px;
}
.kn-desc:last-of-type { margin-bottom: 36px; }

/* === HERO EXTENSIONS === */
.hero-kicker {
    display: block;
    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 32px;
}
.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.hero-trust {
    margin-top: 28px;
    font-size: 13px;
    color: var(--text-muted);
    letter-spacing: 0.02em;
}

/* === POSITIONIERUNG (NEU) === */
.pos-h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.3;
    color: var(--text-primary);
    max-width: 760px;
    margin-bottom: 20px;
}
.pos-intro {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 56px;
}
.sig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.sig-item {
    border-top: 2px solid var(--accent);
    padding-top: 24px;
}
.sig-title {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.3;
}
.sig-sub {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* === NUTZENLOGIK === */
.nutzen { background: var(--bg-secondary); }
.nutzen .section-h2 { margin-bottom: 48px; max-width: 680px; }
.nutzen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.nutzen-box {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 36px;
    transition: border-color var(--t), box-shadow var(--t);
}
.nutzen-box:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
}
.nutzen-num {
    display: block;
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 16px;
}
.nutzen-title {
    font-family: var(--sans);
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 10px;
}
.nutzen-box p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* === ADVISORY GRID (6 Karten) === */
.advisory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.advisory-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 32px 28px;
    transition: border-color var(--t), box-shadow var(--t), transform var(--t);
}
.advisory-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.advisory-card h3 {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.3;
}
.advisory-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* === WHY SAFAA MOHAJERI === */
.expertise { background: var(--bg-secondary); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 48px 0 36px;
}
.why-item {
    border-left: 2px solid var(--accent);
    padding: 16px 20px;
    background: var(--bg-elevated);
    border-radius: 0 8px 8px 0;
}
.why-item span {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
}
.why-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.75;
    max-width: 640px;
}

/* === BEITRÄGE & VORTRÄGE === */
.beitraege { background: var(--bg-primary); }
.beitraege-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 760px;
}
.beitraege-list li {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 300;
    color: var(--text-primary);
    padding: 20px 0 20px 28px;
    border-bottom: 1px solid var(--border);
    position: relative;
    line-height: 1.4;
}
.beitraege-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-family: var(--serif);
}

/* === THEMEN PILLS === */
.themen { background: var(--bg-secondary); }
.themen-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
}
.themen-pill {
    font-family: var(--serif);
    font-size: 16px;
    font-weight: 300;
    color: var(--text-primary);
    padding: 14px 28px;
    border: 1px solid var(--border);
    border-radius: 6px;
    transition: all var(--t);
    cursor: default;
}
.themen-pill:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-elevated);
}

/* === KEYNOTE / WORKSHOP === */
.keynote { background: var(--bg-primary); }
.keynote-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 64px;
    max-width: 840px;
    margin: 0 auto;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}
.keynote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-dark));
}
.kn-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent-dark);
    margin-bottom: 16px;
}
.kn-title {
    font-family: var(--serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--text-primary);
    margin-bottom: 8px;
    line-height: 1.2;
}
.kn-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-style: italic;
}
.kn-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    max-width: 640px;
}
.kn-desc:last-of-type { margin-bottom: 36px; }

/* === KONTAKT === */
.kontakt { background: var(--bg-secondary); }
.kontakt-inner {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}
.kontakt-h2 {
    font-family: var(--serif);
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.kontakt-sub {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}
.kontakt-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}
.kontakt-email {
    display: block;
    font-family: var(--serif);
    font-size: clamp(20px, 3vw, 30px);
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 40px;
    transition: color var(--t);
    letter-spacing: -0.01em;
}
.kontakt-email:hover { color: var(--accent-dark); }
.kontakt-btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* === FOOTER === */
.footer {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 48px 0;
}
.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-tagline {
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}
.footer-nav {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}
.footer-link {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
    cursor: pointer;
    transition: color var(--t);
    background: none;
    border: none;
    padding: 0;
    font-family: var(--sans);
}
.footer-link:hover { color: var(--text-primary); }
.footer-copy {
    font-size: 12px;
    color: var(--text-muted);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root { --pad-x: 32px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .ueber-grid { grid-template-columns: 1fr 280px; gap: 48px; }
    .advisory-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .sig-grid { gap: 28px; }
}

@media (max-width: 768px) {
    :root { --pad-x: 24px; --nav-h: 72px; }
    .section { padding: 80px 0; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .logo-img { height: 38px; max-width: 220px; }
    .services-grid { grid-template-columns: 1fr; }
    .ueber-grid { grid-template-columns: 1fr; grid-template-areas: "photo" "text" "actions"; gap: 40px; }
    .ueber-photo { position: static; max-width: 100%; margin: 0 -24px; width: calc(100% + 48px); }
    .ueber-photo .profile-photo { border-radius: 0; aspect-ratio: 4/5; box-shadow: none; }
    .advisory-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .sig-grid { grid-template-columns: 1fr; gap: 24px; }
    .nutzen-grid { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; }
    .footer-inner { flex-direction: column; gap: 32px; }
    .footer-right { align-items: flex-start; }
    .hero-content { padding: 80px 0 100px; }
    .hero-scroll { display: none; }
}

@media (max-width: 480px) {
    :root { --pad-x: 20px; }
    .kontakt-btns { flex-direction: column; }
    .kontakt-btns .btn { justify-content: center; }
    .ueber-actions { flex-direction: column; }
}

/* === OLIVE BRANCH DECORATIONS === */
.olive-deco {
    position: absolute;
    pointer-events: none;
    z-index: 0;
}
.olive-deco svg { display: block; width: 100%; height: auto; }

.olive-deco--hero {
    top: -30px;
    right: -55px;
    width: 220px;
    opacity: 0.09;
    transform: rotate(16deg);
}
.olive-deco--keynote {
    bottom: -10px;
    right: 0px;
    width: 90px;
    opacity: 0.13;
    transform: rotate(-8deg);
}
.olive-deco--kontakt {
    bottom: 0;
    left: -20px;
    width: 130px;
    opacity: 0.08;
    transform: scaleX(-1) rotate(-5deg);
}

/* Ensure content sits above olive decorations */
.hero-container,
.hero-content,
.hero-scroll,
.hero-deco { position: relative; z-index: 1; }
.keynote-card .kn-eyebrow,
.keynote-card .kn-title,
.keynote-card .kn-subtitle,
.keynote-card .kn-desc,
.keynote-card .btn { position: relative; z-index: 1; }
.kontakt { position: relative; overflow: hidden; }
.kontakt .container { position: relative; z-index: 1; }

/* ============================================================
   PREMIUM STRUKTUR (v17) — Executive-Dramaturgie
   ============================================================ */

/* Sektions-Rhythmus: hell / warm im Wechsel */
.positionierung { background: var(--bg-secondary); }
.nutzen         { background: var(--bg-primary); }
.leistungen     { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.expertise      { background: var(--bg-primary); }
.beitraege      { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.themen         { background: var(--bg-primary); }
.ueber          { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.kontakt        { background: var(--bg-secondary); }

.section-eyebrow { color: var(--gold-text); }
.section-h2 { max-width: 820px; }

/* --- Hero --- */
.hero { min-height: auto; align-items: stretch; }
.hero-container { padding-top: var(--nav-h); }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.75fr);
    gap: 72px;
    align-items: center;
    padding: 88px 0 72px;
}
.hero-content { max-width: none; padding: 0; }
.hero-kicker { color: var(--gold-text); margin-bottom: 36px; }
.hero-h1 { font-size: clamp(44px, 5.6vw, 80px); margin-bottom: 36px; }
.hero-sub { font-size: 18px; max-width: 560px; margin-bottom: 16px; }
.hero-claim {
    font-family: var(--serif);
    font-style: italic;
    font-size: 19px;
    color: var(--text-primary);
}
.hero-ctas { margin-top: 44px; }
.hero-news {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 36px;
    font-size: 13px;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    border-bottom: 1px solid transparent;
    transition: color var(--t), border-color var(--t);
}
.hero-news:hover { color: var(--text-primary); border-color: var(--gold-text); }
.hero-news-tag {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--bg-elevated);
    background: var(--gold-text);
    padding: 4px 10px;
    border-radius: 100px;
}
.hero-portrait { position: relative; margin: 0; }
.hero-portrait::before {
    content: "";
    position: absolute;
    inset: -16px;
    border: 1px solid var(--gold);
    opacity: 0.6;
}
.hero-portrait img {
    position: relative;
    width: 100%;
    height: auto;
    aspect-ratio: 434 / 601;
    object-fit: cover;
    object-position: center top;
}
.trust-bar {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border-strong);
    margin-bottom: 96px;
}
.trust-bar li {
    padding: 28px 32px 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.trust-bar li + li { padding-left: 32px; border-left: 1px solid var(--border); }
.trust-bar strong {
    font-family: var(--serif);
    font-size: 19px;
    font-weight: 400;
    color: var(--text-primary);
}
.trust-bar span { font-size: 13px; color: var(--text-muted); }

/* --- Positionierung --- */
.pos-h2 { font-size: clamp(32px, 4.4vw, 54px); max-width: 900px; margin-bottom: 28px; }
.pos-intro { font-size: 17px; margin-bottom: 72px; }
.sig-item { border-top: 1px solid var(--gold); }
.sig-title { font-size: 24px; }

/* --- Nutzenlogik (2x2) --- */
.nutzen-grid { gap: 1px; background: var(--border); border: 1px solid var(--border); }
.nutzen-box { border: none; border-radius: 0; padding: 48px 44px; }
.nutzen-box:hover { box-shadow: none; background: var(--bg-secondary); }
.nutzen-num { font-size: 12px; font-family: var(--sans); font-weight: 500; letter-spacing: 0.14em; color: var(--gold-text); margin-bottom: 20px; }
.nutzen-title { font-family: var(--serif); font-size: 30px; font-weight: 400; margin-bottom: 12px; }
.nutzen-box p { font-size: 15px; max-width: 380px; }

/* --- Strategic Advisory --- */
.advisory-list { border-top: 1px solid var(--border-strong); margin-top: 16px; }
.advisory-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: baseline;
    padding: 30px 0;
    border-bottom: 1px solid var(--border);
    transition: padding var(--t);
}
.advisory-row:hover { padding-left: 12px; }
.advisory-row h3 {
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 400;
    line-height: 1.25;
    color: var(--text-primary);
}
.advisory-row p { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* --- Warum Safaa Mohajeri --- */
.why-grid {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 40px;
    row-gap: 0;
    margin: 24px 0 48px;
    border-top: 1px solid var(--border-strong);
}
.why-item {
    border: none;
    border-bottom: 1px solid var(--border);
    border-radius: 0;
    background: none;
    padding: 28px 0;
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 300;
    color: var(--text-primary);
    display: flex;
    gap: 16px;
    align-items: baseline;
}
.why-item::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 1px;
    background: var(--gold);
    align-self: center;
}
.why-desc { font-size: 17px; max-width: 700px; }
.why-grid { grid-template-columns: repeat(2, 1fr); max-width: 820px; }
.beitraege-list strong a { color: inherit; border-bottom: 1px solid var(--gold); transition: color var(--t); }
.beitraege-list strong a:hover { color: var(--gold-text); }

/* --- Beiträge & Vorträge --- */
.event-card {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-top: 2px solid var(--gold);
    padding: 48px;
    margin: 24px 0 80px;
    box-shadow: var(--shadow-sm);
}
.event-date { display: flex; flex-direction: column; border-right: 1px solid var(--border); }
.event-day { font-family: var(--serif); font-size: 76px; font-weight: 300; line-height: 1; color: var(--text-primary); }
.event-month { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); margin-top: 8px; }
.event-meta { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 12px; }
.event-title { font-family: var(--serif); font-size: clamp(24px, 3vw, 34px); font-weight: 400; line-height: 1.2; color: var(--text-primary); margin-bottom: 16px; }
.event-desc { font-size: 15px; color: var(--text-secondary); max-width: 600px; margin-bottom: 28px; }

.beitraege-list { margin-top: 0; max-width: none; border-top: 1px solid var(--border-strong); }
.beitraege-list li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 22px 0;
    font-family: var(--sans);
}
.beitraege-list li::before { content: none; }
.beitraege-list strong { font-family: var(--serif); font-size: 22px; font-weight: 400; color: var(--text-primary); }
.beitraege-list span { font-size: 13px; color: var(--text-muted); letter-spacing: 0.02em; }
/* Farbfoto allein, vollständig, im Originalformat – zwischen Workshop und Referenzliste */
.bildband-figure { margin: 0 0 88px; }
.bildband-figure img { width: 100%; height: auto; display: block; }
.bildband-figure figcaption {
    margin-top: 16px;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* Referenzliste zweispaltig */
.beitraege-list { display: grid; grid-template-columns: 1fr 1fr; column-gap: 72px; }

/* Zwei s/w-Fotos nebeneinander, ungeschnitten, gleich hoch (Spalten = Seitenverhältnisse 1200/944 und 1117/864) */
.bp-pair { display: grid; grid-template-columns: 1.271fr 1.293fr; gap: 24px; align-items: start; margin-top: 72px; }
.bp-pair figure { margin: 0; overflow: hidden; }
.bp-pair img { width: 100%; height: auto; display: block; transition: transform 0.9s var(--ease); }
.bp-pair figure:hover img { transform: scale(1.02); }
.video-block {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: 56px;
    align-items: center;
    margin-top: 80px;
    padding-top: 56px;
    border-top: 1px solid var(--border-strong);
}
.video-eyebrow { font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-text); margin-bottom: 12px; }
.video-title { font-family: var(--serif); font-size: clamp(24px, 2.8vw, 32px); font-weight: 400; line-height: 1.25; color: var(--text-primary); margin-bottom: 12px; }
.video-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.video-play, .video-embed iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border: 0;
    padding: 0;
    background: #111;
}
.video-play { position: relative; cursor: pointer; overflow: hidden; }
.video-play img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.9s var(--ease), opacity var(--t); }
.video-play:hover img { transform: scale(1.02); opacity: 0.9; }
.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 72px;
    height: 72px;
    margin: -36px 0 0 -36px;
    border-radius: 50%;
    background: rgba(250, 250, 248, 0.92);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--t), color var(--t), transform var(--t);
}
.video-play-icon svg { margin-left: 3px; }
.video-play:hover .video-play-icon, .video-play:focus-visible .video-play-icon { background: var(--gold); color: #fff; transform: scale(1.06); }
.video-play:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.video-note { margin-top: 10px; font-size: 12px; color: var(--text-muted); }
.video-note a { color: var(--text-secondary); border-bottom: 1px solid var(--border-strong); }
.video-note a:hover { color: var(--text-primary); }
.beitraege-focus { margin-top: 56px; font-family: var(--serif); font-size: 20px; font-style: italic; color: var(--text-secondary); }
.beitraege-focus span {
    display: block;
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 8px;
}

/* --- Analysen · Impulse --- */
.themen-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 72px;
    border-top: 1px solid var(--border-strong);
}
.themen-list li {
    display: flex;
    gap: 20px;
    align-items: baseline;
    padding: 26px 0;
    border-bottom: 1px solid var(--border);
    font-family: var(--serif);
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 300;
    color: var(--text-primary);
}
.themen-list li::before {
    content: "";
    flex-shrink: 0;
    width: 18px;
    height: 1px;
    background: var(--gold);
    align-self: center;
}

/* --- Profil --- */
.ueber-grid { grid-template-columns: 380px 1fr; grid-template-areas: "photo text"; gap: 88px; align-items: center; }
.ueber-photo { position: static; }
.profile-photo { border-radius: 0; box-shadow: none; height: auto; aspect-ratio: 478 / 565; }
.ueber-text p { font-size: 16px; }
.brand-note {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--gold);
    max-width: 560px;
}
.ueber-text .brand-note p { font-family: var(--serif); font-size: 19px; font-style: italic; color: var(--text-primary); line-height: 1.6; margin: 0; }
.ueber-text .brand-note .brand-note-label {
    font-family: var(--sans);
    font-style: normal;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold-text);
    margin-bottom: 10px;
}

/* --- Abschlussstatement --- */
.statement { background: var(--bg-primary); padding: 200px 0; text-align: center; }
.statement-text {
    font-family: var(--serif);
    font-size: clamp(30px, 4.4vw, 62px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-primary);
    max-width: 1140px;
    margin: 0 auto;
}
.statement-text em { color: var(--gold); }

/* --- Kontakt --- */
.kontakt-inner { max-width: 760px; }
.kontakt-h2 { font-size: clamp(30px, 4vw, 46px); margin-bottom: 24px; }
.kontakt-sub { margin-bottom: 20px; }
.kontakt-email { margin-bottom: 16px; border-bottom: 1px solid var(--gold); display: inline-block; }
.kontakt-desc { margin-bottom: 40px; }

/* --- Footer --- */
.footer { padding: 72px 0 48px; }
.footer-inner { gap: 20px; }
.footer-logo { width: 220px; height: auto; margin-bottom: 12px; }
.footer-name { font-family: var(--serif); font-size: 20px; color: var(--text-primary); }
.footer-tagline { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; }
.footer-brand { font-family: var(--serif); font-style: italic; font-size: 16px; color: var(--text-secondary); }
.footer-nav { gap: 14px; align-items: center; color: var(--text-muted); margin-top: 12px; }
.footer-nav .footer-link { line-height: 1.7; }
.footer-copy { margin-top: 4px; }

/* --- Responsive --- */
.nav-links .nav-btn { white-space: nowrap; }
@media (max-width: 1024px) {
    .logo-img { height: 60px; }
    .nav-links { gap: 24px; }
    .hero-grid { gap: 48px; }
    .ueber-grid { grid-template-columns: 300px 1fr; gap: 56px; }
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    .hero-grid { grid-template-columns: 1fr; padding: 48px 0 56px; gap: 56px; }
    .hero-portrait { max-width: 340px; margin: 16px; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }
    .trust-bar { grid-template-columns: 1fr; margin-bottom: 64px; }
    .trust-bar li, .trust-bar li + li { padding: 20px 0; border-left: none; border-bottom: 1px solid var(--border); }
    .advisory-row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
    .advisory-row:hover { padding-left: 0; }
    .why-grid { grid-template-columns: 1fr; }
    .why-item { font-size: 22px; padding: 20px 0; }
    .event-card { grid-template-columns: 1fr; gap: 24px; padding: 32px 24px; }
    .event-date { flex-direction: row; align-items: baseline; gap: 12px; border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 16px; }
    .event-day { font-size: 52px; }
    .event-card .btn { width: 100%; justify-content: center; }
    .bp-pair { gap: 12px; margin-top: 48px; }
    .beitraege-list { grid-template-columns: 1fr; }
    .bildband-figure { margin-bottom: 56px; }
    .video-block { grid-template-columns: 1fr; gap: 24px; margin-top: 56px; padding-top: 40px; }
    .video-play-icon { width: 60px; height: 60px; margin: -30px 0 0 -30px; }
    .themen-list { grid-template-columns: 1fr; }
    .nutzen-box { padding: 36px 28px; }
    .ueber-grid { grid-template-columns: 1fr; grid-template-areas: "photo" "text"; gap: 40px; }
    .ueber-photo { margin: 0; width: 100%; }
    .statement { padding: 120px 0; }
}

/* === UNTERSEITEN (Impressum, Datenschutz, 404) === */
.subpage .navbar { position: sticky; }
.subpage-back {
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--text-secondary);
    transition: color var(--t);
}
.subpage-back:hover { color: var(--text-primary); }
.legal-page { padding: 96px 0 140px; }
.legal-container { max-width: 760px; }
.legal-h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 16px;
}
.legal-lead {
    font-size: 14px;
    color: var(--text-muted);
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-strong);
}
.legal-block { padding: 32px 0; border-bottom: 1px solid var(--border); }
.legal-block h2 {
    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;
    color: var(--text-primary);
    margin-bottom: 12px;
}
.legal-block p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; }
.legal-block p + p { margin-top: 12px; }
.legal-block strong { font-weight: 500; color: var(--text-primary); }
.legal-block a { color: var(--text-primary); border-bottom: 1px solid var(--gold); }
.legal-block a:hover { color: var(--gold-text); }
.footer-link[aria-current="page"] { color: var(--text-primary); }

.notfound { min-height: calc(100vh - var(--nav-h)); display: flex; align-items: center; }
.notfound-inner { text-align: center; }
.notfound-h1 {
    font-family: var(--serif);
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 20px;
}
.notfound-sub { font-family: var(--serif); font-size: 22px; color: var(--gold-text); margin-bottom: 48px; }
.notfound-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 768px) {
    .legal-page { padding: 56px 0 96px; }
    .subpage-back { font-size: 12px; }
}

/* Lange Wörter in der Hero-Überschrift (z. B. „Gesprächspartnerin“) auf kleinen Displays */
.hero-h1 { hyphens: manual; overflow-wrap: break-word; }
@media (max-width: 420px) { .hero-h1 { font-size: 39px; } }
@media (max-width: 360px) { .hero-h1 { font-size: 33px; hyphens: auto; -webkit-hyphens: auto; } }

/* === SPRACHUMSCHALTER === */
.lang-switch { display: flex; align-items: center; gap: 2px; }
.nav-links .lang-switch a, .mobile-menu .lang-switch a {
    font-size: 12px;
    letter-spacing: 0.08em;
    color: var(--text-muted);
    padding: 4px 7px;
    border-radius: 4px;
    transition: color var(--t);
}
.nav-links .lang-switch a:hover { color: var(--text-primary); }
.lang-switch a[aria-current="true"] { color: var(--text-primary); font-weight: 500; }
.lang-switch a[lang="ar"] { font-family: 'IBM Plex Sans Arabic', var(--sans); letter-spacing: 0; font-size: 13px; }
.mobile-menu .lang-switch { padding: 14px 0; gap: 12px; }
.mobile-menu .lang-switch a { display: inline-block; padding: 4px 0; font-size: 15px; }

@media (max-width: 960px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }
}

/* === ARABISCH (RTL) === */
html[lang="ar"] {
    --serif: 'Noto Naskh Arabic', 'Cormorant Garamond', Georgia, serif;
    --sans:  'IBM Plex Sans Arabic', 'DM Sans', system-ui, sans-serif;
}
html[lang="ar"] body { line-height: 1.9; }
html[lang="ar"] body * { letter-spacing: 0 !important; }
html[lang="ar"] em { font-style: normal; }
html[lang="ar"] .section-eyebrow, html[lang="ar"] .hero-kicker, html[lang="ar"] .event-meta, html[lang="ar"] .video-eyebrow, html[lang="ar"] .beitraege-focus span, html[lang="ar"] .bildband-figure figcaption, html[lang="ar"] .event-month { font-size: 13px; }
html[lang="ar"] .hero-h1 { line-height: 1.35; font-weight: 400; }
html[lang="ar"] .section-h2, html[lang="ar"] .pos-h2, html[lang="ar"] .statement-text, html[lang="ar"] .kontakt-h2 { line-height: 1.5; font-weight: 400; }
html[lang="ar"] .hero-claim, html[lang="ar"] .beitraege-focus, html[lang="ar"] .ueber-text .brand-note p { font-style: normal; }
[dir="rtl"] .trust-bar li { padding: 28px 0 0 32px; }
[dir="rtl"] .trust-bar li + li { padding-right: 32px; padding-left: 32px; border-left: none; border-right: 1px solid var(--border); }
[dir="rtl"] .advisory-row:hover { padding-left: 0; padding-right: 12px; }
[dir="rtl"] .event-date { border-right: none; border-left: 1px solid var(--border); }
[dir="rtl"] .kontakt-btns svg, [dir="rtl"] .event-card .btn svg { transform: scaleX(-1); }
@media (max-width: 768px) {
    [dir="rtl"] .trust-bar li, [dir="rtl"] .trust-bar li + li { padding: 20px 0; border-right: none; }
    [dir="rtl"] .event-date { border-left: none; }
    [dir="rtl"] .advisory-row:hover { padding-right: 0; }
}

/* === REDUCED MOTION === */
@media (prefers-reduced-motion: reduce) {
    .animate-1, .animate-2, .animate-3, .animate-4 {
        animation: none;
        opacity: 1;
    }
    .reveal, .reveal-card {
        opacity: 1;
        transform: none;
        transition: none;
    }
    .badge-dot-ping { animation: none; }
    .hero-scroll-line { animation: none; }
}
