:root {
  --black: #030303;
  --ink: #101010;
  --panel: #181818;
  --orange: #41aa86;
  --orange-soft: #8bd9be;
  --hot: #2f8f70;
  --plum: #5a22ff;
  --cream: #fff4e6;
  --white: #fffaf3;
  --muted: #b8ada4;
  --line: rgba(65, 170, 134, 0.34);
  --glow: 0 0 38px rgba(65, 170, 134, 0.34);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(65, 170, 134, 0.18), transparent 32rem),
    radial-gradient(circle at 15% 40%, rgba(90, 34, 255, 0.16), transparent 28rem),
    var(--black);
  color: var(--cream);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
}

body.tab-menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(3, 3, 3, 0.72);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand,
.nav-links,
.header-actions,
.header-action,
.button,
.text-link,
.instagram-link {
  display: inline-flex;
  align-items: center;
}

.brand {
  gap: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.header-line {
  margin: 0;
  justify-self: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--black);
  overflow: hidden;
}

.brand-mark svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
  stroke: none;
}

.nav-links {
  gap: clamp(16px, 3vw, 36px);
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-links a:hover,
.text-link:hover,
.footer a:hover {
  color: var(--orange-soft);
}

.header-actions {
  width: 100%;
  justify-self: end;
  justify-content: flex-end;
  gap: 10px;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(65, 170, 134, 0.34);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(103, 215, 190, 0.98), rgba(86, 194, 176, 0.96));
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(65, 170, 134, 0.16);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.header-action-short {
  display: none;
}

.header-action[href="#partner"] {
  background: linear-gradient(135deg, rgba(103, 215, 190, 0.98), rgba(86, 194, 176, 0.96));
  color: var(--black);
  box-shadow: 0 12px 30px rgba(65, 170, 134, 0.16);
}

.instagram-link {
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 244, 230, 0.24);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.06);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 900;
}

.instagram-link:hover {
  border-color: var(--orange);
  color: var(--orange-soft);
}

.tabbed-main {
  min-height: 100vh;
}

.tab-nav-shell {
  position: sticky;
  top: 75px;
  z-index: 24;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding: 12px clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
  background: rgba(3, 3, 3, 0.88);
}

.tab-picker {
  position: relative;
  width: auto;
  margin-left: auto;
  margin-right: 0;
  z-index: 40;
}

.tab-picker::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.42);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
  z-index: 39;
}

.tab-picker.is-open::before {
  opacity: 1;
  pointer-events: auto;
}

.tab-menu-button {
  position: relative;
  z-index: 42;
  width: 60px;
  min-width: 60px;
  min-height: 60px;
  padding: 0;
  border: 0;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: transparent;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none;
}

.tab-menu-button:hover {
  background: rgba(255, 255, 255, 0.04);
}

.tab-menu-button:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

.tab-menu-hamburger {
  display: inline-grid;
  gap: 6px;
  width: 24px;
}

.tab-menu-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transform-origin: center;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.tab-picker.is-open .tab-menu-hamburger span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.tab-picker.is-open .tab-menu-hamburger span:nth-child(2) {
  opacity: 0;
}

.tab-picker.is-open .tab-menu-hamburger span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.tab-nav {
  position: fixed;
  z-index: 41;
  top: 75px;
  right: 0;
  bottom: 0;
  width: 420px;
  max-width: 88vw;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 20px 0 24px;
  border: 0;
  border-left: 1px solid rgba(255, 250, 243, 0.22);
  border-radius: 0;
  background: rgba(6, 6, 6, 0.98);
  box-shadow: -28px 0 84px rgba(0, 0, 0, 0.58);
  overflow-y: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.28s ease, opacity 0.2s ease, visibility 0s linear 0.28s;
  will-change: transform;
}

.tab-picker.is-open .tab-nav {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  transition: transform 0.28s ease, opacity 0.2s ease;
}

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

.tab-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 66px;
  padding: 0 30px;
  border: 0;
  border-top: 1px solid rgba(255, 250, 243, 0.08);
  border-radius: 0;
  background: transparent;
  color: rgba(255, 250, 243, 0.96);
  font-size: 1.02rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
  transition: background 0.2s ease, color 0.2s ease, padding 0.2s ease;
}

.tab-link::after {
  content: "+";
  margin-left: auto;
  color: rgba(255, 250, 243, 0.42);
  font-size: 1.18rem;
  font-weight: 700;
  transition: color 0.2s ease;
}

.tab-link:first-child {
  border-top: 0;
}

.tab-link:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  padding-left: 34px;
}

.tab-link:hover::after {
  color: var(--orange-soft);
}

.tab-link.is-active {
  background: rgba(65, 170, 134, 0.14);
  color: var(--white);
  box-shadow: none;
}

.tab-link.is-active::after {
  color: var(--orange-soft);
}

.tab-panels {
  min-height: calc(100vh - 134px);
}

.tab-panel[hidden] {
  display: none !important;
}

