/* ============================================================
   PT-HAO.DE – Stylesheet v4
   Physiotherapie HAO | Hakan A. Öztürk | Bremerhaven
   ============================================================ */

/* ============================================================
   CSS-VARIABLEN
   ============================================================ */
:root {
  /* Farben */
  --color-accent:        #E8732A;
  --color-accent-dark:   #C55D1C;
  --color-accent-soft:   #FDF1E8;
  --color-text:          #1C1C1C;
  --color-text-soft:     #4A4A4A;
  --color-text-muted:    #6B6B6B;   /* FIX: war #888, besteht WCAG AA (4.6:1 auf Weiß) */
  --color-bg:            #FFFFFF;
  --color-surface:       #F5F4F2;
  --color-surface-alt:   #EDEAE5;
  --color-border:        #DDDAD6;
  --color-border-light:  #EDEAE6;
  --color-success:       #2E7D32;
  --color-error:         #C62828;

  /* Schatten */
  --shadow-card:         0 2px 16px rgba(0,0,0,0.06);
  --shadow-card-hover:   0 8px 32px rgba(0,0,0,0.11);
  --shadow-header:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-float:        0 4px 20px rgba(37,211,102,0.40);

  /* Radien */
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  28px;
  --radius-full: 9999px;

  /* Typografie */
  --font-main: 'Segoe UI', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --section-padding:     5rem;
  --section-padding-sm:  3rem;
  --container-max:       1200px;
  --container-padding:   1.5rem;
  --header-h:            72px;

  /* Animation */
  --transition:          all 0.2s ease;
  --transition-slow:     all 0.35s ease;
}

/* ============================================================
   RESET & BASIS
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-main);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-dark); }
a:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; border-radius: var(--radius-sm); }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
address { font-style: normal; }
fieldset { border: none; }

/* Reduced-motion: Animationen deaktivieren */
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1 !important; transform: none !important; transition: none !important; }
  .faq-answer { transition: none !important; }
  .floating-whatsapp { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   SKIP-LINK (Barrierefreiheit – muss erstes Element sein)
   ============================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--color-accent);
  color: white;
  padding: 0.5rem 1.25rem;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 700;
  font-size: 0.9375rem;
  z-index: 10000;
  transition: top 0.15s ease;
  white-space: nowrap;
}
.skip-link:focus { top: 0; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}
.container--narrow { max-width: 800px; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn:focus-visible { outline: 2px solid var(--color-accent); outline-offset: 3px; }
.btn-primary { background-color: var(--color-accent); color: white; border-color: var(--color-accent); }
.btn-primary:hover { background-color: var(--color-accent-dark); border-color: var(--color-accent-dark); color: white; transform: translateY(-1px); }
.btn-outline { background-color: transparent; color: var(--color-accent); border-color: var(--color-accent); }
.btn-outline:hover { background-color: var(--color-accent); color: white; transform: translateY(-1px); }
.btn-ghost { background-color: transparent; color: var(--color-text-soft); border-color: var(--color-border); }
.btn-ghost:hover { border-color: var(--color-accent); color: var(--color-accent); }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

/* ============================================================
   TYPOGRAFIE
   ============================================================ */
h1, h2, h3, h4 { line-height: 1.2; color: var(--color-text); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.25rem); }
h4 { font-size: 1rem; }
p { color: var(--color-text-soft); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
strong { color: var(--color-text); font-weight: 600; }
em { font-style: italic; }
.accent-text { color: var(--color-accent); }

/* Section-Label (Overline) */
.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.625rem;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: var(--section-padding) 0; }
.section--surface { background-color: var(--color-surface); }
.section--accent-soft { background-color: var(--color-accent-soft); }

.section-intro { max-width: 680px; margin-bottom: 3rem; }
.section-intro h2 { margin-bottom: 1rem; }
.section-text {
  font-size: 1.0625rem;
  color: var(--color-text-soft);
  max-width: 680px;
  margin-bottom: 1rem;
}
.section-text--centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-bg);
  border-bottom: 1px solid var(--color-border-light);
  transition: box-shadow 0.25s ease;
  height: var(--header-h);
}
.site-header.scrolled { box-shadow: var(--shadow-header); }
.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 1.5rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text);
  text-decoration: none;
  flex-shrink: 0;
}
.site-logo:hover { color: var(--color-text); }
.logo-text { display: flex; flex-direction: column; line-height: 1.25; }
.logo-main { font-size: 1rem; font-weight: 700; color: var(--color-text); }
.logo-sub { font-size: 0.72rem; color: var(--color-text-muted); font-weight: 400; letter-spacing: 0.01em; }

