:root {
  --bg: #ffffff;
  --ink: #111111;
  --muted: #6f737b;
  --line: #e8e8e8;
  --soft: #f4f6f8;
  --accent: #ef5b2a;
  --accent-dark: #c93f15;
  --green: #1ed760;
  --charcoal: #303030;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
}

body.menu-open,
body.media-open,
body.locations-open,
body.note-open,
body.gallery-open,
body.admin-open,
body.donation-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 clamp(16px, 5vw, 72px);
}

.topbar-left,
.brand,
.desktop-nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.topbar-left {
  gap: 18px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.icon-button,
.profile-button,
.radio-nav-button,
.hero-arrow {
  display: inline-grid;
  place-items: center;
  border: 0;
  cursor: pointer;
}

.icon-button {
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: transparent;
}

.brand {
  gap: 10px;
  min-width: 0;
  height: 78px;
}

.brand img {
  width: 192px;
  height: 116px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  display: none;
  line-height: 1;
}

.brand strong {
  font-size: 19px;
  font-weight: 800;
}

.brand small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.desktop-nav {
  gap: clamp(18px, 2vw, 32px);
  margin-left: auto;
  font-size: 15px;
  font-weight: 700;
}

.desktop-nav a {
  padding: 12px 0;
  transition: color 180ms ease;
}

.desktop-nav button {
  padding: 12px 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  font-weight: inherit;
}

.desktop-nav a:hover,
.desktop-nav button:hover,
.menu-group a:hover,
.menu-group button:hover {
  color: var(--accent);
}

.profile-button {
  width: 40px;
  height: 40px;
  color: #101010;
  background: #d6d6d6;
  border-radius: 50%;
}

.profile-button svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.4;
}

.radio-nav-button {
  position: relative;
  width: 46px;
  height: 46px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 32% 22%, #ffb3a8, transparent 32%),
    linear-gradient(135deg, #ff3b30, #9f1111);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(226, 31, 38, 0.34);
  animation: radioButtonPulse 1.8s ease-in-out infinite;
}

.radio-nav-button svg {
  position: relative;
  z-index: 1;
  width: 24px;
  height: 24px;
  stroke-width: 2.4;
}

.quick-nav {
  display: none;
  grid-auto-flow: column;
  grid-auto-columns: 84px;
  gap: 4px;
  overflow-x: auto;
  padding: 14px 12px 12px;
  border-top: 1px solid var(--line);
  scrollbar-width: none;
}

.quick-nav::-webkit-scrollbar {
  display: none;
}

.quick-nav a {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  color: #56595f;
  font-size: 11px;
  font-weight: 800;
}

.quick-nav button {
  display: grid;
  justify-items: center;
  gap: 7px;
  min-width: 0;
  padding: 0;
  color: #56595f;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 800;
}

.quick-nav svg,
.quick-nav button svg {
  width: 23px;
  height: 23px;
  color: #161616;
}

.side-menu {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 80;
  width: min(86vw, 316px);
  color: #fff;
  background: var(--charcoal);
  transform: translateX(-100%);
  transition: transform 220ms ease;
  box-shadow: 20px 0 55px rgba(0, 0, 0, 0.32);
}

.side-menu.is-open {
  transform: translateX(0);
}

.menu-scroll {
  height: 100%;
  overflow-y: auto;
  padding: 28px 24px 34px;
}

.menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.menu-head h2,
.side-menu h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.close-menu {
  color: #fff;
}

.menu-group {
  display: grid;
  gap: 21px;
  margin-top: 34px;
}

.menu-group.compact {
  gap: 18px;
  margin-top: 24px;
}

.menu-group a {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 16px;
  color: #fff;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-group button {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 16px;
  padding: 0;
  color: #fff;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.menu-group a:hover,
.menu-group button:hover {
  transform: translateX(3px);
}

.menu-group span,
.menu-group button span {
  display: grid;
  gap: 5px;
}

.menu-group strong {
  font-size: 16px;
}

.menu-group small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.35;
}

.menu-divider {
  height: 1px;
  margin: 36px -24px 26px;
  background: rgba(255, 255, 255, 0.08);
}

.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
  background: rgba(0, 0, 0, 0);
  transition: background 220ms ease;
}

.menu-backdrop.is-open {
  pointer-events: auto;
  background: rgba(0, 0, 0, 0.62);
}

.hero-slider {
  position: relative;
  width: min(100%, 1680px);
  min-height: calc(100svh - 86px);
  margin: 0 auto;
  overflow: hidden;
  background: #0d0d0d;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 520ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.hero-media,
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
}

.hero-media img,
.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-loading {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 320ms ease, visibility 320ms ease;
}

.video-loading img {
  position: static;
  width: min(42vw, 260px);
  height: auto;
  object-fit: contain;
  animation: softPulse 1.6s ease-in-out infinite;
}

.video-loading.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.2) 38%, rgba(0, 0, 0, 0.84)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.36), transparent 52%);
}

.hero-content {
  position: absolute;
  left: clamp(24px, 12vw, 210px);
  right: clamp(24px, 10vw, 170px);
  bottom: 70px;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(280px, 560px) auto;
  align-items: end;
  gap: 36px;
  color: #fff;
}

.community-content {
  grid-template-columns: minmax(300px, 660px) minmax(280px, 380px);
  align-items: center;
}

.eyebrow,
.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero-content h1 {
  margin: 0;
  font-size: clamp(35px, 5vw, 76px);
  line-height: 0.98;
}

.hero-content p,
.hero-content address {
  max-width: 650px;
  margin: 12px 0 0;
  font-size: clamp(16px, 1.55vw, 21px);
  font-style: normal;
  font-weight: 700;
  line-height: 1.42;
}

.hero-actions {
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.button,
.admin-head button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 214px;
  min-height: 42px;
  padding: 12px 26px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.admin-head button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
}

.button:active,
.admin-head button:active {
  transform: translateY(0) scale(0.98);
}

.button.primary {
  color: #111;
  background: #fff;
}

.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.25);
}

.hero-arrow {
  position: absolute;
  right: clamp(16px, 4vw, 34px);
  top: 50%;
  z-index: 4;
  width: 44px;
  height: 44px;
  color: #fff;
  background: rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease;
}

.hero-arrow:hover {
  transform: translateY(-50%) scale(1.08);
  background: rgba(255, 255, 255, 0.34);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 5;
  display: flex;
  gap: 15px;
  transform: translateX(-50%);
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.38);
  transition: width 180ms ease, background 180ms ease;
}

.slider-dots .active {
  width: 18px;
  background: #fff;
}