.tab-panel {
  animation: panel-fade 0.32s ease;
}

@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.tab-panel-inner {
  display: grid;
}

.tab-panel .hero {
  min-height: calc(100vh - 138px);
}

.tab-panel .section-band {
  padding-block: clamp(42px, 7vw, 96px);
}

.tab-panel .section-band--panel {
  border-bottom: 0;
}

.tab-panel .section-band--panel + .section-band--panel {
  border-top: 1px solid var(--line);
}

.hero {
  position: relative;
  min-height: calc(100vh - 75px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: clamp(80px, 12vw, 150px) clamp(18px, 4vw, 52px) clamp(28px, 5vw, 58px);
}

.hero-bg,
.hero-photo-overlay,
.hero-photo-overlay-item,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg,
.hero-photo-overlay-item {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.22);
  filter: contrast(1.16) saturate(1.14);
}

.hero-bg {
  z-index: 0;
}

.hero-photo-overlay {
  overflow: hidden;
  z-index: 0;
}

.hero-photo-overlay-item {
  opacity: 0;
  transition: opacity 1.25s ease-in-out, transform 6s ease-out;
  filter: contrast(1.02) saturate(1.04);
  will-change: opacity, transform;
}

.hero-photo-overlay-item.is-active {
  opacity: 0.58;
  transform: scale(1.12);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.94), rgba(3, 3, 3, 0.48) 52%, rgba(3, 3, 3, 0.18)),
    linear-gradient(0deg, rgba(3, 3, 3, 0.98), rgba(3, 3, 3, 0.1) 62%),
    radial-gradient(circle at 70% 30%, rgba(65, 170, 134, 0.32), transparent 32rem);
}

.hero-content,
.service-card,
.hero-est {
  position: relative;
  z-index: 1;
}

.hero-est {
  position: absolute;
  top: clamp(92px, 10vw, 138px);
  right: clamp(18px, 4vw, 52px);
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 116px;
  padding: 14px 16px 12px 20px;
  border-top: 1px solid rgba(255, 250, 243, 0.24);
  border-bottom: 1px solid rgba(255, 250, 243, 0.24);
  background: linear-gradient(90deg, rgba(3, 3, 3, 0), rgba(3, 3, 3, 0.42));
  backdrop-filter: blur(10px);
  text-align: right;
}

.hero-est span,
.hero-est strong {
  display: block;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-est span {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
}

.hero-est strong {
  color: var(--orange-soft);
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.hero-instagram-link {
  position: absolute;
  left: clamp(18px, 4vw, 52px);
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255, 250, 243, 0.38);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.hero-instagram-link:hover {
  color: var(--orange-soft);
  border-color: var(--orange-soft);
}

.hero-content {
  max-width: 1050px;
}

.event-pill {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.event-pill span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 244, 230, 0.26);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.08);
  color: var(--cream);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.kicker {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

h1 {
  max-width: 1180px;
  font-size: clamp(5rem, 17vw, 15rem);
  line-height: 1;
  text-wrap: balance;
}

.hero-subline {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--cream);
  font-size: clamp(1.25rem, 2.4vw, 2.3rem);
  font-weight: 900;
  line-height: 1.16;
  text-transform: uppercase;
}

.hero-meta {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

h2 {
  max-width: 1080px;
  font-size: clamp(2.05rem, 4.7vw, 4.6rem);
  line-height: 1.18;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  line-height: 1.18;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
}

.primary {
  box-shadow: var(--glow);
  background: linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--black);
}

.ghost {
  border: 1px solid rgba(255, 244, 230, 0.45);
  background: rgba(255, 244, 230, 0.06);
  backdrop-filter: blur(12px);
}

.service-card {
  justify-self: end;
  display: grid;
  gap: 8px;
  width: min(100%, 460px);
  margin-top: 36px;
  padding: 22px;
  border: 1px solid rgba(255, 244, 230, 0.18);
  border-left: 8px solid var(--orange);
  border-radius: 18px;
  box-shadow: var(--glow);
  background: rgba(3, 3, 3, 0.62);
  backdrop-filter: blur(18px);
}

.service-card p,
.service-card span,
.service-card-link {
  margin: 0;
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.service-card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-bottom: 1px solid rgba(255, 244, 230, 0.18);
  transition: color 0.2s ease, border-color 0.2s ease;
}

.service-card-link:hover {
  color: var(--cream);
  border-color: rgba(255, 244, 230, 0.44);
}

.service-card strong {
  color: var(--cream);
  font-size: clamp(1.45rem, 2.9vw, 2.7rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--orange), var(--orange-soft), var(--orange));
  color: var(--black);
}

.marquee div {
  display: flex;
  width: max-content;
  animation: roll 24s linear infinite;
}

