/* ========== CSS VARIABLES ========== */
:root {
    --orange: #a65a1c;
    --orange-light: #d4883f;
    --orange-glow: rgba(200, 112, 42, 0.12);
    --orange-subtle: rgba(200, 112, 42, 0.06);
    --cream: #faf6f1;
    --cream-dark: #f0e8dd;
    --brown: #3d2e1e;
    --brown-light: #5a4a38;
    --brown-muted: #7a6a58;
    --text: #2c2218;
    --text-light: #6b5d4f;
    --white: #ffffff;
    --border: rgba(200, 112, 42, 0.15);
    --shadow-sm: 0 2px 8px rgba(61, 46, 30, 0.06);
    --shadow-md: 0 8px 30px rgba(61, 46, 30, 0.08);
    --shadow-lg: 0 20px 60px rgba(61, 46, 30, 0.1);
    --radius: 4px;
    --google-gold: #f5a623;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Nunito Sans', -apple-system, sans-serif;
    --max-width: 1200px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--cream);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--orange); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--orange-light); }

/* ========== SKIP NAV ========== */
.skip-nav {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 999;
    background: var(--orange);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-size: 0.85rem;
}
.skip-nav:focus {
    top: 1rem;
    color: var(--white);
}

/* ========== UTILITY ========== */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.text-small { font-size: 0.9rem; }
.text-light { color: var(--text-light); }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* ========== HEADER ========== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 241, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}
.header.scrolled { background: rgba(250, 246, 241, 0.97); box-shadow: var(--shadow-sm); }
.header-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}
.logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 400; color: var(--brown); letter-spacing: 0.02em; line-height: 1.2; }
.logo span { color: var(--orange); font-weight: 500; }

/* Desktop Nav */
.nav { display: flex; align-items: center; gap: 2rem; }
.nav a {
    font-size: 0.85rem; font-weight: 400; color: var(--brown-light);
    letter-spacing: 0.04em; text-transform: uppercase;
    position: relative; padding: 0.25rem 0;
}
.nav a::after {
    content: ''; position: absolute; bottom: 0; left: 0;
    width: 0; height: 1.5px; background: var(--orange); transition: var(--transition);
}
.nav a:hover { color: var(--orange); }
.nav a:hover::after { width: 100%; }
.nav a.active { color: var(--orange); }
.nav a.active::after { width: 100%; }
.nav-cta {
    background: var(--orange) !important; color: var(--white) !important;
    padding: 0.6rem 1.4rem !important; border-radius: var(--radius);
    font-size: 0.8rem !important; letter-spacing: 0.06em !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--orange-light) !important; transform: translateY(-1px); }

/* Mobile Menu Button */
.menu-toggle {
    display: none; background: none; border: none;
    cursor: pointer; padding: 0.5rem; z-index: 110;
}
.menu-toggle span {
    display: block; width: 24px; height: 2px;
    background: var(--brown); margin: 5px 0;
    transition: var(--transition); border-radius: 2px;
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== HERO (index.html) ========== */
.hero {
    height: 100vh; display: flex; align-items: center;
    position: relative; padding: 80px 0 0; overflow: hidden;
}
.hero::before {
    content: ''; position: absolute; top: 0; right: -10%;
    width: 55%; height: 100%;
    background: linear-gradient(160deg, var(--orange-glow) 0%, transparent 70%);
    border-radius: 0 0 0 40%; pointer-events: none;
}
.hero::after {
    content: ''; position: absolute; bottom: -5%; left: -5%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
    pointer-events: none;
}
.hero-inner {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center; position: relative; z-index: 1;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--white); border: 1px solid var(--border);
    padding: 0.45rem 1rem; border-radius: 50px;
    font-size: 0.78rem; color: var(--brown-muted);
    margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease-out;
}
.hero-badge svg { flex-shrink: 0; }
.hero h1 {
    font-family: var(--font-display); font-size: clamp(2.8rem, 5vw, 4rem);
    font-weight: 300; line-height: 1.15; color: var(--brown);
    margin-bottom: 1.5rem; animation: fadeInUp 0.8s ease-out 0.15s backwards;
}
.hero h1 em { font-style: italic; color: var(--orange); font-weight: 400; }
.hero-text {
    font-size: 1.05rem; color: var(--text-light); line-height: 1.8;
    max-width: 480px; margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease-out 0.3s backwards;
}
.hero-actions {
    display: flex; gap: 1rem; align-items: center; flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.45s backwards;
}
.btn-primary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--orange); color: var(--white);
    padding: 0.85rem 2rem; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.88rem;
    font-weight: 500; letter-spacing: 0.04em;
    border: none; cursor: pointer; transition: var(--transition);
}
.btn-primary:hover {
    background: var(--orange-light); color: var(--white);
    transform: translateY(-2px); box-shadow: 0 8px 25px rgba(200, 112, 42, 0.25);
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 0.5rem;
    color: var(--brown-light); font-size: 0.88rem; font-weight: 400;
    padding: 0.85rem 1.5rem; border: 1px solid var(--border);
    border-radius: var(--radius); transition: var(--transition);
}
.btn-secondary:hover { border-color: var(--orange); color: var(--orange); }