.floating-play {
  position: fixed;
  left: clamp(8px, 1.4vw, 18px);
  bottom: clamp(10px, 2.6vw, 30px);
  z-index: 95;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 64px;
  height: 64px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(239, 91, 42, 0.95), rgba(17, 17, 17, 0.94));
  border: 0;
  border-radius: 18px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(239, 91, 42, 0.28);
  animation: gentleBuzz 2.8s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-play::before {
  content: "";
  position: absolute;
  inset: -2px;
  opacity: 0;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.85), transparent 32%);
  animation: liveBeam 2.4s linear infinite;
}

.floating-play::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, rgba(239, 91, 42, 0.95), rgba(17, 17, 17, 0.94));
  border-radius: 15px;
}

.floating-play.has-live {
  width: 104px;
  background: #d91f1f;
  box-shadow: 0 20px 50px rgba(217, 31, 31, 0.36);
}

.floating-play.has-live::before {
  opacity: 1;
}

.floating-play.has-live::after {
  background: linear-gradient(135deg, #e21f26, #7a090d);
  border-radius: 999px;
}

.floating-play svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
  transform: translateX(2px);
}

.floating-play span {
  position: relative;
  z-index: 1;
  display: none;
  font-size: 12px;
  font-weight: 900;
}

.floating-play.has-live span {
  display: inline-flex;
  white-space: nowrap;
}

.floating-play:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 54px rgba(239, 91, 42, 0.42);
}

.floating-play.has-live:hover {
  transform: scale(1.05);
  box-shadow: 0 24px 58px rgba(217, 31, 31, 0.44);
}

.floating-radio-mini {
  position: fixed;
  left: 50%;
  bottom: clamp(16px, 3vw, 38px);
  z-index: 94;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 34px;
  gap: 12px;
  align-items: center;
  width: min(440px, calc(100vw - 188px));
  min-height: 64px;
  padding: 8px 14px 8px 8px;
  color: #fff;
  background:
    radial-gradient(circle at 14% 50%, rgba(255, 59, 48, 0.38), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(217, 31, 31, 0.28), transparent 36%),
    linear-gradient(135deg, rgba(11, 16, 28, 0.97), rgba(12, 12, 14, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%);
  overflow: hidden;
  isolation: isolate;
}

.floating-radio-mini::before {
  content: "";
  position: absolute;
  inset: 4px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: inherit;
}

.floating-radio-mini::after {
  content: "";
  position: absolute;
  right: 58px;
  bottom: 9px;
  width: 52px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 94, 0.82), transparent);
  opacity: 0.72;
}

.floating-radio-toggle {
  position: relative;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: #fff;
  background: linear-gradient(135deg, #ff3b30, #9f1111);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(217, 31, 31, 0.32);
  animation: radioMiniPulse 2.4s ease-in-out infinite;
}

.floating-radio-toggle::before {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255, 107, 94, 0.28);
  border-radius: inherit;
}

.floating-radio-toggle svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
  stroke: none;
}

.floating-radio-mini.is-playing .floating-radio-toggle .play-icon,
.floating-radio-toggle .pause-icon {
  display: none;
}

.floating-radio-mini.is-playing .floating-radio-toggle .pause-icon {
  display: block;
}

.floating-radio-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.floating-radio-copy span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffb4aa;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0;
}

.floating-radio-copy span::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #ff3b30;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 59, 48, 0.13);
}

.floating-radio-copy strong {
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  line-height: 1.1;
}

.floating-radio-meter {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 4px;
  height: 24px;
  padding-right: 2px;
}

.floating-radio-meter i {
  display: block;
  width: 4px;
  height: 8px;
  background: linear-gradient(180deg, #ffdf7e, #ff4d45);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(255, 77, 69, 0.42);
  animation: radioMiniBars 860ms ease-in-out infinite;
}

.floating-radio-meter i:nth-child(2) {
  animation-delay: 140ms;
}

.floating-radio-meter i:nth-child(3) {
  animation-delay: 280ms;
}

.floating-chat {
  position: fixed;
  right: clamp(14px, 2vw, 28px);
  bottom: clamp(16px, 3vw, 38px);
  z-index: 95;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: #fff;
  background: #1477f2;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(20, 119, 242, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-chat:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 22px 54px rgba(20, 119, 242, 0.44);
}

.chat-widget {
  position: fixed;
  inset: 0 0 auto auto;
  z-index: 130;
  pointer-events: none;
}

.chat-widget.is-open {
  pointer-events: auto;
}

.chat-panel {
  position: fixed;
  right: 18px;
  bottom: 88px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  width: min(382px, calc(100vw - 24px));
  height: min(680px, calc(100svh - 110px));
  padding: 18px 12px 12px;
  color: #1f2937;
  background: #f7f8fb;
  border-radius: 0 0 18px 18px;
  box-shadow: 0 28px 80px rgba(15, 23, 42, 0.24);
  transform: translateY(18px) scale(0.97);
  opacity: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.chat-widget.is-open .chat-panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.chat-close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: #1f2937;
  background: #e9edf2;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-brand {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 12px;
  padding: 12px 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08);
}

.chat-brand img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.chat-brand h2,
.chat-brand p {
  margin: 0;
}

.chat-brand h2 {
  font-size: 15px;
}

.chat-brand p {
  color: #7b8492;
  font-size: 13px;
}

.chat-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 10px;
  padding: 4px;
  background: #e9edf2;
  border-radius: 8px;
}

.chat-tabs button {
  min-height: 38px;
  color: #475569;
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 900;
}

.chat-tabs button.active {
  color: #fff;
  background: #1477f2;
}

.chat-panel-view {
  display: none;
  min-height: 0;
}

.chat-panel-view.active {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-height: 0;
}

.chat-panel-view[data-chat-panel="info"].active {
  grid-template-rows: minmax(0, 1fr) auto;
}

.chat-panel-view[data-chat-panel="prayer"].active {
  grid-template-rows: auto minmax(0, 1fr);
}

.chat-messages {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 12px 0;
}

.chat-message {
  max-width: 86%;
  padding: 12px 14px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  font-size: 14px;
  line-height: 1.45;
}

.chat-message.user {
  justify-self: end;
  color: #fff;
  background: #1477f2;
}

.chat-message header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.chat-message strong,
.chat-message time {
  font-size: 12px;
}

.chat-message time {
  color: #7b8492;
  font-weight: 800;
  white-space: nowrap;
}

.chat-message.user time {
  color: rgba(255, 255, 255, 0.72);
}

.chat-message p,
.chat-empty,
.chat-private-note {
  margin: 0;
}

