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

:root {
  --warm-white: #FDFAF4;
  --parchment:  #F0E8D5;
  --parch2:     #E8DCC4;
  --gold:       #C9A84C;
  --gold-l:     #E4C97A;
  --text:       #3B2A1A;
  --text-s:     #6B5444;
  --text-m:     #9E8A78;
  --white:      #FFFFFF;
  --dark:       #2A1E12;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -40px; left: 1rem;
  background: var(--gold); color: var(--white);
  padding: .4rem .8rem; border-radius: 2px;
  font-size: .8rem; font-weight: 700; text-decoration: none;
  transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  background: rgba(253,250,244,.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--parch2);
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 1.2rem; font-weight: 700;
  color: var(--text); text-decoration: none;
  letter-spacing: .04em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 1.8rem; list-style: none; }
.nav-links a {
  font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--text-s); text-decoration: none; transition: color .2s;
}
.nav-links a:hover, .nav-links a:focus { color: var(--gold); outline: none; }
.nav-burger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; margin-right: -.5rem;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--text-s); margin: 5px 0;
  transition: transform .3s, opacity .3s;
}
#drawer {
  display: none; position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(253,250,244,.98);
  border-bottom: 1px solid var(--parch2);
  padding: 1.5rem; flex-direction: column; gap: 1.2rem; z-index: 190;
}
#drawer a {
  font-size: 1rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-s); text-decoration: none;
  padding: .6rem 0; border-bottom: 1px solid var(--parch2);
}
.nav-drawer a:last-child { border-bottom: none; }
#drawer.open { display: flex; }
#nav.open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#nav.open .nav-burger span:nth-child(2) { opacity: 0; }
#nav.open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════
   BUTTONS
══════════════════════════════ */
.btn {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: .82rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px;
  padding: .95rem 2rem;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
}
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.btn-primary { background: var(--gold); color: var(--white); border: 1.5px solid var(--gold); }
.btn-primary:hover { background: #b8943d; border-color: #b8943d; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-s); border: 1.5px solid var(--parch2); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ══════════════════════════════
   HERO (index.html)
══════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--warm-white);
  padding: 80px 1.5rem 5rem;
}
.hero-rays {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 1000px; height: 100%;
  pointer-events: none;
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 680px; width: 100%;
}
.hero-cross {
  display: block; width: 2px; height: 48px;
  background: linear-gradient(to bottom, transparent, var(--gold));
  margin: 0 auto 2.5rem; position: relative;
}
.hero-cross::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 2px; background: var(--gold);
}
.hero-eyebrow {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.2rem;
}
h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  font-weight: 600; line-height: 1.12;
  color: var(--text); margin-bottom: 1.1rem;
  letter-spacing: .02em;
}
.hero-tagline {
  font-style: italic; font-weight: 300;
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--text-s); margin-bottom: 2.6rem; line-height: 1.65;
}
.hero-tagline em { color: var(--gold); font-style: normal; font-weight: 400; }
.hero-actions {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  text-decoration: none;
}
.hero-scroll span {
  font-size: .62rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--text-m);
}
.scroll-line {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, var(--gold-l), transparent);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* ══════════════════════════════
   PAGE HERO (Unterseiten)
══════════════════════════════ */
.page-hero {
  padding: 110px 1.5rem 4rem;
  text-align: center;
  background: var(--warm-white);
  position: relative;
  overflow: hidden;
}
.page-hero-rays {
  position: absolute; top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%; max-width: 800px; height: 100%;
  pointer-events: none;
}
.page-hero h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600; color: var(--text);
  letter-spacing: .02em; margin-bottom: .6rem;
}
.page-hero .sub {
  font-size: 1rem; color: var(--text-m);
  font-style: italic; font-weight: 300;
}

/* ══════════════════════════════
   SHARED SECTION STYLES
══════════════════════════════ */
section { padding: 5.5rem 1.5rem; }
.inner { max-width: 1080px; margin: 0 auto; }

.label {
  display: block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .9rem;
}
h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 600; color: var(--text);
  line-height: 1.2; margin-bottom: 1.1rem;
  letter-spacing: .02em;
}
.divider { width: 40px; height: 2px; background: var(--gold); margin-bottom: 2rem; }
.intro { color: var(--text-s); max-width: 580px; margin-bottom: 2.8rem; font-size: 1rem; }

/* ══════════════════════════════
   QUOTE STRIP
══════════════════════════════ */
.quote-strip {
  background: var(--parchment);
  border-top: 1px solid var(--parch2);
  border-bottom: 1px solid var(--parch2);
  padding: 4rem 1.5rem; text-align: center;
}
.quote-strip blockquote {
  font-family: 'Cinzel', serif;
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 400; color: var(--text-s);
  max-width: 680px; margin: 0 auto;
  line-height: 1.75; letter-spacing: .03em;
}
.quote-strip blockquote::before {
  content: '\201E'; font-size: 3rem; color: var(--gold-l);
  line-height: 0; vertical-align: -.7rem; margin-right: .1rem;
}
.quote-strip cite {
  display: block; margin-top: 1.1rem;
  font-size: .72rem; font-family: 'Lato', sans-serif;
  font-style: normal; letter-spacing: .18em;
  text-transform: uppercase; color: var(--text-m);
}

