/* ===================================================================
   NEUROLOGISCHE PRAXIS – WARM MODERN WORDPRESS THEME
   Brand: Pantone 301 / #0075B0  ·  Warm neutral system
   Modern HTML5 · CSS3 · Responsive · WCAG 2.1 AA · WordPress 7.0
   =================================================================== */

/* ── Design Tokens ── */
:root {
    /* Brand — Pantone 301 (unchanged) */
    --color-primary: #0075B0;
    --color-primary-dark: #005A8C;
    --color-primary-light: #E3F0F7;
    --color-primary-lighter: #EFF6FB;
    --color-accent: #004B6E;

    /* Warm ink — slightly warm-tinted text instead of cold grey */
    --color-text: #2B2622;
    --color-text-light: #5E574F;
    --color-text-muted: #938A7E;

    /* Warm neutral surfaces — parchment / cream / sand / oat */
    --color-bg: #FBF7F1;          /* parchment page base */
    --color-bg-alt: #F4ECE1;      /* sand band */
    --color-surface: #FFFFFF;     /* clean card surface for contrast */
    --color-surface-warm: #FDFAF5;
    --color-border: #E7DDCE;      /* warm stone border */
    --color-border-light: #F0E8DB;
    --color-white: #FFFFFF;

    /* Deep warm ink for dark sections (tuned off-black, never pure) */
    --color-dark: #211D29;
    --color-dark-warm: #2A2230;

    --color-error: #B23B2E;
    --color-success: #2F8F5B;
    --color-focus: #0075B0;

    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Warm-tinted shadows — brown/clay base, not generic black */
    --shadow-sm: 0 1px 3px rgba(74,55,38,0.07), 0 1px 2px rgba(74,55,38,0.05);
    --shadow-md: 0 6px 20px rgba(74,55,38,0.08), 0 2px 6px rgba(74,55,38,0.05);
    --shadow-lg: 0 16px 44px rgba(74,55,38,0.10), 0 5px 14px rgba(74,55,38,0.06);
    --shadow-xl: 0 28px 70px rgba(58,42,28,0.14);

    --header-height: 76px;
    --container-max: 1200px;
    --container-px: clamp(16px, 4vw, 40px);

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; scroll-padding-top: var(--header-height); }
body {
    font-family: var(--font-body); color: var(--color-text); background: var(--color-bg);
    line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-feature-settings: "kern" 1;
}
body.nav-open, body.modal-open { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--color-primary-dark); }
a:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 3px; border-radius: 3px; }
/* Tabular numerals for phone numbers, hours, structured data */
.hours-list, address, .tabular { font-variant-numeric: tabular-nums; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 400; line-height: 1.2; color: var(--color-dark); }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px); }

/* ── Skip Link ── */
.skip-link {
    position: absolute; top: -100%; left: 50%; transform: translateX(-50%);
    background: var(--color-primary); color: var(--color-white);
    padding: 10px 28px; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    z-index: 100001; font-weight: 600; font-size: 0.9rem;
}
.skip-link:focus { top: 0; color: var(--color-white); }