.marquee span {
  padding: 18px 34px;
  font-size: clamp(1.4rem, 3vw, 3rem);
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

@keyframes roll {
  to {
    transform: translateX(-50%);
  }
}

.section-band {
  padding: clamp(58px, 9vw, 126px) clamp(18px, 4vw, 52px);
  border-bottom: 1px solid var(--line);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--cream);
}

.next-event {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
  background:
    radial-gradient(circle at 80% 12%, rgba(65, 170, 134, 0.18), transparent 30rem),
    var(--black);
}

.next-event > *,
.next-event-preview > *,
.connect > *,
.header-actions {
  min-width: 0;
}

.next-event,
.next-event-preview,
.connect--next-drop {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.next-event > *,
.next-event-preview > *,
.connect--next-drop > * {
  position: relative;
  z-index: 1;
}

.next-event--immersive::before,
.next-event-preview::before,
.connect--next-drop::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.next-event--immersive::before {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.97) 0 30%, rgba(3, 3, 3, 0.86) 48%, rgba(3, 3, 3, 0.62) 100%),
    linear-gradient(135deg, rgba(65, 170, 134, 0.16), rgba(62, 110, 255, 0.12) 60%, transparent 100%),
    url("assets/unite-night/next-event-food.png") center right / cover no-repeat;
  opacity: 0.95;
}

.event-detail-card {
  display: grid;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(10, 10, 10, 0.72);
  box-shadow: var(--glow);
  backdrop-filter: blur(8px);
}

.event-detail-card dl {
  margin: 0;
}

.event-detail-card .button {
  justify-self: start;
}

.event-detail-note {
  margin: 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.next-event-preview {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(65, 170, 134, 0.14), transparent 28rem),
    linear-gradient(135deg, rgba(90, 34, 255, 0.08), transparent 42%),
    rgba(255, 244, 230, 0.02);
}

.next-event-preview::before {
  background:
    linear-gradient(90deg, rgba(5, 5, 8, 0.96) 0 26%, rgba(5, 5, 8, 0.84) 44%, rgba(5, 5, 8, 0.6) 100%),
    linear-gradient(145deg, rgba(62, 110, 255, 0.22), rgba(65, 170, 134, 0.1) 58%, rgba(3, 3, 3, 0.14) 100%),
    url("assets/unite-night/next-event-community.png") center / cover no-repeat;
  opacity: 0.92;
}

.next-event-preview-copy {
  display: grid;
  gap: 20px;
  max-width: 760px;
}

.next-event-preview-copy h2 {
  max-width: 680px;
}

.next-event-preview-copy p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.16rem);
}

.next-event-preview-list {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.next-event-preview-list div {
  display: grid;
  gap: 8px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 244, 230, 0.035);
}

.next-event-preview-list span,
.next-event-story-point span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.next-event-preview-list strong {
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.45;
}

.next-event-preview-story {
  display: grid;
  gap: 18px;
  align-content: start;
}

.next-event-story-point {
  display: grid;
  gap: 12px;
  padding: 24px 26px;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(8, 8, 10, 0.66);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
}

.next-event-story-point h3 {
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.6rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.next-event-story-point p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.58;
}

.connect--next-drop::before {
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.95) 0 36%, rgba(3, 3, 3, 0.82) 52%, rgba(3, 3, 3, 0.64) 100%),
    linear-gradient(145deg, rgba(62, 110, 255, 0.18), rgba(65, 170, 134, 0.12) 58%, transparent 100%),
    url("assets/unite-night/next-event-worship.png") center / cover no-repeat;
  opacity: 0.82;
}

.connect--next-drop .contact-card,
.connect--next-drop .connect-form {
  background: rgba(8, 8, 10, 0.74);
  backdrop-filter: blur(8px);
}

.quick-info a {
  display: grid;
  gap: 8px;
  min-height: 148px;
  padding: 24px clamp(18px, 3vw, 34px);
  background: rgba(16, 16, 16, 0.92);
  transition: transform 0.25s ease, background 0.25s ease;
}

.quick-info a:hover {
  transform: translateY(-4px);
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.2), transparent 52%),
    rgba(16, 16, 16, 0.96);
}

.quick-info span,
.experience-strip span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-info strong {
  align-self: end;
  font-size: clamp(1.35rem, 2.8vw, 3rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.action-page {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.08), transparent 38%),
    var(--black);
}

.action-panel {
  display: grid;
  gap: 26px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.32);
}

.action-panel p {
  margin: 0;
  font-size: clamp(1rem, 1.7vw, 1.5rem);
  font-weight: 900;
  line-height: 1.28;
  text-transform: uppercase;
}

.action-panel .button {
  justify-self: start;
}

.pop-section {
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.08), transparent 38%),
    var(--black);
}

.proof-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: end;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.12), transparent 42%),
    var(--black);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.proof-grid article {
  min-height: 230px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.2), transparent 48%),
    rgba(255, 244, 230, 0.04);
}

.proof-grid strong {
  color: var(--orange);
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 1.08;
}

.proof-grid span {
  color: var(--cream);
  font-weight: 900;
  text-transform: uppercase;
}

