/*
Theme Name: Energie-Arbeit
Theme URI: https://energie-arbeit.ch
Author: energie-arbeit
Author URI: https://energie-arbeit.ch
Description: Ein spirituelles und sanftes Theme für mediale Dienstleistungen und Energiearbeit – inspiriert von führenden Schweizer Anbieterinnen.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: energie-arbeit
Tags: spiritual, healing, one-page, responsive, swiss
*/

/* =============================================
   GOOGLE FONTS
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;1,400&family=Lato:wght@300;400;700&display=swap');

/* =============================================
   DESIGN TOKENS
   ============================================= */
:root {
    /* Farbpalette – warm, sanft, professionell */
    --rose:          #C9967A;
    --rose-light:    #E8C8B8;
    --rose-soft:     #F7EDE8;
    --sage:          #8A9E8A;
    --sage-light:    #C5D4C5;
    --sage-soft:     #EBF0EB;
    --warm-gold:     #B8976A;
    --warm-gold-lt:  #E2D0B0;
    --cream:         #FAF7F2;
    --cream-dark:    #F2ECE4;
    --warm-white:    #FFFDF9;
    --text-dark:     #2C2420;
    --text-mid:      #6B5A52;
    --text-light:    #A0897E;
    --border:        rgba(180, 140, 120, 0.18);
    --shadow-sm:     0 2px 12px rgba(80, 50, 40, 0.08);
    --shadow-md:     0 6px 32px rgba(80, 50, 40, 0.12);
    --shadow-lg:     0 12px 56px rgba(80, 50, 40, 0.16);
    --radius:        14px;
    --radius-sm:     8px;
    --ease:          all 0.3s ease;
}

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

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

body {
    font-family: 'Lato', 'Helvetica Neue', sans-serif;
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.75;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.25;
    color: var(--text-dark);
}

p { margin-bottom: 1em; }
a { color: var(--rose); text-decoration: none; transition: var(--ease); }
a:hover { color: var(--warm-gold); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 28px;
}

/* =============================================
   TYPOGRAPHY HELPERS
   ============================================= */
.section-label {
    display: block;
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 0.7rem;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.6rem);
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--rose);
}

.ornament {
    display: block;
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, var(--rose-light), var(--warm-gold-lt));
    margin: 1rem 0 1.5rem;
}

.ornament--center { margin-left: auto; margin-right: auto; }

.lead {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
}

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.93);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: var(--ease);
}

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

.site-header.scrolled .header-inner {
    padding-top: 12px;
    padding-bottom: 12px;
}

.site-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.45rem;
    font-weight: 400;
    color: var(--text-dark);
    letter-spacing: 0.03em;
}

.site-logo strong {
    color: var(--rose);
    font-weight: 600;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.nav-links a {
    font-size: 0.85rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--text-mid);
    font-weight: 400;
    transition: var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--text-dark); }

.nav-links .btn-book {
    background: var(--rose);
    color: #fff !important;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 700;
}

.nav-links .btn-book:hover {
    background: var(--warm-gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(180, 140, 120, 0.35);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--ease);
}

/* =============================================
   HERO
   ============================================= */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 100px 28px 60px;
    max-width: 1080px;
    margin: 0 auto;
    gap: 4rem;
}

.hero-text { order: 1; }

.hero-image { order: 2; }

.hero-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 1.2rem;
    font-family: 'Lato', sans-serif;
}

.hero h1 {
    font-size: clamp(2.4rem, 5vw, 3.6rem);
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 0.3em;
    line-height: 1.2;
}

.hero h1 em {
    font-style: italic;
    color: var(--rose);
}

.hero-tagline {
    font-size: 1.1rem;
    color: var(--text-mid);
    line-height: 1.8;
    max-width: 440px;
    margin: 1.4rem 0 2.4rem;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    background: var(--rose);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: var(--ease);
    box-shadow: 0 4px 20px rgba(201, 150, 122, 0.3);
}

.btn-primary:hover {
    background: var(--warm-gold);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(184, 151, 106, 0.4);
}

.btn-outline {
    display: inline-block;
    color: var(--text-mid);
    padding: 12px 32px;
    border-radius: 50px;
    border: 1px solid var(--rose-light);
    font-size: 0.88rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: var(--ease);
}

.btn-outline:hover {
    border-color: var(--rose);
    color: var(--rose);
    background: var(--rose-soft);
}

/* Hero Bild-Bereich */
.hero-portrait {
    position: relative;
}

.portrait-frame {
    width: 100%;
    aspect-ratio: 4/5;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(160deg, var(--rose-soft) 0%, var(--cream-dark) 100%);
    box-shadow: var(--shadow-md);
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 5rem;
    gap: 1rem;
}

.portrait-placeholder small {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
}

.portrait-badge {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: var(--warm-white);
    border-radius: var(--radius);
    padding: 14px 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.3;
    max-width: 180px;
}

.portrait-badge strong {
    display: block;
    font-size: 1.3rem;
    color: var(--rose);
}

/* =============================================
   INTRO STRIP
   ============================================= */
