/* ============================================================
   SACRED WARMTH — Shared Design Layer
   Pfarreiengemeinschaft Weilheim i.OB

   Dieses CSS ergänzt pg-weilheim-ui.css um das "Sacred Warmth"
   Design-System: Cormorant Garamond + Outfit, Gold/Cream/Ink.
   Wird von ALLEN statischen Seiten eingebunden.
   ============================================================ */

/* =================== DESIGN TOKENS =================== */
:root {
  --gold: #c9980f;
  --gold-light: #e2b83a;
  --gold-vivid: #daa520;
  --gold-glow: rgba(201, 152, 15, 0.2);
  --gold-subtle: rgba(201, 152, 15, 0.1);
  --cream: #faf6f0;
  --parchment: #f0ebe2;
  --parchment-deep: #e6dfd4;
  --ink: #1e1b18;
  --ink-light: #4a453f;
  --ink-faint: #5c5650;  /* WCAG fix: 5.5:1 statt 3.9:1 auf cream */
  --burgundy: #9b3230;
  --burgundy-deep: #7a2422;
  --serif: 'Cormorant Garamond', 'Palatino', Georgia, serif;
  --sans: 'Outfit', 'DM Sans', system-ui, sans-serif;
}

/* =================== BASE =================== */
body.pg-ui {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
}

/* =================== HEADER OVERRIDES =================== */
.pg-header {
  background: rgba(250,246,240,0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.pg-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* =================== PAGE HERO (Inner Pages) =================== */
.page-hero {
  position: relative;
  background: var(--ink);
  padding: clamp(1.2rem, 3vh, 2rem) clamp(1.5rem, 5vw, 4rem) clamp(1rem, 2.5vh, 1.5rem);
  text-align: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.page-hero-inner {
  max-width: var(--pg-max-width, 1600px);
  margin: 0 auto;
}
.page-hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.page-hero-eyebrow::before,
.page-hero-eyebrow::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold-light);
  opacity: 0.4;
}
/* Left-aligned variant (e.g. gottesdienste) */
.page-hero--left { text-align: left; }
.page-hero--left .page-hero-eyebrow {
  justify-content: flex-start;
}
.page-hero--left .page-hero-eyebrow::after { display: none; }

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 300;
  color: #fff;
  margin: 0 0 0.3rem;
  letter-spacing: -0.01em;
}
.page-hero-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.5;
  margin: 0;
}
.page-hero--left .page-hero-sub { margin: 0 0 1.5rem; }
.page-hero:not(.page-hero--left) .page-hero-sub { margin: 0 auto; }

/* =================== BREADCRUMBS =================== */
.breadcrumbs {
  max-width: var(--pg-max-width, 1600px);
  margin: 0 auto;
  padding: 0.75rem clamp(1.5rem, 5vw, 4rem) 0;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.breadcrumbs a {
  color: var(--ink-faint);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs-sep {
  margin: 0 0.5rem;
  opacity: 0.5;
}

/* =================== GOLDEN ORNAMENT DIVIDER =================== */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 0;
  gap: 1.5rem;
}
.ornament::before,
.ornament::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}
.ornament svg {
  width: 20px;
  height: 20px;
  color: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}
.ornament-wide::before,
.ornament-wide::after {
  max-width: 200px;
}

/* =================== SECTION HEADERS =================== */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--ink);
  margin: 0 0 0.5rem;
}
.section-header p {
  font-size: 0.9rem;
  color: var(--ink-faint);
  font-weight: 400;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

.section-header-line {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 0.75rem;
}
.section-header-line h2 {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  margin: 0;
}
.section-header-line a {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  margin-left: auto;
  letter-spacing: 0.02em;
  transition: color 0.2s;
  white-space: nowrap;
}
.section-header-line a:hover { color: var(--ink); }

.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* =================== BUTTONS =================== */

/* Primary CTA (Gold gradient) */
.sw-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  background: linear-gradient(135deg, var(--gold-vivid) 0%, var(--gold) 100%);
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(201, 152, 15, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.sw-btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.sw-btn-primary:hover::before { opacity: 1; }
.sw-btn-primary:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(201, 152, 15, 0.4);
}

/* Ghost button (on dark backgrounds) */
.sw-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  color: #fff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
  transition: all 0.3s ease;
  cursor: pointer;
}
.sw-btn-ghost:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.8);
  background: rgba(255,255,255,0.12);
  transform: translateY(-2px);
}

/* Small download/action button */
.sw-btn-download {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--gold-vivid), var(--gold));
  color: #fff;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(201, 152, 15, 0.3);
  transition: all 0.3s;
  cursor: pointer;
}
.sw-btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201, 152, 15, 0.4);
  color: #fff;
}
.sw-btn-download svg { width: 16px; height: 16px; }

/* Parchment button (on light backgrounds) */
.sw-btn-parchment {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 16px;
  background: var(--parchment);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  cursor: pointer;
}
.sw-btn-parchment:hover {
  background: var(--parchment-deep);
  transform: translateY(-1px);
}

/* Read-more link */
.read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s;
}
.read-more:hover { gap: 14px; border-bottom-color: var(--gold); }