.video-recap {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
  background:
    radial-gradient(circle at 78% 22%, rgba(65, 170, 134, 0.2), transparent 30rem),
    rgba(255, 244, 230, 0.015);
}

.recap-copy {
  position: sticky;
  top: 110px;
}

.video-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.55fr);
  gap: 14px;
  align-items: stretch;
}

.video-card {
  display: grid;
  align-content: space-between;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.4);
}

.video-card video {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  object-fit: cover;
  background: var(--black);
}

.video-card div {
  display: grid;
  gap: 6px;
  padding: 18px;
}

.video-card span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.video-card strong {
  font-size: clamp(0.98rem, 1.6vw, 1.45rem);
  line-height: 1.22;
  text-transform: uppercase;
}

.feature-video {
  min-height: 640px;
}

.visit {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) 1fr;
  gap: clamp(34px, 6vw, 94px);
}

.visit-grid {
  display: grid;
  border-top: 1px solid var(--line);
}

.visit-grid article {
  display: grid;
  grid-template-columns: 76px 0.64fr 1fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 244, 230, 0.025);
}

.visit-grid span {
  color: var(--orange);
  font-size: 2.6rem;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
}

.photo-feature,
.family,
.worship-layout,
.outreach,
.sponsor-section,
.connect {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
}

.partner-intro,
.church-partnerships,
.partnership-support {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
}

.partner-intro {
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.1), transparent 40%),
    rgba(255, 244, 230, 0.02);
}

.partner-action-panel {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.32);
}

.partner-action-panel p {
  margin: 0;
  font-size: clamp(1.14rem, 2vw, 1.45rem);
  line-height: 1.5;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.church-partnerships {
  background:
    radial-gradient(circle at 84% 18%, rgba(65, 170, 134, 0.16), transparent 28rem),
    rgba(255, 244, 230, 0.015);
}

.church-grid,
.pastor-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.church-card,
.support-card,
.pastor-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.34);
}

.church-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 28px;
  background:
    linear-gradient(145deg, rgba(65, 170, 134, 0.18), transparent 42%),
    rgba(255, 244, 230, 0.04);
}

.church-card span,
.support-card span {
  color: var(--orange-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.church-card strong {
  color: var(--white);
  font-size: 1rem;
  text-transform: uppercase;
}

.church-card p {
  margin: 0;
}

.church-card-link {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 230, 0.18);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.05);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.church-card-link:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 217, 190, 0.44);
  background: rgba(65, 170, 134, 0.14);
  color: var(--orange-soft);
}

.pastor-section {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 34, 255, 0.16), transparent 26rem),
    rgba(255, 244, 230, 0.02);
}

.pastor-card {
  overflow: hidden;
}

.pastor-card-link {
  display: block;
  color: inherit;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.pastor-card-link:hover {
  transform: translateY(-4px);
  border-color: rgba(139, 217, 190, 0.52);
  box-shadow: 0 26px 100px rgba(0, 0, 0, 0.4);
}

.pastor-card-link:focus-visible {
  outline: 2px solid var(--orange-soft);
  outline-offset: 3px;
}

.pastor-card--profile {
  background:
    linear-gradient(145deg, rgba(65, 170, 134, 0.12), transparent 42%),
    rgba(255, 244, 230, 0.04);
}

.pastor-media {
  position: relative;
  overflow: hidden;
  background: #0f1114;
}

.pastor-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 10, 12, 0.06), rgba(8, 10, 12, 0.52)),
    radial-gradient(circle at 14% 18%, rgba(65, 170, 134, 0.18), transparent 20rem),
    radial-gradient(circle at 84% 16%, rgba(90, 34, 255, 0.16), transparent 16rem);
  pointer-events: none;
}

.pastor-media--micaiah::after {
  background:
    linear-gradient(180deg, rgba(7, 10, 18, 0.14), rgba(7, 10, 18, 0.66)),
    linear-gradient(135deg, rgba(65, 170, 134, 0.14), transparent 36%, rgba(62, 110, 255, 0.18) 100%),
    radial-gradient(circle at 76% 14%, rgba(90, 34, 255, 0.14), transparent 15rem);
}

.pastor-photo {
  width: 100%;
  min-height: 320px;
  aspect-ratio: 4 / 4.5;
  display: block;
  object-fit: cover;
  object-position: center 10%;
  filter: contrast(1.08) saturate(0.94) brightness(0.96);
}

.pastor-photo--micaiah {
  object-position: center 8%;
  transform: scale(1.28);
  transform-origin: center 12%;
  filter: contrast(1.06) saturate(0.8) brightness(0.84);
}

.pastor-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(255, 244, 230, 0.14);
  border-radius: 999px;
  background: rgba(8, 10, 12, 0.56);
  color: var(--cream);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.pastor-placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(90, 34, 255, 0.22), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #0f1114;
}

.pastor-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.pastor-copy {
  display: grid;
  gap: 10px;
  padding: 22px;
}

