/* =========================================================
   KCW — Kiez Church Wedding
   Editorial parish style · warm cream + deep forest
   ========================================================= */

:root {
  --bg:           #F1EADA;
  --bg-deeper:    #E8DEC5;
  --bg-card:      #FBF6E9;
  --ink:          #1B201A;
  --ink-soft:     #555848;
  --ink-mute:     #8B8B79;
  --accent:       #2C4A2B;
  --accent-hover: #1F3620;
  --warm:         #A85539;
  --rule:         #C9BFA5;
  --shadow:       0 1px 0 rgba(27, 32, 26, 0.04),
                  0 12px 32px -16px rgba(27, 32, 26, 0.18);

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body:    'Manrope', system-ui, -apple-system, sans-serif;

  --container:    1200px;
  --content:      720px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a {
  color: var(--accent);
  text-decoration: none;
  transition: color .2s ease;
}
a:hover { color: var(--warm); }

/* Subtle paper texture via SVG noise */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .35;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.11 0 0 0 0 0.13 0 0 0 0 0.10 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg-deeper); }

.kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 24px;
}
.kicker::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--warm);
}

.h-display {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 60;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 32px;
}
.h-display em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  color: var(--accent);
}

.lead {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241, 234, 218, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(201, 191, 165, 0.5);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand img { height: 38px; width: auto; }
.brand__wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand__main {
  display: block;
}
.brand__sub {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 500;
  display: block;
  margin-top: 2px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 6px;
  position: relative;
  transition: background .2s ease, color .2s ease;
}
.nav a:hover { background: rgba(44, 74, 43, 0.08); color: var(--accent); }
.nav a.is-current { color: var(--accent); }
.nav a.is-current::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 1.5px;
  background: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 6px;
  padding: 8px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
}

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 70px;
  align-items: center;
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: clamp(3rem, 7.5vw, 6.4rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.hero__title em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  color: var(--accent);
}
.hero__lede {
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
  margin: 0 0 36px;
}
.hero__cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  transition: transform .2s ease, background .2s ease, color .2s ease;
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: var(--accent);
  color: var(--bg);
}
.btn--primary:hover {
  background: var(--accent-hover);
  color: var(--bg);
  transform: translateY(-1px);
}
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn--ghost:hover { background: rgba(44, 74, 43, 0.06); color: var(--accent); }

.hero__mark {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__mark img {
  width: 100%;
  max-width: 480px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(27, 32, 26, 0.15));
}
.hero__mark-deco {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.hero__mark-deco svg {
  width: 100%;
  height: 100%;
  max-width: 600px;
  opacity: 0.5;
}

.hero__en-note {
  margin-top: 48px;
  padding: 18px 22px;
  border-left: 2px solid var(--warm);
  background: rgba(168, 85, 57, 0.06);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
  border-radius: 0 8px 8px 0;
}
.hero__en-note strong {
  color: var(--warm);
  font-weight: 600;
  display: block;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* ---------- Sunday section ---------- */
.sunday__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  margin-bottom: 64px;
  align-items: end;
}
.sunday__head .lead { margin-top: 0; }

.schedule {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.schedule__card {
  background: var(--bg-card);
  border: 1px solid var(--rule);
  border-radius: 16px;
  padding: 32px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.schedule__card:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 0 rgba(27, 32, 26, 0.04),
              0 20px 40px -16px rgba(27, 32, 26, 0.22);
}
.schedule__time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 2.6rem;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 0 0 8px;
}
.schedule__time small {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 6px;
}
.schedule__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.schedule__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

.sunday__extras {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.feature {
  padding: 28px 4px 4px;
  border-top: 1px solid var(--rule);
}
.feature__icon {
  width: 34px; height: 34px;
  color: var(--accent);
  margin-bottom: 18px;
}
.feature__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.feature__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.55;
}

/* ---------- Scripture pull quote ---------- */
.scripture {
  padding: 110px 0;
  text-align: center;
  position: relative;
}
.scripture__inner {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 28px;
}
.scripture__mark {
  font-family: var(--font-display);
  font-size: 6rem;
  font-style: italic;
  color: var(--warm);
  line-height: 0.5;
  margin-bottom: 24px;
  opacity: 0.55;
}
.scripture__text {
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(1.6rem, 3.6vw, 2.6rem);
  line-height: 1.35;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
}
.scripture__ref {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--warm);
}