/* ── Buttons ── */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 14px 32px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
    border: 2px solid transparent; border-radius: var(--radius-full); cursor: pointer;
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    text-align: center; white-space: nowrap;
    text-decoration: none; line-height: 1.2;
}
.btn svg { flex-shrink: 0; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-primary { background: var(--color-primary); color: var(--color-white); border-color: var(--color-primary); box-shadow: 0 2px 8px rgba(0,117,176,0.18); }
.btn-primary:hover { background: var(--color-primary-dark); border-color: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,117,176,0.24); }
.btn-primary:active { transform: translateY(0); box-shadow: 0 2px 6px rgba(0,117,176,0.2); }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline:active { transform: translateY(0); }
.btn-white { background: rgba(255,255,255,0.14); color: var(--color-white); border-color: rgba(255,255,255,0.45); backdrop-filter: blur(8px); }
.btn-white:hover { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-white:active { transform: translateY(0); }
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn:focus-visible { outline: 3px solid var(--color-primary); outline-offset: 2px; }

/* ══════════════════════════════════════
   HEADER
   ══════════════════════════════════════ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(251,247,241,0.86); backdrop-filter: blur(18px) saturate(1.1); -webkit-backdrop-filter: blur(18px) saturate(1.1);
    transition: box-shadow 0.3s, background 0.3s; height: var(--header-height);
    border-bottom: 1px solid transparent;
}
.site-header.scrolled { box-shadow: 0 2px 18px rgba(74,55,38,0.08); background: rgba(251,247,241,0.94); border-bottom-color: var(--color-border-light); }
.header-inner { display: flex; align-items: center; height: var(--header-height); gap: 32px; }
.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; color: var(--color-dark); text-decoration: none; }
.logo-link:hover { color: var(--color-primary); }
.logo-img { width: 40px; height: auto; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-family: var(--font-display); font-size: 1.05rem; line-height: 1.15; }
.logo-subtitle { font-size: 0.72rem; color: var(--color-text-light); letter-spacing: 0.02em; }

/* Desktop Nav */
.desktop-nav { margin-left: auto; }
.desktop-nav .nav-list { display: flex; list-style: none; gap: 8px; align-items: center; }
.desktop-nav .nav-list li { list-style: none; }
.desktop-nav .nav-link,
.desktop-nav .nav-list a {
    display: flex; align-items: center; justify-content: center;
    padding: 10px 20px; font-size: 0.9rem; font-weight: 500; color: var(--color-text);
    border-radius: var(--radius-full); transition: color 0.2s, background-color 0.2s;
    white-space: nowrap; text-decoration: none;
}
.desktop-nav .nav-link:hover,
.desktop-nav .nav-list a:hover { color: var(--color-primary); background: var(--color-primary-lighter); }
.desktop-nav .nav-link[aria-current="page"],
.desktop-nav .nav-link--current,
.desktop-nav .current-menu-item > a,
.desktop-nav .current_page_item > a { color: var(--color-primary); font-weight: 600; }

/* Phone CTA */
.header-phone {
    display: flex; align-items: center; gap: 8px; padding: 9px 22px;
    font-size: 0.88rem; font-weight: 600; color: var(--color-primary);
    border: 1.5px solid var(--color-primary); border-radius: var(--radius-full);
    flex-shrink: 0; transition: all 0.25s; text-decoration: none;
}
.header-phone:hover { background: var(--color-primary); color: var(--color-white); }
.header-phone svg { flex-shrink: 0; }

/* Hamburger */
.hamburger {
    display: none; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; background: none; border: none;
    cursor: pointer; padding: 10px; position: relative; z-index: 10001;
}
.hamburger-line { display: block; width: 100%; height: 2px; background: var(--color-dark); border-radius: 2px; transition: all 0.3s var(--ease-out); }
.hamburger.is-active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 320px; max-width: 85vw; background: var(--color-surface-warm);
    box-shadow: -8px 0 44px rgba(58,42,28,0.16);
    transform: translateX(100%); transition: transform 0.35s var(--ease-out);
    z-index: 10000; overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: calc(var(--header-height) + 16px) 0 32px; display: none;
}
.mobile-nav.is-open { transform: translateX(0); }
.mobile-nav-list { list-style: none; padding: 0; margin: 0; }
.mobile-nav-list li { border-bottom: 1px solid var(--color-border-light); }
.mobile-nav-list li:last-child { border-bottom: none; }
.mobile-nav-list .nav-link,
.mobile-nav-list a {
    display: flex; align-items: center; padding: 18px 28px;
    font-size: 1.05rem; font-weight: 500; color: var(--color-text); text-decoration: none;
    min-height: 56px; transition: background 0.15s, color 0.15s;
}
.mobile-nav-list .nav-link:hover,
.mobile-nav-list a:hover { background: var(--color-primary-lighter); color: var(--color-primary); }
.mobile-nav-list .nav-link[aria-current="page"],
.mobile-nav-list .current-menu-item > a,
.mobile-nav-list .current_page_item > a {
    color: var(--color-primary); font-weight: 600;
    background: var(--color-primary-lighter); border-left: 4px solid var(--color-primary);
}
.mobile-nav-contact { padding: 24px 28px 0; }
.mobile-nav-phone {
    display: flex; align-items: center; gap: 10px; padding: 14px 24px;
    background: var(--color-primary); color: var(--color-white); border-radius: var(--radius-full);
    font-weight: 600; font-size: 1rem; justify-content: center; text-decoration: none;
    transition: background 0.2s;
}
.mobile-nav-phone:hover { background: var(--color-primary-dark); color: var(--color-white); }
.mobile-nav-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45);
    z-index: 9999; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s;
}
.mobile-nav-overlay.is-visible { opacity: 1; visibility: visible; }

/* ══════════════════════════════════════
   HERO — REDESIGNED
   ══════════════════════════════════════ */