.intro-strip {
    background: var(--text-dark);
    color: rgba(255,255,255,0.9);
    padding: 56px 28px;
    text-align: center;
}

.intro-strip p {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.1rem, 2.5vw, 1.45rem);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

.intro-strip em {
    color: var(--rose-light);
    font-style: normal;
}

/* =============================================
   ANGEBOTE / DIENSTLEISTUNGEN
   ============================================= */
.services {
    padding: 96px 28px;
    background: var(--warm-white);
}

.services-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2.2rem 1.8rem;
    border: 1px solid var(--border);
    transition: var(--ease);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--rose), var(--warm-gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    background: var(--warm-white);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.2rem;
    margin-bottom: 1.1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: var(--text-dark);
}

.service-card p {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin: 0;
}

.service-card .service-link {
    display: inline-block;
    margin-top: 1.2rem;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--rose);
    font-weight: 700;
}

.service-card .service-link::after { content: ' →'; }

/* =============================================
   ÜBER MICH
   ============================================= */
.about {
    padding: 96px 28px;
    background: var(--cream);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 5rem;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-portrait {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: var(--radius);
    overflow: hidden;
    background: linear-gradient(150deg, var(--rose-soft), var(--cream-dark));
    box-shadow: var(--shadow-md);
}

.about-portrait img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.about-portrait-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--text-light);
}

.about-deco {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100px; height: 100px;
    background: var(--rose-soft);
    border-radius: 50%;
    z-index: -1;
}

.about-deco-2 {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 140px; height: 140px;
    background: var(--sage-soft);
    border-radius: 50%;
    z-index: -1;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    margin: 1.8rem 0 2rem;
}

.value-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-mid);
}

.value-tag::before {
    content: '✦';
    color: var(--rose);
    font-size: 0.65rem;
    flex-shrink: 0;
}

/* =============================================
   ZITAT
   ============================================= */
.quote-section {
    padding: 72px 28px;
    background: var(--rose-soft);
    text-align: center;
}

.quote-section blockquote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.7rem);
    color: var(--text-dark);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.65;
    font-weight: 400;
    position: relative;
    padding: 0 2rem;
}

.quote-section blockquote::before {
    content: '"';
    font-size: 5rem;
    color: var(--rose-light);
    position: absolute;
    top: -2rem;
    left: 0;
    line-height: 1;
    font-family: Georgia, serif;
}

.quote-attr {
    margin-top: 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
}

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
    padding: 96px 28px;
    background: var(--warm-white);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.testimonial-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-stars {
    color: var(--warm-gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.testimonial-card p {
    font-size: 0.97rem;
    color: var(--text-mid);
    line-height: 1.75;
    font-style: italic;
    margin: 0 0 1.2rem;
}

.testimonial-author {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.testimonial-author span {
    display: block;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-light);
    font-size: 0.8rem;
    margin-top: 2px;
}

/* =============================================
   KONTAKT
   ============================================= */
.contact {
    padding: 96px 28px;
    background: var(--cream);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
}

.contact-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.5rem);
    margin-bottom: 0.5rem;
}

.contact-text p { color: var(--text-mid); }

.contact-details {
    margin-top: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item-icon {
    font-size: 1.15rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.contact-item strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    margin-bottom: 2px;
}

.contact-item a,
.contact-item p {
    color: var(--text-mid);
    font-size: 1rem;
    margin: 0;
}

.contact-item a:hover { color: var(--rose); }

/* Kontaktformular */
.contact-form-wrap {
    background: var(--warm-white);
    padding: 2.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    margin-bottom: 5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 15px;
    border: 1px solid var(--rose-light);
    border-radius: var(--radius-sm);
    background: var(--cream);
    font-family: 'Lato', sans-serif;
    font-size: 0.97rem;
    color: var(--text-dark);
    transition: var(--ease);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--rose);
    background: var(--warm-white);
    box-shadow: 0 0 0 3px rgba(201, 150, 122, 0.12);
}

.form-group textarea { resize: vertical; min-height: 110px; }

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9967A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    cursor: pointer;
}

.form-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    font-style: italic;
}

.btn-submit {
    width: 100%;
    background: var(--rose);
    color: #fff;
    padding: 13px;
    border: none;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--ease);
    box-shadow: 0 4px 20px rgba(201, 150, 122, 0.3);
}

.btn-submit:hover {
    background: var(--warm-gold);
    transform: translateY(-1px);
    box-shadow: 0 8px 32px rgba(184, 151, 106, 0.4);
}

.form-success {
    background: var(--sage-soft);
    border: 1px solid var(--sage-light);
    color: var(--sage);
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
    display: none;
}

.form-success.visible { display: block; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
    background: var(--text-dark);
    color: rgba(255,255,255,0.55);
    padding: 60px 28px 28px;
}

.footer-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .site-logo {
    color: rgba(255,255,255,0.9);
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    display: block;
}

.footer-brand .site-logo strong { color: var(--rose-light); }

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.45);
    margin: 0;
}

