:root {
  --bg-1: #f5ebff;
  --bg-2: #d9c2ff;
  --bg-3: #9b7ad8;
  --ink: #321c51;
  --ink-soft: #5c4b79;
  --gold: #efd587;
  --white: #ffffff;
  --card: rgba(255,255,255,.72);
  --card-border: rgba(255,255,255,.45);
  --shadow: 0 20px 45px rgba(64, 35, 102, .18);
  --radius: 28px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,.95), rgba(255,255,255,0) 26%),
    radial-gradient(circle at top right, rgba(255,232,255,.65), rgba(255,255,255,0) 22%),
    linear-gradient(180deg, #7f62c7 0%, #c8a8ef 30%, #f3d9ea 58%, #f7f0ff 100%);
  min-height: 100vh;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.55), rgba(255,255,255,0) 12%),
    radial-gradient(circle at 80% 10%, rgba(255,245,212,.45), rgba(255,255,255,0) 11%),
    radial-gradient(circle at 70% 65%, rgba(255,255,255,.4), rgba(255,255,255,0) 12%),
    radial-gradient(circle at 25% 75%, rgba(255,255,255,.45), rgba(255,255,255,0) 14%);
  filter: blur(6px);
}
.container { width: min(1180px, calc(100% - 32px)); margin: 0 auto; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(90, 58, 146, .38);
  border-bottom: 1px solid rgba(255,255,255,.2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  min-height: 84px;
}
.site-branding { display: flex; align-items: center; gap: 16px; }
.site-logo img { max-height: 58px; width: auto; }
.site-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  font-weight: 700;
  color: #fff7d6;
  line-height: 1;
  display: inline-block;
}
.site-tagline { margin: 4px 0 0; color: rgba(255,255,255,.82); font-size: .95rem; }
.primary-nav .menu { display: flex; gap: 18px; list-style: none; margin: 0; padding: 0; }
.primary-nav a {
  color: #fff; font-weight: 600; font-size: .97rem;
  padding: 10px 14px; border-radius: 999px;
}
.primary-nav a:hover { background: rgba(255,255,255,.15); }
.menu-toggle {
  display: none; border: 0; background: rgba(255,255,255,.16); color: #fff;
  width: 44px; height: 44px; border-radius: 14px; font-size: 1.25rem;
}