.hero {
    position: relative; min-height: 100vh; min-height: 100dvh;
    display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background:
        linear-gradient(168deg, rgba(0,58,88,0.90) 0%, rgba(0,75,110,0.74) 48%, rgba(40,32,38,0.82) 100%),
        radial-gradient(120% 80% at 80% 10%, rgba(0,117,176,0.22) 0%, transparent 60%);
}
.hero-content {
    position: relative; z-index: 2; text-align: center;
    padding: 140px 0 100px; max-width: 800px;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 10px 24px; margin-bottom: 32px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-full); color: rgba(255,255,255,0.95);
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.03em;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.hero-badge svg { opacity: 0.8; }
.hero h1 {
    color: var(--color-white); margin-bottom: 24px; letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-sub {
    color: rgba(255,255,255,0.88); font-size: clamp(1.05rem, 2vw, 1.2rem);
    max-width: 620px; margin: 0 auto 40px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust {
    display: flex; gap: 32px; justify-content: center; flex-wrap: wrap;
    padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-trust-item {
    display: flex; align-items: center; gap: 8px;
    color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
}
.hero-trust-item svg { opacity: 0.7; }
.hero-trust-item a:hover { color: var(--color-white); }
.hero-scroll-indicator {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.45); animation: float 2.5s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════
   PAGE HERO (Subpages)
   ══════════════════════════════════════ */
.page-hero {
    position: relative; padding: 168px 0 84px; overflow: hidden;
    background:
        radial-gradient(110% 130% at 88% 0%, rgba(0,117,176,0.35) 0%, transparent 55%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--color-white); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.page-hero-deco {
    position: absolute; top: -40px; right: -60px; width: 360px; height: 360px;
    border-radius: 50%; border: 60px solid rgba(255,255,255,0.05); z-index: 1;
}

/* ══════════════════════════════════════
   SECTIONS
   ══════════════════════════════════════ */
.section { padding: clamp(64px, 10vw, 100px) 0; }
.section-label {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.14em; color: var(--color-primary); margin-bottom: 14px;
}
.section-label::before {
    content: ""; width: 28px; height: 2px; background: var(--color-primary); border-radius: 2px;
    opacity: 0.7;
}
.section-header { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.section-header .section-label { justify-content: center; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { color: var(--color-text-light); font-size: 1.05rem; }
/* Sand band with hairline edges to separate warm tones */
.section-alt { background: var(--color-bg-alt); border-top: 1px solid var(--color-border-light); border-bottom: 1px solid var(--color-border-light); }

/* ── Welcome ── */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.welcome-text h2 { margin-bottom: 24px; }
.welcome-text p { margin-bottom: 16px; color: var(--color-text-light); font-size: 1.02rem; line-height: 1.8; }
.welcome-image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border-light); position: relative; }
.welcome-image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.welcome-image:hover img { transform: scale(1.03); }

/* ── Appointments ── */
.section-appointments { background: var(--color-bg-alt); padding: clamp(48px, 8vw, 80px) 0; }
.appointments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.appt-card {
    background: var(--color-surface); padding: 38px 34px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm); transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    border: 1px solid var(--color-border);
}
.appt-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.appt-icon {
    width: 58px; height: 58px; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--color-primary-light), var(--color-surface-warm)); color: var(--color-primary);
    border-radius: var(--radius-md); margin-bottom: 20px; border: 1px solid var(--color-border-light);
}
.appt-card h3 { margin-bottom: 12px; }
.appt-card > p { color: var(--color-text-light); font-size: 0.93rem; margin-bottom: 12px; line-height: 1.7; }
.appt-note { font-size: 0.85rem; color: var(--color-text-muted); font-style: italic; line-height: 1.6; }
.appt-card .btn { margin-top: 12px; }
.appt-options { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.appt-option { display: flex; flex-direction: column; gap: 6px; padding-bottom: 16px; border-bottom: 1px solid var(--color-border-light); }
.appt-option:last-child { border-bottom: none; padding-bottom: 0; }
.appt-option strong { font-size: 0.93rem; font-weight: 600; }
.appt-tag {
    display: inline-block; padding: 3px 12px; background: var(--color-primary-lighter);
    color: var(--color-primary); font-size: 0.78rem; font-weight: 600;
    border-radius: var(--radius-full); width: fit-content;
}
.hours-list { margin: 12px 0 24px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--color-border-light); font-size: 0.93rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row dt { font-weight: 600; color: var(--color-text); }
.hours-row dd { color: var(--color-text-light); }
.hours-closed dd { color: var(--color-text-muted); }
.phone-link {
    display: flex; align-items: center; gap: 10px; padding: 14px 24px;
    background: var(--color-primary); color: var(--color-white); border-radius: var(--radius-full);
    font-weight: 600; font-size: 1.05rem; justify-content: center;
    transition: all 0.3s; text-decoration: none;
}
.phone-link:hover { background: var(--color-primary-dark); color: var(--color-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ── Content Blocks ── */
.content-block { max-width: 800px; margin: 0 auto; }
.content-block h2 { margin-bottom: 20px; }
.content-block h3 { margin: 32px 0 12px; color: var(--color-primary); }
.content-block p { color: var(--color-text-light); margin-bottom: 16px; line-height: 1.85; }
.content-block address { font-style: normal; color: var(--color-text-light); line-height: 1.85; margin-bottom: 16px; }
.content-block small { color: var(--color-text-muted); }
.content-block ul { padding-left: 0; list-style: none; margin-bottom: 16px; }
.content-block li { padding: 6px 0 6px 20px; position: relative; color: var(--color-text-light); line-height: 1.7; }
.content-block li::before { content: '›'; position: absolute; left: 0; color: var(--color-primary); font-weight: 700; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; margin-bottom: 64px; }
.team-grid-staff { grid-template-columns: repeat(6, 1fr); }
.team-card { text-align: center; transition: transform 0.3s var(--ease-out); }
.team-card:hover { transform: translateY(-6px); }
.team-photo { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; box-shadow: var(--shadow-md); aspect-ratio: 3/4; border: 1px solid var(--color-border-light); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-info p { color: var(--color-text-light); font-size: 0.88rem; }
.team-group { position: relative; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 48px; box-shadow: var(--shadow-lg); }
.team-group img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.team-group-caption {
    position: absolute; bottom: 0; left: 0; right: 0; padding: 32px;
    background: linear-gradient(transparent, rgba(0,0,0,0.75)); color: var(--color-white);
}
.team-group-caption h3 { color: var(--color-white); margin-bottom: 8px; }
.team-group-caption p { opacity: 0.85; font-size: 0.93rem; }
.memberships { text-align: center; padding: 44px; background: var(--color-bg-alt); border-radius: var(--radius-xl); border: 1px solid var(--color-border-light); }
.memberships h3 { margin-bottom: 20px; }
.membership-list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 24px; }
.membership-list li { font-size: 0.88rem; color: var(--color-text-light); padding: 9px 20px; background: var(--color-surface); border-radius: var(--radius-full); border: 1px solid var(--color-border); transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s; }
.membership-list li:hover { border-color: var(--color-primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.membership-list li a { color: inherit; text-decoration: none; }
.membership-list li:hover a { color: var(--color-primary); }

/* ── Doctor Detail ── */
.doctor-detail {
    display: grid; grid-template-columns: 280px 1fr; gap: 40px; align-items: start;
    background: var(--color-surface); border-radius: var(--radius-xl); padding: 40px;
    box-shadow: var(--shadow-sm); margin-bottom: 32px;
    transition: box-shadow 0.3s var(--ease-out), transform 0.3s var(--ease-out);
    border: 1px solid var(--color-border);
}
.doctor-detail:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.doctor-detail-photo { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 3/4; box-shadow: var(--shadow-sm); }
.doctor-detail-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease-out); }
.doctor-detail:hover .doctor-detail-photo img { transform: scale(1.03); }
.doctor-detail-info h3 { font-size: 1.5rem; margin-bottom: 4px; }
.doctor-detail-info .doctor-title { color: var(--color-primary); font-weight: 500; font-size: 1rem; margin-bottom: 20px; display: block; }
.doctor-detail-info h4 {
    font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
    margin: 24px 0 10px; color: var(--color-text); text-transform: uppercase; letter-spacing: 0.08em;
}
.doctor-detail-info p, .doctor-detail-info li { color: var(--color-text-light); font-size: 0.93rem; line-height: 1.75; }
.doctor-detail-info ul { list-style: none; padding: 0; }
.doctor-detail-info li { padding: 4px 0 4px 16px; position: relative; }
.doctor-detail-info li::before { content: '–'; position: absolute; left: 0; color: var(--color-primary); }

/* ── Visit Cards ── */
.visit-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.visit-card {
    background: var(--color-surface); padding: 38px 30px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
    border: 1px solid var(--color-border);
}
.visit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.visit-number {
    font-family: var(--font-display); font-size: 2.6rem; line-height: 1; margin-bottom: 16px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    opacity: 0.85;
}
.visit-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.visit-card p { color: var(--color-text-light); font-size: 0.93rem; margin-bottom: 8px; line-height: 1.7; }
.visit-card .btn { margin-top: 12px; }

/* ── Services ── */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
    background: var(--color-surface); padding: 36px 32px; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-top-color 0.3s var(--ease-out);
    border: 1px solid var(--color-border); border-top: 3px solid transparent;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-top-color: var(--color-primary); }
.service-card h3 { margin-bottom: 14px; color: var(--color-dark); }
.service-card p { color: var(--color-text-light); font-size: 0.93rem; line-height: 1.7; }

/* ── Content Intro (empathetic intro block) ── */
.content-intro {
    text-align: center; max-width: 740px; margin: 0 auto 32px;
}
.content-intro-icon {
    width: 76px; height: 76px; margin: 0 auto 24px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--color-primary-light), var(--color-surface-warm));
    border-radius: 50%; box-shadow: 0 0 0 8px var(--color-primary-lighter);
}
.content-intro h2 { margin-bottom: 20px; }
.content-intro p { color: var(--color-text-light); font-size: 1.05rem; line-height: 1.85; }

/* ── Steps Row (Untersuchungen workflow) ── */
.steps-row {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; margin: 56px auto 0; max-width: 900px;
    padding: 40px 0; border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}
.step-item { flex: 1; text-align: center; padding: 0 16px; }
.step-number {
    width: 48px; height: 48px; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-size: 1.2rem; font-weight: 400;
    color: var(--color-white); background: var(--color-primary);
    border-radius: 50%;
}
.step-item h3 { font-size: 1rem; margin-bottom: 8px; color: var(--color-dark); }
.step-item p { font-size: 0.85rem; color: var(--color-text-light); line-height: 1.6; }
.step-divider {
    flex-shrink: 0; display: flex; align-items: center;
    padding-top: 12px;
}

/* ── Icon Cards Grid (Krankheitsbilder & Untersuchungen) ── */
.icon-cards-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.icon-card {
    background: var(--color-surface); padding: 34px 30px;
    border-radius: var(--radius-lg); border: 1px solid var(--color-border);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
    position: relative; overflow: hidden;
}
.icon-card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease-out);
}
.icon-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--color-border); }
.icon-card:hover::before { transform: scaleX(1); }
.icon-card-icon {
    width: 54px; height: 54px; margin-bottom: 20px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(150deg, var(--color-primary-light), var(--color-surface-warm));
    color: var(--color-primary);
    border-radius: var(--radius-md); border: 1px solid var(--color-border-light);
}
.icon-card h3 { font-size: 1.15rem; margin-bottom: 12px; color: var(--color-dark); }
.icon-card-subtitle {
    display: block; font-family: var(--font-body); font-size: 0.78rem;
    font-weight: 500; color: var(--color-primary); text-transform: uppercase;
    letter-spacing: 0.06em; margin-top: 4px;
}
.icon-card p {
    color: var(--color-text-light); font-size: 0.93rem; line-height: 1.75;
    margin-bottom: 16px;
}
.icon-card-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    color: var(--color-primary); background: var(--color-primary-lighter);
    padding: 5px 14px; border-radius: var(--radius-full);
    letter-spacing: 0.01em;
}