.chat-empty,
.chat-private-note {
  align-self: start;
  padding: 14px;
  color: #667085;
  background: #fff;
  border-radius: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.chat-info-list {
  display: grid;
  align-content: start;
  gap: 10px;
  overflow-y: auto;
  padding: 8px 0 12px;
}

.chat-info-list article {
  display: grid;
  gap: 6px;
  padding: 14px;
  background: #fff;
  border: 1px solid #dbe5f3;
  border-radius: 8px;
}

.chat-info-list strong {
  color: #111827;
  font-size: 13px;
}

.chat-info-list p {
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 1.45;
}

.chat-info-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  padding-top: 8px;
}

.chat-info-actions button,
.chat-info-actions a {
  display: inline-grid;
  place-items: center;
  align-items: center;
  min-width: 0;
  min-height: 40px;
  padding: 0 10px;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #1477f2, #0f5fc7);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(20, 119, 242, 0.22);
}

.chat-name-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  margin-bottom: 8px;
}

.chat-name-form input,
.petition-form input,
.petition-form textarea {
  min-width: 0;
  width: 100%;
  border: 1px solid #d7dfea;
  border-radius: 8px;
  outline: 0;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
}

.chat-name-form button,
.petition-form button {
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: #1477f2;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 40px;
  gap: 8px;
  align-items: center;
  padding: 8px;
  background: #fff;
  border: 1px solid #d7dfea;
  border-radius: 999px;
}

.chat-form input {
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 0 10px;
  font: inherit;
  background: transparent;
}

.chat-form button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: #1477f2;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.chat-panel-view > small,
.petition-form small {
  margin-top: 10px;
  color: #9aa3b1;
  text-align: center;
  font-size: 12px;
  line-height: 1.25;
}

.chat-panel-view > small[data-type="success"],
.petition-form small[data-type="success"] {
  color: #138a36;
}

.chat-panel-view > small[data-type="error"],
.petition-form small[data-type="error"] {
  color: #d91f1f;
}

.petition-form {
  display: grid;
  align-content: start;
  grid-template-rows: auto auto auto auto auto;
  gap: 9px;
  padding-top: 10px;
  min-height: 0;
  overflow-y: auto;
}

.petition-form label {
  display: grid;
  gap: 6px;
  color: #475569;
  font-size: 13px;
  font-weight: 900;
}

.petition-form textarea {
  min-height: 90px;
  height: 118px;
  resize: vertical;
}

.petition-check {
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
}

.petition-check input {
  width: auto;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(12px, 2vw, 28px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.media-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.media-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 260px 1fr;
  width: min(1180px, 100%);
  max-width: 100%;
  height: min(760px, calc(100svh - 34px));
  overflow: hidden;
  color: #fff;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.48);
  transform: translateY(18px) scale(0.98);
  transition: transform 220ms ease;
}

.media-modal.is-open .media-shell {
  transform: translateY(0) scale(1);
}

.media-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px 18px;
  background: #0d0d0d;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.media-logo {
  display: none;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-weight: 800;
}

.media-logo img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.media-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 13px 14px;
  color: rgba(255, 255, 255, 0.76);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.media-tab.active,
.media-tab:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.media-main {
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 118px;
  background: linear-gradient(180deg, #3e0b0b, #121212 42%);
}

.radio-chat-inline {
  display: none;
}

@media (min-width: 1500px) {
  .media-open .media-modal {
    place-items: center start;
    padding-left: clamp(22px, 4vw, 74px);
    padding-right: 460px;
  }

  .media-open .media-shell {
    width: min(1080px, calc(100vw - 540px));
  }

  .media-open .chat-panel {
    top: 18px;
    right: 18px;
    bottom: 18px;
    width: 400px;
    height: auto;
    border-radius: 8px;
  }
}

@media (max-width: 1499px) {
  .chat-widget.is-inline {
    position: static;
    inset: auto;
    z-index: auto;
    pointer-events: auto;
  }

  .chat-widget.is-inline .chat-panel {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(560px, calc(100svh - 160px));
    margin: 0;
    border-radius: 8px;
    opacity: 1;
    transform: none;
  }

  .chat-widget.is-inline .chat-brand {
    margin: 8px 0;
    padding: 8px 12px;
    border-radius: 8px;
  }

  .chat-widget.is-inline .chat-brand img {
    width: 30px;
    height: 30px;
  }

  .chat-widget.is-inline .chat-tabs {
    gap: 5px;
    margin-bottom: 6px;
  }

  .chat-widget.is-inline .chat-tabs button {
    min-height: 32px;
    font-size: 12px;
  }

  .chat-widget.is-inline .chat-private-note {
    padding: 9px 10px;
    font-size: 13px;
  }

  .chat-widget.is-inline .petition-form {
    grid-template-rows: auto auto auto auto auto;
    gap: 7px;
    padding-top: 7px;
  }

  .chat-widget.is-inline .petition-form label {
    gap: 4px;
    font-size: 12px;
  }

  .chat-widget.is-inline .petition-form label:nth-of-type(3) {
    min-height: 0;
  }

  .chat-widget.is-inline .petition-form input,
  .chat-widget.is-inline .petition-form textarea {
    padding: 8px 10px;
  }

  .chat-widget.is-inline .petition-form textarea {
    min-height: 70px;
    height: 96px;
  }

  .chat-widget.is-inline .petition-form button {
    min-height: 36px;
  }

  .chat-widget.is-inline .petition-form small {
    margin-top: 0;
  }

  .radio-chat-inline {
    display: block;
    margin: 20px 44px 44px;
  }
}

.media-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.36);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.media-panel {
  display: none;
}

.media-panel.active {
  display: block;
}

