/* ==========================================================================
   Local Font Faces (DSGVO-konform, keine externe Verbindung zu Google)
   ========================================================================== */

/* Cormorant Garamond */
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorantgaramond-italic-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/cormorantgaramond-regular-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/cormorantgaramond-medium-500.ttf') format('truetype');
}
@font-face {
    font-family: 'Cormorant Garamond';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/cormorantgaramond-semibold-600.ttf') format('truetype');
}

/* Jost */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/jost-light-300.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/jost-regular-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/jost-medium-500.ttf') format('truetype');
}
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/jost-semibold-600.ttf') format('truetype');
}

/* Montserrat */
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 300;
    font-display: swap;
    src: url('fonts/montserrat-light-300.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/montserrat-regular-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('fonts/montserrat-medium-500.ttf') format('truetype');
}
@font-face {
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/montserrat-semibold-600.ttf') format('truetype');
}

/* Playfair Display */
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfairdisplay-italic-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: italic;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfairdisplay-italic-600.ttf') format('truetype');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('fonts/playfairdisplay-regular-400.ttf') format('truetype');
}
@font-face {
    font-family: 'Playfair Display';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('fonts/playfairdisplay-semibold-600.ttf') format('truetype');
}

/* ==========================================================================
   CSS Variables & Typography (Elegant & Mature Redesign)
   ========================================================================== */
:root {
    /* Brand Colors (from Business Card) */
    --clr-primary: #3a3f47; /* Charcoal (for contrast & readability) */
    --clr-primary-light: #525a66;
    --clr-secondary: #eed2bf; /* Soft warm peach/rosé blush from card background */
    --clr-accent: #a67c52; /* Warm caramel/bronze from logo & text */
    --clr-accent-light: #b89069;
    
    --clr-bg-main: #ffffff; /* Clean White */
    --clr-bg-muted: #fefaf7; /* Sehr subtiler, heller Nude-Hauch */
    
    --clr-text-main: #2b2b2b;
    --clr-text-muted: #666666;
    --clr-border: #ebdcd3; /* Soft rosé border tint */
    
    /* Typography */
    --font-heading: 'Jost', sans-serif;
    --font-body: 'Jost', sans-serif;
    
    /* Minimalist Effects */
    --border-radius: 30px; /* Elegant rounded styling */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

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

body {
    font-family: var(--font-body);
    color: var(--clr-text-main);
    background-color: var(--clr-bg-main);
    line-height: 1.7;
    overflow-x: hidden;
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--clr-primary);
    line-height: 1.3;
    margin-bottom: 1rem;
    font-weight: 400;
}

p {
    margin-bottom: 1.2rem;
}

.lead {
    font-size: 1.25rem;
    font-family: var(--font-heading);
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
}
.lead-text {
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: var(--clr-text-main);
}

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

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

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section {
    padding: 7rem 0;
}

.bg-muted {
    background-color: #fefaf7 !important;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}
.section-title.left {
    text-align: left;
}
.section-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 500;
    color: var(--clr-accent);
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
    text-align: center;
}
.section-subtitle {
    color: var(--clr-text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* ==========================================================================
   Clean Lists
   ========================================================================== */
.clean-list {
    list-style: none;
    margin-bottom: 2rem;
}
.clean-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}
.clean-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--clr-accent);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
    text-align: center;
}

.btn-primary {
    background-color: var(--clr-accent);
    color: white;
}
.btn-primary:hover {
    background-color: var(--clr-accent-light);
    color: white;
}

.btn-secondary {
    background-color: transparent;
    color: var(--clr-accent);
    border-color: var(--clr-accent);
}
.btn-secondary:hover {
    background-color: var(--clr-accent);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-border);
    transition: var(--transition);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
}

.logo a {
    text-decoration: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    line-height: 1.1;
}

.nav-logo-img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--clr-accent);
    letter-spacing: 1px;
}

.logo-colon {
    color: var(--clr-accent);
}

.logo-subtitle {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--clr-accent-light);
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin-top: 2px;
}

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