/* ── CTA Section ── */
.cta-section { padding: clamp(48px, 8vw, 80px) 0; }
.cta-box {
    background:
        radial-gradient(120% 120% at 85% 15%, rgba(255,255,255,0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-xl); padding: clamp(40px, 6vw, 64px);
    display: flex; align-items: center; gap: 40px;
    color: var(--color-white); flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}
.cta-box-content { flex: 1; min-width: 280px; }
.cta-box-content h2 { color: var(--color-white); margin-bottom: 16px; font-size: clamp(1.5rem, 3vw, 2.2rem); }
.cta-box-content p { color: rgba(255,255,255,0.85); font-size: 1.02rem; line-height: 1.7; }
.cta-box-actions { display: flex; gap: 16px; flex-wrap: wrap; flex-shrink: 0; }
.cta-box .btn-primary { background: var(--color-white); color: var(--color-primary); border-color: var(--color-white); }
.cta-box .btn-primary:hover { background: rgba(255,255,255,0.9); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.cta-box .btn-outline { color: var(--color-white); border-color: rgba(255,255,255,0.4); }
.cta-box .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.6); color: var(--color-white); }

/* ── About Grid ── */
.about-grid { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 60px; align-items: start; }
.about-content h2 { margin-bottom: 24px; }
.about-content h3 {
    margin: 40px 0 16px; color: var(--color-primary); font-size: 1.3rem;
    padding-top: 32px; border-top: 1px solid var(--color-border-light);
}
.about-content h3:first-of-type { margin-top: 32px; }
.about-content p { color: var(--color-text-light); margin-bottom: 18px; font-size: 1rem; line-height: 1.85; }
.about-content p:last-child { margin-bottom: 0; }
.about-image {
    position: sticky; top: calc(var(--header-height) + 40px);
    display: flex; justify-content: center; align-items: flex-start; padding: 0;
}
.about-image img { max-width: 280px; opacity: 0.08; filter: grayscale(100%); }
.about-image--photo { padding: 0; }
.about-image--photo img {
    max-width: 100%; width: 100%; opacity: 1; filter: none;
    border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3; object-fit: cover;
}