.music-hero,
.live-hero {
  min-height: 280px;
  display: flex;
  align-items: end;
  padding: 58px 44px 34px;
  background:
    radial-gradient(circle at 78% 22%, rgba(239, 91, 42, 0.55), transparent 34%),
    linear-gradient(135deg, #3a3a3a, #141414 58%);
}

.live-hero {
  display: grid;
  align-items: center;
}

.radio-hero {
  background:
    radial-gradient(circle at 78% 22%, rgba(50, 135, 255, 0.45), transparent 34%),
    linear-gradient(135deg, #202020, #071627 62%);
}

.live-hero > div {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  width: min(760px, 100%);
  justify-items: start;
}

.live-hero p,
.live-hero h2,
.live-hero span {
  grid-column: 1;
}

.music-hero h2,
.live-hero h2 {
  margin: 0;
  font-size: clamp(44px, 8vw, 86px);
  line-height: 0.96;
}

.music-hero p,
.live-hero p {
  display: block;
  width: 100%;
  margin: 0;
  font-weight: 800;
}

.music-hero span,
.live-hero span {
  display: block;
  width: 100%;
  max-width: 620px;
  margin-top: 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  line-height: 1.45;
}

.playlist {
  display: grid;
  gap: 8px;
  padding: 28px 44px 34px;
}

.track {
  width: 100%;
  display: grid;
  grid-template-columns: 28px 44px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 10px 12px;
  color: #fff;
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  transition: background 180ms ease;
}

.track:hover,
.track.is-active {
  background: rgba(255, 255, 255, 0.08);
}

.track-number {
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.playing-indicator {
  display: none;
  align-items: end;
  justify-content: center;
  gap: 3px;
  height: 20px;
}

.playing-indicator i {
  width: 3px;
  height: 8px;
  background: var(--green);
  border-radius: 999px;
  animation: musicBars 720ms ease-in-out infinite;
}

.playing-indicator i:nth-child(2) {
  animation-delay: 120ms;
}

.playing-indicator i:nth-child(3) {
  animation-delay: 240ms;
}

.track.is-playing .track-number {
  display: none;
}

.track.is-playing .playing-indicator {
  display: flex;
}

.track-cover {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: inline-block;
  border-radius: 5px;
}

.cover-one {
  background:
    radial-gradient(circle at 25% 25%, #c4fbff, transparent 18%),
    radial-gradient(circle at 70% 35%, #7d4dff, transparent 22%),
    linear-gradient(135deg, #101020, #8b1b6f);
}

.cover-two {
  background:
    radial-gradient(circle at 28% 32%, #ffd58a, transparent 20%),
    radial-gradient(circle at 72% 64%, #2dd4bf, transparent 24%),
    linear-gradient(135deg, #1f2937, #7f1d1d);
}

.track-copy {
  display: grid;
  min-width: 0;
}

.track-copy strong,
.track-copy small {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.track-copy strong {
  font-size: 16px;
}

.track-copy small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.track-duration {
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 700;
}

.audio-player {
  position: sticky;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  display: grid;
  grid-template-columns: minmax(180px, 300px) auto 1fr;
  gap: 22px;
  align-items: center;
  padding: 14px 22px;
  background: #050505;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.player-track {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.mini-cover {
  width: 48px;
  height: 48px;
}

.player-track span:last-child {
  display: grid;
  min-width: 0;
}

.player-track strong,
.player-track small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.player-track small {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.player-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.player-controls button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.player-controls .player-play {
  width: 44px;
  height: 44px;
  color: #111;
  background: #fff;
}

.player-controls svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  stroke: none;
}

.pause-icon,
.audio-player.is-playing .play-icon {
  display: none;
}

.audio-player.is-playing .pause-icon {
  display: block;
}

.player-progress {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  gap: 10px;
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
}

.player-progress input {
  width: 100%;
  accent-color: #fff;
}

.live-box {
  display: grid;
  justify-items: start;
  gap: 20px;
  margin: 34px 44px 44px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.radio-box {
  justify-items: stretch;
  background:
    radial-gradient(circle at 85% 12%, rgba(65, 138, 255, 0.24), transparent 36%),
    linear-gradient(135deg, rgba(8, 18, 34, 0.96), rgba(9, 9, 12, 0.98));
  border-color: rgba(65, 138, 255, 0.18);
}

.azura-player {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
  width: 100%;
}

.azura-art-wrap {
  aspect-ratio: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 35% 25%, rgba(65, 138, 255, 0.35), transparent 32%),
    linear-gradient(135deg, #111827, #050505);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.28);
}

.azura-art-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.azura-content {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.azura-heading {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.azura-heading strong {
  color: #fff;
  font-size: 15px;
}

.azura-live-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #fff;
  background: #d91f1f;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(217, 31, 31, 0.48);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0;
  animation: softPulse 1.6s ease-in-out infinite;
}

.azura-content h3 {
  margin: 0;
  overflow-wrap: anywhere;
  color: #fff;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.02;
}

.azura-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  font-weight: 800;
}

.azura-content small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 800;
}

.azura-content small[data-type="success"] {
  color: #8ff0b3;
}

.azura-content small[data-type="error"] {
  color: #ff9b86;
}

.azura-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 4px;
}

.azura-play {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  color: #101010;
  background: #fff;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.azura-play svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
  stroke: none;
}

.azura-player.is-playing .azura-play .play-icon,
.azura-play .pause-icon {
  display: none;
}

.azura-player.is-playing .azura-play .pause-icon {
  display: block;
}

.azura-volume {
  display: grid;
  gap: 8px;
  min-width: min(260px, 100%);
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.azura-volume input {
  width: 100%;
  accent-color: #418aff;
}

.radio-share {
  display: grid;
  gap: 8px;
  margin: -18px 44px 32px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.radio-share span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 900;
}

.radio-share div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.radio-share a {
  min-width: 0;
  overflow: hidden;
  color: #fff;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 800;
}

.radio-share button {
  min-height: 38px;
  padding: 0 14px;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.radio-share small {
  min-height: 16px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
}

.radio-share small[data-type="success"] {
  color: #8ff0b3;
}

.facebook-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050505;
  border-radius: 8px;
}

.facebook-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.live-box svg {
  width: 42px;
  height: 42px;
  color: var(--green);
}

.live-box h3,
.live-box p {
  margin: 0;
}

.live-box p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(62px, 8vw, 108px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: 1.04;
}

.section p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.experience-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 104px) 0;
  color: #151515;
  background:
    radial-gradient(circle at 14% 18%, rgba(239, 91, 42, 0.16), transparent 34%),
    linear-gradient(135deg, #fff7f1 0%, #eef3f0 48%, #f6f7fa 100%);
}

.experience-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.experience-heading {
  max-width: 860px;
  margin: 0 auto 50px;
  text-align: center;
}

.experience-heading h2 {
  margin: 0;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 1.05;
}

.experience-heading p {
  margin: 20px auto 0;
  max-width: 780px;
  color: #687078;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.35;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.experience-grid article {
  min-height: 320px;
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 28px clamp(18px, 3vw, 36px);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(31, 38, 45, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.experience-grid article:hover {
  transform: translateY(-8px);
  background: #fff;
  border-color: rgba(239, 91, 42, 0.32);
  box-shadow: 0 28px 70px rgba(31, 38, 45, 0.15);
}

.experience-grid svg {
  width: 34px;
  height: 34px;
  color: var(--accent);
}

.experience-grid h3 {
  margin: 0;
  font-size: 22px;
}

.experience-grid p {
  margin: 0;
  color: #687078;
  font-size: 16px;
  line-height: 1.75;
}

.experience-grid a,
.experience-grid button {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
  color: #151515;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.locations-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(360px, 100%);
  min-height: 40px;
  margin: 26px auto 0;
  color: #fff;
  background: #4b4b4b;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease;
}

.locations-cta:hover {
  transform: translateY(-2px);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 18px 44px rgba(239, 91, 42, 0.26);
}

.vision-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(70px, 8vw, 108px) 0;
  color: #151515;
  background:
    radial-gradient(circle at 82% 10%, rgba(15, 168, 184, 0.18), transparent 30%),
    radial-gradient(circle at 12% 78%, rgba(239, 91, 42, 0.14), transparent 32%),
    linear-gradient(135deg, #f7fbff 0%, #eef7f7 46%, #fff3eb 100%);
}

.vision-inner {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

.vision-heading {
  max-width: 650px;
  margin: 0 auto 34px;
  text-align: center;
}

.vision-heading h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}

.vision-heading p {
  margin: 12px auto 0;
  color: #687078;
  font-weight: 800;
  line-height: 1.45;
}

.vision-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.vision-card,
.vision-video {
  position: relative;
  overflow: hidden;
  min-height: 238px;
  padding: 30px;
  border-radius: 8px;
}

.vision-card {
  display: grid;
  align-content: end;
  background: #0b2b6d;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease;
}

.vision-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -60px auto;
  width: 220px;
  height: 220px;
  border: 32px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}

.vision-card::before {
  content: "";
  position: absolute;
  inset: 22px 22px auto auto;
  width: 120px;
  height: 120px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transform: rotate(45deg);
}

.vision-card:hover,
.vision-video:hover {
  transform: translateY(-6px);
  filter: brightness(1.04);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.22);
}

.vision-card span,
.vision-video span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.vision-card h3,
.vision-video h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  max-width: 92%;
  margin: 8px 0 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.12;
  letter-spacing: 0;
}

.vision-card p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  max-width: 92%;
  margin: 16px 0 0;
  font-size: 15px;
  line-height: 1.55;
}

.vision-card.purpose {
  grid-column: span 3;
  background: #08276f;
}

.vision-card.mission-summary {
  grid-column: span 3;
  background: #4f9637;
}

.vision-card.mission-list {
  grid-column: span 2;
  min-height: 292px;
  background: #0fa8b8;
}

.vision-card.kingdom {
  grid-column: span 4;
  min-height: 292px;
  background: #f05a28;
}

.vision-video {
  grid-column: 1 / -1;
  min-height: 330px;
  display: grid;
  align-items: end;
  background: #111;
  transition: transform 180ms ease, filter 180ms ease;
}

.vision-video video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.78));
}

.vision-video div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.locations-modal {
  position: fixed;
  inset: 0;
  z-index: 110;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.locations-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.locations-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
}

.locations-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 390px 1fr;
  width: min(1500px, calc(100% - 32px));
  max-width: 100%;
  height: min(820px, calc(100svh - 32px));
  overflow: hidden;
  color: #fff;
  background: #0b0b0b;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.locations-list {
  position: relative;
  display: grid;
  align-content: start;
  gap: 12px;
  overflow-y: auto;
  padding: 68px 14px 26px;
  background: #080808;
}

.locations-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 28px;
  gap: 12px;
  align-items: start;
  width: 100%;
  padding: 20px 0;
  color: #fff;
  text-align: left;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.location-card span {
  display: grid;
  gap: 7px;
}

.location-card strong {
  font-size: 18px;
}

.location-card small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.35;
}

.location-card em {
  color: rgba(255, 255, 255, 0.62);
  font-style: normal;
  font-size: 13px;
  font-weight: 800;
}

.location-details {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  line-height: 1.35;
}

.location-details span {
  display: block;
}

.location-details strong {
  display: inline;
  margin-right: 6px;
  color: #fff;
  font-size: inherit;
}

.locations-map {
  position: relative;
  min-height: 360px;
  background: #4f5057;
}

.locations-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(0.92);
}

.find-me {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 0 16px;
  color: #fff;
  background: rgba(0, 0, 0, 0.52);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.contact {
  color: #fff;
  background: #111;
}

.connect-section {
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: clamp(56px, 7vw, 92px) 0;
  color: #fff;
  background: #0c0c0c;
  overflow: hidden;
}

.connect-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.connect-heading {
  max-width: 780px;
  margin: 0 auto 34px;
  text-align: center;
}

.connect-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.08;
}

.connect-heading p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 2vw, 23px);
  font-weight: 800;
  line-height: 1.35;
}