/* Desktop-Navigation */
.main-nav { flex: 1; display: flex; justify-content: center; }
.main-nav ul { display: flex; gap: 0.125rem; align-items: center; }
.main-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-text-soft);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--color-accent); background-color: var(--color-accent-soft); }

/* Header-Actions */
.header-actions { display: flex; align-items: center; gap: 0.625rem; flex-shrink: 0; }

.header-whatsapp {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #25D366;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(37,211,102,0.5);
  transition: var(--transition);
  min-height: 44px;
}
.header-whatsapp:hover { background-color: #25D366; color: white; border-color: #25D366; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  padding: 10px;
  transition: var(--transition);
}
.nav-toggle:hover { border-color: var(--color-accent); }
.hamburger-line {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile-Menu (Drawer) */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(340px, 100vw);
  background: var(--color-bg);
  box-shadow: -8px 0 40px rgba(0,0,0,0.14);
  z-index: 999;
  padding: 0 1.75rem 2rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.mobile-menu.is-open { transform: translateX(0); }

/* Schließen-Button im Drawer */
.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 1.5rem;
}
.mobile-menu-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: var(--color-text-soft);
  border: 1.5px solid var(--color-border);
  background: var(--color-bg);
  transition: var(--transition);
  flex-shrink: 0;
}
.mobile-menu-close:hover { border-color: var(--color-accent); color: var(--color-accent); }

.mobile-menu ul { display: flex; flex-direction: column; gap: 0.125rem; margin-bottom: 2rem; }
.mobile-nav-link {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  min-height: 44px;
}
.mobile-nav-link:hover { background-color: var(--color-accent-soft); color: var(--color-accent); }

.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border);
}
.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  font-weight: 600;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  min-height: 44px;
  transition: var(--transition);
}
.mobile-contact-link:hover { border-color: var(--color-accent); color: var(--color-accent); }
.mobile-menu-actions .btn { text-align: center; justify-content: center; }

/* Overlay hinter Drawer */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.38);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-overlay.is-visible { opacity: 1; }

/* ============================================================
   SCROLL-ANIMATION (CSS-Klassen, JS-gesteuert)
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  padding: 4rem 0 5rem;
  background: linear-gradient(140deg, #fff 0%, var(--color-accent-soft) 100%);
  min-height: calc(90vh - var(--header-h));
  display: flex;
  align-items: center;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-width: 0; /* Firefox fix */
}
.hero-content { max-width: 560px; min-width: 0; }
.hero-headline { margin-bottom: 1.25rem; font-size: clamp(2.25rem, 5vw, 3.5rem); line-height: 1.1; }
.hero-subline { font-size: 1.125rem; color: var(--color-text-soft); margin-bottom: 2rem; max-width: 480px; }
.hero-ctas { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
.trust-points {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-border-light);
}
.trust-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9rem;
  color: var(--color-text-soft);
  line-height: 1.5;
}
.trust-points svg { color: var(--color-accent); flex-shrink: 0; margin-top: 2px; }
.hero-image { display: flex; justify-content: center; min-width: 0; }
.hero-image-photo {
  display: block;
  width: 100%;
  max-width: 650px;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
}

/* ============================================================
   BILDPLATZHALTER
   ============================================================ */
.img-placeholder {
  background: linear-gradient(135deg, #eeebe6, #e4e0db);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px dashed var(--color-border);
  width: 100%;
}
.img-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.625rem;
  padding: 2rem 1.5rem;
  text-align: center;
}
.img-placeholder-inner p { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; line-height: 1.5; }
.img-placeholder--hero    { aspect-ratio: 4/3;  max-height: 520px; }
.img-placeholder--medium  { aspect-ratio: 9/7; }
.img-placeholder--portrait { aspect-ratio: 4/5; max-width: 360px; }
.img-placeholder--scene   { aspect-ratio: 10/7; }
.img-placeholder--gallery { aspect-ratio: 3/2; }
.img-placeholder--social  { aspect-ratio: 3/2; }
.img-placeholder--filled {
  border: none;
  background: none;
}
.content-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}