.pastor-copy h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.16;
}

.pastor-copy p {
  margin: 0;
  color: var(--orange-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.pastor-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  width: fit-content;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 230, 0.18);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.05);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pastor-card-link:hover .pastor-card-cta {
  border-color: rgba(139, 217, 190, 0.44);
  background: rgba(65, 170, 134, 0.14);
  color: var(--orange-soft);
}

.partnership-support {
  background:
    radial-gradient(circle at 84% 18%, rgba(90, 34, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(65, 170, 134, 0.12), transparent 34%),
    rgba(255, 244, 230, 0.02);
}

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

.support-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  background:
    linear-gradient(145deg, rgba(65, 170, 134, 0.12), transparent 44%),
    rgba(255, 244, 230, 0.04);
}

.support-card h3 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.48rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.support-card p,
.partnership-support .section-copy p:not(.kicker) {
  margin: 0;
  max-width: 640px;
  line-height: 1.6;
}

.leadership-section {
  display: grid;
  gap: clamp(28px, 5vw, 54px);
  background:
    radial-gradient(circle at 84% 16%, rgba(90, 34, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(65, 170, 134, 0.08), transparent 42%),
    rgba(255, 244, 230, 0.02);
}

.leadership-copy {
  max-width: 860px;
}

.leadership-copy p:last-child {
  max-width: 640px;
  margin-top: 18px;
}

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

.leader-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(65, 170, 134, 0.16), transparent 42%),
    rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.34);
}

.leader-photo {
  width: 100%;
  min-height: 220px;
  max-height: 260px;
  aspect-ratio: 4 / 3;
  display: block;
  object-fit: cover;
  object-position: center 22%;
}

.leader-photo-placeholder {
  min-height: 320px;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(90, 34, 255, 0.22), transparent 56%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #0f1114;
}

.leader-photo-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(255, 244, 230, 0.16);
  border-radius: 999px;
  background: rgba(255, 244, 230, 0.06);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  text-align: center;
}

.leader-card-copy {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.leader-card-copy h3 {
  font-size: clamp(1.1rem, 1.55vw, 1.42rem);
  line-height: 1.2;
}

.leader-card-copy p {
  margin: 0;
  color: var(--orange-soft);
  font-size: 0.9rem;
  font-weight: 900;
  text-transform: uppercase;
}

.leader-contact-list {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.leader-contact-list a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.leader-contact-list a:hover {
  color: var(--cream);
}

.sponsor-section {
  align-items: start;
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.sponsor-grid article {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.16), transparent 44%),
    rgba(255, 244, 230, 0.04);
}

.sponsor-grid span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.sponsor-grid p {
  margin: 18px 0 0;
}

.tier-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.tier-grid article {
  display: grid;
  gap: 14px;
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 244, 230, 0.04);
}

.tier-grid span {
  color: var(--orange-soft);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.tier-grid strong {
  align-self: end;
  font-size: clamp(1.05rem, 1.8vw, 1.65rem);
  line-height: 1.18;
  text-transform: uppercase;
}

.feature-image {
  min-height: 620px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.48);
}

.feature-copy p {
  max-width: 690px;
  margin: 24px 0;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

.family-copy h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 3.8vw, 4.05rem);
  line-height: 1.18;
}

.text-link {
  color: var(--orange);
  font-weight: 900;
  text-transform: uppercase;
}

.family {
  align-items: start;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.18), transparent 36%),
    var(--cream);
  color: var(--black);
}

.beliefs-intro {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 34, 255, 0.16), transparent 26rem),
    linear-gradient(135deg, rgba(65, 170, 134, 0.14), transparent 42%),
    rgba(255, 244, 230, 0.02);
}

.beliefs-copy {
  max-width: 840px;
}

.beliefs-copy p:last-child {
  max-width: 680px;
}

.beliefs-callout {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(90, 34, 255, 0.18), transparent 42%),
    rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.34);
}

.beliefs-callout span {
  color: var(--orange-soft);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.beliefs-callout strong {
  color: var(--white);
  font-size: clamp(1.5rem, 3vw, 2.7rem);
  line-height: 1.14;
  text-transform: uppercase;
}

.beliefs-callout p {
  margin: 0;
}

.beliefs-grid-section {
  background:
    radial-gradient(circle at 84% 16%, rgba(65, 170, 134, 0.16), transparent 28rem),
    rgba(255, 244, 230, 0.015);
}

.beliefs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.belief-card {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.14), transparent 40%),
    rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.26);
}

.belief-card > span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.belief-card h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.16;
}

.belief-card p {
  margin: 0;
}

.belief-reference {
  margin-top: auto;
  color: var(--cream);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.5;
  text-transform: uppercase;
}

.family .kicker,
.family p {
  color: var(--black);
}

.who-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.who-grid span {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 244, 230, 0.04);
  color: var(--cream);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.family-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.family-images img {
  min-height: 240px;
  border: 2px solid var(--black);
  border-radius: 18px;
}