.connect-carousel {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.connect-track {
  display: flex;
  gap: 22px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.connect-card {
  position: relative;
  flex: 0 0 min(100%, 980px);
  scroll-snap-align: center;
  min-height: clamp(330px, 48vw, 560px);
  overflow: hidden;
  padding: 28px;
  color: #fff;
  text-align: left;
  background: #222;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}

.connect-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.connect-card:hover img {
  transform: scale(1.04);
}

.gallery-card-icon {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  background:
    linear-gradient(135deg, rgba(201, 76, 28, 0.9), rgba(17, 17, 17, 0.92)),
    #111;
}

.gallery-card-icon svg {
  width: clamp(92px, 16vw, 170px);
  height: clamp(92px, 16vw, 170px);
  stroke: currentColor;
  stroke-width: 1.35;
  fill: none;
  position: relative;
  z-index: 1;
}

.connect-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.84));
}

.connect-card span,
.connect-card strong,
.connect-card small {
  position: relative;
  z-index: 1;
  display: block;
}

.connect-card span {
  margin-top: auto;
  font-size: 12px;
  font-weight: 800;
}

.connect-card strong {
  max-width: 720px;
  margin-top: clamp(220px, 32vw, 390px);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.connect-card small {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  font-weight: 700;
  white-space: pre-line;
}

.connect-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  transform: translateY(-50%);
}

.connect-arrow.prev {
  left: 10px;
}

.connect-arrow.next {
  right: 10px;
}

.connect-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.connect-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.connect-dots .active {
  width: 18px;
  background: #fff;
}

.calendar-section {
  min-height: 100svh;
  padding: clamp(64px, 8vw, 110px) 0;
  color: #151515;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(245, 247, 248, 0.98)),
    #f5f7f8;
}

.calendar-inner {
  width: min(1220px, calc(100% - 32px));
  margin: 0 auto;
}

.calendar-heading {
  display: grid;
  gap: 12px;
  max-width: 760px;
  margin-bottom: 34px;
}

.calendar-heading h2 {
  margin: 0;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.05;
}