.hero-visual { position: relative; }
.hero-image-wrapper {
    position: relative; border-radius: 200px 200px 20px 20px;
    overflow: hidden; aspect-ratio: 3/4; max-height: 100%;
    background: var(--cream); box-shadow: var(--shadow-lg);
}
.hero-image-wrapper img { width: 100%; height: 100%; object-fit: cover; object-position: center center; display: block; }
.hero-trust-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--brown-muted);
    margin-bottom: 1.5rem;
}
.hero-trust-mobile svg { flex-shrink: 0; color: var(--orange); }
/* ========== SECTION STYLING ========== */
section { padding: 6rem 0; }
.section-label {
    font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.15em; color: var(--orange);
    font-weight: 600; margin-bottom: 0.75rem;
}
.section-title {
    font-family: var(--font-display); font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300; color: var(--brown); line-height: 1.25; margin-bottom: 0.75rem;
}
.section-title em { font-style: italic; color: var(--orange); font-weight: 400; }
.section-subtitle {
    font-size: 1rem; color: var(--text-light);
    max-width: 560px; line-height: 1.8; margin-bottom: 2.5rem;
}

/* ========== TRUST BAR ========== */
.trust-bar { padding: 3rem 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-items { display: flex; align-items: center; justify-content: center; gap: 3rem; flex-wrap: nowrap; }
.trust-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.88rem; color: var(--brown-light); }
.trust-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: var(--orange-subtle); display: flex;
    align-items: center; justify-content: center; flex-shrink: 0;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--orange); }
.trust-divider { width: 1px; height: 32px; background: var(--border); }

/* ========== SERVICES PREVIEW (index) ========== */
.services-section { background: var(--cream); }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 8px; padding: 2.5rem 2rem;
    transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px; background: var(--orange);
    transform: scaleX(0); transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(200, 112, 42, 0.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 52px; height: 52px;
    margin-bottom: 1.5rem; transition: var(--transition);
}
.service-icon svg { width: 100%; height: 100%; }
.service-card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 500; color: var(--brown); margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 1.25rem; }
.service-price { font-size: 0.82rem; color: var(--orange); font-weight: 500; }
.service-link { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.82rem; font-weight: 500; color: var(--orange); margin-top: 0.75rem; }
.service-link:hover { gap: 0.6rem; }

