/* ============================================================
   BARTHEL ASSET MANAGEMENT GMBH – Main Stylesheet
   www.barthel-am.de
   Design: Deep Navy Blue (#0B1A2A) + Gold (#C9A84C) + White
   ============================================================ */

/* ==================== CSS VARIABLES ==================== */
:root {
    --navy-deep:     #0B1A2A;
    --navy-mid:      #0F2540;
    --navy-light:    #1A3A5C;
    --gold:          #C9A84C;
    --gold-light:    #E8C87A;
    --gold-dark:     #9A7A30;
    --white:         #FFFFFF;
    --off-white:     #F5F3EE;
    --light-gray:    #E8E4DC;
    --text-dark:     #0B1A2A;
    --text-light:    rgba(255,255,255,0.90);
    --text-muted:    rgba(255,255,255,0.65);

    --font-serif:    'Cormorant Garamond', Georgia, serif;
    --font-sans:     'Montserrat', Arial, sans-serif;

    --section-pad:   100px;
    --section-pad-m: 60px;
    --container-max: 960px;

    --transition:    all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-gold:   0 4px 30px rgba(201,168,76,0.25);
    --shadow-dark:   0 8px 40px rgba(11,26,42,0.4);
}

/* ==================== RESET & BASE ==================== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    background: var(--navy-deep);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ==================== SCROLLBAR ==================== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-deep); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ==================== TYPOGRAPHY ==================== */
.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.15;
}

.section-title-dark {
    color: var(--navy-deep);
}

.section-subtitle-dark {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--navy-mid);
    font-weight: 300;
    margin-top: -0.2rem;
    margin-bottom: 0.3rem;
    letter-spacing: 0.04em;
}

.section-divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1.5rem 0 2rem;
}

.divider-dark {
    background: var(--gold-dark);
}

.section-text {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    max-width: 800px;
    line-height: 1.85;
    font-weight: 300;
}

.section-text-dark {
    color: var(--navy-mid);
}

/* ==================== CONTAINER ==================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== HEADER / NAVIGATION ==================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 3rem;
    background: transparent;
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(11, 26, 42, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.6rem 3rem;
    box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
}

.logo-wrap {
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
    mix-blend-mode: screen;
}

.site-header.scrolled .logo-img {
    height: 40px;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    position: relative;
    padding-bottom: 3px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--gold-light);
}

.nav-cta {
    color: var(--gold) !important;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.2rem !important;
    border-radius: 2px;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: var(--gold);
    color: var(--navy-deep) !important;
}

/* Hamburger */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1100;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11,26,42,0.98);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    color: var(--gold-light);
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        url('../images/bg-hero.jpg') center/cover no-repeat;
    overflow: hidden;
}

/* Dark overlay over hero image */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(rgba(11,26,42,0.55), rgba(11,26,42,0.65));
    z-index: 1;
}

/* Gold decorative lines */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 2;
}

/* hero-overlay: subtiles Gold-Muster als Textur-Layer über dem Tierbild */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-logo-wrap {
    animation: fadeInDown 1s ease forwards;
}

.hero-logo {
    height: 260px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: screen;
}

.hero-headline {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-headline .line {
    display: block;
    font-family: var(--font-serif);
    font-size: clamp(2rem, 5vw, 3.8rem);
    font-weight: 300;
    letter-spacing: 0.03em;
    color: var(--white);
    animation: fadeInUp 1s ease forwards;
    opacity: 0;
}

.hero-headline .line:nth-child(1) { animation-delay: 0.5s; }
.hero-headline .line:nth-child(2) { animation-delay: 0.7s; }
.hero-headline .line:nth-child(3) { animation-delay: 0.9s; }

.hero-headline .highlight {
    color: var(--gold-light);
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: var(--gold);
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    cursor: pointer;
}

/* ==================== QUICK NAV BAR ==================== */
.quick-nav-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(201,168,76,0.2);
    border-bottom: 1px solid rgba(201,168,76,0.2);
    padding: 0;
    position: relative;
    z-index: 10;
}