.calendar-heading p:not(.section-kicker) {
  margin: 0;
  color: rgba(21, 21, 21, 0.68);
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 800;
  line-height: 1.4;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.calendar-month,
.calendar-empty {
  background: #fff;
  border: 1px solid rgba(20, 20, 20, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(15, 23, 42, 0.08);
}

.calendar-month {
  display: grid;
  grid-template-rows: auto;
  min-height: auto;
  overflow: hidden;
}

.calendar-month-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  padding: 18px 18px 15px;
  color: #fff;
  text-align: left;
  background: #111;
  border: 0;
  cursor: pointer;
}

.calendar-month-head span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  color: #111;
  background: #f4c84b;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.calendar-month-head h3 {
  flex: 1;
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
}

.calendar-month-head small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.calendar-month-head svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  transition: transform 220ms ease;
}

.calendar-month.is-open .calendar-month-head svg {
  transform: rotate(180deg);
}

.calendar-events {
  display: grid;
  align-content: start;
  gap: 0;
  max-height: 0;
  overflow: hidden;
  padding: 0 18px;
  opacity: 0;
  transition: max-height 320ms ease, padding 220ms ease, opacity 180ms ease;
}

.calendar-month.is-open .calendar-events {
  max-height: 720px;
  padding: 8px 18px 18px;
  opacity: 1;
}

.calendar-event {
  display: grid;
  grid-template-columns: minmax(48px, auto) 1fr;
  gap: 12px;
  align-items: start;
  padding: 13px 0;
  border-bottom: 1px solid rgba(20, 20, 20, 0.08);
}

.calendar-event:last-child {
  border-bottom: 0;
}

.calendar-event time {
  display: inline-grid;
  place-items: center;
  min-width: 48px;
  min-height: 34px;
  padding: 6px 8px;
  color: #111;
  background: #f3f4f6;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.calendar-event p {
  margin: 0;
  color: rgba(21, 21, 21, 0.78);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
}

.calendar-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  color: rgba(21, 21, 21, 0.68);
  font-weight: 800;
}

.note-modal,
.gallery-modal,
.admin-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.note-modal.is-open,
.gallery-modal.is-open,
.admin-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.note-overlay,
.gallery-overlay,
.admin-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.note-dialog,
.admin-shell {
  position: relative;
  z-index: 1;
  overflow: hidden;
  color: #fff;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.note-dialog {
  width: min(860px, 100%);
  max-width: 100%;
  transform: translateX(0);
}

.note-dialog img {
  width: 100%;
  height: clamp(230px, 36vw, 390px);
  object-fit: cover;
}

.note-dialog div {
  padding: 30px;
}

.note-dialog span,
.admin-login p,
.admin-head p {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.note-dialog h2,
.admin-login h2,
.admin-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.note-dialog p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.7;
  white-space: pre-line;
}

.gallery-dialog {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  max-height: calc(100svh - 36px);
  overflow: hidden;
  color: #fff;
  background: #111;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.gallery-head {
  padding: 26px 30px 18px;
}

.gallery-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.gallery-head h2 {
  margin: 8px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 26vw, 340px);
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 12px;
  height: calc(100svh - 150px);
  max-height: 680px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 18px 18px;
  scroll-snap-type: x proximity;
}

.gallery-item {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  scroll-snap-align: start;
}

.gallery-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.note-close,
.gallery-close,
.admin-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.admin-shell {
  width: min(1120px, 100%);
  max-height: calc(100svh - 36px);
  overflow-y: auto;
}

.admin-login,
.admin-dashboard {
  padding: clamp(26px, 4vw, 44px);
}

.admin-login form {
  display: grid;
  gap: 18px;
  max-width: 420px;
  margin-top: 26px;
}

.admin-login label,
.admin-field label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 800;
}

.admin-login input,
.admin-field input,
.admin-field textarea {
  width: 100%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}

.admin-field textarea {
  min-height: 92px;
  resize: vertical;
}

.admin-check {
  grid-template-columns: 18px 1fr;
  align-items: center;
}

.admin-check input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.admin-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.admin-actions button {
  min-width: 150px;
}