.hero-section { padding: 64px 0 32px; }
.hero-section__inner {
  background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(255,255,255,.14));
  border: 1px solid rgba(255,255,255,.25);
  box-shadow: var(--shadow);
  border-radius: 36px;
  padding: 58px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-section__inner::before {
  content: ""; position: absolute; inset: auto -10% -20% -10%; height: 180px;
  background: radial-gradient(circle at 50% 0, rgba(255,255,255,.96), rgba(255,255,255,0) 64%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px;
  border-radius: 999px; background: rgba(255,255,255,.22); color: #fff8dc;
  border: 1px solid rgba(255,255,255,.35); font-weight: 700; letter-spacing: .03em; text-transform: uppercase; font-size: .8rem;
}
.hero-title {
  margin: 18px auto 12px; max-width: 900px; color: #fff; font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem); line-height: .98;
  text-shadow: 0 8px 32px rgba(72, 35, 114, .33);
}
.hero-copy { max-width: 760px; margin: 0 auto; color: rgba(255,255,255,.95); font-size: 1.08rem; line-height: 1.75; }
.hero-link, .button-primary, .button-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 22px; border-radius: 999px; padding: 14px 24px; font-weight: 700;
}
.hero-link, .button-primary {
  background: linear-gradient(180deg, #7f4ed8, #5b31a7);
  color: #fff; box-shadow: 0 12px 28px rgba(91, 49, 167, .3);
}
.button-secondary {
  border: 1px solid rgba(85,55,128,.18); background: rgba(255,255,255,.78); color: var(--ink);
}
.section-heading { margin-bottom: 22px; }
.section-heading span {
  font-size: .85rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: #7957b1;
}
.section-heading h2, .section-heading h1, .single-prayer__title {
  margin: 8px 0 10px; font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1;
  font-family: 'Cormorant Garamond', serif;
}
.section-heading p { margin: 0; color: var(--ink-soft); }
.section-heading--centered { text-align: center; }

.share-section, .wall-section, .archive-main, .single-main, .page-main {
  padding: 18px 0 38px;
}
.prayer-form, .single-prayer {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 26px; backdrop-filter: blur(14px);
}
.prayer-form__grid {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px;
}
.prayer-form label { display: block; }
.prayer-form span { display: block; margin-bottom: 8px; font-weight: 700; }
.prayer-form input, .prayer-form textarea {
  width: 100%; border: 1px solid rgba(92,75,121,.15); background: rgba(255,255,255,.82);
  border-radius: 18px; padding: 15px 16px; font: inherit; color: var(--ink);
}
.prayer-form textarea { resize: vertical; min-height: 150px; }
.prayer-form__footer {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
}
.prayer-form__note, .prayer-form__message { color: var(--ink-soft); }
.prayer-form__message { margin-top: 10px; font-weight: 600; }

.prayer-wall {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px;
}
.prayer-card {
  background: var(--card); border: 1px solid var(--card-border); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); backdrop-filter: blur(12px);
}
.prayer-card__image { aspect-ratio: 16 / 7; background-size: cover; background-position: center; }
.prayer-card__body { padding: 22px; }
.prayer-card__meta, .single-prayer__meta {
  display: flex; gap: 12px; flex-wrap: wrap; color: #725e96; font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
}
.prayer-card__title { margin: 10px 0 12px; font-size: clamp(1.55rem, 3vw, 2.2rem); line-height: 1.05; font-family: 'Cormorant Garamond', serif; }
.prayer-card__excerpt, .single-prayer__content { color: var(--ink-soft); line-height: 1.8; font-size: 1.02rem; }
.prayer-card__actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 18px;
}
.reaction-btn {
  appearance: none; border: 1px solid rgba(95,63,139,.16); background: rgba(255,255,255,.82); color: var(--ink);
  border-radius: 999px; padding: 11px 16px; font-weight: 700; cursor: pointer;
}
.reaction-btn span { color: #7d57bf; margin-left: 4px; }
.load-more-wrap, .pagination-wrap { text-align: center; margin-top: 28px; }

.single-prayer__title { margin-top: 12px; }
.single-prayer__image { margin: 20px 0; overflow: hidden; border-radius: 24px; }
.single-prayer__content p { margin-top: 0; }

.site-footer {
  padding: 32px 0 110px; color: #fff; text-align: center;
}
.site-footer p { margin: 0; opacity: .95; }

.audio-player-shell {
  position: fixed; left: 0; right: 0; bottom: 14px; z-index: 70;
}
.audio-player {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  background: rgba(79, 46, 135, .82); color: #fff; border: 1px solid rgba(255,255,255,.24);
  border-radius: 24px; padding: 16px 18px; backdrop-filter: blur(16px); box-shadow: 0 24px 60px rgba(49, 19, 90, .35);
}
.audio-player__left { display: flex; align-items: center; gap: 14px; }
.audio-player__button {
  width: 48px; height: 48px; border: 0; border-radius: 16px;
  background: rgba(255,255,255,.18); color: #fff; font-size: 1.15rem; cursor: pointer;
}
.audio-player__label { font-weight: 800; }
.audio-player__sub { font-size: .86rem; opacity: .8; }
.audio-player__right input { width: 160px; }

@media (max-width: 900px) {
  .prayer-wall, .prayer-form__grid { grid-template-columns: 1fr; }
  .primary-nav { display: none; position: absolute; top: 84px; left: 16px; right: 16px; }
  .primary-nav.is-open { display: block; }
  .primary-nav .menu {
    flex-direction: column; padding: 12px; background: rgba(84, 52, 139, .95); border-radius: 22px;
    box-shadow: var(--shadow);
  }
  .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
}

@media (max-width: 640px) {
  .hero-section { padding-top: 34px; }
  .hero-section__inner, .prayer-form, .single-prayer, .prayer-card__body { padding: 20px; }
  .audio-player { flex-direction: column; align-items: stretch; }
  .audio-player__right input { width: 100%; }
  .site-footer { padding-bottom: 150px; }
}