.family-images img:first-child {
  grid-column: span 2;
  min-height: 360px;
}

.worship-layout {
  margin-top: 44px;
  grid-template-columns: 1fr minmax(280px, 0.62fr);
}

.worship-layout img {
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.48);
}

.stats {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.stats span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: rgba(255, 244, 230, 0.035);
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
}

.stats strong {
  color: var(--orange);
  font-size: 1.7rem;
}

.gallery-heading {
  max-width: 980px;
  margin-bottom: clamp(32px, 6vw, 72px);
}

.gallery-heading h2 {
  max-width: 1050px;
  font-size: clamp(1.75rem, 3.4vw, 3.55rem);
  line-height: 1.2;
}

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

.gallery figure {
  min-height: 420px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
}

.gallery .wide {
  grid-column: span 2;
}

.gallery img {
  transition: transform 0.45s ease;
}

.gallery figure:hover img {
  transform: scale(1.04);
}

.setlist-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 34, 255, 0.18), transparent 26rem),
    rgba(255, 244, 230, 0.02);
}

.setlist-card {
  display: grid;
  gap: 22px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(90, 34, 255, 0.38);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(90, 34, 255, 0.24), transparent 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01)),
    #0e0a18;
  box-shadow: 0 22px 90px rgba(16, 8, 40, 0.44);
}

.experience-combo {
  display: grid;
  grid-template-columns: minmax(280px, 0.68fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: start;
  background:
    radial-gradient(circle at 82% 18%, rgba(90, 34, 255, 0.16), transparent 26rem),
    rgba(255, 244, 230, 0.02);
}

.experience-combo-copy {
  max-width: 760px;
}

.experience-combo-copy p:last-child {
  max-width: 620px;
}

.experience-combo-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  align-items: start;
}

.setlist-card-header {
  display: grid;
  gap: 8px;
}

.setlist-card-header span {
  color: #bba5ff;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.setlist-card-header strong {
  color: var(--white);
  font-size: clamp(1.8rem, 3.8vw, 3.1rem);
  line-height: 1.14;
  text-transform: uppercase;
}

.setlist-tracks {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.setlist-tracks li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(187, 165, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.setlist-tracks li > span {
  display: grid;
  place-items: center;
  min-height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(123, 77, 255, 0.88), rgba(187, 165, 255, 0.92));
  color: var(--white);
  font-size: 1rem;
  font-weight: 900;
}

.setlist-tracks strong {
  color: var(--white);
  font-size: clamp(1.15rem, 2.2vw, 1.5rem);
  line-height: 1.16;
  text-transform: uppercase;
}

.setlist-tracks p {
  margin: 6px 0 0;
  color: #d8d0eb;
  font-size: 0.98rem;
  line-height: 1.45;
  text-transform: none;
}

.outreach {
  align-items: start;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 244, 230, 0.28), transparent 24rem),
    linear-gradient(135deg, var(--orange), var(--orange-soft));
  color: var(--black);
}

.outreach h2 {
  max-width: 780px;
  font-size: clamp(1.95rem, 3.7vw, 4rem);
  line-height: 1.18;
}

.social-cta {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  background:
    radial-gradient(circle at 80% 10%, rgba(65, 170, 134, 0.22), transparent 28rem),
    rgba(255, 244, 230, 0.02);
}

.social-card {
  display: grid;
  gap: 12px;
  min-height: 280px;
  align-content: center;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--glow);
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.22), transparent 45%),
    rgba(255, 244, 230, 0.045);
}

.social-card span {
  color: var(--orange-soft);
  font-size: clamp(1.2rem, 2.4vw, 2.2rem);
  font-weight: 900;
}

.social-card strong {
  font-size: clamp(1.9rem, 4.3vw, 3.9rem);
  line-height: 1.14;
  text-transform: uppercase;
}

.social-card em {
  max-width: 560px;
  color: var(--muted);
  font-style: normal;
  font-weight: 700;
  line-height: 1.55;
}

.merch-store {
  display: grid;
  gap: clamp(32px, 6vw, 72px);
  background:
    radial-gradient(circle at 85% 12%, rgba(65, 170, 134, 0.2), transparent 28rem),
    var(--black);
}

.merch-heading {
  max-width: 980px;
}

.merch-heading p:last-child {
  max-width: 720px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.merch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.34);
}

.product-art {
  min-height: 330px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.34), transparent 54%),
    #0d0d0d;
}

.product-art.alt {
  background:
    linear-gradient(135deg, rgba(139, 217, 190, 0.28), transparent 54%),
    #141414;
}

.product-art.light {
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.2), transparent 54%),
    var(--cream);
  color: var(--black);
}