/* ============================================================
   PRAXISEINFÜHRUNG
   ============================================================ */
.two-col-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  min-width: 0;
}
.two-col-layout > * { min-width: 0; }

.strength-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.strength-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}
.strength-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.strength-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--color-accent);
}
.strength-card h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.strength-card p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   KARTEN-GRID
   ============================================================ */
.cards-grid { display: grid; gap: 1.5rem; margin-top: 2.5rem; }
.cards-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cards-grid > * { min-width: 0; }

.service-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}
.service-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-4px); }
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--color-accent);
}
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9375rem; margin-bottom: 0.75rem; }
.service-benefit {
  font-size: 0.875rem;
  color: var(--color-accent);
  font-weight: 500;
  padding-top: 0.75rem;
  border-top: 1px solid var(--color-border-light);
  margin-bottom: 0;
}

.trust-feature-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  transition: var(--transition-slow);
}
.trust-feature-card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.trust-icon {
  width: 44px;
  height: 44px;
  background: var(--color-accent-soft);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.875rem;
  color: var(--color-accent);
}
.trust-feature-card h3 { font-size: 1rem; margin-bottom: 0.375rem; }
.trust-feature-card p { font-size: 0.9rem; margin: 0; }

/* ============================================================
   ÜBER UNS
   ============================================================ */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  min-width: 0;
}
.about-layout > * { min-width: 0; }
.about-images {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  overflow: visible; /* Safari fix */
}
.about-content { padding-top: 0.25rem; }
.about-content h2 { margin-bottom: 1.25rem; }
.about-content > p { margin-bottom: 1rem; }

.philosophy-quote {
  background: var(--color-accent-soft);
  border-left: 4px solid var(--color-accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}
.philosophy-quote p {
  font-size: 1.0625rem;
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 0.75rem;
  line-height: 1.65;
}
.philosophy-quote cite { font-size: 0.9rem; font-style: normal; font-weight: 600; color: var(--color-accent); }

.about-principles { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
.principle { display: flex; gap: 1rem; align-items: flex-start; }
.principle-arrow { color: var(--color-accent); font-size: 1.25rem; font-weight: 700; flex-shrink: 0; line-height: 1.4; }
.principle strong { display: block; font-size: 1rem; margin-bottom: 0.25rem; }
.principle p { font-size: 0.9375rem; margin: 0; }

/* ============================================================
   ABLAUF
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  margin-top: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.process-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.5rem;
  top: 3.5rem;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-accent) 0%, var(--color-border) 100%);
  transform: translateX(-50%);
}
.step-number {
  width: 3rem;
  height: 3rem;
  min-width: 3rem;
  background: var(--color-accent);
  color: white;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 12px rgba(232,115,42,0.28);
}
.step-content { padding-top: 0.35rem; }
.step-content h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.step-content p { font-size: 0.9375rem; }

/* ============================================================
   GALERIE
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.gallery-grid > * { min-width: 0; }
.gallery-item { margin: 0; }
.gallery-item figcaption {
  text-align: center;
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  font-style: italic;
}
.praxis-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.praxis-highlights > * { min-width: 0; }
.praxis-highlight {
  text-align: center;
  padding: 1.5rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
}
.praxis-highlight svg { margin: 0 auto 0.75rem; }
.praxis-highlight strong { display: block; font-size: 1rem; margin-bottom: 0.5rem; }
.praxis-highlight p { font-size: 0.875rem; margin: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { margin-top: 2.5rem; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:first-child { border-top: 1px solid var(--color-border); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
  min-height: 44px;
}
.faq-question:hover,
.faq-question[aria-expanded="true"] { color: var(--color-accent); }
.faq-icon { flex-shrink: 0; color: var(--color-accent); transition: transform 0.25s ease; }
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(180deg); }

/* FAQ-Antwort: sanfte Höhen-Animation via CSS grid trick */
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
.faq-answer.is-open { grid-template-rows: 1fr; }
.faq-answer-inner {
  min-height: 0;
  overflow: hidden;
}
.faq-answer-inner p {
  font-size: 0.9375rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0;
}
.faq-answer-inner p a { font-weight: 500; text-decoration: underline; text-underline-offset: 3px; }

/* ============================================================
   SOCIAL BLOCK
   ============================================================ */
.social-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-width: 0;
}
.social-block > * { min-width: 0; }
.social-content h2 { margin-bottom: 1rem; }
.social-content p { margin-bottom: 1rem; }
.social-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* ============================================================
   SEO-TEXT
   ============================================================ */
.seo-text-block { margin-top: 1.5rem; }
.seo-text-block p { font-size: 1.0625rem; margin-bottom: 1rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  margin-top: 3rem;
  align-items: start;
  min-width: 0;
}
.contact-layout > * { min-width: 0; }

.contact-card {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
  margin-bottom: 1.5rem;
}
.contact-card h3 { font-size: 1.25rem; margin-bottom: 0.25rem; }
.contact-name { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1.75rem; }

.contact-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--color-border-light);
}
.contact-detail:last-of-type { border-bottom: none; }
.contact-detail svg { margin-top: 2px; flex-shrink: 0; }
.contact-detail strong {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.25rem;
  font-weight: 700;
}
.contact-detail a { font-weight: 500; color: var(--color-text); }
.contact-detail a:hover { color: var(--color-accent); }
.contact-note { font-size: 0.8125rem; color: var(--color-text-muted); margin-top: 0.2rem; margin-bottom: 0; }
.link-small { font-size: 0.875rem; font-weight: 500; }

