/* EH Tax Consulting — interactive states + cookie banner + legal prose.
   Loaded after the compiled Tailwind (v3.css). Keeps the V3 look intact. */

html, body { overflow-x: clip; }  /* Lenis-safe */

/* ── Language dropdown (toggled by main.js via [data-site-dropdown].is-open) ── */
.eh-langdd__menu { display: none; z-index: 60; }
.eh-langdd.is-open .eh-langdd__menu { display: block; }

/* ── Mobile menu (toggled by main.js via [data-site-mobile-menu].is-open) ── */
.eh-mobile { position: fixed; inset: 0; top: 0; z-index: 60; display: none; }
.eh-mobile.is-open { display: block; }
.eh-mobile__scrim { position: fixed; inset: 0; background: rgba(0,0,0,0.4); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); z-index: 0; }
.eh-mobile > .relative { position: relative; z-index: 1; }

/* ── Cookie consent (consent.js → .site-consent-banner; dark navy floaty card) ── */
.site-consent-banner {
  position: fixed; left: 1.25rem; bottom: 1.25rem; right: auto; top: auto;
  max-width: 340px; z-index: 9000;
  display: flex; flex-direction: column; gap: 0.75rem;
  padding: 1rem 1.1rem 1.05rem;
  background: #1e3a5f; color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.42), 0 2px 6px rgba(0,0,0,0.18);
  transform: translateY(16px); opacity: 0;
  transition: transform .35s cubic-bezier(.16,1,.3,1), opacity .35s cubic-bezier(.16,1,.3,1);
}
.site-consent-banner.is-visible { transform: translateY(0); opacity: 1; }
.site-consent-banner h3 { font-family: 'Inter', sans-serif !important; color: #fff; }
@media (max-width: 480px) { .site-consent-banner { left: 0.85rem; right: 0.85rem; max-width: none; } }

/* ── Legal pages (Impressum / Datenschutz / AGB / Barrierefreiheit) ── */
.eh-prose { color: #1e3a5f; font-size: 15px; line-height: 1.85; }
.eh-prose strong { font-weight: 600; color: #152a44; }
.eh-prose a { color: #2b5520; text-decoration: underline; text-underline-offset: 2px; }
.eh-prose h2 { font-size: 1.25rem; font-weight: 600; margin: 2rem 0 0.6rem; color: #1e3a5f; letter-spacing: -0.01em; }
.eh-prose h3 { font-size: 1.05rem; font-weight: 600; margin: 1.4rem 0 0.4rem; color: #1e3a5f; }
.eh-prose p { margin: 0 0 1rem; }
.eh-prose blockquote { border-left: 3px solid #2b5520; padding-left: 1rem; color: #4a4a4a; margin: 1rem 0; }

/* Skip link — visually hidden until focused */
.site-skip { position: absolute; left: -9999px; top: 0; background: #1e3a5f; color: #fff; padding: 0.6rem 1rem; z-index: 9999; border-radius: 0 0 6px 0; }
.site-skip:focus { left: 0; }