/* ══════════════════════════════
   MUSIK
══════════════════════════════ */
.musik-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.2rem;
}
.song-card {
  background: var(--white);
  border: 1px solid var(--parch2);
  border-radius: 4px; padding: 1.6rem;
  position: relative; overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  text-decoration: none; display: block;
}
.song-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; width: 3px; height: 0;
  background: var(--gold); transition: height .25s;
}
.song-card:hover, .song-card:focus-within {
  box-shadow: 0 8px 28px rgba(59,42,26,.09);
  transform: translateY(-2px);
}
.song-card:hover::before { height: 100%; }
.song-lang {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--text-m); margin-bottom: .4rem;
}
.song-title {
  font-family: 'Cinzel', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: .2rem;
}
.song-sub { font-size: .82rem; color: var(--text-m); font-style: italic; margin-bottom: 1.2rem; }
.song-cta { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); }
.musik-footer { text-align: center; margin-top: 2.8rem; }

/* ══════════════════════════════
   LOBPREIS SECTION (index)
══════════════════════════════ */
.lob-bg {
  background: var(--parchment);
  border-top: 1px solid var(--parch2);
  border-bottom: 1px solid var(--parch2);
}
.lob-cols {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.lob-text p { color: var(--text-s); margin-bottom: 1rem; font-size: 1rem; }
.bible-box {
  margin: 1.8rem 0; padding: 1.3rem 1.5rem;
  background: rgba(201,168,76,.08);
  border-left: 3px solid var(--gold);
}
.bible-box p { font-style: italic; font-size: .95rem; color: var(--text-s); margin: 0; }
.bible-box cite {
  display: block; margin-top: .5rem;
  font-size: .7rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text-m); font-style: normal;
}
.steps { display: flex; flex-direction: column; gap: 1.8rem; }
.step { display: flex; gap: 1.2rem; align-items: flex-start; }
.step-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 50%; background: var(--warm-white);
  border: 1px solid var(--parch2);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.step-body h3 {
  font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 600;
  color: var(--text); margin-bottom: .3rem;
}
.step-body p { font-size: .9rem; color: var(--text-s); line-height: 1.6; }

/* ══════════════════════════════
   GEBETE (index Übersicht)
══════════════════════════════ */
.gebete-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 1rem;
}
.gebet-card {
  background: var(--parchment); border: 1px solid var(--parch2);
  border-radius: 4px; padding: 2rem 1rem;
  text-align: center; text-decoration: none;
  display: flex; flex-direction: column; align-items: center; gap: .8rem;
  transition: background .2s, border-color .2s, transform .15s;
  min-height: 120px;
}
.gebet-card:hover, .gebet-card:focus {
  background: var(--white); border-color: var(--gold-l);
  transform: translateY(-2px); outline: none;
}
.gebet-icon { font-size: 1.8rem; }
.gebet-card span {
  font-family: 'Cinzel', serif; font-size: .88rem; font-weight: 600;
  color: var(--text); letter-spacing: .03em;
}

/* ══════════════════════════════
   NOTEN
══════════════════════════════ */
.noten-bg { background: var(--parchment); border-top: 1px solid var(--parch2); }
.noten-list { display: flex; flex-direction: column; gap: .55rem; margin-top: 2.5rem; }
.noten-item {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.4rem; background: var(--warm-white);
  border: 1px solid var(--parch2); border-radius: 3px; transition: border-color .2s;
}
.noten-item:hover { border-color: var(--gold-l); }
.noten-title { font-family: 'Cinzel', serif; font-size: .9rem; font-weight: 600; color: var(--text); }
.noten-sub { font-size: .75rem; color: var(--text-m); font-style: italic; margin-top: .15rem; }
.noten-dl {
  flex-shrink: 0; font-size: .75rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  padding: .5rem .8rem; border: 1px solid var(--gold-l); border-radius: 2px;
  transition: background .2s, color .2s;
}
.noten-dl:hover { background: var(--gold); color: var(--white); }
.noten-hint { font-size: .8rem; color: var(--text-m); margin-top: 1.8rem; font-style: italic; }
.noten-hint a { color: var(--gold); }