.contact-hours {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-border-light);
}
.contact-hours h4 {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
  font-weight: 700;
}
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table td { padding: 0.3rem 0; color: var(--color-text-soft); }
.hours-table td:first-child { font-weight: 500; color: var(--color-text); min-width: 100px; }
.hours-table--footer td { color: rgba(255,255,255,0.7); padding: 0.25rem 0; }
.hours-table--footer td:first-child { color: rgba(255,255,255,0.9); font-weight: 500; }

.map-placeholder {
  background: linear-gradient(135deg, #e8e4de, #d8d4ce);
  border-radius: var(--radius-md);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed var(--color-border);
}
.map-placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  padding: 2rem;
  text-align: center;
}
.map-placeholder-inner p { font-size: 0.85rem; color: var(--color-text-muted); margin: 0; }

/* ============================================================
   KONTAKTFORMULAR
   ============================================================ */
.contact-form-wrapper {
  background: var(--color-bg);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--color-border-light);
}
.contact-form-wrapper h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.form-intro {
  font-size: 0.9375rem;
  color: var(--color-text-soft);
  margin-bottom: 2rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--color-border-light);
}

/* Formular-Zustand: gesendet */
.contact-form-wrapper.form--sent .contact-form { display: none; }
.form-success { display: none; text-align: center; padding: 2.5rem 1rem; }
.contact-form-wrapper.form--sent .form-success { display: block; }
.form-success svg { margin: 0 auto 1.25rem; }
.form-success h3 { margin-bottom: 0.75rem; color: var(--color-accent); font-size: 1.375rem; }
.form-success p { margin-bottom: 0.75rem; }
.form-success-card {
  margin: 1.25rem auto 1rem;
  padding: 1rem 1.125rem;
  max-width: 34rem;
  border: 1px solid rgba(185,106,59,0.18);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,242,238,0.98));
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.06);
  text-align: left;
}
.form-success-card p:last-child { margin-bottom: 0; }
.form-success-card strong { color: var(--color-heading); }

/* Formular-Felder */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-row > * { min-width: 0; }
.form-group { display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.form-group:last-child { margin-bottom: 0; }
.form-group label,
.form-group legend {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}
.required { color: var(--color-accent); }

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-main);
  font-size: 0.9375rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
  min-height: 44px;
}
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B6B6B' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(232,115,42,0.12);
}
.form-group input.is-invalid,
.form-group select.is-invalid,
.form-group textarea.is-invalid { border-color: var(--color-error); box-shadow: none; }
.form-group input.is-valid,
.form-group select.is-valid,
.form-group textarea.is-valid { border-color: var(--color-success); }
.form-group textarea { resize: vertical; min-height: 130px; }

.form-hint { font-size: 0.8125rem; color: var(--color-text-muted); line-height: 1.4; }
.form-error { font-size: 0.8125rem; color: var(--color-error); display: none; line-height: 1.4; }
.form-error.is-visible { display: block; }