/* ── Practice Gallery ── */
.praxis-gallery {
    display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.praxis-gallery-item {
    position: relative; border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); margin: 0;
    transition: box-shadow 0.3s, transform 0.3s;
}
.praxis-gallery-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.praxis-gallery-item--wide { grid-column: 1 / -1; }
.praxis-gallery-item img {
    width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block;
    transition: transform 0.6s var(--ease-out);
}
.praxis-gallery-item:hover img { transform: scale(1.03); }
.praxis-gallery-item figcaption {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 20px 24px; font-size: 0.9rem; font-weight: 600; color: var(--color-white);
    background: linear-gradient(transparent, rgba(0,0,0,0.6));
}

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--color-text); }
.required { color: var(--color-error); }
.form-group input, .form-group select, .form-group textarea {
    padding: 13px 16px; font-family: var(--font-body); font-size: 0.95rem;
    border: 1.5px solid var(--color-border); border-radius: var(--radius-sm);
    background: var(--color-surface); color: var(--color-text);
    transition: border-color 0.2s, box-shadow 0.2s; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(0,117,176,0.14);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox { flex-direction: row; align-items: flex-start; gap: 12px; }
.form-checkbox input[type="checkbox"] { width: 20px; height: 20px; margin-top: 2px; flex-shrink: 0; accent-color: var(--color-primary); }
.form-checkbox label { font-weight: 400; font-size: 0.85rem; color: var(--color-text-light); line-height: 1.5; }
.contact-info-wrap { display: flex; flex-direction: column; gap: 24px; }
.contact-info-card { padding: 26px 30px; background: var(--color-bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); }
.contact-info-card h3 { font-size: 1rem; margin-bottom: 8px; color: var(--color-primary); }
.contact-info-card address, .contact-info-card p { font-style: normal; color: var(--color-text-light); font-size: 0.93rem; line-height: 1.7; }
.contact-info-card a { color: var(--color-primary); font-weight: 500; }
.contact-map { border-radius: var(--radius-md); overflow: hidden; }
.map-link { display: block; padding: 11px; background: var(--color-bg-alt); text-align: center; font-size: 0.85rem; font-weight: 500; border-top: 1px solid var(--color-border-light); }

/* GDPR: Map Consent Placeholder */
.map-consent-placeholder {
    display: flex; align-items: center; justify-content: center;
    background: var(--color-bg-alt); border-radius: var(--radius-md);
    border: 2px dashed var(--color-border); text-align: center; padding: 24px;
}
.map-consent-inner { max-width: 380px; }
.map-consent-inner svg { color: var(--color-primary); margin-bottom: 12px; opacity: 0.6; }
.map-consent-inner p { margin-bottom: 8px; font-size: 0.9rem; color: var(--color-text-light); }
.map-consent-inner strong { color: var(--color-text); }
.map-consent-notice { font-size: 0.82rem !important; color: var(--color-text-muted) !important; line-height: 1.5; margin-bottom: 16px !important; }
.map-consent-inner .btn { margin-bottom: 12px; }
.map-consent-link { display: block; font-size: 0.82rem; color: var(--color-text-muted); }

/* Transport */
.transport-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 32px; }
.transport-card { padding: 30px; background: var(--color-bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); }
.transport-card h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--color-primary); }
.transport-card p { color: var(--color-text-light); font-size: 0.93rem; margin-bottom: 8px; line-height: 1.7; }