/* =================== BADGE =================== */
.sw-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
}
.sw-badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: sw-pulse 2s infinite;
}
@keyframes sw-pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

/* =================== SEELSORGE BANNER =================== */
.seelsorge-banner {
  max-width: var(--pg-max-width, 1600px);
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
}
.seelsorge-inner {
  background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}
.seelsorge-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}
.seelsorge-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.seelsorge-icon svg { width: 24px; height: 24px; color: #fff; }
.seelsorge-text h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.2rem;
}
.seelsorge-text p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  margin: 0;
  line-height: 1.5;
}
.seelsorge-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  background: #fff;
  color: var(--burgundy);
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.seelsorge-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.25);
  background: #fafafa;
}

/* =================== DOCUMENT CARDS =================== */
.doc-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 2px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  text-decoration: none;
  color: var(--ink);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.doc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border-color: var(--gold-glow);
}
.doc-card-thumb {
  width: 52px; height: 68px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex-shrink: 0;
}
.doc-card-icon {
  width: 52px; height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  flex-shrink: 0;
}
.doc-card-icon svg { width: 24px; height: 24px; color: #fff; }
.doc-card-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.3;
}
.doc-card-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: var(--ink-faint);
  font-weight: 400;
  margin-top: 4px;
}

/* =================== CONTACT CARDS =================== */
.c-card {
  background: #fff;
  padding: 1.75rem 1.5rem;
  border-radius: 2px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: all 0.3s;
}
.c-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 48px rgba(0,0,0,0.15);
}
.c-icon {
  width: 48px; height: 48px;
  background: var(--gold-subtle);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-icon svg { width: 20px; height: 20px; color: var(--gold); }
.c-label {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 600;
  margin-bottom: 2px;
}
.c-value { font-weight: 600; font-size: 0.95rem; }
.c-value a { color: var(--ink); text-decoration: none; transition: color 0.2s; }
.c-value a:hover { color: var(--gold); }

/* =================== PARISHES SECTION =================== */
.parishes-section {
  background: var(--ink);
  padding: 6rem clamp(1.5rem, 5vw, 4rem) 7rem;
  position: relative;
}
.parishes-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,134,11,0.3), transparent);
}
.parishes-header {
  max-width: var(--pg-max-width, 1600px);
  margin: 0 auto 3.5rem;
  text-align: center;
}
.parishes-header h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: #fff;
  margin-bottom: 0.5rem;
}
.parishes-header p {
  color: var(--ink-faint);
  font-size: 0.9rem;
  font-weight: 300;
}
.parishes-grid {
  max-width: var(--pg-max-width, 1600px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.75rem;
}
.p-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 2px;
  overflow: hidden;
  text-decoration: none;
}
.p-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
  filter: brightness(0.6) saturate(0.7);
}
.p-card:hover img { transform: scale(1.08); filter: brightness(0.8) saturate(1); }
.p-card-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 2rem 1.25rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  color: #fff;
}
.p-card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
.p-card-loc {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* =================== INTERN SUB-NAVIGATION =================== */
.pg-subnav {
  position: sticky;
  top: var(--pg-nav-height, 60px);
  z-index: 999;
  background: var(--ink, #1e1b18);
  border-bottom: 1px solid rgba(201,152,15,0.2);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.pg-subnav-inner {
  max-width: var(--pg-max-width, 1200px);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  display: flex;
  gap: 2px;
  overflow-x: auto;
  scrollbar-width: none;
}
.pg-subnav-inner::-webkit-scrollbar { display: none; }
.pg-subnav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 12px 16px;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
  border-bottom: 2px solid transparent;
}
.pg-subnav-link:hover {
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.05);
}
.pg-subnav-link.pg-subnav-active {
  color: #fff;
  border-bottom-color: var(--gold, #c9980f);
  font-weight: 600;
}
.pg-subnav-icon {
  font-size: 0.9rem;
  line-height: 1;
}
@media (max-width: 700px) {
  .pg-subnav-link { padding: 8px 12px; font-size: 0.72rem; }

  /* Sticky Footer auf Mobile deaktivieren - spart 38px + vereinfacht Layout */
  .pg-footer {
    position: static;
    transform: none;
    max-height: none;
    overflow-y: visible;
    box-shadow: none;
  }
  .pg-footer::before { display: none; }
  .pg-footer .pg-footer-inner,
  .pg-footer .pg-footer-bottom {
    visibility: visible;
    transition: none;
  }
  body.pg-ui { padding-bottom: 0; }
  .pg-mobile-nav {
    bottom: 0 !important;
    z-index: 999;
  }
}

/* =================== FOOTER STICKY/COLLAPSIBLE =================== */
/* Footer ist sticky am unteren Bildschirmrand, eingeklappt nur Mini-Bar.
   Click/Hover auf den Toggle-Button blendet den vollen Footer ein. */
.pg-footer {
  background: var(--ink);
  margin-top: 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  transform: translateY(calc(100% - 38px));
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  max-height: 80vh;
  overflow-y: auto;
  padding-top: 0;
}
/* A11Y: Links aus Tab-Flow entfernen wenn Footer eingeklappt */
.pg-footer .pg-footer-inner,
.pg-footer .pg-footer-bottom {
  visibility: hidden;
  transition: visibility 0s 0.4s;
}
.pg-footer.expanded .pg-footer-inner,
.pg-footer.expanded .pg-footer-bottom {
  visibility: visible;
  transition: visibility 0s 0s;
}
.pg-footer.expanded {
  transform: translateY(0);
}
/* Toggle-Bar (immer sichtbar) */
.pg-footer::before {
  content: '\25B2  Footer';
  display: block;
  position: sticky;
  top: 0;
  height: 38px;
  line-height: 38px;
  text-align: center;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: linear-gradient(180deg, #0f0d0a 0%, var(--ink) 100%);
  border-top: 1px solid rgba(201,152,15,0.2);
  cursor: pointer;
  transition: color 0.2s, background 0.2s;
  z-index: 1;
  user-select: none;
}
.pg-footer:hover::before {
  color: var(--gold);
  background: linear-gradient(180deg, #1a1612 0%, var(--ink) 100%);
}
.pg-footer.expanded::before {
  content: '\25BC  Footer schliessen';
}
/* Wenn JS den echten Button injiziert hat, ::before ausblenden */
.pg-footer:has(.pg-footer-toggle)::before { display: none; }
/* Body-Padding damit der Inhalt nicht hinter dem Footer verschwindet */
body.pg-ui {
  padding-bottom: 38px;
}
/* Mobile-Nav (falls vorhanden) ueber dem Footer */
.pg-mobile-nav {
  bottom: 38px !important;
  z-index: 91;
}
@media (max-width: 700px) {
  body.pg-ui { padding-bottom: 38px; }
  .pg-footer { max-height: 70vh; }
}

/* =================== SCROLL ANIMATIONS =================== */
@keyframes sw-fadeSlideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes sw-fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.anim {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.anim.visible { opacity: 1; transform: translateY(0); }
.anim-scale {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.anim-scale.visible { opacity: 1; transform: scale(1); }

.stagger-1 { transition-delay: 0.05s; }
.stagger-2 { transition-delay: 0.1s; }
.stagger-3 { transition-delay: 0.15s; }
.stagger-4 { transition-delay: 0.2s; }
.stagger-5 { transition-delay: 0.25s; }
.stagger-6 { transition-delay: 0.3s; }

/* =================== ACCESSIBILITY =================== */
.pg-skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 8px 16px;
  background: var(--gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  text-decoration: none;
}
.pg-skip-link:focus { left: 0; top: 0; }
*:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* =================== RESPONSIVE (shared) =================== */
@media (max-width: 900px) {
  .parishes-grid { grid-template-columns: repeat(2, 1fr); }
  .c-card + .c-card { /* contact grid handled per-page */ }

  /* Seelsorge-Banner: Stack auf Tablet */
  .seelsorge-inner { flex-direction: column; text-align: center; gap: 1rem; }
  .seelsorge-btn { margin-left: 0; width: 100%; justify-content: center; }

  /* Parishes-Section: Padding reduzieren */
  .parishes-section { padding: 3rem clamp(1rem, 4vw, 2rem) 3.5rem; }
  .parishes-header { margin-bottom: 2rem; }
}
@media (max-width: 700px) {
  /* Parishes: 1 Spalte auf Handy */
  .parishes-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .parishes-section { padding: 2rem clamp(1rem, 4vw, 1.5rem) 2.5rem; }

  /* Page-Hero: kompakter auf Mobile - Content above fold */
  .page-hero {
    padding: 0.75rem clamp(1rem, 4vw, 2rem) 0.5rem;
  }
  .page-hero h1 { font-size: clamp(1.35rem, 5vw, 1.8rem); margin-bottom: 0.15rem; }
  .page-hero-sub { font-size: 0.82rem; line-height: 1.4; }
  .page-hero-eyebrow { display: none; }

  /* Touch-Targets: min 44px fuer alle interaktiven Elemente */
  .pg-subnav-link { min-height: 44px; display: inline-flex; align-items: center; padding: 10px 14px; }
  .read-more { min-height: 44px; }
  .sw-btn-parchment { min-height: 44px; }
  .doc-card { min-height: 44px; }
  .seelsorge-btn { min-height: 44px; }

  /* Content above fold: Ornamente kompakter */
  .ornament { padding: 1rem 0; }
  .section-header { margin-bottom: 1.5rem; }

  /* Buttons: full-width auf Handy */
  .sw-btn-primary, .sw-btn-ghost {
    padding: 12px 24px;
    width: 100%;
    justify-content: center;
    font-size: 0.8rem;
  }

  .section-label { margin-bottom: 1rem; }
}

/* =================== REDUCED MOTION =================== */
@media (prefers-reduced-motion: reduce) {
  .anim, .anim-scale { opacity: 1; transform: none; transition: none; }
  .sw-badge-dot { animation: none; }
}

/* Alte --color-* Variablen wurden am 10.06.2026 direkt in allen HTML-Dateien
   durch Sacred-Warmth Variablen ersetzt. Kein Kompatibilitaets-Layer noetig. */