.radio-group { display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; padding-top: 0.25rem; }
.radio-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--color-text-soft);
  min-height: 44px;
}
.radio-label input[type="radio"] { accent-color: var(--color-accent); width: 1.1em; height: 1.1em; cursor: pointer; flex-shrink: 0; }

.form-group--checkbox { flex-direction: row; }
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
  font-size: 0.875rem;
  color: var(--color-text-soft);
  line-height: 1.55;
  font-weight: 400;
  min-height: 44px;
}
.checkbox-label input[type="checkbox"] {
  accent-color: var(--color-accent);
  width: 1.1em;
  height: 1.1em;
  margin-top: 0.2em;
  flex-shrink: 0;
  cursor: pointer;
}
.checkbox-label a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; color: var(--color-accent); }

/* Submit-Bereich */
.form-submit {
  margin-top: 1.75rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.form-required-note { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; }

/* Datenschutz-Hinweis im Formular */
.form-trust {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  border: 1px solid var(--color-border-light);
}
.form-trust svg { color: var(--color-text-muted); flex-shrink: 0; margin-top: 2px; }
.form-trust p { font-size: 0.8125rem; color: var(--color-text-muted); margin: 0; line-height: 1.6; }
.form-trust a { color: var(--color-text-muted); text-decoration: underline; text-underline-offset: 3px; }
.form-trust a:hover { color: var(--color-accent); }

/* ============================================================
   FLOATING WHATSAPP
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-float);
  z-index: 900;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.2s ease, box-shadow 0.2s ease;
  /* Startzustand: unsichtbar (JS steuert Einblenden) */
  opacity: 0;
  transform: scale(0.8);
  animation: pulse-wa 3.5s infinite 1s;
}
.floating-whatsapp:hover {
  background: #1ebe5d;
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
  animation: none;
}
.floating-whatsapp.is-visible { opacity: 1; transform: scale(1); }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%       { box-shadow: 0 4px 32px rgba(37,211,102,0.65); }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background-color: #1C1C1C; color: rgba(255,255,255,0.75); }
.footer-main { padding: 4rem 0 3rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-grid > * { min-width: 0; }

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: white;
  text-decoration: none;
  margin-bottom: 1rem;
}
.footer-logo-text { font-size: 1rem; font-weight: 700; color: white; }
.footer-tagline { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-bottom: 1rem; line-height: 1.65; }
.footer-address { font-size: 0.9rem; color: rgba(255,255,255,0.65); margin-bottom: 1.25rem; line-height: 1.75; }

/* Footer-Kontakte: SVG statt Emoji */
.footer-contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  min-height: 32px;
}
.footer-contact-item:hover { color: var(--color-accent); }
.footer-contact-item svg { flex-shrink: 0; opacity: 0.7; }
.footer-contact-item:hover svg { opacity: 1; }

.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.25rem;
}
.footer-nav { display: flex; flex-direction: column; gap: 0.375rem; }
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  padding: 0.15rem 0;
  min-height: 32px;
  display: flex;
  align-items: center;
}
.footer-nav a:hover { color: var(--color-accent); }
.footer-note { font-size: 0.8125rem; color: rgba(255,255,255,0.45); margin-top: 0.75rem; }
.footer-note a { color: var(--color-accent); text-decoration: underline; text-underline-offset: 3px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.09);
  padding: 1.25rem 0;
  background-color: rgba(0,0,0,0.12);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8125rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom nav ul { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-bottom nav a { font-size: 0.8125rem; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom nav a:hover { color: var(--color-accent); }

/* ============================================================
   RECHTSSEITEN
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 2.5rem;
  color: var(--color-text-soft);
  padding: 0.5rem 0.875rem 0.5rem 0.625rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.legal-back:hover { border-color: var(--color-accent); color: var(--color-accent); background: var(--color-accent-soft); }
.legal-page h1 { font-size: 2rem; margin-bottom: 0.5rem; }
.legal-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1.7;
}
.legal-page h2 { font-size: 1.25rem; margin-top: 2.5rem; margin-bottom: 0.75rem; padding-top: 0.25rem; }
.legal-page h3 { font-size: 1.0625rem; margin-top: 1.5rem; margin-bottom: 0.5rem; }
.legal-page p,
.legal-page li { font-size: 0.9375rem; color: var(--color-text-soft); margin-bottom: 0.875rem; line-height: 1.8; }
.legal-page ul,
.legal-page ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-page ul li { list-style: disc; }
.legal-page ol li { list-style: decimal; }

/* Responsive Tabellen in Rechtsseiten */
.legal-table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 1.5rem 0; }
.legal-page table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 480px; /* verhindert Zusammendrücken auf Mobile */
}
.legal-page th,
.legal-page td { text-align: left; padding: 0.75rem 1rem; border: 1px solid var(--color-border); }
.legal-page th { background: var(--color-surface); font-weight: 600; color: var(--color-text); font-size: 0.875rem; }
.legal-page td { color: var(--color-text-soft); }