/* Notice Box */
.notice-box {
    padding: 34px; background: linear-gradient(135deg, var(--color-primary-light), var(--color-surface-warm)); border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary); margin: 32px 0; border: 1px solid var(--color-border-light); border-left: 4px solid var(--color-primary);
}
.notice-box h3 { color: var(--color-primary); margin-bottom: 12px; }
.notice-box p { color: var(--color-text-light); line-height: 1.75; }

/* Staff Grid */
.staff-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; margin: 32px 0; }
.staff-card { text-align: center; padding: 26px 18px; background: var(--color-bg-alt); border-radius: var(--radius-lg); border: 1px solid var(--color-border-light); }
.staff-card h4 { font-family: var(--font-body); font-weight: 600; font-size: 0.95rem; color: var(--color-text); }

/* ══════════════════════════════════════
   ANNOUNCEMENT BAR
   ══════════════════════════════════════ */
.announcement-bar { position: relative; z-index: 99; padding: 14px 0; font-size: 0.9rem; line-height: 1.5; }
.announcement-info { background: var(--color-primary-light); color: var(--color-accent); }
.announcement-vacation { background: #FFF3CD; color: #856404; }
.announcement-urgent { background: #F8D7DA; color: #721C24; }
.announcement-inner { display: flex; align-items: flex-start; gap: 12px; }
.announcement-icon { flex-shrink: 0; margin-top: 2px; }
.announcement-content { flex: 1; }
.announcement-title { display: block; font-weight: 600; margin-bottom: 2px; }
.announcement-dates { display: inline-block; font-size: 0.82rem; font-weight: 500; opacity: 0.8; margin-bottom: 4px; }
.announcement-message { margin: 4px 0 0; }
.announcement-substitute { margin: 6px 0 0; font-style: italic; opacity: 0.85; }
.announcement-close {
    flex-shrink: 0; background: none; border: none; cursor: pointer;
    padding: 4px; opacity: 0.6; transition: opacity 0.2s; color: inherit;
}
.announcement-close:hover { opacity: 1; }

/* ══════════════════════════════════════
   COOKIE BANNER
   ══════════════════════════════════════ */
.cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 99999;
    background: var(--color-dark); color: var(--color-white); padding: 20px 0;
    transform: translateY(0); transition: transform 0.4s var(--ease-out);
}
.cookie-banner.hidden { transform: translateY(100%); pointer-events: none; }
.cookie-inner {
    max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-px);
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.cookie-inner p { flex: 1; min-width: 280px; font-size: 0.9rem; line-height: 1.5; opacity: 0.9; }
.cookie-inner a { color: var(--color-primary-light); text-decoration: underline; }
.cookie-actions { display: flex; gap: 12px; flex-shrink: 0; }

/* ══════════════════════════════════════
   MODAL POPUP
   ══════════════════════════════════════ */
.neuro-modal-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 100000;
    display: flex; align-items: center; justify-content: center; padding: 24px;
    opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s ease;
}
.neuro-modal-overlay[aria-hidden="false"] { opacity: 1; visibility: visible; }
.neuro-modal {
    background: var(--color-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl);
    max-width: 612px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative;
    transform: translateY(20px) scale(0.97); transition: transform 0.35s var(--ease-out);
}
.neuro-modal-overlay[aria-hidden="false"] .neuro-modal { transform: translateY(0) scale(1); }
.neuro-modal-close {
    position: absolute; top: 16px; right: 16px;
    width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
    background: var(--color-bg-alt); border: none; border-radius: 50%; cursor: pointer;
    color: var(--color-text); transition: background 0.2s, color 0.2s; z-index: 1; padding: 0;
}
.neuro-modal-close:hover { background: var(--color-border); color: var(--color-dark); }
.neuro-modal-close:focus-visible { outline: 2px solid var(--color-primary); outline-offset: 2px; }
.neuro-modal-body { padding: 40px 40px 36px; }
.neuro-modal-body h3 { color: var(--color-primary); margin-bottom: 20px; font-size: 1.4rem; padding-right: 32px; }
.neuro-modal-body p { color: var(--color-text-light); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.75; }
.neuro-modal-body p:last-of-type { margin-bottom: 0; }