.nav-links a {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.nav-links a:hover {
    color: var(--clr-primary);
}
.nav-links .btn-nav {
    border: 1px solid var(--clr-border);
    padding: 0.5rem 1.2rem;
    border-radius: var(--border-radius);
}
.nav-links .btn-nav:hover {
    background-color: var(--clr-primary);
    color: white;
    border-color: var(--clr-primary);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}
.hamburger span {
    width: 25px;
    height: 2px;
    background-color: var(--clr-primary);
    transition: var(--transition);
}

/* ==========================================================================
   Hero Section — Konzept 3: Vollbild mit Farb-Gradienten & Veredelten CTAs
   ========================================================================== */
.hero-concept3 {
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #2b2623;
}

.hero-c3-bg {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-c3-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 30% 0%; /* Aligns top of photo (wall above head) so head is never cut off */
    opacity: 1;
}

.hero-c3-overlay {
    position: absolute;
    inset: 0;
    /* Soft dark caramel/charcoal gradient mask on left, clear on right */
    background: linear-gradient(to right, rgba(38, 33, 30, 0.94) 0%, rgba(38, 33, 30, 0.78) 45%, rgba(38, 33, 30, 0.08) 85%);
}

.hero-c3-container {
    position: relative;
    z-index: 1;
    padding-top: 100px;
    padding-bottom: 4rem;
}

.hero-c3-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 600px;
}

.hero-c3-badge {
    display: inline-block;
    background: rgba(238, 210, 191, 0.18);
    color: #eed2bf;
    padding: 0.45rem 1.3rem;
    border-radius: 20px;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(238, 210, 191, 0.35);
    backdrop-filter: blur(4px);
}

.hero-c3-content .hero-logo-img {
    width: 110px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    margin-left: auto;
    margin-right: auto;
}

.hero-c3-content h1 {
    font-family: var(--font-body);
    font-size: 2.9rem;
    font-weight: 300;
    letter-spacing: 8px;
    color: #ffffff;
    margin-bottom: 0.5rem;
    text-transform: lowercase;
}

.hero-c3-content .h1-colon {
    color: #eed2bf;
}

.hero-c3-content .hero-divider {
    width: 50px;
    height: 1px;
    background: #eed2bf;
    margin: 1.5rem auto;
    opacity: 0.6;
}