.quick-nav-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.quick-nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1.4rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
    flex: 1;
    text-align: center;
}

.quick-nav-item:hover {
    color: var(--gold-light);
    background: rgba(201,168,76,0.08);
}

.qn-arrow {
    color: var(--gold);
    transition: var(--transition);
}

.quick-nav-item:hover .qn-arrow {
    transform: translateX(4px);
}

.quick-nav-divider {
    width: 1px;
    background: rgba(201,168,76,0.2);
    align-self: stretch;
    margin: 0.5rem 0;
}

/* ==================== CONTENT SECTIONS ==================== */
.content-section {
    position: relative;
    padding: var(--section-pad) 2rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

/* BG images for sections – Original Tierbilder von barthel-lorenz.com */

/* Ihre Ziele → Giraffe (s/w) – kein dunkler Overlay wie im Original */
.section-dark {
    background:
        url('../images/bg-giraffe.jpg') center/cover no-repeat fixed;
}
/* Text-Lesbarkeit auf hellem Tierbild */
.section-dark .section-title,
.section-dark .section-text {
    text-shadow: 0 2px 12px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.5);
}

/* Unsere Kompetenz → Elefant (s/w) */
.section-medium {
    background:
        linear-gradient(rgba(11,26,42,0.91), rgba(11,26,42,0.91)),
        url('../images/bg-elefant.jpg') center/cover no-repeat fixed;
}

/* Gemeinsam erfolgreich → Löwe (s/w dunkel) */
.section-light {
    background:
        linear-gradient(rgba(11,26,42,0.82), rgba(11,26,42,0.82)),
        url('../images/bg-loewe2.jpg') center/cover no-repeat fixed;
}

/* Fairness / Nachhaltigkeit → Giraffe farbig */
.section-dark-2 {
    background:
        linear-gradient(rgba(6,15,24,0.57), rgba(6,15,24,0.57)),
        url('../images/bg-giraffe-farbig.jpg') center/cover no-repeat fixed;
    padding: var(--section-pad) 2rem;
}

/* Charakter → Elefant farbig */
.section-medium-2 {
    background:
        linear-gradient(rgba(3,9,14,0.57), rgba(3,9,14,0.57)),
        url('../images/bg-elefant-farbig.jpg') center/cover no-repeat fixed;
}

/* Authentizität / Verlässlichkeit → Löwe farbig */
.section-dark-3 {
    background:
        linear-gradient(rgba(6,15,24,0.57), rgba(6,15,24,0.57)),
        url('../images/bg-loewe-farbig.jpg') center/cover no-repeat fixed;
    padding: var(--section-pad) 2rem;
}

.section-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(201,168,76,0.04) 0%, transparent 60%);
    pointer-events: none;
}

/* Shape dividers */
.section-shape-bottom,
.section-shape-top {
    position: absolute;
    left: 0;
    right: 0;
    height: 80px;
    pointer-events: none;
    z-index: 5;
}

.section-shape-bottom {
    bottom: -1px;
    background: linear-gradient(to bottom right, transparent 49%, var(--navy-deep) 50%);
}

.section-shape-bottom-white {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom right, transparent 49%, var(--off-white) 50%);
    pointer-events: none;
    z-index: 5;
}

/* ==================== GRADIENT SECTION (Werte / Portfolio) ==================== */
.gradient-section {
    position: relative;
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 40%, var(--gold-light) 100%);
    padding: var(--section-pad) 2rem;
}

.gradient-section .section-shape-top {
    top: -1px;
    background: linear-gradient(to top left, transparent 49%, var(--navy-deep) 50%);
}

.gradient-section .section-shape-bottom {
    background: linear-gradient(to bottom left, transparent 49%, var(--navy-deep) 50%);
}