/* ========== ABOUT PREVIEW (index) ========== */
.about-section { background: var(--white); }
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 4rem; align-items: center; }
.about-image { position: relative; aspect-ratio: 3/3.4; border-radius: 16px; overflow: hidden; background: var(--cream-dark); box-shadow: var(--shadow-md); }
.about-image img { position: absolute; inset: 0; display: block; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.about-content .section-subtitle { margin-bottom: 1.5rem; }
.about-qualities { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-quality { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--brown-light); }
.about-quality svg { flex-shrink: 0; margin-top: 3px; color: var(--orange); }
.about-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 2rem; font-size: 0.88rem; font-weight: 500; color: var(--orange); }
.about-link:hover { gap: 0.7rem; }

/* ========== GOOGLE REVIEWS (index) ========== */
.reviews-section { background: var(--cream); position: relative; overflow: hidden; }
.reviews-section::before { content: ''; position: absolute; top: -50%; right: -10%; width: 400px; height: 400px; background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%); pointer-events: none; }
.reviews-header { text-align: center; margin-bottom: 1rem; position: relative; }
.reviews-google { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 2.5rem; }
.google-logo { display: flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; font-weight: 500; color: var(--text); }
.google-rating { display: flex; align-items: center; gap: 0.4rem; }
.google-rating-number { font-family: var(--font-display); font-size: 1.6rem; font-weight: 600; color: var(--brown); }
.google-stars { color: var(--google-gold); font-size: 1.1rem; letter-spacing: 1px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; position: relative; }
.review-card { background: var(--white); border: 1px solid var(--border); border-radius: 8px; padding: 2rem; transition: var(--transition); }
.review-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.review-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.review-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--orange-glow); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--orange); flex-shrink: 0; }
.review-meta { line-height: 1.3; }
.review-name { font-weight: 500; font-size: 0.9rem; color: var(--brown); }
.review-date { font-size: 0.75rem; color: var(--text-light); }
.review-stars { color: var(--google-gold); font-size: 0.85rem; letter-spacing: 1px; margin-bottom: 0.75rem; }
.review-text { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ========== CTA SECTION (index) ========== */
.cta-section { background: var(--cream-dark); position: relative; overflow: hidden; padding: 5rem 0; }
.cta-inner { text-align: center; position: relative; }
.cta-inner .section-label { color: var(--orange); }
.cta-inner .section-title { color: var(--brown); margin-bottom: 1rem; }
.cta-inner .section-subtitle { color: var(--text-light); margin: 0 auto 2.5rem; }
.cta-contact { display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.cta-phone {
    display: inline-flex; align-items: center; gap: 0.6rem;
    background: var(--orange); color: var(--white);
    padding: 0.85rem 2rem; border-radius: var(--radius);
    font-size: 0.95rem; font-weight: 500; transition: var(--transition);
}
.cta-phone:hover { background: var(--orange-light); color: var(--white); transform: translateY(-2px); }
.cta-phone--secondary { background: var(--brown); }
.cta-phone--secondary:hover { background: var(--brown-light); color: var(--white); }
.cta-hours { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; margin-top: 1.5rem; }
.cta-hours strong { color: var(--brown); font-weight: 500; }

/* ========== FOOTER ========== */
.footer { background: #6b5540; padding: 3rem 0 2rem; color: rgba(250, 246, 241, 0.85); font-size: 0.82rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 2rem; }
.footer-brand .logo { margin-bottom: 0.75rem; color: var(--cream); }
.footer-brand .logo span { color: #f5cfa0; }
.footer-brand p { max-width: 280px; line-height: 1.6; }
.footer-links { display: flex; gap: 3rem; }
.footer-col-title { font-family: var(--font-display); font-size: 1rem; font-weight: 500; color: var(--cream-dark); margin-bottom: 0.75rem; }
.footer-col a { display: block; color: rgba(250, 246, 241, 0.75); font-size: 0.82rem; margin-bottom: 0.4rem; transition: var(--transition); }
.footer-col a:hover { color: var(--orange-light); }

.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(250, 246, 241, 0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-legal a { margin-left: 1.5rem; color: rgba(250, 246, 241, 0.75); }
.footer-legal a:hover { color: var(--orange-light); }

/* ========== COOKIE BANNER ========== */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 1px solid var(--border); box-shadow: 0 -4px 20px rgba(0,0,0,0.08); padding: 1.25rem 2rem; z-index: 200; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { max-width: var(--max-width); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cookie-text { font-size: 0.85rem; color: var(--text-light); flex: 1; }
.cookie-text a { text-decoration: underline; }
.cookie-buttons { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-btn { padding: 0.55rem 1.25rem; border-radius: var(--radius); font-size: 0.82rem; font-family: var(--font-body); cursor: pointer; border: 1px solid var(--border); background: var(--white); color: var(--text); transition: var(--transition); }
.cookie-btn:hover { border-color: var(--orange); }
.cookie-btn.accept { background: var(--orange); border-color: var(--orange); color: var(--white); }
.cookie-btn.accept:hover { background: var(--orange-light); }

/* ========== PAGE HERO (subpages) ========== */
.page-hero { padding: 10rem 0 4rem; position: relative; overflow: hidden; min-height: 340px; }
.page-hero-bg { position: absolute; inset: 0; z-index: 0; }
.page-hero-bg img { display: block; width: 100%; height: 100%; object-fit: cover; }
.page-hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(250,246,241,0.92) 0%, rgba(250,246,241,0.75) 50%, rgba(250,246,241,0.5) 100%); }
.page-hero .container { position: relative; z-index: 1; }
.page-hero .breadcrumb { font-size: 0.8rem; color: var(--text-light); margin-bottom: 1rem; letter-spacing: 0.04em; text-transform: uppercase; }
.page-hero .breadcrumb a { color: var(--orange); }
.page-hero h1 { font-family: var(--font-display); font-size: 3rem; font-weight: 400; color: var(--brown); line-height: 1.15; margin-bottom: 1rem; max-width: 750px; }
.page-hero .lead { font-size: 1.1rem; color: var(--text-light); max-width: 640px; line-height: 1.8; }

/* ========== SUBPAGE SECTIONS ========== */
.bg-cream { background: var(--cream-dark); }
.bg-white { background: var(--white); }

/* Content Grid */
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.content-grid.reverse { direction: rtl; }
.content-grid.reverse > * { direction: ltr; }
.content-image { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.content-image img { display: block; width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.content-text h2 { font-family: var(--font-display); font-size: 2rem; font-weight: 400; color: var(--brown); margin-bottom: 1rem; line-height: 1.2; }
.content-text h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400; color: var(--brown); margin-bottom: 0.75rem; }
.content-text p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.content-text ul { list-style: none; margin: 1rem 0; }
.content-text ul li { padding: 0.4rem 0 0.4rem 1.5rem; position: relative; color: var(--text-light); }
.content-text ul li::before { content: '\2726'; position: absolute; left: 0; color: var(--orange); font-size: 0.7rem; top: 0.6rem; }

/* Price Cards */
.price-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; transition: var(--transition); display: flex; flex-direction: column; position: relative; }
.price-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.price-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--brown); margin-bottom: 0.5rem; min-height: 2.8em; }
.price-card .price { font-family: var(--font-display); font-size: 1.8rem; color: var(--orange); font-weight: 500; margin-bottom: 0.75rem; }
.price-card .duration { font-size: 0.82rem; color: var(--brown-muted); margin-bottom: 1rem; letter-spacing: 0.03em; }
.price-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.price-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.5rem; }
.price-grid--quad { grid-template-columns: repeat(4, 1fr); }
.price-card .tag { display: inline-block; background: var(--orange-glow); color: var(--orange); font-size: 0.72rem; padding: 0.25rem 0.75rem; border-radius: 20px; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 500; align-self: flex-start; }
.price-grid--has-tags .price-card:has(.tag) { padding-top: 4.2rem; }
.price-grid--has-tags .price-card .tag { position: absolute; top: 2rem; left: 2rem; margin-bottom: 0; }
.price-card .treatment-steps { font-size: 0.85rem; flex: 1; }
.price-card > p { flex: 1; }
.price-highlight { border-color: var(--orange); }
.divider-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; color: var(--brown); margin: 3rem 0 1.5rem; padding-top: 2rem; border-top: 1px solid var(--border); }

/* Buttons (subpages) */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.9rem 2rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; transition: var(--transition); border: none; cursor: pointer; text-decoration: none; }
.btn.btn-primary { background: var(--orange); color: var(--white); }
.btn.btn-primary:hover { background: var(--orange-light); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn.btn-secondary { background: transparent; color: var(--orange); border: 1.5px solid var(--orange); }
.btn.btn-secondary:hover { background: var(--orange); color: var(--white); }

/* Features Grid (naturkosmetik) */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2rem; }
.features-grid--3col { grid-template-columns: repeat(3, 1fr); }
.feature-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 1.5rem; text-align: center; transition: var(--transition); }
.feature-item:hover { box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.feature-icon { width: 42px; height: 42px; margin: 0 auto 0.75rem; }
.feature-icon svg { width: 100%; height: 100%; }
.feature-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--brown); margin-bottom: 0.5rem; }
.feature-item p { font-size: 0.85rem; color: var(--text-light); }