.admin-actions [data-admin-logout] {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.admin-tabs button {
  min-height: 42px;
  padding: 0 18px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.admin-tabs button:hover,
.admin-tabs button.active {
  color: #111;
  background: #fff;
  transform: translateY(-1px);
}

.admin-status {
  min-height: 20px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.admin-status[data-type="success"] {
  color: #8ff0b3;
}

.admin-status[data-type="error"] {
  color: #ff9b86;
}

.admin-head button,
.admin-add,
.admin-remove {
  min-height: 40px;
  padding: 0 18px;
  color: #111;
  background: #fff;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.admin-grid {
  display: block;
  margin-top: 28px;
}

.admin-section {
  display: none;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.admin-section.active {
  display: block;
}

.admin-grid h3 {
  margin: 0 0 16px;
}

.admin-hint {
  margin: -6px 0 16px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.45;
}

.admin-list {
  display: grid;
  gap: 14px;
}

.admin-user-create {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 18px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.admin-field {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 8px;
}

.admin-user-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
  padding: 14px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.admin-user-row div {
  display: grid;
  gap: 4px;
}

.admin-user-row span,
.admin-user-row small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.admin-petition,
.admin-empty {
  display: grid;
  gap: 10px;
  padding: 14px;
  color: #fff;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
}

.admin-petition header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.admin-petition time,
.admin-empty {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 800;
}

.admin-petition p {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.5;
  white-space: pre-wrap;
}

.admin-remove {
  justify-self: start;
  color: #fff;
  background: rgba(239, 91, 42, 0.9);
}

.admin-add {
  margin-top: 14px;
}

.live-item {
  display: grid;
  gap: 14px;
  width: 100%;
}

.live-item.is-live {
  padding: 14px;
  background: rgba(217, 31, 31, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.live-badge {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  color: #fff;
  background: #d91f1f;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.live-item + .live-item {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-panel {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 36px;
  align-items: center;
}

.final-contact {
  grid-template-columns: minmax(300px, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(26px, 5vw, 64px);
}

.contact-info {
  display: grid;
  gap: 22px;
}

.contact p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-list {
  display: grid;
  gap: 6px;
  max-width: 420px;
  margin-top: 4px;
}

.contact-list h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

.contact-list p {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-list p span,
.contact-list p strong {
  font-size: 14px;
}

.contact-list strong {
  color: #fff;
}

.service-hours .open span {
  color: #fff;
  font-weight: 800;
}

.contact-map {
  min-height: min(560px, 62svh);
  overflow: hidden;
  background: #555960;
  border-radius: 8px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
  filter: grayscale(1) invert(0.88) contrast(0.94);
}

.donation-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 220ms ease;
}

.donation-modal.is-open {
  pointer-events: auto;
  opacity: 1;
}

.donation-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
}

.donation-dialog {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 44px);
  color: #fff;
  background: radial-gradient(circle at 84% 8%, rgba(239, 91, 42, 0.36), transparent 34%), #111;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.45);
}

.donation-dialog > p {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.donation-dialog h2 {
  margin: 8px 0 22px;
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.05;
}

.zelle-card {
  display: grid;
  gap: 6px;
  margin-top: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.zelle-card span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.zelle-card strong {
  overflow-wrap: anywhere;
  font-size: 18px;
}

.donation-dialog .button {
  margin-top: 18px;
}

.donation-dialog small {
  display: block;
  min-height: 20px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 800;
}

.donation-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

@keyframes gentleBuzz {
  0%, 100% { transform: translate(0, 0) rotate(0); }
  42% { transform: translate(0, 0) rotate(0); }
  45% { transform: translate(-1px, 1px) rotate(-2deg); }
  48% { transform: translate(1px, -1px) rotate(2deg); }
  51% { transform: translate(-1px, 0) rotate(-1deg); }
  54% { transform: translate(1px, 1px) rotate(1deg); }
  58% { transform: translate(0, 0) rotate(0); }
}

@keyframes liveBeam {
  to { transform: rotate(360deg); }
}

@keyframes softPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.04); opacity: 1; }
}

@keyframes musicBars {
  0%, 100% { height: 6px; }
  50% { height: 18px; }
}

@keyframes radioMiniBars {
  0%, 100% { height: 7px; opacity: 0.72; }
  50% { height: 22px; opacity: 1; }
}

@keyframes radioMiniPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes radioButtonPulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-1px) scale(1.05); }
}

@media (max-width: 980px) {
  .topbar {
    height: 78px;
    position: relative;
    padding: 0 13px;
  }

  .topbar-left {
    width: 100%;
    justify-content: flex-start;
  }

  .topbar-actions {
    margin-left: auto;
    gap: 8px;
  }

  .brand-logo-only {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .desktop-nav {
    display: none;
  }

  .brand img {
    width: 172px;
    height: 108px;
  }

  .quick-nav {
    display: grid;
  }

  .hero-slider {
    min-height: calc(100svh - 164px);
    min-height: calc(100dvh - 164px);
    width: 100%;
  }

  .experience-section,
  .vision-section,
  .section {
    min-height: 100svh;
  }

  .hero-content,
  .community-content {
    left: 28px;
    right: 28px;
    bottom: 66px;
    grid-template-columns: 1fr;
    gap: 18px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: clamp(30px, 9vw, 48px);
  }

  .hero-content p,
  .hero-content address {
    margin-inline: auto;
    font-size: 16px;
  }

  .hero-actions {
    justify-content: stretch;
  }

  .button {
    width: 100%;
  }

  .media-shell {
    grid-template-columns: 1fr;
  }

  .media-sidebar {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .media-logo {
    margin: 0;
  }

  .media-logo span {
    display: none;
  }

  .media-tab {
    justify-content: center;
  }

  .audio-player {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .player-track {
    justify-self: stretch;
  }

  .player-controls {
    justify-content: center;
  }

  .two-col,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .final-contact {
    grid-template-columns: 1fr;
  }

  .contact-map {
    min-height: 420px;
  }

  .experience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .calendar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .vision-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-card.purpose,
  .vision-card.mission-summary,
  .vision-card.mission-list,
  .vision-card.kingdom,
  .vision-video {
    grid-column: span 1;
  }

  .vision-card.mission-list,
  .vision-card.kingdom {
    min-height: 280px;
  }

  .vision-card h3,
  .vision-video h3 {
    font-size: clamp(24px, 4vw, 32px);
  }

  .locations-shell {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(280px, 42svh) minmax(0, 1fr);
    width: 100%;
    max-width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .locations-map {
    grid-row: 1;
  }

  .locations-list {
    grid-row: 2;
    min-height: 0;
    padding: 16px 14px 30px;
  }

  .connect-card {
    flex-basis: 100%;
  }

  .admin-head {
    align-items: start;
    flex-direction: column;
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-user-create {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .profile-button,
  .icon-button {
    width: 38px;
    height: 38px;
  }

  .radio-nav-button {
    width: 40px;
    height: 40px;
  }

  .radio-nav-button svg {
    width: 21px;
    height: 21px;
  }

  .hero-slider {
    min-height: calc(100svh - 164px);
    min-height: calc(100dvh - 164px);
  }

  .experience-section,
  .vision-section,
  .section {
    min-height: 100svh;
  }

  .hero-content,
  .community-content {
    left: 22px;
    right: 22px;
    bottom: 58px;
  }

  .eyebrow {
    display: none;
  }

  .hero-content h1 {
    font-size: 28px;
    line-height: 1.08;
  }

  .hero-content p,
  .hero-content address {
    font-size: 14px;
    line-height: 1.45;
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
    right: 12px;
  }

  .slider-dots {
    bottom: 20px;
  }

  .floating-play {
    position: fixed !important;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    left: 18px;
    top: var(--floating-play-top, calc(100dvh - 72px));
    bottom: auto;
    animation: gentleBuzz 2.8s ease-in-out infinite;
  }

  .floating-play.has-live {
    left: 18px;
    top: var(--floating-play-top, calc(100dvh - 72px));
    bottom: auto;
    width: 48px;
    min-width: 0;
    height: 52px;
    border-radius: 14px;
    transform: none;
  }

  .floating-play.has-live span {
    display: none;
  }

  .floating-radio-mini {
    bottom: 24px;
    grid-template-columns: 42px minmax(0, 1fr) 16px;
    gap: 8px;
    width: min(232px, calc(100vw - 154px));
    min-height: 54px;
    padding: 6px 8px 6px 6px;
  }

  .floating-radio-mini::after {
    right: 38px;
    width: 34px;
  }

  .floating-radio-toggle {
    width: 42px;
    height: 42px;
  }

  .floating-radio-toggle svg {
    width: 19px;
    height: 19px;
  }

  .floating-radio-copy span {
    font-size: 10px;
  }

  .floating-radio-copy strong {
    font-size: 12px;
  }

  .floating-radio-meter {
    gap: 3px;
    height: 18px;
    padding-right: 0;
  }

  .floating-radio-meter i {
    width: 3px;
  }

  .floating-play svg {
    width: 23px;
    height: 23px;
  }

  .floating-chat {
    width: 50px;
    height: 50px;
    right: 16px;
    bottom: 24px;
  }

  .chat-panel {
    right: 0;
    bottom: 0;
    width: 100%;
    height: min(690px, 100svh);
    border-radius: 18px 18px 0 0;
  }

  .media-modal {
    padding: 0;
  }

  .media-shell {
    width: 100%;
    max-width: 100vw;
    height: 100svh;
    border-radius: 0;
  }

  .chat-widget.is-inline {
    position: static;
    inset: auto;
    z-index: auto;
    pointer-events: auto;
  }

  .chat-widget.is-inline .chat-panel {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(560px, calc(100svh - 160px));
    margin: 0;
    border-radius: 8px;
    opacity: 1;
    transform: none;
  }

  .radio-chat-inline {
    display: block;
    margin: 20px 12px 30px;
  }

  .radio-share {
    margin: -10px 12px 20px;
  }

  .radio-share div {
    grid-template-columns: 1fr;
  }

  .media-tab {
    padding: 11px 8px;
    font-size: 13px;
  }

  .music-hero,
  .live-hero {
    min-height: 220px;
    padding: 56px 20px 26px;
  }

  .music-hero h2,
  .live-hero h2 {
    font-size: 44px;
  }

  .playlist {
    padding: 20px 12px 30px;
  }

  .track {
    grid-template-columns: 24px 42px minmax(0, 1fr) auto;
    padding: 10px 6px;
  }

  .track-duration {
    display: none;
  }

  .audio-player {
    padding: 12px;
  }

  .live-box {
    margin: 20px 12px 30px;
    padding: 22px;
  }

  .azura-player {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .azura-art-wrap {
    width: min(210px, 72vw);
    justify-self: center;
  }

  .azura-content {
    text-align: center;
  }

  .azura-heading,
  .azura-controls {
    justify-content: center;
  }

  .azura-volume {
    min-width: 100%;
    text-align: left;
  }

  .section-inner {
    width: min(100% - 32px, 1120px);
  }

  .section h2 {
    font-size: 31px;
  }

  .section p {
    font-size: 16px;
  }

  .experience-section {
    min-height: 100svh;
    padding: 58px 0;
  }

  .vision-section,
  .section {
    min-height: 100svh;
  }

  .experience-heading {
    margin-bottom: 34px;
  }

  .experience-heading h2 {
    font-size: 34px;
  }

  .experience-heading p {
    font-size: 17px;
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .vision-inner {
    width: min(100% - 28px, 980px);
  }

  .vision-grid {
    grid-template-columns: 1fr;
  }

  .vision-card,
  .vision-card.mission-list,
  .vision-card.kingdom {
    min-height: auto;
    padding: 26px;
  }

  .vision-video {
    min-height: 280px;
  }

  .experience-grid article,
  .experience-grid article:last-child,
  .experience-grid article:nth-child(even) {
    min-height: auto;
    padding: 24px;
  }

  .locations-shell {
    grid-template-rows: minmax(260px, 36svh) minmax(0, 1fr);
  }

  .find-me {
    top: 12px;
    right: 12px;
    transform: none;
    min-height: 34px;
    max-width: calc(100% - 24px);
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  .connect-section {
    --connect-mobile-gutter: 14px;
    width: 100vw;
    max-width: 100vw;
    min-height: auto;
    padding: 28px 0 34px;
    overflow: hidden;
    justify-items: center;
  }

  .connect-inner {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding-inline: var(--connect-mobile-gutter);
  }

  .connect-carousel,
  .connect-track,
  .connect-card {
    width: calc(100vw - (var(--connect-mobile-gutter) * 2));
    max-width: calc(100vw - (var(--connect-mobile-gutter) * 2));
  }

  .connect-carousel {
    overflow: hidden;
  }

  .connect-track {
    gap: 0;
    overflow: hidden;
  }

  .connect-card {
    flex: 0 0 calc(100vw - (var(--connect-mobile-gutter) * 2));
    min-width: calc(100vw - (var(--connect-mobile-gutter) * 2));
    min-height: 340px;
    padding: 18px 16px;
  }

  .connect-heading {
    margin-bottom: 18px;
    max-width: 100%;
  }

  .connect-heading h2 {
    font-size: 28px;
    overflow-wrap: anywhere;
  }

  .connect-heading p {
    font-size: 15px;
    overflow-wrap: anywhere;
  }

  .connect-arrow {
    width: 34px;
    height: 34px;
  }

  .connect-arrow.prev {
    left: 8px;
  }

  .connect-arrow.next {
    right: 8px;
  }

  .connect-card strong {
    max-width: 100%;
    margin-top: 150px;
    font-size: 21px;
  }

  .connect-card small {
    display: -webkit-box;
    overflow: hidden;
    font-size: 13px;
    line-height: 1.45;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
  }

  .calendar-section {
    min-height: auto;
    padding: 46px 0;
  }

  .calendar-inner {
    width: calc(100% - 24px);
  }

  .calendar-heading {
    margin-bottom: 22px;
  }

  .calendar-heading h2 {
    font-size: 32px;
  }

  .calendar-heading p:not(.section-kicker) {
    font-size: 15px;
  }

  .calendar-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .calendar-month {
    min-height: auto;
  }

  .calendar-month-head {
    padding: 15px;
  }

  .calendar-month-head small {
    display: none;
  }

  .calendar-month-head span {
    width: 38px;
    height: 38px;
    font-size: 11px;
  }

  .calendar-month-head h3 {
    font-size: 20px;
  }

  .calendar-events {
    padding: 0 15px;
  }

  .calendar-month.is-open .calendar-events {
    padding: 6px 15px 15px;
  }

  .calendar-event {
    grid-template-columns: minmax(42px, auto) 1fr;
    gap: 10px;
    padding: 11px 0;
  }

  .calendar-event time {
    min-width: 42px;
    min-height: 32px;
    font-size: 12px;
  }

  .calendar-event p {
    font-size: 14px;
  }

  .note-dialog div {
    padding: 22px;
  }

  .note-modal,
  .gallery-modal {
    padding: 10px;
  }

  .note-dialog {
    width: 100%;
    max-width: calc(100vw - 20px);
  }

  .gallery-dialog {
    width: 100%;
    max-width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .gallery-head {
    padding: 22px 22px 14px;
  }

  .gallery-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(220px, 76vw);
    grid-template-rows: repeat(2, minmax(170px, 1fr));
    gap: 10px;
    height: calc(100svh - 128px);
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 10px 10px;
    scroll-snap-type: x proximity;
  }

  .gallery-item {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    margin-bottom: 0;
    break-inside: auto;
  }

  .gallery-item img {
    height: 100%;
    object-fit: contain;
  }

  .admin-modal {
    padding: 0;
  }

  .donation-modal {
    padding: 12px;
  }

  .admin-shell {
    width: 100%;
    max-height: 100svh;
    min-height: 100svh;
    border-radius: 0;
  }

}