/* ==================== VALUES GRID ==================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: var(--container-max);
    margin: 0 auto;
}

.value-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 4px;
    padding: 2.5rem;
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(201,168,76,0.06);
    border-color: rgba(201,168,76,0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-gold);
}

.value-icon {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 1.2rem;
}

.value-title {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 1rem;
}

.value-text {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    font-weight: 300;
}

/* ==================== STYLED BLOCKQUOTE ==================== */
.styled-quote {
    margin-top: 2.5rem;
    padding: 1.8rem 2.5rem;
    border-left: 3px solid var(--gold);
    background: rgba(201,168,76,0.05);
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.9;
    max-width: 800px;
    border-radius: 0 4px 4px 0;
}

/* ==================== TEAM SECTION ==================== */
/* Wir für Sie → Löwe s/w */
.team-section {
    position: relative;
    background:
        linear-gradient(rgba(11,26,42,0.82), rgba(11,26,42,0.82)),
        url('../images/bg-loewe.jpg') center/cover no-repeat;
    padding: var(--section-pad) 2rem;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.team-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 6px;
    padding: 3rem;
    max-width: 760px;
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    border-color: rgba(201,168,76,0.4);
    box-shadow: var(--shadow-gold);
}

.team-photo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
}

/* Goldlinie links als Akzent */
.team-photo-wrap::after {
    content: '';
    position: absolute;
    left: 0;
    top: 8%;
    bottom: 8%;
    width: 3px;
    background: linear-gradient(to bottom, transparent, var(--gold), transparent);
    border-radius: 2px;
}

.team-photo {
    width: 100%;
    max-width: 580px;
    height: 420px;
    border-radius: 4px;
    object-fit: cover;
    object-position: center 20%;
    border: none;
    box-shadow: 0 16px 60px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.2);
    display: block;
    transition: var(--transition);
}

.team-card:hover .team-photo {
    box-shadow: 0 20px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.4);
    transform: scale(1.01);
}

.team-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.3rem;
}

.team-divider {
    width: 50px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 1.8rem;
}

.team-bio {
    text-align: left;
    margin-bottom: 2rem;
}

.team-bio p {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
    font-weight: 300;
}

.team-bio p:last-child { margin-bottom: 0; }

.team-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    border: 1px solid var(--gold);
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
}

.team-contact-btn:hover {
    background: var(--gold);
    color: var(--navy-deep);
}

/* ==================== NEWS SECTION ==================== */
.news-section {
    background: var(--off-white);
    padding: var(--section-pad) 2rem;
    text-align: center;
}

.news-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 3rem;
    border: 1px dashed rgba(11,26,42,0.2);
    border-radius: 6px;
    max-width: 500px;
    margin: 0 auto;
}

.news-placeholder-icon {
    font-size: 2.5rem;
    color: var(--gold-dark);
    opacity: 0.5;
}

.news-placeholder p {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    color: var(--navy-mid);
    font-weight: 300;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.8rem;
    border: 1px solid var(--navy-mid);
    color: var(--navy-mid);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--navy-mid);
    color: var(--white);
}

/* ==================== CONTACT SECTION ==================== */
/* Kontakt → Hero-Banner Bild */
.contact-section {
    position: relative;
    background:
        linear-gradient(rgba(11,26,42,0.88), rgba(11,26,42,0.88)),
        url('../images/bg-hero.jpg') center/cover no-repeat fixed;
    padding: var(--section-pad) 2rem;
    text-align: center;
}

.contact-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.contact-inner {
    position: relative;
    z-index: 2;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.02em;
}

.contact-subtitle {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 300;
}

.contact-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 3rem 0;
}

.contact-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    padding: 1.5rem 2.5rem;
    border-radius: 4px;
    min-width: 220px;
    transition: var(--transition);
}

.contact-btn i {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
}