.product-art span {
  font-size: clamp(3.8rem, 8vw, 6.8rem);
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.product-card > div:last-child {
  display: grid;
  gap: 12px;
  padding: 24px;
}

.product-card p {
  margin: 0;
  color: var(--orange-soft);
  font-weight: 900;
  text-transform: uppercase;
}

.product-card strong {
  font-size: 1.4rem;
}

.outreach .kicker,
.outreach p {
  color: var(--black);
}

.outreach-panel {
  padding-top: 12px;
}

.outreach-panel p {
  margin-top: 0;
  font-size: clamp(1.25rem, 2.7vw, 2.4rem);
  font-weight: 900;
  line-height: 1.22;
}

dl {
  display: grid;
  gap: 18px;
  margin: 34px 0 0;
}

dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 2px solid var(--black);
}

dt,
dd {
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

dt {
  color: rgba(3, 3, 3, 0.62);
}

.connect {
  align-items: start;
}

.connect-page {
  background:
    radial-gradient(circle at 82% 16%, rgba(65, 170, 134, 0.18), transparent 28rem),
    linear-gradient(135deg, rgba(90, 34, 255, 0.14), transparent 38%),
    rgba(255, 244, 230, 0.02);
}

.connect-page-copy {
  max-width: 760px;
}

.connect-page-copy h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.2vw, 4.1rem);
  line-height: 1.18;
}

.connect-page-copy p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.connect-page-form {
  background:
    linear-gradient(145deg, rgba(65, 170, 134, 0.14), transparent 42%),
    rgba(255, 244, 230, 0.04);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.34);
}

#partner h2 {
  max-width: 720px;
  font-size: clamp(2rem, 3.9vw, 4.1rem);
  line-height: 1.16;
}

.serve-section > div:first-child {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 700px;
}

.serve-section .kicker {
  margin: 0;
}

.serve-section h2 {
  max-width: 760px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.18;
}

.serve-section p:not(.kicker) {
  max-width: 580px;
  margin: 0;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
}

.volunteer-main {
  min-height: calc(100vh - 220px);
  align-items: center;
}

.host-section > div:first-child {
  display: grid;
  align-content: start;
  gap: 20px;
  max-width: 720px;
}

.host-section h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 1.18;
}

.host-section p:not(.kicker) {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1rem, 1.45vw, 1.18rem);
}

.host-form {
  background:
    linear-gradient(145deg, rgba(90, 34, 255, 0.14), transparent 40%),
    rgba(255, 244, 230, 0.04);
}

.connect-form {
  display: grid;
  gap: 18px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 244, 230, 0.035);
  box-shadow: 0 22px 90px rgba(0, 0, 0, 0.38);
}

.connect-form label {
  display: grid;
  gap: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 14px;
  background: #111111;
  color: var(--cream);
  font: inherit;
}

input,
select {
  min-height: 52px;
}

textarea {
  min-height: 126px;
  padding-top: 14px;
  resize: vertical;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: start;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.35;
}

.checkbox-row input {
  width: 18px;
  min-height: 18px;
  margin: 3px 0 0;
  accent-color: var(--orange);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}

button {
  min-height: 54px;
  border: 0;
  background: var(--orange);
  color: var(--black);
  font: 900 1rem Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  cursor: pointer;
}

.secondary-button {
  border: 1px solid var(--line);
  background: rgba(255, 244, 230, 0.06);
  color: var(--cream);
}

.secondary-button:hover {
  color: var(--black);
}

.contact-card {
  display: grid;
  gap: 8px;
  max-width: 520px;
  margin-top: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 244, 230, 0.04);
}

.contact-card span {
  color: var(--orange-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.contact-card a {
  color: var(--cream);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-card a:hover {
  color: var(--orange-soft);
}

.experience-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.experience-strip article {
  min-height: 300px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(65, 170, 134, 0.18), transparent 42%),
    rgba(255, 244, 230, 0.035);
}

.experience-strip h3 {
  margin: 24px 0 18px;
}

.experience-strip p {
  margin: 0;
}

.experience-strip .text-link {
  margin-top: 18px;
}

.playlist-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) 1fr;
  gap: clamp(32px, 6vw, 94px);
  align-items: center;
  background:
    radial-gradient(circle at 78% 20%, rgba(65, 170, 134, 0.22), transparent 28rem),
    var(--black);
}

.playlist-section p:not(.kicker) {
  max-width: 620px;
}

.spotify-card {
  overflow: hidden;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 244, 230, 0.04);
  box-shadow: var(--glow);
}

.spotify-card iframe {
  display: block;
  border: 0;
  border-radius: 16px;
}

.spotify-fallback {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--black);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.spotify-fallback:hover {
  background: var(--orange-soft);
}