/* ---------- Weekly section ---------- */
.weekly__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.weekly__item {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 36px 30px;
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .25s ease;
}
.weekly__item:hover { transform: translateY(-3px); }
.weekly__num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--warm);
  letter-spacing: 0.1em;
}
.weekly__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  letter-spacing: -0.01em;
  margin: 0;
}
.weekly__text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- Baptism / CTA band ---------- */
.cta-band {
  background: var(--accent);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.6;
  pointer-events: none;
}
.cta-band .container { padding-top: 100px; padding-bottom: 100px; }
.cta-band__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.cta-band__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(241, 234, 218, 0.7);
  margin: 0 0 22px;
}
.cta-band__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--bg);
}
.cta-band__title em {
  font-style: italic;
  color: #D5C99D;
}
.cta-band__text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(241, 234, 218, 0.88);
  margin: 0;
}
.cta-band .btn--primary {
  background: var(--bg);
  color: var(--accent);
}
.cta-band .btn--primary:hover { background: #F8F1DD; color: var(--accent-hover); }

/* Bank card on donation band */
.bank-card {
  background: var(--bg);
  color: var(--ink);
  border-radius: 16px;
  padding: 36px 34px;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.35),
              0 1px 0 rgba(255, 255, 255, 0.4) inset;
  position: relative;
}
.bank-card::before {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, var(--warm), #6E3520);
  opacity: 0.85;
}
.bank-card__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 18px;
}
.bank-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 28px;
  color: var(--ink);
  max-width: 14ch;
}
.bank-card__iban-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin: 0 0 8px;
}
.bank-card__iban {
  font-family: 'Manrope', sans-serif;
  font-feature-settings: 'tnum';
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 0;
  word-spacing: 0.1em;
}

/* ---------- Location ---------- */
.location__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.location__address {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 24px;
}
.location__meta {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 28px;
}
.location__map {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  background: var(--bg-deeper);
}
.location__map iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
.site-footer {
  background: #1B201A;
  color: #D5CEB8;
  padding: 80px 0 32px;
  position: relative;
  z-index: 2;
}
.site-footer a { color: #E5DDC1; }
.site-footer a:hover { color: #D5C99D; }
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(213, 206, 184, 0.18);
}
.site-footer__brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  color: #F1EADA;
  margin: 0 0 14px;
  line-height: 1.15;
}
.site-footer__tagline {
  color: #B8B098;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 24px;
  max-width: 36ch;
}
.site-footer__heading {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8E886F;
  margin: 0 0 16px;
}
.site-footer__list { list-style: none; padding: 0; margin: 0; font-size: 14px; line-height: 1.9; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 28px;
  font-size: 12px;
  color: #8E886F;
  letter-spacing: 0.06em;
}
.site-footer__iban {
  font-family: 'Manrope', monospace;
  font-feature-settings: 'tnum';
  letter-spacing: 0.04em;
  color: #D5CEB8;
  font-size: 13px;
  word-break: break-all;
}

/* =========================================================
   CREED PAGE (glaubensbekenntnis.html)
   ========================================================= */

.creed-hero {
  padding: 120px 0 70px;
  text-align: center;
}
.creed-hero__kicker {
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm);
  font-weight: 600;
  margin: 0 0 28px;
}
.creed-hero__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
}
.creed-hero__title em {
  font-style: italic;
  color: var(--accent);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}