.footer-col h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col ul li { margin-bottom: 0.55rem; }

.footer-col ul a {
    color: rgba(255,255,255,0.55);
    font-size: 0.92rem;
    transition: var(--ease);
}

.footer-col ul a:hover { color: var(--rose-light); }

.footer-bottom {
    max-width: 1080px;
    margin: 0 auto;
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.28);
    font-family: 'Lato', sans-serif;
}

.footer-bottom a {
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
}

.footer-bottom a:hover { color: var(--rose-light); }

/* =============================================
   MOBILE
   ============================================= */
@media (max-width: 900px) {
    .services-grid,
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .hamburger { display: flex; }

    .nav-links {
        display: none;
        position: fixed;
        top: 65px; left: 0;
        width: 100%;
        background: var(--warm-white);
        flex-direction: column;
        padding: 2rem;
        gap: 1.4rem;
        box-shadow: var(--shadow-md);
        border-top: 1px solid var(--border);
    }

    .nav-links.open { display: flex; }

    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
        padding-top: 110px;
    }

    .hero-image { display: none; }

    .about-inner,
    .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }

    .about-img-wrap { display: none; }

    .services-grid,
    .testimonials-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

    .footer-bottom { flex-direction: column; text-align: center; }
}

/* =============================================
   STANDORT / KARTE
   ============================================= */
.location {
    padding-bottom: 96px;
    background: var(--cream-dark);
}

.location-header {
    padding: 96px 28px 40px;
    background: var(--cream-dark);
    text-align: center;
}

.location-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 3.5rem;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.location-address {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-address .contact-item-icon { font-size: 1.15rem; flex-shrink: 0; margin-top: 2px; }

.location-address strong {
    display: block;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    margin-bottom: 3px;
}

.location-address p { color: var(--text-mid); font-size: 0.97rem; margin: 0; line-height: 1.6; }

/* Karten-Container */
.map-wrap {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border);
    min-height: 380px;
}

#map {
    height: 380px;
    width: 100%;
    background: var(--cream-dark);
}

/* Zustimmungs-Overlay für Karte */
.map-consent-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, var(--rose-soft), var(--cream-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    padding: 2rem;
}

.map-consent-box {
    text-align: center;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.map-consent-box p {
    color: var(--text-mid);
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0;
}

.map-consent-box small {
    font-size: 0.78rem;
    color: var(--text-light);
}

.map-consent-box small a { color: var(--rose); }

@media (max-width: 768px) {
    .location-inner { grid-template-columns: 1fr; }
    .map-wrap, #map { height: 280px; min-height: 280px; }
}

/* =============================================
   COOKIE-BANNER (DSGVO)
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--text-dark);
    color: rgba(255,255,255,0.85);
    display: none;
    transform: translateY(0);
    transition: transform 0.35s ease, opacity 0.35s ease;
    border-top: 2px solid var(--rose);
}

.cookie-banner-inner {
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text strong {
    display: block;
    color: #fff;
    margin-bottom: 4px;
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.65);
    margin: 0;
    line-height: 1.5;
}

.cookie-text a { color: var(--rose-light); }
.cookie-text a:hover { color: #fff; }

.cookie-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.btn-cookie-accept {
    background: var(--rose);
    color: #fff;
    border: none;
    padding: 10px 22px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-cookie-accept:hover { background: var(--warm-gold); }

.btn-cookie-essential {
    background: transparent;
    color: rgba(255,255,255,0.6);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 9px 18px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-size: 0.82rem;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
}

.btn-cookie-essential:hover {
    border-color: rgba(255,255,255,0.55);
    color: rgba(255,255,255,0.9);
}

@media (max-width: 640px) {
    .cookie-banner-inner { flex-direction: column; align-items: flex-start; }
    .cookie-actions { width: 100%; }
    .btn-cookie-accept, .btn-cookie-essential { flex: 1; text-align: center; }
}

/* =============================================
   RECHTSSEITEN (Impressum, Datenschutz, etc.)
   ============================================= */
.legal-page {
    max-width: 780px;
    margin: 0 auto;
    padding: 140px 28px 100px;
}

.legal-page h1 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.legal-page .legal-date {
    font-size: 0.82rem;
    color: var(--text-light);
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
    display: block;
}

.legal-page h2 {
    font-size: 1.3rem;
    margin: 2.2rem 0 0.6rem;
    color: var(--text-dark);
}

.legal-page p, .legal-page li {
    color: var(--text-mid);
    font-size: 0.97rem;
    line-height: 1.8;
}

.legal-page ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1em;
}

.legal-page a { color: var(--rose); }
.legal-page a:hover { color: var(--warm-gold); }

/* =============================================
   WORDPRESS STANDARD
   ============================================= */
.alignleft { float: left; margin-right: 1.5em; margin-bottom: 1em; }
.alignright { float: right; margin-left: 1.5em; margin-bottom: 1em; }
.aligncenter { display: block; margin: 0 auto 1em; }
.screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    position: absolute !important;
    height: 1px; width: 1px;
    overflow: hidden;
}