/* ============================================================
   RESPONSIVE – TABLET (≤ 1024 px)
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-padding: 4rem; }
  .hero-inner { gap: 2.5rem; }
  .cards-grid--3 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-images { position: static; flex-direction: row; }
  /* FIX: contact-layout bleibt 2-spaltig bis 768px */
  .contact-layout { grid-template-columns: 1fr 1.4fr; }
  .social-block { gap: 2.5rem; }
}

/* ============================================================
   RESPONSIVE – MOBIL (≤ 768 px)
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-padding: var(--section-padding-sm); }

  /* Header */
  .main-nav { display: none; }
  .header-whatsapp { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }

  /* Hero */
  .hero-section { padding: 2.5rem 0 3.5rem; min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hero-image { order: -1; }
  .hero-image-photo { max-width: 650px; }
  .hero-ctas { flex-direction: column; gap: 0.75rem; }
  .hero-ctas .btn { justify-content: center; }

  /* Layouts */
  .two-col-layout { grid-template-columns: 1fr; gap: 2rem; }
  .strength-cards { grid-template-columns: 1fr; }
  .cards-grid--3 { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .praxis-highlights { grid-template-columns: 1fr; }
  .social-block { grid-template-columns: 1fr; gap: 2rem; }
  .about-images { flex-direction: column; }
  .about-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }

  /* Formular */
  .contact-form-wrapper { padding: 1.5rem; }
  .form-submit { flex-direction: column; align-items: flex-start; }
  .form-submit .btn { width: 100%; justify-content: center; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom nav ul { gap: 1rem; }

  /* Ablauf */
  .process-step { gap: 1.25rem; }
  .process-steps { max-width: 100%; }
}

/* ============================================================
   RESPONSIVE – KLEIN (≤ 480 px)
   ============================================================ */
@media (max-width: 480px) {
  :root { --container-padding: 1.125rem; }
  .btn-lg { padding: 0.8rem 1.5rem; font-size: 0.9375rem; }
  .logo-sub { display: none; }
  /* "Termin anfragen" im Header auf sehr kleinen Screens verkleinern */
  .header-actions .btn-sm { padding: 0.5rem 0.75rem; font-size: 0.8125rem; }
}

/* ============================================================
   DRUCKLAYOUT
   ============================================================ */
@media print {
  .site-header, .floating-whatsapp, .nav-toggle, .mobile-menu,
  .mobile-overlay, footer, .section-cta, .hero-ctas { display: none !important; }
  body { font-size: 11pt; color: black; }
  a { color: black; text-decoration: underline; }
  .hero-section { min-height: auto; background: none; padding: 1rem 0; }
  .section { padding: 1.5rem 0; }
}


/* Header-Update: Hamburger immer sichtbar, Logo mittig */
.main-nav { display: none !important; }
.nav-toggle { display: flex !important; }
.mobile-menu { display: block !important; }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.site-logo,
.site-logo--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
}
.header-actions {
  margin-left: auto;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .header-whatsapp { display: none; }
  .site-logo .logo-sub { display: none; }
  .site-logo,
  .site-logo--center {
    max-width: calc(100% - 140px);
  }
}


/* Final header alignment fix */
.header-inner {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 1rem;
}
.header-actions {
  display: contents;
}
.nav-toggle {
  grid-column: 1;
  justify-self: start;
  z-index: 3;
}
.site-logo,
.site-logo--center {
  position: static;
  left: auto;
  transform: none;
  grid-column: 2;
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 320px;
}
.site-logo-image {
  display: block;
  width: min(240px, 100%);
  height: auto;
}
.header-whatsapp,
.header-actions .btn-sm {
  grid-column: 3;
  justify-self: end;
}
.mobile-menu-logo {
  display: block;
  width: 180px;
  max-width: 100%;
  height: auto;
}
@media (max-width: 768px) {
  .header-inner {
    grid-template-columns: 44px 1fr auto;
  }
  .site-logo,
  .site-logo--center {
    max-width: calc(100% - 88px);
  }
  .site-logo-image {
    width: min(200px, 100%);
  }
}
@media (max-width: 480px) {
  .site-logo-image {
    width: min(170px, 100%);
  }
}