.contact-btn span {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-btn small {
    font-family: var(--font-serif);
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 300;
}

.contact-btn-primary {
    background: var(--gold);
    color: var(--navy-deep);
    box-shadow: var(--shadow-gold);
}

.contact-btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201,168,76,0.4);
}

.contact-btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.contact-btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-light);
    transform: translateY(-3px);
}

.social-links {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy-deep);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* ==================== FOOTER ==================== */
.site-footer {
    background: #060F1A;
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201,168,76,0.2);
}

.footer-inner {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.footer-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    opacity: 0.9;
    mix-blend-mode: screen;
}

.footer-tagline {
    font-family: var(--font-serif);
    font-size: 1rem;
    color: rgba(255,255,255,0.4);
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.02em;
}

.footer-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-link {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--gold);
}

.footer-sep {
    color: rgba(255,255,255,0.2);
    font-size: 0.75rem;
}

.footer-copy {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.05em;
}

/* ==================== BACK TO TOP ==================== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--gold);
    color: var(--navy-deep);
    border: none;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 500;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: var(--transition);
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: none !important;
}

.fade-up    { transform: translateY(40px); }
.fade-in    { transform: none; opacity: 0; }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }

/* ==================== IMPRESSUM / DATENSCHUTZ PAGES ==================== */
.page-wrapper {
    min-height: 100vh;
    background: var(--navy-deep);
    padding-top: 130px;
    padding-bottom: 80px;
}

.page-content .section-divider {
    width: 48px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 1.2rem 0 3rem;
}

.page-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

.page-content h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
    line-height: 1.15;
}

.page-content h2 {
    font-family: var(--font-sans);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 2.8rem 0 0.7rem;
    padding-bottom: 0.45rem;
    border-bottom: 1px solid rgba(201,168,76,0.18);
}

.page-content p,
.page-content li {
    font-family: var(--font-sans);
    font-size: 0.875rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.95;
    font-weight: 300;
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

.page-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.page-content ul li {
    margin-bottom: 0.5rem;
    list-style: none;
    padding-left: 1.2rem;
    position: relative;
}

.page-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.75em;
    width: 5px;
    height: 1px;
    background: var(--gold);
}

/* Links im Impressum / Datenschutz */
.imprint-link {
    color: var(--gold) !important;
    text-decoration: none;
    border-bottom: 1px solid rgba(201,168,76,0.3);
    transition: var(--transition);
}

.imprint-link:hover {
    color: var(--gold-light) !important;
    border-bottom-color: var(--gold-light);
}

/* Quellenangabe */
.imprint-source {
    margin-top: 4rem !important;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.22) !important;
    font-size: 0.72rem !important;
    font-family: var(--font-sans) !important;
    letter-spacing: 0.05em;
}

.imprint-source a {
    color: rgba(255,255,255,0.22) !important;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    transition: var(--transition);
    opacity: 0.85;
}

.back-link:hover {
    gap: 0.8rem;
    color: var(--gold-light);
    opacity: 1;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
    :root {
        --section-pad: var(--section-pad-m);
    }

    .site-header {
        padding: 1rem 1.5rem;
    }

    .site-header.scrolled {
        padding: 0.7rem 1.5rem;
    }

    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-logo {
        height: 130px;
    }

    .quick-nav-inner {
        flex-direction: column;
    }

    .quick-nav-item {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(201,168,76,0.1);
    }

    .quick-nav-divider {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-btn {
        width: 100%;
        max-width: 320px;
    }

    .team-card {
        padding: 2rem 1.5rem;
    }

    .styled-quote {
        padding: 1.2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-headline .line {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .team-photo {
        max-width: 100%;
        height: 280px;
    }
}

/* ==================== PRINT ==================== */
@media print {
    .site-header, .hero-scroll-indicator, .back-to-top, .menu-toggle, .mobile-nav-overlay {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        page-break-after: always;
    }

    body {
        background: white;
        color: black;
    }
}
