/* =========================================
   LEGAL PAGES — impressum.html & datenschutz.html
   ========================================= */

.legal-page {
    padding-top: 72px; /* navbar height */
    min-height: 100vh;
}

/* HERO */
.legal-hero {
    background: linear-gradient(180deg, rgba(200,169,110,0.06) 0%, transparent 100%);
    border-bottom: 1px solid #1e1e1e;
    padding: 80px 40px 60px;
    text-align: center;
}

.legal-eyebrow {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.legal-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 6vw, 5rem);
    letter-spacing: 0.02em;
    line-height: 1.1;
    color: var(--text-white);
    word-break: break-word;
}

/* CONTENT WRAPPER */
.legal-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 70px 40px 100px;
}

/* SECTIONS */
.legal-section {
    margin-bottom: 52px;
    padding-bottom: 52px;
    border-bottom: 1px solid #1e1e1e;
}
.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.06em;
    color: var(--text-white);
    margin-bottom: 20px;
}

.legal-section h3 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-top: 28px;
    margin-bottom: 10px;
}

.legal-section p {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 14px;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}
.legal-section a:hover { opacity: 0.75; }

.legal-section ul {
    list-style: none;
    margin: 14px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.legal-section ul li {
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--text-light);
    padding-left: 20px;
    position: relative;
}
.legal-section ul li::before {
    content: '✦';
    position: absolute;
    left: 0;
    font-size: 0.55rem;
    color: var(--accent);
    top: 4px;
}

/* BACK BUTTON */
.legal-back {
    margin-top: 60px;
    text-align: center;
}

/* MOBILE */
@media (max-width: 768px) {
    .legal-hero { padding: 60px 24px 40px; }
    .legal-content { padding: 50px 24px 80px; }
    .legal-section { margin-bottom: 36px; padding-bottom: 36px; }
}