/* ══════════════════════════════
   GEBETE UNTERSEITEN (Kategorie)
══════════════════════════════ */
.cat-tabs {
  display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2.5rem;
}
.cat-tab {
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none; padding: .55rem 1.1rem;
  border: 1.5px solid var(--parch2); border-radius: 2px; color: var(--text-s);
  transition: border-color .2s, color .2s, background .2s;
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.gebet-list { display: flex; flex-direction: column; gap: .5rem; }
.gebet-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.1rem 1.4rem; background: var(--white);
  border: 1px solid var(--parch2); border-radius: 3px; text-decoration: none;
  transition: border-color .2s, box-shadow .2s; gap: 1rem;
}
.gebet-link:hover {
  border-color: var(--gold-l);
  box-shadow: 0 4px 16px rgba(59,42,26,.07);
}
.gebet-link-title {
  font-family: 'Cinzel', serif; font-size: .92rem; font-weight: 600; color: var(--text);
}
.gebet-link-arrow { color: var(--gold); font-size: 1rem; flex-shrink: 0; }

/* ══════════════════════════════
   GEBET EINZELSEITEN (Texte)
══════════════════════════════ */
.gt { max-width: 640px; margin: 0 auto; font-size: 1.05rem; line-height: 2; color: var(--text-s); }
.gt p { margin-bottom: 1.1rem; }
.gt em { font-style: italic; color: var(--text-m); }
.gt strong { font-weight: 700; color: var(--text); }
.gt ol { padding-left: 1.5rem; margin-bottom: 1.1rem; }
.gt ol li { margin-bottom: .4rem; }
.gt h3 {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
  color: var(--text); margin: 1.8rem 0 .6rem;
}
.amen {
  display: block; margin-top: 1.6rem;
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
  color: var(--gold); letter-spacing: .08em;
}
.autor {
  display: block; margin-top: 1.8rem;
  font-size: .78rem; font-style: italic; color: var(--text-m);
}
.back-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--text-m); text-decoration: none; margin-bottom: 2.5rem; transition: color .2s;
}
.back-link:hover { color: var(--gold); }

/* ══════════════════════════════
   LOBPREIS UNTERSEITE
══════════════════════════════ */
.lob-article { max-width: 720px; margin: 0 auto; }
.lob-article p { color: var(--text-s); margin-bottom: 1.2rem; font-size: 1rem; line-height: 1.8; }
.lob-article h3 {
  font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600;
  color: var(--text); margin: 2.5rem 0 .8rem;
}
.lob-steps { display: flex; flex-direction: column; gap: 1.5rem; margin: 2.5rem 0; }
.lob-step { display: flex; gap: 1.2rem; align-items: flex-start; }
.lob-step-icon {
  width: 48px; height: 48px; flex-shrink: 0; border-radius: 50%;
  background: var(--parchment); border: 1px solid var(--parch2);
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem;
}
.lob-step-body h4 {
  font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 600;
  color: var(--text); margin-bottom: .3rem;
}
.lob-step-body p { font-size: .9rem; color: var(--text-s); margin: 0; }

/* ══════════════════════════════
   IMPRESSUM
══════════════════════════════ */
.imp-block { margin-bottom: 2.5rem; }
.imp-block h3 {
  font-family: 'Cinzel', serif; font-size: 1rem; font-weight: 600;
  color: var(--text); margin-bottom: .6rem; letter-spacing: .02em;
}
.imp-block p, .imp-block address {
  font-size: .95rem; color: var(--text-s); font-style: normal; line-height: 1.75;
}
.imp-block a { color: var(--gold); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
footer {
  background: var(--dark); color: rgba(240,232,213,.55);
  padding: 3.5rem 1.5rem; text-align: center;
}
.footer-inner { max-width: 600px; margin: 0 auto; }
.footer-cross {
  display: block; width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 0 auto 1.6rem; position: relative;
}
.footer-cross::after {
  content: ''; position: absolute; top: 40%; left: 50%;
  transform: translate(-50%,-50%); width: 14px; height: 1px; background: var(--gold);
}
.footer-logo {
  font-family: 'Cinzel', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--parchment); letter-spacing: .05em; margin-bottom: .3rem;
}
.footer-logo span { color: var(--gold); }
.footer-tag { font-size: .75rem; font-style: italic; color: rgba(240,232,213,.3); margin-bottom: 2rem; }
.footer-links {
  display: flex; flex-wrap: wrap; gap: 1.5rem;
  justify-content: center; list-style: none; margin-bottom: 2rem;
}
.footer-links a {
  font-size: .7rem; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(240,232,213,.4); text-decoration: none; transition: color .2s;
}
.footer-links a:hover { color: var(--gold-l); }
.footer-copy { font-size: .68rem; color: rgba(240,232,213,.2); }

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 840px) {
  .lob-cols { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 640px) {
  section { padding: 3rem 1.25rem; }
  .nav-links { display: none; }
  .nav-burger { display: block; }
  h1 { font-size: clamp(2rem, 8vw, 2.8rem); }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn { text-align: center; padding: 1rem 1.5rem; font-size: .85rem; }
  .musik-grid { grid-template-columns: 1fr; }
  .gebete-grid { grid-template-columns: repeat(2, 1fr); }
  .gebet-card { padding: 1.6rem .8rem; }
  .noten-item { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .noten-dl { align-self: flex-start; }
  .hero-scroll { display: none; }
}
@media (max-width: 360px) {
  .gebete-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