.creed-hero__intro {
  max-width: 56ch;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.creed-hero__rule {
  width: 60px;
  height: 1px;
  background: var(--rule);
  margin: 56px auto 0;
}

.creed {
  padding: 40px 0 120px;
}
.creed__inner {
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 28px;
}
.creed__article {
  padding: 56px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  align-items: start;
}
.creed__article:last-of-type { border-bottom: none; }
.creed__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--warm);
  letter-spacing: -0.02em;
  font-style: italic;
}
.creed__num small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-style: normal;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-top: 6px;
}
.creed__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-variation-settings: 'opsz' 144, 'SOFT' 80;
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.015em;
  margin: 0 0 20px;
  color: var(--ink);
}
.creed__body {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.creed__body + .creed__body { margin-top: 14px; }

.creed__coda {
  text-align: center;
  padding: 80px 0 0;
  font-family: var(--font-display);
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100;
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: -0.01em;
}
.creed__coda small {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
  margin-top: 10px;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.reveal {
  opacity: 0;
  animation: fadeUp .8s ease forwards;
}
.reveal--1 { animation-delay: .05s; }
.reveal--2 { animation-delay: .18s; }
.reveal--3 { animation-delay: .32s; }
.reveal--4 { animation-delay: .46s; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 50px 0 60px; }
  .hero__grid { grid-template-columns: 1fr; gap: 36px; }
  .hero__mark { order: -1; }
  .hero__mark img { max-width: 300px; }
  .hero__mark-deco svg { max-width: 420px; }
  .hero__title { margin: 0 0 20px; }
  .hero__lede { margin: 0 0 28px; font-size: 1.1rem; }
  .hero__en-note { margin-top: 32px; }

  .section { padding: 60px 0; }
  .section--tight { padding: 50px 0; }

  .sunday__head { grid-template-columns: 1fr; gap: 20px; align-items: start; margin-bottom: 40px; }
  .schedule { grid-template-columns: 1fr; gap: 18px; }
  .schedule__card { padding: 26px 24px; }
  .sunday__extras { grid-template-columns: 1fr; gap: 0; margin-top: 40px; }
  .feature { padding: 22px 4px 4px; }

  .scripture { padding: 70px 0; }
  .scripture__mark { font-size: 4.5rem; margin-bottom: 16px; }

  .weekly__grid { grid-template-columns: 1fr; gap: 18px; margin-top: 36px; }
  .weekly__item { padding: 28px 24px; gap: 10px; }

  .cta-band .container { padding-top: 64px; padding-bottom: 64px; }
  .cta-band__grid { grid-template-columns: 1fr; gap: 28px; }
  .bank-card { padding: 28px 26px; }
  .bank-card__name { margin-bottom: 22px; }

  .location__grid { grid-template-columns: 1fr; gap: 32px; }
  .location__address { margin-bottom: 18px; }
  .location__meta { margin-bottom: 22px; }

  .h-display { margin: 0 0 24px; }

  .site-footer { padding: 56px 0 24px; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 36px; }

  .creed-hero { padding: 60px 0 40px; }
  .creed-hero__rule { margin-top: 36px; }
  .creed { padding: 20px 0 70px; }
  .creed__article { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
  .creed__num { font-size: 1.8rem; }
  .creed__title { margin-bottom: 14px; }
  .creed__coda { padding: 50px 0 0; }

  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--rule);
    padding: 8px 16px 16px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 8px;
    border-bottom: 1px solid rgba(201, 191, 165, 0.4);
    font-size: 15px;
  }
  .nav a:last-child { border-bottom: none; }
  .nav a.is-current::after { display: none; }
}
@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__title { font-size: clamp(2.5rem, 13vw, 4rem); }
  .scripture { padding: 56px 0; }
  .scripture__text { line-height: 1.3; }
  .brand__main { display: none; }
  .brand__sub {
    font-size: 12px;
    margin-top: 0;
    letter-spacing: 0.16em;
  }
  .hero__mark img { max-width: 260px; }
  .hero__mark-deco svg { max-width: 380px; }
}