/* Seminars (reiki) */
.seminars-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
.seminar-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
.seminar-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--brown); margin-bottom: 0.75rem; }
.seminar-dates { margin: 1rem 0; }
.seminar-date { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-light); }
.seminar-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--orange); font-weight: 500; margin-top: 1rem; }

/* Qualifications (ueber-mich) */
.qualifications-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; margin-top: 1.5rem; }
.qual-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem 1.5rem; text-align: center; }
.qual-icon { width: 44px; height: 44px; margin: 0 auto 0.75rem; }
.qual-icon svg { width: 100%; height: 100%; }
.qual-card h4 { font-family: var(--font-display); font-size: 1.15rem; color: var(--brown); margin-bottom: 0.5rem; }
.qual-card p { font-size: 0.88rem; color: var(--text-light); }

/* Timeline (ueber-mich) */
.timeline { margin-top: 1.5rem; }
.timeline-item { display: flex; gap: 1.5rem; padding: 0.75rem 0; border-bottom: 1px solid var(--border); }
.timeline-year { font-family: var(--font-display); font-size: 1.2rem; font-weight: 500; color: var(--orange); min-width: 60px; }
.timeline-text { color: var(--text-light); font-size: 0.9rem; }

/* Contact (kontakt) */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.contact-info-card { background: var(--cream); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.5rem; }
.contact-info-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--brown); margin-bottom: 0.5rem; display: flex; align-items: center; gap: 0.5rem; }
.contact-info-card h3 svg { flex-shrink: 0; color: var(--orange); }
.contact-info-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-top: 1rem; }
.map-container iframe { width: 100%; height: 300px; border: 0; }
.contact-form { background: var(--cream); border-radius: var(--radius); padding: 2rem; }
.contact-form h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--brown); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 500; color: var(--brown); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
    width: 100%; padding: 0.75rem 1rem; border: 1.5px solid var(--border);
    border-radius: var(--radius); font-family: var(--font-body);
    font-size: 0.9rem; background: var(--white); color: var(--text);
    transition: var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--orange); outline: none; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--orange); color: var(--white);
    padding: 0.85rem 2rem; border: none; border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.88rem;
    font-weight: 500; cursor: pointer; transition: var(--transition);
}
.form-submit:hover { background: var(--orange-light); transform: translateY(-1px); }
.honeypot { position: absolute; left: -9999px; }
.form-group--checkbox { margin-top: 0.5rem; }
.checkbox-label { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--text-light); cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 0.2rem; flex-shrink: 0; accent-color: var(--orange); width: 16px; height: 16px; }
.checkbox-label a { color: var(--orange); text-decoration: underline; }
.map-consent { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; padding: 2rem; text-align: center; background: var(--cream-dark); min-height: 300px; }
.map-consent p { font-size: 0.88rem; color: var(--text-light); margin: 0; line-height: 1.5; }
.map-consent strong { color: var(--brown); }
.map-consent .btn { padding: 0.65rem 1.5rem; font-size: 0.82rem; }