.hero-c3-content .subtitle {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: #ffffff; /* Crisp white for maximum contrast and readability */
    text-transform: uppercase;
    letter-spacing: 3.5px;
    font-weight: 400;
    margin-bottom: 2.5rem;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

/* Refined Button Group */
.hero-buttons-wrapper {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 2.2rem;
    border-radius: 30px; /* Smooth rounded pill styling */
    background: linear-gradient(135deg, #a67c52 0%, #b89069 100%);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    box-shadow: 0 10px 25px rgba(166, 124, 82, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(166, 124, 82, 0.45);
    color: #ffffff;
}
.btn-hero-primary .btn-arrow {
    transition: transform 0.3s ease;
}
.btn-hero-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    border-radius: 30px; /* Smooth rounded pill styling */
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    font-family: var(--font-body);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(6px);
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffffff;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================================================
   Angebot Items (Minimal)
   ========================================================================== */
.angebot-items {
    max-width: 750px;
    margin: 0 auto;
}

.angebot-item {
    display: flex;
    gap: 2rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid var(--clr-border);
    align-items: flex-start;
}
.angebot-item:first-child {
    border-top: 1px solid var(--clr-border);
}

.angebot-number {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--clr-accent);
    letter-spacing: 2px;
    min-width: 2.5rem;
    padding-top: 0.3rem;
}

.angebot-content h3 {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.angebot-content p {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* ==========================================================================
   Accordion (Schwerpunkte)
   ========================================================================== */
.accordion-list {
    max-width: 800px;
    margin: 0 auto;
    border-top: 1px solid var(--clr-border);
}

.accordion-item {
    border-bottom: 1px solid var(--clr-border);
    background: transparent;
}

.accordion-header {
    padding: 1.8rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.accordion-header h3 {
    margin: 0;
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 400;
}
.accordion-header .icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-accent);
    transition: transform 0.3s;
}
.accordion-header:hover h3 {
    color: var(--clr-accent);
}

.accordion-item.active .icon {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.accordion-item.active .accordion-content {
    padding: 0 0 2rem 0;
}
.accordion-content p {
    color: var(--clr-text-muted);
}

/* ==========================================================================
   Quote Banner Section
   ========================================================================== */
.quote-banner {
    background-color: #ffffff;
    padding: 4.5rem 0;
    text-align: center;
    border-bottom: 1px solid var(--clr-border);
}

.quote-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.85rem;
    font-weight: 500;
    font-style: italic;
    color: var(--clr-accent);
    line-height: 1.6;
    max-width: 820px;
    margin: 0 auto;
    letter-spacing: 0.5px;
}

/* ==========================================================================
   Über mich
   ========================================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.portrait-wrapper {
    position: relative;
    width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.portrait {
    width: 100%;
    height: 720px;
    object-fit: cover;
    object-position: center top;
    border-radius: var(--border-radius);
}

.profession {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--clr-accent);
    font-size: 0.84rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.profession .single-line {
    display: inline-block;
    white-space: nowrap;
}

.personal-info {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    color: var(--clr-accent);
    background: rgba(166, 124, 82, 0.08);
    padding: 0.4rem 1.1rem;
    border-radius: 20px;
    margin-bottom: 2rem;
    border: 1px solid rgba(166, 124, 82, 0.18);
}

.cv-accordion-item {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
}

.cv-accordion-header {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.cv-accordion-header .cv-section-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--clr-accent);
    margin-bottom: 0;
    font-weight: 500;
}

.cv-accordion-header .cv-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--clr-accent);
    transition: transform 0.3s ease;
}

.cv-accordion-item.active .cv-icon {
    transform: rotate(45deg);
}

.cv-accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.cv-accordion-item.active .cv-accordion-content {
    padding-top: 1.8rem;
    padding-bottom: 1rem;
}

.cv-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem;
    align-items: start;
}

.cv-item::before {
    display: none;
}

.cv-item .year {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--clr-accent);
    font-size: 0.9rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    text-align: left;
    display: inline-block;
}

.cv-item p {
    color: var(--clr-text-main);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.certificate-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid var(--clr-border);
}
.certificate-title {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}
.zertifikat-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.zertifikat-gallery img {
    border: 1px solid var(--clr-border);
    padding: 0.5rem;
    background: white;
}

/* ==========================================================================
   Praxisraum & Kosten — Option 1: Full-Width Banner + 2 Columns Below
   ========================================================================== */
.praxis-opt1-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.praxis-top-banner {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.praxis-full-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}
.praxis-top-banner:hover .praxis-full-img {
    transform: scale(1.01);
}

.praxis-bottom-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: stretch;
}

.info-block {
    background: #ffffff;
    padding: 2.5rem 2.8rem;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.info-block h3 {
    font-size: 1.45rem;
    color: var(--clr-accent);
    margin-bottom: 1rem;
}

.info-block p {
    color: var(--clr-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.praxis-map-wrapper {
    margin-top: auto;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.praxis-map-wrapper iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.kosten-box {
    background: #ffffff;
    padding: 2.5rem 2.8rem;
    border-radius: 20px;
    border: 1px solid var(--clr-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.kosten-box h3 {
    font-size: 1.45rem;
    color: var(--clr-accent);
    margin-bottom: 1.8rem;
}

.cost-category {
    margin-bottom: 2rem;
}

.cost-category h4 {
    font-family: var(--font-body);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.2px;
    color: var(--clr-primary);
    border-bottom: 1px solid var(--clr-border);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.cost-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    color: var(--clr-text-main);
    font-size: 0.95rem;
}

.cost-item span {
    color: var(--clr-text-muted);
}

.cost-notice {
    background: var(--clr-bg-muted);
    padding: 1.4rem;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
    border-left: 3px solid var(--clr-accent);
    border-radius: 12px;
}

/* ==========================================================================
   Kontakt
   ========================================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.05fr;
    gap: 3.5rem;
    align-items: start;
}

.contact-card {
    margin-bottom: 1.8rem;
}
.contact-card h3, .contact-card h4 {
    margin-bottom: 0.8rem;
    font-size: 1.25rem;
}
.contact-card address {
    font-style: normal;
    color: var(--clr-text-muted);
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.icon-link {
    display: block;
    margin-bottom: 0.6rem;
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}
.icon-link:hover {
    color: var(--clr-accent);
}

.cancellation-policy {
    padding-top: 1.5rem;
    border-top: 1px solid var(--clr-border);
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

.contact-quote-card {
    margin-top: 1.6rem;
    padding: 1.1rem 1.4rem;
    background: rgba(166, 124, 82, 0.06);
    border-left: 3px solid var(--clr-accent);
    border-radius: 0 14px 14px 0;
}

.contact-quote-card p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 500;
    color: var(--clr-accent);
    line-height: 1.5;
    margin-bottom: 0;
}

.contact-form-container {
    background: #ffffff;
    border: 1px solid var(--clr-border);
    padding: 2.2rem 2.4rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}
.form-header h3 {
    margin-bottom: 0.4rem;
    font-size: 1.35rem;
}
.form-intro {
    color: var(--clr-text-muted);
    margin-bottom: 1.2rem;
    font-size: 0.88rem;
    line-height: 1.5;
}
.form-group {
    margin-bottom: 0.85rem;
}
.form-group label {
    display: block;
    font-size: 0.84rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    margin-bottom: 0.35rem;
    color: var(--clr-text-main);
}
.form-group input, 
.form-group textarea, 
.form-group select {
    width: 100%;
    padding: 0.65rem 1.15rem;
    border: 1.5px solid var(--clr-border);
    border-radius: 20px;
    background: white;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--clr-text-main);
    transition: var(--transition);
}
.form-group textarea {
    border-radius: 16px;
    padding: 0.7rem 1.15rem;
    min-height: 75px;
    resize: vertical;
}
.form-group input:focus, 
.form-group textarea:focus, 
.form-group select:focus {
    outline: none;
    border-color: var(--clr-accent);
    box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.12);
}

.form-privacy-notice {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--clr-text-muted);
    font-size: 0.74rem;
    line-height: 1.4;
    background: rgba(166, 124, 82, 0.05);
    border: 1px solid rgba(166, 124, 82, 0.14);
    padding: 0.45rem 0.75rem;
    border-radius: 8px;
}

.form-privacy-notice .privacy-icon {
    font-size: 0.8rem;
    line-height: 1.3;
    flex-shrink: 0;
}

.form-privacy-notice p {
    margin-bottom: 0;
    color: var(--clr-text-muted);
    font-size: 0.74rem;
    line-height: 1.4;
}

.form-privacy-notice strong {
    color: var(--clr-accent);
    font-weight: 500;
}

.form-checkbox-group {
    margin-bottom: 1.1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
    font-size: 0.72rem;
    color: #777777;
    line-height: 1.4;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 14px;
    height: 14px;
    margin-top: 2px;
    accent-color: var(--clr-accent);
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-label a {
    color: var(--clr-accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkbox-label a:hover {
    color: var(--clr-accent-light);
}

.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    border-radius: 25px;
    font-size: 0.92rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(166, 124, 82, 0.28);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-arrow {
    transform: translateX(4px);
}

.form-status-msg {
    margin-top: 1.2rem;
    font-size: 0.9rem;
    line-height: 1.5;
    border-radius: 12px;
    padding: 0;
    transition: all 0.3s ease;
}

.form-status-msg.success {
    padding: 0.85rem 1.15rem;
    background: rgba(76, 140, 89, 0.08);
    color: #3e7b4c;
    border: 1px solid rgba(76, 140, 89, 0.22);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    border-radius: 12px;
}

.form-status-msg.error {
    padding: 0.85rem 1.15rem;
    background: rgba(217, 119, 104, 0.08);
    color: #b84c3c;
    border: 1px solid rgba(217, 119, 104, 0.22);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.86rem;
    border-radius: 12px;
}

/* Custom Form Validation Error Styles */
.form-group.has-error input,
.form-group.has-error textarea {
    border-color: #d97768;
    background-color: #fff9f8;
    box-shadow: 0 0 0 3px rgba(217, 119, 104, 0.15);
    animation: softShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.form-group.has-error label {
    color: #c45848;
}

.field-error-msg {
    font-size: 0.74rem;
    color: #c45848;
    margin-top: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    animation: fadeIn 0.25s ease-out;
}

.field-error-msg::before {
    content: '•';
    font-size: 0.9rem;
    line-height: 1;
}

.form-checkbox-group.has-error {
    background: rgba(217, 119, 104, 0.07);
    border: 1px solid rgba(217, 119, 104, 0.25);
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    animation: softShake 0.4s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.form-checkbox-group.has-error .checkbox-label {
    color: #b84c3c;
}

@keyframes softShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-4px); }
    40%, 80% { transform: translateX(4px); }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
    background: var(--clr-secondary);
    color: var(--clr-primary);
    text-align: center;
    padding: 3rem 0;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

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

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--clr-accent);
}

.footer-dot {
    color: var(--clr-border);
    font-size: 0.8rem;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-box {
    background: #ffffff;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    max-width: 650px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    border: 1px solid var(--clr-border);
}

.modal-box h3 {
    color: var(--clr-accent);
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
}

.modal-box p {
    color: var(--clr-text-main);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 1.2rem;
}

.modal-close {
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--clr-text-muted);
    cursor: pointer;
    line-height: 1;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--clr-accent);
}

/* ==========================================================================
   Animations & Utilities
   ========================================================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.slide-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.slide-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.8, 0.25, 1), transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.fade-in.appear,
.slide-in-left.appear,
.slide-in-right.appear {
    opacity: 1;
    transform: translate(0);
}

/* Delay utility classes for staggered animations */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

/* ==========================================================================
   Responsive Design (Desktop vs. Mobile & Tablet up to 1024px)
   ========================================================================== */

/* Mobile & Tablet Screens (up to 1024px including all iPads) */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    .section {
        padding: 4rem 0;
    }
    .about-grid, .praxis-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .section-header {
        margin-bottom: 3rem;
    }
    .section-subtitle {
        font-size: 1rem;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 60px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--clr-border);
        transition: 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
    }
    .nav-links.active {
        right: 0;
    }
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(4px, -5px);
    }

    /* Mobile Hero — Konzept 3: Vollbild mit Farb-Gradienten & Veredelten CTAs */
    .hero-concept3 {
        min-height: 100vh !important;
        min-height: 100dvh !important;
        width: 100% !important;
        display: flex !important;
        align-items: flex-end !important;
        padding-bottom: 2.5rem !important;
    }
    .hero-c3-bg {
        position: absolute !important;
        top: 60px !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: calc(100% - 60px) !important;
    }
    .hero-c3-img {
        object-position: 30% 0% !important; /* Top edge aligned below navbar, head 100% visible */
    }
    .hero-c3-overlay {
        background: linear-gradient(to top, rgba(38, 33, 30, 0.95) 0%, rgba(38, 33, 30, 0.7) 50%, rgba(38, 33, 30, 0.05) 85%) !important;
    }
    .hero-c3-container {
        padding-top: 80px !important;
        padding-bottom: 1rem !important;
        width: 100% !important;
    }
    .hero-c3-content {
        align-items: center !important;
        text-align: center !important;
        margin: 0 auto !important;
    }
    .hero-c3-badge {
        font-size: 0.72rem;
        padding: 0.35rem 1rem;
        margin-bottom: 1.2rem;
    }
    .hero-c3-content .hero-logo-img {
        width: 90px;
        margin-bottom: 1.2rem;
    }
    .hero-c3-content h1 {
        font-size: 2.1rem;
        letter-spacing: 4px;
    }
    .hero-c3-content .hero-divider {
        margin: 1.2rem auto;
    }
    .hero-c3-content .subtitle {
        font-size: 0.8rem;
        color: #ffffff; /* Crisp white for high contrast */
        letter-spacing: 2px;
        font-weight: 400;
        max-width: 320px;
        margin-bottom: 2rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }
    .hero-buttons-wrapper {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        max-width: 290px;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .quote-banner {
        padding: 3.2rem 0;
    }
    .quote-text {
        font-size: 1.35rem;
        padding: 0 1.5rem;
    }
    
    /* Angebot items: tighter on mobile */
    .angebot-item {
        flex-direction: column;
        gap: 0.5rem;
        padding: 2rem 0;
    }
    .angebot-number {
        font-size: 0.8rem;
        padding-top: 0;
    }
    .angebot-content h3 {
        font-size: 1.3rem;
        margin-bottom: 0.5rem;
    }
    .angebot-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .accordion-header {
        padding: 1.2rem 0;
    }
    .accordion-header h3 {
        font-size: 1.15rem;
    }
    
    /* Über mich: much cleaner on mobile */
    .about-grid {
        gap: 2rem;
    }
    .about-image {
        text-align: center;
    }
    .portrait {
        max-width: 240px;
        height: auto;
        margin: 0 auto;
    }
    .praxis-img-featured {
        width: 100%;
        height: auto;
    }
    .praxis-sub-gallery {
        grid-template-columns: 1fr 1fr;
        gap: 0.8rem;
        width: 100%;
    }
    .praxis-sub-gallery img {
        height: 85px;
        aspect-ratio: auto;
        object-fit: cover;
    }
    .section-title.left {
        text-align: center;
    }
    .profession {
        text-align: center;
        font-size: 0.85rem;
    }
    .profession .single-line {
        white-space: normal;
    }
    .personal-info {
        display: flex;
        justify-content: center;
        margin: 0 auto 1.8rem auto;
        width: fit-content;
        text-align: center;
        font-size: 0.82rem;
    }
    .about-text .lead-text {
        font-size: 1.05rem;
        text-align: center;
    }
    .about-text p {
        font-size: 0.95rem;
    }
    
    /* CV: clean text layout on mobile */
    .cv-timeline {
        margin-top: 2rem;
        padding-left: 0;
    }
    .cv-item {
        grid-template-columns: 1fr;
        gap: 0.2rem;
        margin-bottom: 1.4rem;
    }
    .cv-item::before {
        display: none;
    }
    .cv-item .year {
        font-size: 0.85rem;
        background: transparent;
        padding: 0;
    }
    .cv-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    /* Certificates: smaller on mobile */
    .certificate-section {
        margin-top: 1.5rem;
    }
    .certificate-title {
        font-size: 0.9rem;
        text-align: center;
    }
    .zertifikat-gallery {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .praxis-opt1-container {
        gap: 1.5rem;
    }
    
    .praxis-top-banner {
        max-width: 100%;
        border-radius: 16px;
    }

    .praxis-bottom-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .info-block,
    .kosten-box {
        padding: 1.8rem 1.4rem;
        border-radius: 16px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    }
    
    .cost-item {
        font-size: 0.88rem;
        flex-wrap: wrap;
        gap: 0.3rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
    }
}

/* ==========================================================================
   Hero Glasmorphismus-Karte — Desktop Only (Idee 3)
   ========================================================================== */

/* Hidden by default */
.hero-split-photo {
    display: none;
}

@media (min-width: 1025px) {
    /* Fullscreen photo with moderately reduced overlay */
    .hero-c3-overlay {
        background: linear-gradient(
            to right,
            rgba(38, 33, 30, 0.75) 0%,
            rgba(38, 33, 30, 0.55) 45%,
            rgba(38, 33, 30, 0.40) 100%
        );
    }

    /* Center content container */
    .hero-c3-container {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding-top: 60px;
    }

    /* Frosted glass card - Responsive fluid scaling */
    .hero-c3-content {
        background: rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 24px;
        padding: clamp(1.8rem, 4vh, 3.5rem) clamp(1.8rem, 4vw, 3.8rem);
        width: 85%;
        max-width: clamp(320px, 35vw, 500px);
        align-items: center;
        text-align: center;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    }

    .hero-c3-content .hero-logo-img {
        width: clamp(65px, 6.5vw, 95px);
        margin-bottom: clamp(0.6rem, 1.5vh, 1.2rem);
    }

    .hero-c3-content h1 {
        font-size: clamp(1.7rem, 2.3vw, 2.5rem);
        letter-spacing: clamp(4px, 0.5vw, 7px);
        margin-bottom: 0.3rem;
    }

    .hero-c3-content .hero-divider {
        width: 40px;
        margin: clamp(0.5rem, 1.2vh, 1rem) auto;
        background: rgba(255, 255, 255, 0.5);
    }

    .hero-c3-content .subtitle {
        font-size: clamp(0.68rem, 0.85vw, 0.78rem);
        letter-spacing: clamp(2px, 0.3vw, 3px);
        color: rgba(255, 255, 255, 0.9);
        text-shadow: none;
        margin-bottom: 0;
    }
}


/* ==========================================================================
   Karte und Anfahrt – Zwei-Klick-Lösung.
   Ausgeliefert wird nur ein Platzhalter; das Google-Maps-iframe erzeugt
   main.js erst nach dem Klick. Vor dem Klick geht kein Request an Google.
   Optional: liegt images/karte-praxis.jpg vor, dient es als Hintergrundbild
   des Platzhalters – ohne die Datei greift der Farbverlauf darunter.
   ========================================================================== */
.praxis-anfahrt {
    margin-top: auto;
}

.karte-bereich {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--clr-border);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    background: var(--clr-bg-muted);
}

.karte-bereich iframe {
    width: 100%;
    height: 260px;
    border: 0;
    display: block;
}

.karte-platzhalter {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    height: 260px;
    padding: 1.6rem;
    border: 0;
    cursor: pointer;
    text-align: center;
    font-family: var(--font-body);
    color: var(--clr-primary);
    background-color: #f6ece5;
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 210, 191, 0.62)),
        url('images/karte-praxis.jpg');
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}