/* ── Announcement Modal ── */
.announce-modal { max-width: 520px; overflow: hidden; }
.announce-modal .neuro-modal-close { background: rgba(255,255,255,0.2); color: white; }
.announce-modal .neuro-modal-close:hover { background: rgba(255,255,255,0.35); }
.announce-modal-header {
    padding: 32px 40px; text-align: center; color: var(--color-white);
    position: relative;
}
.announce-modal-icon {
    width: 64px; height: 64px; border-radius: 50%; margin: 0 auto 16px;
    display: flex; align-items: center; justify-content: center;
}
.announce-modal-dates {
    font-size: 0.95rem; font-weight: 600; letter-spacing: 0.03em;
    color: rgba(255,255,255,0.9);
}
.announce-modal .neuro-modal-body h3 {
    padding-right: 0; text-align: center; font-size: 1.5rem; color: var(--color-dark);
}
.announce-modal-message { color: var(--color-text-light); font-size: 0.95rem; line-height: 1.75; text-align: center; }
.announce-modal-substitute {
    display: flex; align-items: flex-start; gap: 10px; margin-top: 16px;
    padding: 14px 18px; background: var(--color-bg-alt); border-radius: var(--radius-sm);
    font-size: 0.88rem; color: var(--color-text-light); line-height: 1.6;
}
.announce-modal-substitute svg { flex-shrink: 0; margin-top: 2px; color: var(--color-primary); }

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.site-footer {
    background:
        radial-gradient(80% 120% at 0% 0%, rgba(0,117,176,0.14) 0%, transparent 55%),
        var(--color-dark);
    color: rgba(255,255,255,0.7); padding: 64px 0 0;
    border-top: 3px solid var(--color-primary);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 0.8fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-logo {
    width: 44px; height: auto; margin-bottom: 16px;
    filter: brightness(0) invert(1); opacity: 0.85;
}
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--color-white); margin-bottom: 8px; }
.footer-address { font-size: 0.88rem; }
.footer-nav h4, .footer-legal h4, .footer-contact h4 {
    color: var(--color-white); font-family: var(--font-body); font-weight: 600; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px;
}
.footer-nav ul, .footer-legal ul { list-style: none; }
.footer-nav li, .footer-legal li { margin-bottom: 10px; }
.footer-nav a, .footer-legal a { color: rgba(255,255,255,0.65); font-size: 0.9rem; transition: color 0.2s; text-decoration: none; }
.footer-nav a:hover, .footer-legal a:hover { color: var(--color-white); }
.footer-contact p { font-size: 0.9rem; margin-bottom: 8px; }
.footer-contact a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contact a:hover { color: var(--color-white); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.35); }

/* ══════════════════════════════════════
   WORDPRESS
   ══════════════════════════════════════ */
.wp-block-image img { border-radius: var(--radius-md); }
.alignwide { max-width: calc(var(--container-max) + 100px); margin-left: auto; margin-right: auto; }
.alignfull { max-width: 100vw; margin-left: calc(-50vw + 50%); margin-right: calc(-50vw + 50%); }
.screen-reader-text { clip: rect(1px,1px,1px,1px); position: absolute !important; height: 1px; width: 1px; overflow: hidden; }