/* Legal (datenschutz, impressum) */
.legal-content { max-width: 700px; }
.legal-content h2 { font-family: var(--font-display); font-size: 1.5rem; color: var(--brown); margin: 2rem 0 0.75rem; }
.legal-content h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--brown); margin: 1.5rem 0 0.5rem; }
.legal-content p { color: var(--text-light); margin-bottom: 1rem; line-height: 1.8; }
.legal-content a { color: var(--orange); }

/* ========== AUTHOR BOX (E-E-A-T) ========== */
.author-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
}
.author-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}
.author-name {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 0.35rem;
}
.author-title {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}
.author-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brown-light);
    background: var(--cream);
    padding: 0.3rem 0.7rem;
    border-radius: 20px;
}
.credential-badge svg { flex-shrink: 0; }
.author-text {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ========== FAQ ACCORDION (details/summary) ========== */
.faq-section { max-width: 800px; margin: 2rem auto 0; }
.faq-item {
    border-bottom: 1px solid var(--border);
}
.faq-item:first-of-type {
    border-top: 1px solid var(--border);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--brown);
    cursor: pointer;
    list-style: none;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--orange);
    transition: transform var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}
.faq-item[open] summary::after {
    content: '−';
}
.faq-item summary:hover { color: var(--orange); }
.faq-answer {
    padding: 0 0 1.25rem;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.8;
}
.faq-answer p { margin-bottom: 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ========== LOCAL INFO ========== */
.local-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}
.local-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
}
.local-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.local-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ========== STICKY MOBILE CTA ========== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 190;
    background: var(--orange);
    padding: 0;
    box-shadow: 0 -2px 12px rgba(61, 46, 30, 0.15);
}
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 1rem;
    letter-spacing: 0.03em;
}
.sticky-cta a:hover { color: var(--white); }
.sticky-cta svg { flex-shrink: 0; }
.cookie-banner { bottom: 0; transition: bottom 0.3s ease; }

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ========== RESPONSIVE ========== */
@media (max-width: 1100px) {
    .container { padding: 0 1.5rem; }
    .header-inner { padding: 0 1.5rem; }
    .hero-inner { gap: 3rem; }
    .about-inner { gap: 3rem; }
}