.karte-platzhalter:hover,
.karte-platzhalter:focus-visible {
    background-color: #f2e4da;
}

.karte-pin {
    color: var(--clr-accent);
    line-height: 0;
}

.karte-ort {
    font-size: 1.02rem;
    letter-spacing: 0.3px;
}

.karte-cta {
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.76rem;
    color: #ffffff;
    background: var(--clr-accent);
    padding: 0.62rem 1.7rem;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.karte-platzhalter:hover .karte-cta {
    background: var(--clr-accent-light);
}

.karte-datenschutz {
    font-size: 0.74rem;
    line-height: 1.55;
    color: var(--clr-text-muted);
    max-width: 32ch;
}

.anfahrt-fuss {
    margin-top: 1.2rem;
}

.anfahrt-adresse {
    font-size: 0.93rem;
    color: var(--clr-text-muted);
}

.anfahrt-links {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1rem;
}

.anfahrt-links .btn {
    padding: 0.7rem 1.9rem;
    font-size: 0.82rem;
}

.anfahrt-textlink {
    color: var(--clr-accent);
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.anfahrt-textlink:hover {
    border-bottom-color: var(--clr-accent);
}

@media (max-width: 600px) {
    .karte-platzhalter,
    .karte-bereich iframe {
        height: 230px;
    }

    .anfahrt-links {
        gap: 0.9rem;
    }

    .anfahrt-links .btn {
        width: 100%;
    }
}

/* Honeypot: für Besucher unsichtbar, für Bots ein ausfüllbares Feld.
   Absichtlich nicht display:none – das erkennen viele Bots. */
.hp-feld {
    position: absolute !important;
    left: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