/* Image asset folder + exact header/footer adjustments */
.footer-logo-image {
  display: block;
  width: min(260px, 100%);
  height: auto;
}
.footer-logo-image--white {
  filter: none;
}
.legal-footer-logo-wrap {
  padding-bottom: 1rem;
}
.footer-logo--legal {
  display: inline-flex;
}
.header-inner {
  grid-template-columns: 44px minmax(0,1fr) auto;
}
.nav-toggle {
  grid-column: 1;
  justify-self: start;
  align-self: center;
}
.site-logo,
.site-logo--center {
  grid-column: 2;
  justify-self: center;
}
.header-whatsapp,
.header-actions .btn-sm {
  grid-column: 3;
}


/* FINAL HEADER FIX 2026-03-31 */
:root { --header-h: 130px; }
html { scroll-padding-top: var(--header-h); }
.site-header { height: var(--header-h); }
.header-inner {
  position: relative;
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  height: 100%;
  gap: 1rem;
}
.main-nav { display: none !important; }
.nav-toggle {
  display: inline-flex !important;
  grid-column: 1;
  justify-self: start;
  align-self: center;
  width: 52px;
  height: 52px;
  padding: 12px;
  border: none;
  background: transparent;
  border-radius: 0;
}
.nav-toggle:hover { border: none; background: transparent; }
.hamburger-line { height: 3px; }
.site-logo,
.site-logo--center {
  grid-column: 2;
  position: static;
  left: auto;
  transform: none;
  justify-self: center;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 0;
}
.site-logo-image {
  display: block;
  width: 100%;
  max-width: 300px;
  max-height: 90px;
  height: auto;
}
.header-actions {
  grid-column: 3;
  justify-self: end;
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin-left: 0;
  position: relative;
  z-index: 2;
}
.header-whatsapp--icon {
  width: 48px;
  height: 48px;
  min-height: 48px;
  padding: 0;
  justify-content: center;
  border-radius: 10px;
}
.header-whatsapp--icon span { display: none; }
.header-actions .btn-sm {
  min-height: 48px;
  padding: 0.85rem 1.2rem;
}
.mobile-menu { display: block !important; }
@media (max-width: 768px) {
  .site-header { height: 130px; }
  .header-inner { grid-template-columns: 52px minmax(0, 1fr) auto; gap: 0.75rem; }
  .header-whatsapp--icon { display: inline-flex !important; }
  .site-logo, .site-logo--center { max-width: 320px; }
  .site-logo-image { max-width: 320px; max-height: 76px; }
  .header-actions .btn-sm { padding: 0.75rem 1rem; font-size: 0.875rem; }
}
@media (max-width: 560px) {
  .header-inner { grid-template-columns: 48px minmax(0, 1fr) auto; gap: 0.5rem; }
  .site-logo, .site-logo--center { max-width: 230px; }
  .site-logo-image { max-width: 230px; max-height: 62px; }
  .header-actions { gap: 8px; }
  .header-whatsapp--icon { width: 42px; height: 42px; min-height: 42px; }
  .header-actions .btn-sm { min-height: 42px; padding: 0.68rem 0.85rem; font-size: 0.79rem; }
}


/* Compliance / Accessibility additions */
.honeypot-field{position:absolute !important;left:-9999px !important;top:auto;width:1px;height:1px;overflow:hidden;}
.form-error-global{margin-top:1rem;padding:0.85rem 1rem;border:1px solid rgba(176,44,44,0.18);background:#fff7f7;color:var(--color-error);border-radius:var(--radius-sm);}
.content-image{width:100%;height:100%;object-fit:cover;display:block;}
:focus-visible{outline:3px solid rgba(185,106,59,0.35);outline-offset:3px;}
.site-footer a[href="#"]{pointer-events:none;opacity:.6;}
@media (prefers-reduced-motion: reduce){html:focus-within{scroll-behavior:auto;}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important;}}