@media (max-width: 968px) {
    .hero { height: auto; min-height: 100vh; overflow: visible; align-items: flex-start; padding-top: calc(80px + 2rem); }
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-text { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-visual { max-width: 360px; margin: 2rem auto 0; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-inner { grid-template-columns: 1fr; }
    .about-image { max-width: 380px; margin: 0 auto; aspect-ratio: 3/4; }
    .about-content { text-align: center; }
    .about-content .section-subtitle { margin: 0 auto 1.5rem; }
    .about-qualities { justify-content: center; }
    .about-link { justify-content: center; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .reviews-grid .review-card:last-child { grid-column: 1 / -1; max-width: 500px; margin: 0 auto; }
    .menu-toggle { display: block; }
    .nav {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 360px; height: 100vh;
        background: var(--cream); flex-direction: column;
        justify-content: center; align-items: center;
        gap: 1.5rem; padding: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    .nav.open { right: 0; }
    .nav a { font-size: 1rem; }
    .nav-cta { margin-top: 1rem; }
    .page-hero { padding: 8rem 0 3rem; min-height: 280px; }
    .page-hero h1 { font-size: 2.2rem; }
    .content-grid { grid-template-columns: 1fr; gap: 2rem; }
    .content-grid.reverse { direction: ltr; }
    .price-grid { grid-template-columns: 1fr; }
    .price-grid--quad { grid-template-columns: repeat(2, 1fr); }
    .price-card h3 { min-height: auto; }
    .price-grid--has-tags .price-card:has(.tag) { padding-top: 2rem; }
    .price-grid--has-tags .price-card .tag { position: static; margin-bottom: 1rem; }
    .contact-grid { grid-template-columns: 1fr; }
    .author-box { grid-template-columns: 1fr; text-align: center; justify-items: center; }
    .author-credentials { justify-content: center; }
    .local-info-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .sticky-cta { display: block; }
    .cookie-banner.show { bottom: 52px; }
    html { font-size: 15px; }
    .container { padding: 0 1.25rem; }
    .header-inner { padding: 0 1.25rem; height: 68px; }
    .hero { padding-top: calc(68px + 2rem); height: auto; min-height: 0; padding-bottom: 3rem; align-items: flex-start; }
    .hero h1 { font-size: 2.2rem; }
    .hero-visual { max-width: 280px; }
    .hero-trust-mobile { display: flex; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; max-width: 300px; }
    section { padding: 3.5rem 0; }
    .services-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .service-card { padding: 2rem 1.5rem; }
    .about-qualities { grid-template-columns: 1fr; text-align: left; }
    .reviews-grid { grid-template-columns: 1fr; }
    .reviews-grid .review-card:last-child { max-width: none; }
    .review-card { padding: 1.5rem; }
    .trust-items { gap: 1.25rem; flex-direction: column; align-items: flex-start; padding: 0 0.5rem; }
    .trust-divider { display: none; }
    .footer-inner { flex-direction: column; }
    .footer-links { flex-direction: column; gap: 1.5rem; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-legal a { margin-left: 0; margin-right: 1.5rem; }
    .cta-contact { flex-direction: column; text-align: center; }
    .cta-phone { width: 100%; justify-content: center; max-width: 300px; }
    .cookie-inner { flex-direction: column; text-align: center; gap: 1rem; }
    .cookie-buttons { width: 100%; }
    .cookie-btn { flex: 1; }
    .section-title { font-size: 1.8rem; }
    .reviews-google { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
    .price-grid--quad { grid-template-columns: 1fr; }
}

@media (max-width: 380px) {
    .hero h1 { font-size: 1.9rem; }
    .container { padding: 0 1rem; }
    .header-inner { padding: 0 1rem; }
    .hero-badge { font-size: 0.72rem; padding: 0.35rem 0.8rem; }
}

/* ========== BLOG ========== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.04);
}
.blog-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.blog-card-date {
    font-size: 0.78rem;
    color: var(--brown-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.03em;
}
.blog-card-body h2 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}
.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--orange);
    margin-top: 1rem;
}
.blog-card-link:hover { gap: 0.6rem; }

.blog-hero {
    aspect-ratio: 21/9;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}
.blog-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.blog-article {
    max-width: 720px;
    margin: 0 auto;
}
.blog-article .blog-meta {
    font-size: 0.82rem;
    color: var(--brown-muted);
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}
.blog-article h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.6rem);
    font-weight: 400;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.blog-article h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
    margin: 2.5rem 0 1rem;
    line-height: 1.25;
}
.blog-article h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--brown);
    margin: 2rem 0 0.75rem;
}
.blog-article p {
    color: var(--text-light);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.blog-article ul, .blog-article ol {
    margin: 1rem 0 1.25rem 1.5rem;
    color: var(--text-light);
    line-height: 1.85;
}
.blog-article li { margin-bottom: 0.4rem; }
.blog-article strong { color: var(--text); font-weight: 600; }

.blog-cta {
    background: var(--cream-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}
.blog-cta p {
    color: var(--text-light);
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}
.blog-cta .blog-cta-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--brown);
    margin-bottom: 0.75rem;
    font-weight: 400;
}
.blog-back {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--orange);
    margin-top: 2rem;
}
.blog-back:hover { gap: 0.6rem; }

@media (max-width: 968px) {
    .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero { aspect-ratio: 16/9; }
}