/* ══════════════════════════════════════
   ANIMATIONS
   ══════════════════════════════════════ */
.animate-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
.animate-in.is-visible { opacity: 1; transform: translateY(0); }

/* 404 */
.error-404 { text-align: center; padding: 80px 0; }

/* Accessibility Statement */
.accessibility-statement h2 { margin-bottom: 16px; }
.accessibility-statement h3 { margin: 24px 0 12px; color: var(--color-primary); }
.accessibility-statement li { padding: 4px 0 4px 20px; position: relative; color: var(--color-text-light); }
.accessibility-statement li::before { content: '✓'; position: absolute; left: 0; color: var(--color-success); font-weight: 700; }

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .animate-in { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
}
@media (prefers-contrast: high) {
    :root { --color-primary: #005A8C; --color-text: #000; --color-text-light: #1A1A1A; --color-border: #333; }
    .btn { border-width: 3px; }
}
@media (forced-colors: active) { .btn { border: 2px solid ButtonText; } }

@media (max-width: 1280px) {
    .desktop-nav .nav-list { gap: 4px; }
    .desktop-nav .nav-link, .desktop-nav .nav-list a { padding: 10px 14px; font-size: 0.84rem; }
}
@media (max-width: 1024px) {
    .appointments-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .visit-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .icon-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image { display: none; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .header-phone span { display: none; }
    .header-phone { padding: 8px; border: none; }
    .doctor-detail { grid-template-columns: 200px 1fr; gap: 28px; padding: 28px; }
    .transport-grid { grid-template-columns: 1fr; }
    .desktop-nav { display: none; }
    .hamburger { display: flex; }
    .mobile-nav { display: block; }
}
@media (max-width: 768px) {
    :root { --header-height: 64px; }
    .page-hero { padding: 120px 0 56px; }
    .hero-content { padding: 100px 0 60px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; max-width: 320px; }
    .hero-trust { gap: 16px; flex-direction: column; align-items: center; }
    .welcome-grid { grid-template-columns: 1fr; }
    .team-grid, .team-grid-staff { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-grid { grid-template-columns: 1fr; }
    .icon-cards-grid { grid-template-columns: 1fr; }
    .steps-row { flex-direction: column; gap: 24px; align-items: center; }
    .step-divider { transform: rotate(90deg); padding-top: 0; }
    .cta-box { flex-direction: column; text-align: center; }
    .cta-box-actions { justify-content: center; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .doctor-detail { grid-template-columns: 1fr; }
    .doctor-detail-photo { max-width: 240px; }
    .neuro-modal-body { padding: 32px 24px 28px; }
    .praxis-gallery { grid-template-columns: 1fr; }
    .praxis-gallery-item--wide { grid-column: auto; }
}
@media (max-width: 480px) {
    .team-grid { grid-template-columns: 1fr; max-width: 300px; margin: 0 auto 48px; }
    .logo-text { display: none; }
    .hero h1 { font-size: 2rem; }
    .appt-card { padding: 28px 20px; }
}
/* ── Admin FAB (replaces WP admin bar) ── */
.neuro-admin-fab {
    position: fixed; bottom: 20px; left: 20px; z-index: 99998;
    font-family: var(--font-body);
}
.neuro-fab-toggle {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--color-dark); color: var(--color-white); border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.25); transition: transform 0.2s, background 0.2s;
}
.neuro-fab-toggle:hover { background: var(--color-primary); transform: scale(1.08); }
.neuro-admin-fab.is-open .neuro-fab-toggle { transform: rotate(60deg); background: var(--color-primary); }
.neuro-fab-menu {
    position: absolute; bottom: 56px; left: 0;
    background: var(--color-white); border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg); padding: 8px 0; min-width: 180px;
    opacity: 0; visibility: hidden; transform: translateY(8px);
    transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.neuro-admin-fab.is-open .neuro-fab-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.neuro-fab-item {
    display: flex; align-items: center; gap: 10px; padding: 10px 16px;
    font-size: 0.85rem; font-weight: 500; color: var(--color-text); text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.neuro-fab-item:hover { background: var(--color-primary-lighter); color: var(--color-primary); }
.neuro-fab-item svg { flex-shrink: 0; opacity: 0.6; }
.neuro-fab-item:hover svg { opacity: 1; }

@media print {
    .site-header, .cookie-banner, .hero-scroll-indicator, .hamburger, .contact-map,
    .announcement-bar, .mobile-nav, .mobile-nav-overlay, .neuro-admin-fab { display: none; }
    .hero, .page-hero { min-height: auto; }
    .hero-overlay { background: none; }
    .hero h1 { color: var(--color-dark); }
    .section { padding: 32px 0; }
    body { font-size: 12pt; color: #000; }
}