button:hover,
.primary:hover,
.header-action:hover {
  background: linear-gradient(135deg, rgba(126, 231, 208, 1), rgba(98, 204, 188, 1));
  border-color: rgba(126, 231, 208, 0.54);
  box-shadow: 0 16px 34px rgba(65, 170, 134, 0.22);
  transform: translateY(-1px);
}

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--orange-soft);
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 4vw, 52px);
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: inherit;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-line {
    display: none;
  }

  .nav-links {
    display: none;
  }

  .visit,
  .next-event,
  .next-event-preview,
  .action-page,
  .partner-intro,
  .church-partnerships,
  .beliefs-intro,
  .pastor-section,
  .partnership-support,
  .photo-feature,
  .family,
  .who-section,
  .worship-layout,
  .outreach,
  .proof-strip,
  .sponsor-section,
  .video-recap,
  .setlist-section,
  .social-cta,
  .playlist-section,
  .experience-combo,
  .connect {
    grid-template-columns: 1fr;
  }

  .service-card {
      justify-self: start;
    }

    .hero-est {
      top: 26px;
      right: 18px;
      min-width: 102px;
      padding: 12px 14px 10px 18px;
    }

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

  .quick-info,
  .experience-strip,
  .video-grid,
  .proof-grid,
  .sponsor-grid,
  .merch-grid,
  .tier-grid,
  .church-grid,
  .pastor-grid,
  .partnership-support-grid,
  .experience-combo-grid,
  .leadership-grid {
    grid-template-columns: 1fr 1fr;
  }

  .recap-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  .site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px;
    gap: 8px;
  }

  .tab-nav-shell {
    top: 66px;
    padding: 10px 15px;
  }

  .tab-picker {
    width: auto;
  }

  .tab-menu-button {
    width: 56px;
    min-width: 56px;
    min-height: 56px;
  }

  .tab-nav {
    top: 66px;
    width: 340px;
    max-width: 92vw;
    padding-top: 16px;
  }

  .brand span:last-child {
    display: none;
  }

  .header-actions {
    gap: 8px;
  }

  .header-action {
    min-height: 40px;
    min-width: 76px;
    max-width: 84px;
    padding: 0 8px;
    font-size: 0.66rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .instagram-link {
    width: 36px;
    height: 36px;
    font-size: 0.68rem;
  }

  .header-action-full {
    display: none;
  }

  .header-action-short {
    display: inline;
  }

    .hero {
      min-height: 720px;
      padding: 92px 15px 32px;
    }

    .hero-est {
      top: 20px;
      right: 15px;
      min-width: 96px;
      padding: 11px 12px 9px 14px;
    }

    .hero-est span {
      font-size: 0.64rem;
      letter-spacing: 0.14em;
    }

    .hero-est strong {
      font-size: 1rem;
    }

  .hero-instagram-link {
      left: 15px;
      bottom: 14px;
      font-size: 0.76rem;
    }

  .tab-panel .hero {
    min-height: calc(100vh - 150px);
  }

  .hero-bg,
  .hero-photo-overlay-item {
    object-position: center 38%;
    transform: scale(1.32);
  }

  h1 {
    font-size: clamp(4.1rem, 18vw, 5.1rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(1.9rem, 8vw, 2.55rem);
    line-height: 1.2;
    text-wrap: pretty;
  }

  h3 {
    line-height: 1.18;
  }

  .hero-subline {
    font-size: clamp(1.08rem, 6vw, 1.45rem);
    line-height: 1.28;
  }

  .family-copy h2,
  .gallery-heading h2,
  .outreach h2,
  .next-event h2,
  #partner h2,
  .connect-page-copy h2,
  .next-event-preview-copy h2,
  .serve-section h2,
  .host-section h2 {
    font-size: clamp(1.78rem, 7.2vw, 2.28rem);
    line-height: 1.24;
  }

  .next-event h2,
  .next-event-preview-copy h2 {
    max-width: 100%;
    font-size: clamp(1.38rem, 5.8vw, 1.78rem);
    line-height: 1.18;
    text-wrap: pretty;
    overflow-wrap: anywhere;
  }

  .next-event-preview-list strong,
  .next-event-story-point h3 {
    overflow-wrap: anywhere;
  }

  .outreach-panel p,
  .action-panel p {
    font-size: clamp(1.08rem, 5.2vw, 1.45rem);
    line-height: 1.34;
  }

  .section-band {
    padding: 52px 15px;
  }

  .visit-grid article {
    grid-template-columns: 1fr;
  }

  .feature-image,
  .worship-layout img,
  .gallery figure,
  .family-images img,
  .family-images img:first-child {
    min-height: 330px;
  }

  .family-images,
  .gallery,
  .beliefs-grid,
  .quick-info,
  .experience-strip,
  .video-grid,
  .proof-grid,
  .sponsor-grid,
  .merch-grid,
  .tier-grid,
  .church-grid,
  .pastor-grid,
  .partnership-support-grid,
  .experience-combo-grid,
  .who-grid,
  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .next-event-story-point {
    padding: 22px 20px;
  }

  .video-card,
  .feature-video {
    min-height: auto;
  }

  .video-card video {
    min-height: 360px;
  }

  .gallery .wide {
    grid-column: auto;
  }

  dl div {
    grid-template-columns: 1fr;
  }
}
