/* ============================================
   OMEGA REVIVAL CENTER — STYLESHEET
   Design system tokens (radius, spacing, type scale)
   calibrated against gatewaypeople.com's live computed
   styles (Figtree typeface, navy ink, 9-18px radii,
   999px pill buttons, soft light-gray page background).
   Colors are Omega's own placeholder identity — swap
   the tokens below once the brand guide arrives.
   ============================================ */

:root {
  /* PLACEHOLDER BRAND TOKENS — swap when brand guide arrives */
  --color-primary: #142850;      /* deep navy-indigo */
  --color-primary-dark: #0b1a37;
  --color-accent: #8134c9;       /* violet — brand accent (was warm gold) */
  --color-accent-dark: #6c2aa8;
  --color-accent-2: #e2568f;     /* rose-pink — hero name highlight */
  --color-accent-2-dark: #c73f76;
  --color-purple: #8134c9;       /* violet — paired with rose-pink for buttons */
  --gradient-brand: linear-gradient(135deg, var(--color-purple) 0%, var(--color-accent-2) 100%);
  --gradient-brand-hover: linear-gradient(135deg, #6c2aa8 0%, var(--color-accent-2-dark) 100%);
  --color-ink: #0f1b2d;
  --color-body: #4d5a6e;
  --color-bg: #ffffff;
  --color-bg-soft: #f5f7fa;
  --color-border: #e3e7ee;

  --font-heading: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;

  --max-width: 1480px;
  --radius: 10px;
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-sm: 0 1px 2px rgba(15,27,45,0.06);
  --shadow-md: 0 8px 24px rgba(15,27,45,0.08);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-body);
  background: var(--color-bg-soft);
  line-height: 1.6;
  font-size: 16px;
}

img { max-width: 100%; display: block; }

a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-ink);
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 { font-weight: 700; }
h2 { font-weight: 600; }
h3 { font-weight: 700; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-accent-dark);
  display: block;
  margin-bottom: 0.6em;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85em 1.7em;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  line-height: 1.2;
  transition: transform 0.12s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn-primary {
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--gradient-brand-hover); text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-1px); }
/* Secondary "clean" button — gradient outline, used next to a solid primary so the pair never blob together */
.btn-outline-brand {
  background: #fff;
  color: var(--color-purple);
  border: 2px solid var(--color-accent-2);
  padding: calc(0.85em - 2px) calc(1.7em - 2px);
}
.btn-outline-brand:hover { background: #fdf1f7; text-decoration: none; border-color: var(--color-purple); }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
  padding: calc(0.85em - 2px) calc(1.7em - 2px);
}
.btn-outline:hover { background: rgba(255,255,255,0.12); text-decoration: none; }
.btn-pill { border-radius: var(--radius-pill); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  position: relative;
}
.nav-panel {
  display: flex;
  align-items: center;
  gap: 28px;
}

/* ---------- About Us dropdown ---------- */
.nav-has-dropdown { position: relative; }
.nav-has-dropdown > a::after {
  content: "\25BE";
  display: inline-block;
  margin-left: 5px;
  font-size: 0.7em;
  vertical-align: 1px;
  transition: transform 0.18s ease;
}
.nav-has-dropdown:hover > a::after,
.nav-has-dropdown:focus-within > a::after {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin: 8px 0 0;
  padding: 8px;
  list-style: none;
  min-width: 200px;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav-has-dropdown:hover > .dropdown-menu,
.nav-has-dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu li { margin: 0; width: 100%; }
.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown-menu a:hover { background: #f2f4f8; text-decoration: none; }
.nav-toggle-input { display: none; }
.nav-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
}
.nav-toggle-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 2px;
  margin: 0 auto;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
.site-logo span { color: var(--color-accent-2); }

.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: var(--color-ink);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a.current { color: var(--color-primary); font-weight: 700; }
.main-nav > ul > li > a {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  text-decoration: none;
}
.main-nav > ul > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--color-accent-2);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}
.main-nav > ul > li > a:hover::before,
.main-nav > ul > li > a:focus-visible::before {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-cta .btn {
  background: var(--gradient-brand);
  color: #fff;
  padding: 0.6em 1.4em;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
}
.header-cta .btn:hover { background: var(--gradient-brand-hover); }

/* ---------- Header Give button (secondary — outline so it never blobs into "Plan Your Visit") ---------- */
.btn-give {
  background: #fff !important;
  border: 2px solid var(--color-accent-2) !important;
  color: var(--color-purple) !important;
  padding: calc(0.6em - 2px) calc(1.3em - 2px) !important;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
}
.btn-give:hover { background: #fdf1f7 !important; border-color: var(--color-purple) !important; text-decoration: none; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse 90% 70% at 30% 15%, rgba(217,164,65,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 70% 60% at 80% 85%, rgba(217,164,65,0.12) 0%, transparent 60%),
    linear-gradient(165deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 150px 0 90px;
  min-height: 92vh;
  display: flex;
  align-items: center;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(0deg, rgba(11,26,55,0.55) 0%, rgba(11,26,55,0) 40%),
    repeating-linear-gradient(115deg, rgba(255,255,255,0.03) 0px, rgba(255,255,255,0.03) 1px, transparent 1px, transparent 60px);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }

/* Hero with background video */
.hero-video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero.hero-video {
  background: var(--color-primary-dark);
}
.hero.hero-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(11,26,55,0.75) 0%, rgba(11,26,55,0.45) 45%, rgba(11,26,55,0.85) 100%);
}
.hero-inner { width: 100%; }

.hero-topline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 2.2em;
}
.hero-topline .rule { width: 34px; height: 1px; background: rgba(255,255,255,0.4); display: inline-block; }

.hero-kicker {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.2em;
}

.hero-title {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  font-weight: 600;
  line-height: 1.02;
  max-width: 900px;
  margin: 0 0 0.3em;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--color-accent-2);
}

.hero-divider {
  width: 64px;
  height: 1px;
  background: rgba(255,255,255,0.35);
  margin: 1.6em 0 1.4em;
}

.hero p {
  color: rgba(255,255,255,0.82);
  max-width: 480px;
  margin: 0 0 2em;
  font-size: 1.05rem;
}

.hero .hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5em;
}
.btn-pill-accent {
  background: var(--gradient-brand);
  color: #fff !important;
  border-radius: var(--radius-pill);
  padding: 0.95em 1.8em;
  font-weight: 600;
  font-size: 0.92rem;
  border: none;
}
.btn-pill-accent:hover { background: var(--gradient-brand-hover); text-decoration: none; }
.btn-link-underline {
  color: #fff !important;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.5);
  padding-bottom: 0.3em;
  border-radius: 0;
}
.btn-link-underline:hover { border-color: #fff; text-decoration: none; }

.hero-scroll {
  position: absolute;
  left: max(24px, calc((100% - var(--max-width)) / 2 + 24px));
  bottom: 34px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1;
}
.hero-scroll span {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-tagline {
  position: absolute;
  right: max(24px, calc((100% - var(--max-width)) / 2 + 24px));
  bottom: 30px;
  text-align: right;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  z-index: 1;
}
.hero-tagline span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-top: 0.4em;
}

/* ---------- Page header (non-home pages) ---------- */
.page-header {
  background: linear-gradient(165deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 76px 0 60px;
  text-align: center;
  color: #fff;
}
.page-header .eyebrow { color: var(--color-accent); }
.page-header h1 { color: #fff; margin-bottom: 0.3em; }
.page-header p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto; }
.page-header-image {
  background-size: cover;
  background-position: center;
  padding: 110px 0 90px;
}

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-soft { background: var(--color-bg); }
body .section-soft { background: #fff; }
.section-primary {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
}
.section-primary h2, .section-primary h3 { color: #fff; }

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

/* ---------- Info strip (service time / address) ---------- */
.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}
.info-strip .info-item strong {
  display: block;
  color: var(--color-ink);
  font-size: 0.95rem;
}
.info-strip .info-item span { font-size: 0.85rem; color: var(--color-body); }

/* ---------- Card grids ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.card { display: block; color: inherit; }
a.card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.card .card-media {
  aspect-ratio: 4/3;
  background-color: #101d38;
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7ba;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.card .card-body { padding: 20px 22px 24px; }
.card h3 { font-size: 1.05rem; margin-bottom: 0.3em; font-weight: 700; }
.card p { font-size: 0.92rem; margin: 0; }
.card .card-meta {
  font-size: 0.76rem;
  color: var(--color-accent-dark);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 6px;
  display: block;
  font-weight: 700;
}

/* Video/message card play icon */
.card.card-video .card-media { position: relative; color: #fff; background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%); aspect-ratio: 16/9; background-size: cover !important; background-position: center !important; }
.card.card-video .card-media::after {
  content: "▶";
  font-size: 1.5rem;
  color: var(--color-primary);
  background: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
}

/* ---------- Leadership ---------- */
.leader-card { text-align: center; }
.leader-card .card-media { aspect-ratio: 1/1; }
.leader-card .card-body h3 { margin-bottom: 0.1em; }
.leader-card .role {
  display: block;
  font-size: 0.82rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 0.6em;
}

/* ---------- Two-column feature ---------- */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 72px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse .feature-media { order: 2; }
.feature-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7ba;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

/* ---------- Values list ---------- */
.values-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 16px; }
.values-list li {
  padding: 22px 26px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.values-list h3 { font-size: 1rem; margin-bottom: 0.2em; }
.values-list p { margin: 0; font-size: 0.92rem; }

/* ---------- Form ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
}
.form-field { margin-bottom: 18px; }
.form-field label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
  color: var(--color-ink);
}
.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: var(--color-ink);
  appearance: none;
}
.form-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--color-body) 50%), linear-gradient(135deg, var(--color-body) 50%, transparent 50%);
  background-position: calc(100% - 20px) center, calc(100% - 15px) center;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(20,40,80,0.1);
}
.form-field textarea { resize: vertical; min-height: 130px; }

.form-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-note {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--color-body);
  line-height: 1.5;
}

/* ---------- Required-field validation feedback ---------- */
.field-invalid {
  border-color: #d64545 !important;
  background: #fdf2f2 !important;
}
.field-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 0.78rem;
  color: #d64545;
  font-weight: 600;
}
.form-validate-banner {
  background: #fdf2f2;
  border: 1px solid #f3c2c2;
  color: #a12b2b;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 18px;
}

/* ---------- Event registration form (used on individual event detail pages) ---------- */
.event-register-form {
  display: grid;
  gap: 14px;
}
.event-register-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* ---------- Phone field (searchable country-code picker + local number input) ---------- */
/* Uses !important because .form-field select/input already set width:100%,
   which — with no override — squeezes the local-number input down to
   almost nothing inside the flex row. */
.phone-field-row { display: flex; gap: 6px; position: relative; }
.form-field input.phone-local-input {
  flex: 1 1 auto;
  width: auto !important;
  min-width: 0;
}

/* Fallback <select> used only when JS is disabled (see <noscript> in
   omega_render_phone_field()). */
.form-field select.phone-cc-select {
  flex: 0 0 132px;
  width: 132px !important;
  min-width: 132px;
  padding: 13px 8px !important;
  font-size: 0.85rem;
}

.phone-cc-picker { position: relative; flex: 0 0 auto; }
.phone-cc-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 100%;
  padding: 0 10px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
  font: inherit;
  color: inherit;
  min-width: 82px;
}
.phone-cc-toggle:hover, .phone-cc-toggle:focus-visible { border-color: var(--color-accent); outline: none; }
.phone-cc-flag { font-size: 1.15em; line-height: 1; }
.phone-cc-code { font-size: 0.88em; white-space: nowrap; }
.phone-cc-caret { flex-shrink: 0; color: #8a8f98; }
.phone-cc-toggle[aria-expanded="true"] .phone-cc-caret { transform: rotate(180deg); }

.phone-cc-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 60;
  width: 280px;
  max-width: 82vw;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: 0 12px 32px rgba(11,26,55,0.18);
  padding: 10px;
}
.phone-cc-panel[hidden] { display: none; }
.phone-cc-search {
  width: 100%;
  box-sizing: border-box;
  padding: 9px 10px;
  margin-bottom: 8px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font: inherit;
  font-size: 0.9rem;
}
.phone-cc-list { list-style: none; margin: 0; padding: 0; max-height: 240px; overflow-y: auto; }
.phone-cc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.88rem;
}
.phone-cc-item:hover { background: #f2f4f8; }
.phone-cc-item .phone-cc-item-flag { font-size: 1.1em; line-height: 1; }
.phone-cc-item .phone-cc-item-name { flex: 1 1 auto; }
.phone-cc-item .phone-cc-item-code { color: #6b7280; font-size: 0.85em; }
.phone-cc-item .phone-cc-item-check { color: var(--color-accent); visibility: hidden; font-weight: 700; }
.phone-cc-item.is-selected .phone-cc-item-check { visibility: visible; }
.phone-cc-item.is-selected { background: #f8f4fb; }
.phone-cc-empty { padding: 10px; color: #6b7280; font-size: 0.85rem; text-align: center; }

.member-toggle { display: flex; gap: 8px; }
.member-toggle label {
  flex: 1;
  text-align: center;
  border: 1.5px solid rgba(20,40,80,0.35);
  border-radius: var(--radius);
  padding: 11px 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-body);
  cursor: pointer;
  position: relative;
}
.member-toggle input { position: absolute; opacity: 0; width: 0; height: 0; }
.member-toggle label:has(input:checked) {
  border-color: var(--color-primary);
  background: var(--color-primary);
  color: #fff;
}

/* Family select only shows once "Yes" is chosen on the membership toggle */
.form-field-family {
  display: none;
  animation: familyReveal 0.15s ease;
}
.event-register-form:has(input[type="radio"][value="yes"]:checked) .form-field-family {
  display: block;
}
@keyframes familyReveal {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.event-register-note {
  font-size: 0.78rem;
  color: var(--color-body);
  margin: 4px 0 0;
  line-height: 1.5;
}

/* ---------- Event cards (full-card link, gradient media, badges) ---------- */
.event-card-link {
  display: block;
  text-align: left;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.event-card-link:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-3px); }
.event-card-media {
  position: relative;
  aspect-ratio: 2/1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  overflow: hidden;
}
.event-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.28) 0%, rgba(0,0,0,0) 45%);
}
.event-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.event-badges {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.event-badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.4em 0.8em;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(2px);
  white-space: nowrap;
}
.event-badge-status.is-upcoming { background: rgba(255,255,255,0.92); color: var(--color-primary); }
.event-badge-status.is-past { background: rgba(15,27,45,0.55); color: #fff; border: 1px solid rgba(255,255,255,0.4); }
.event-badge-type { background: rgba(11,26,55,0.35); color: #fff; border: 1px solid rgba(255,255,255,0.5); }

/* ---------- Colorful event-type pill (card list + hero) ---------- */
.card-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.card-title-row h3 { margin-bottom: 0.2em; }
.type-badge {
  display: inline-block;
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.35em 0.75em;
  border-radius: var(--radius-pill);
  color: #fff;
  white-space: nowrap;
  margin-top: 2px;
}
.type-badge-sunday     { background: #2f6fed; }
.type-badge-conference { background: #e0791f; }
.type-badge-partners   { background: #8a5a34; }
.type-badge-prayer     { background: #2f9e5c; }
.type-badge-workers    { background: #c99a12; }
.type-badge-allnight   { background: #8134c9; }
.type-badge-outreach   { background: #e2568f; }
.type-badge-other      { background: #6b7280; }
.event-card-date {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--radius);
  width: 56px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.event-card-date .day { font-size: 1.1rem; font-weight: 700; line-height: 1; }
.event-card-date .mon {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-dark);
}
.event-card-date .yr {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.6;
  line-height: 1;
  margin-top: 1px;
}
.event-card-link .card-body .event-meta {
  font-size: 0.78rem;
  color: var(--color-body);
  margin-bottom: 8px;
  display: block;
}
.event-card-link .card-body .event-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary);
  display: inline-block;
  margin-top: 8px;
}

/* ---------- Event detail page ---------- */
.event-hero {
  padding: 70px 0 50px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.event-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0) 55%);
}
.event-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.event-hero .container { position: relative; z-index: 1; }
.event-hero .event-badges { justify-content: flex-start; margin-bottom: 18px; }
.event-hero h1 { color: #fff; font-size: clamp(2rem, 4.5vw, 3rem); margin-bottom: 0.3em; }
.event-hero .event-meta-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.event-hero .event-meta-row strong { color: #fff; display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.7; margin-bottom: 2px; }

.event-photo-frame {
  width: 100%;
  aspect-ratio: 2 / 1;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
  box-shadow: 0 16px 40px rgba(15,27,45,0.18);
  position: relative;
  cursor: pointer;
}
.event-photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.25s ease; }
.event-photo-frame:hover img { transform: scale(1.03); }
.event-photo-frame::after {
  content: "\2922";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(11,26,55,0.55);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  pointer-events: none;
}
@media (max-width: 640px) {
  .event-photo-frame { margin-bottom: 20px; }
}

.event-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.event-gallery-tile {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  text-align: center;
  padding: 12px;
}
.event-recap-box {
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.event-recap-box h2 { font-size: 1.15rem; margin-bottom: 0.5em; }

/* ---------- Message detail page ---------- */
.msg-hero-band {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  color: #fff;
}

/* Real flyer/thumbnail image used as-is for the hero (already contains title art) */
.msg-hero-image-link {
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  line-height: 0;
}
.msg-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.2s ease;
}
.msg-hero-image-link:hover .msg-hero-image { transform: scale(1.015); }
.msg-hero-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 75% 35%, rgba(255,255,255,0.14) 0%, transparent 60%);
  pointer-events: none;
}
.msg-hero-topbar { position: relative; z-index: 1; margin-bottom: 22px; }
.msg-hero-chip {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
}
.msg-hero-content { position: relative; z-index: 1; max-width: 640px; }
.msg-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  font-weight: 600;
  line-height: 1.05;
  color: #fff;
  margin-bottom: 0.3em;
  text-transform: uppercase;
}
.msg-hero-content h1 em { font-style: italic; color: var(--color-accent); }
.msg-hero-speaker {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.82);
  font-weight: 700;
}
.msg-hero-play {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);
  width: 74px;
  height: 74px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  border: none;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  z-index: 1;
  text-decoration: none;
}
.msg-hero-play:hover { text-decoration: none; }
.msg-hero-yt {
  position: relative;
  z-index: 1;
  align-self: flex-start;
  margin-top: 26px;
  background: rgba(0,0,0,0.35);
  color: #fff !important;
  padding: 0.6em 1.2em;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
}
.msg-hero-yt:hover { background: rgba(0,0,0,0.5); text-decoration: none; }

.msg-hero-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
}
.msg-hero-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.section-tight { padding-bottom: 16px; }
.section-tight + section { padding-top: 24px; }

.message-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  align-items: start;
}
.msg-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 22px;
  font-size: 0.85rem;
  color: var(--color-body);
}
.msg-meta-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  flex: none;
}
.msg-section-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent-dark);
  font-weight: 700;
  margin: 26px 0 8px;
}
.msg-category-pill {
  display: inline-block;
  margin-top: 16px;
  background: var(--color-bg-soft);
  color: var(--color-primary);
  padding: 0.35em 0.9em;
  border-radius: var(--radius-pill);
  font-size: 0.76rem;
  font-weight: 700;
}

.msg-related { margin-top: 44px; }
.msg-related-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}
.msg-related-head h4 { font-size: 0.9rem; margin: 0; }
.msg-related-head a { font-size: 0.8rem; font-weight: 700; }
.msg-related-scroll { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.msg-related-scroll .card h3 { font-size: 0.85rem; }
.msg-related-scroll .card-body { padding: 12px 14px 16px; }
.msg-related-scroll .card-meta { font-size: 0.68rem; }

.sidebar-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
}
.sidebar-card h4 {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}
.sidebar-card p { font-size: 0.84rem; }
.notes-file-row {
  background: var(--color-bg-soft);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-size: 0.8rem;
  color: var(--color-body);
  margin-bottom: 14px;
}
.btn-block { width: 100%; text-align: center; display: block; }
.btn-text-link {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-primary);
}

.audio-player-mock {
  background: var(--color-primary);
  border-radius: var(--radius);
  padding: 16px;
  color: #fff;
  margin-bottom: 14px;
}
.audio-player-info { font-size: 0.85rem; font-weight: 700; margin-bottom: 2px; }
.audio-player-sub { font-size: 0.75rem; color: rgba(255,255,255,0.7); margin-bottom: 14px; }
.audio-progress {
  height: 4px;
  background: rgba(255,255,255,0.25);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 6px;
}
.audio-progress-fill { height: 100%; width: 0%; background: var(--color-accent); }
.audio-times {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.6);
  display: flex;
  justify-content: space-between;
}
.sidebar-note { font-size: 0.78rem; color: var(--color-body); margin: 16px 0 10px; }

.podcast-embed { margin-bottom: 14px; border-radius: var(--radius); overflow: hidden; }
.podcast-embed iframe { display: block; width: 100%; }

.platform-row { display: flex; gap: 8px; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--color-primary) !important;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  padding: 0.4em 0.9em 0.4em 0.4em;
}
.platform-btn svg { width: 20px; height: 20px; flex: 0 0 auto; }
.platform-btn:hover { border-color: var(--color-accent-2); text-decoration: none; }

.contact-details dt {
  font-weight: 700;
  color: var(--color-ink);
  margin-top: 18px;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.contact-details dt:first-child { margin-top: 0; }
.contact-details dd { margin: 4px 0 0; }

.map-placeholder {
  margin-top: 24px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7ba;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.map-embed {
  margin-top: 24px;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #eef1f6;
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- Events strip ---------- */
.events-strip {
  padding: 48px 0;
  background: #fff;
  border-bottom: 1px solid var(--color-border);
}
.events-strip .strip-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.events-strip .strip-head h2 { margin: 0; font-size: 1.4rem; }
.event-card {
  display: flex;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 18px;
  align-items: center;
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
a.event-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); text-decoration: none; }
.event-date {
  flex: none;
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: var(--color-primary);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.event-date .day { font-size: 1.3rem; font-weight: 700; line-height: 1; }
.event-date .mon {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent);
}
.event-info h3 { font-size: 1rem; margin-bottom: 0.15em; }
.event-info p { margin: 0; font-size: 0.85rem; }

/* ---------- Homepage Upcoming Events — wide image cards, drag-to-scroll ---------- */
.home-events-carousel-wrap { overflow: hidden; }
.home-events-grid {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding-bottom: 4px;
  cursor: grab;
}
.home-events-grid::-webkit-scrollbar { display: none; }
.home-events-grid.dragging { cursor: grabbing; scroll-behavior: auto; }
.home-event-card {
  position: relative;
  display: block;
  flex: 0 0 clamp(280px, 32vw, 420px);
  aspect-ratio: 5 / 2.5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  color: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.home-event-card * { pointer-events: none; -webkit-user-drag: none; }
.home-event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.home-event-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6,12,26,0.85) 0%, rgba(6,12,26,0.25) 55%, rgba(6,12,26,0.05) 100%);
}
.home-event-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.home-event-date {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 1;
  background: #fff;
  color: var(--color-ink);
  border-radius: var(--radius);
  width: 48px;
  height: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}
.home-event-date .day { font-size: 0.95rem; font-weight: 700; line-height: 1; }
.home-event-date .mon {
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-accent-dark);
}
.home-event-date .yr {
  font-size: 0.56rem;
  font-weight: 600;
  color: var(--color-ink);
  opacity: 0.6;
  line-height: 1;
  margin-top: 1px;
}
.home-event-info {
  position: absolute;
  left: 14px;
  right: 96px;
  bottom: 10px;
  z-index: 1;
}
.home-event-info h3 { color: #fff; font-size: 0.95rem; margin: 0 0 2px; line-height: 1.2; }
.home-event-info p { color: rgba(255,255,255,0.82); font-size: 0.74rem; margin: 0; }
.home-event-tag {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  background: var(--gradient-brand);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.4em 0.75em;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
@media (max-width: 860px) {
  .home-event-card { flex-basis: 78vw; }
}

/* ---------- Find a Place to Serve ---------- */
.department-card {
  display: block;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}
.department-card:hover { text-decoration: none; box-shadow: var(--shadow-md); transform: translateY(-2px); }
.department-card .card-media { aspect-ratio: 3/2; }
.department-card .card-body { padding: 16px; }
.department-card h3 { font-size: 0.98rem; margin-bottom: 0.2em; }
.department-card p { font-size: 0.85rem; }
.department-card .dept-link,
.dept-link {
  font-size: 0.82rem;
  font-weight: 700;
  display: inline-block;
  margin-top: 6px;
  color: var(--color-primary);
}

/* ---------- Events listing page ---------- */
.event-date-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 12px;
}
.event-date-row .event-date { width: 54px; height: 54px; }
.event-list-card .card-body h3 { margin-bottom: 0.15em; }
.event-list-card .event-meta {
  font-size: 0.78rem;
  color: var(--color-body);
  margin: 0;
}
.event-list-card .card-body > p:not(.event-meta) { margin: 10px 0 4px; }

/* ---------- Featured message (full-width band) ---------- */
.featured-band {
  background:
    radial-gradient(ellipse 800px 500px at 15% 20%, rgba(217,164,65,0.25), transparent 60%),
    radial-gradient(ellipse 700px 500px at 85% 80%, rgba(20,40,80,0.5), transparent 60%),
    linear-gradient(150deg, var(--color-primary-dark) 0%, var(--color-primary) 55%, #1c3a63 100%);
  padding: 0;
}
.featured-band .container {
  padding-top: 56px;
  padding-bottom: 56px;
}
.featured-message {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.fm-badge {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4em 1em;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.featured-message h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-bottom: 0.35em;
}
.featured-message > div:last-child p,
.featured-message > div:first-child { color: rgba(255,255,255,0.8); }
.featured-message .fm-meta { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1.6em; }
.featured-message .fm-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.featured-message .fm-actions .btn { border-radius: var(--radius-pill); padding: 0.85em 1.9em; }
.featured-message .fm-actions .btn-watch { background: var(--gradient-brand); color: #fff; border: none; }
.featured-message .fm-actions .btn-watch:hover { background: var(--gradient-brand-hover); }
.featured-message .fm-actions .btn-notes { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6); padding: calc(0.85em - 2px) calc(1.9em - 2px); }
.featured-message .fm-actions .btn-notes:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.fm-video-card {
  position: relative;
  aspect-ratio: 16/9;
  background-size: cover !important;
  background-position: center !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.12), transparent 55%),
    linear-gradient(135deg, #0b1a37 0%, #1e2f52 45%, #3a2a17 100%);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.fm-video-card .fm-play {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-size: 1.5rem;
}
.fm-video-card .fm-live {
  position: absolute;
  top: 18px;
  left: 18px;
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.4em 0.9em;
  border-radius: var(--radius-pill);
}
.fm-video-card .fm-caption {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  color: #fff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.15;
  text-transform: uppercase;
}

/* ---------- Filter pills ---------- */
.filter-pills {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.filter-pills a {
  display: inline-block;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-ink);
  background: #fff;
}
.filter-pills a.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: #fff;
}
.filter-pills a:hover { text-decoration: none; border-color: var(--color-primary); }

/* ---------- Event filter tabs ---------- */
.events-head-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}
.event-sort-control {
  display: flex;
  align-items: center;
  gap: 8px;
}
.event-sort-control label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-text-soft, #5b6577);
  white-space: nowrap;
}
.event-sort-control select {
  padding: 0.5em 2em 0.5em 1em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: inherit;
  color: inherit;
  background: #fff;
  cursor: pointer;
}
@media (max-width: 640px) {
  .events-head-row { flex-direction: column; align-items: flex-start; }
}
.filter-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.filter-tab {
  display: inline-block;
  padding: 0.55em 1.2em;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-size: 0.85rem;
  font-weight: 600;
  font-family: var(--font-body);
  color: var(--color-ink);
  background: #fff;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.filter-tab:hover { border-color: var(--color-accent-2); }
.filter-tab.active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: #fff;
}
.filter-empty {
  text-align: center;
  color: var(--color-body);
  font-size: 0.9rem;
  padding: 30px 0;
}

/* ---------- Department page hero ---------- */
.dept-hero-media {
  aspect-ratio: 21/9;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7ba;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 44px;
  box-shadow: var(--shadow-sm);
}

/* ---------- Department gallery ---------- */
.dept-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.dept-gallery-tile {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  border: 0;
  padding: 0;
  width: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.dept-gallery-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.family-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 700px) {
  .family-gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
.dept-gallery-placeholder {
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #9aa7ba;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  line-height: 1.5;
}

/* ---------- Department join-a-team form ---------- */
.dept-join-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.dept-join-layout h2 { margin-top: 0.2em; }
#dept-join { scroll-margin-top: 96px; }

/* ---------- Belief cards ---------- */
.belief-card {
  text-align: center;
  padding: 34px 26px;
}
.belief-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 18px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-soft);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.belief-card h3 { font-size: 1.05rem; margin-bottom: 0.5em; }
.belief-card p { font-size: 0.9rem; }
.belief-refs {
  display: block;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--color-accent-dark);
  font-weight: 700;
}
.beliefs-note {
  background: #fffaf0;
  border: 1px dashed var(--color-accent);
  border-radius: var(--radius);
  padding: 16px 20px;
  font-size: 0.85rem;
  color: var(--color-accent-dark);
  font-weight: 600;
  margin-bottom: 40px;
}

/* ---------- Leadership groups (square rounded photos) ---------- */
.leader-group { margin-bottom: 60px; }
.leader-group:last-child { margin-bottom: 0; }
.leader-group h2 {
  text-align: center;
  margin-bottom: 8px;
}
.leader-group .group-sub {
  text-align: center;
  color: var(--color-body);
  font-size: 0.92rem;
  max-width: 520px;
  margin: 0 auto 32px;
}
.leader-card-sq { text-align: center; }
.leader-card-sq .sq-photo {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #eef1f6 0%, #e4e9f1 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9aa7ba;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  margin-bottom: 14px;
  box-shadow: var(--shadow-sm);
}
.leader-card-sq h3 { font-size: 0.98rem; margin-bottom: 0.1em; }
.leader-card-sq .role {
  display: block;
  font-size: 0.8rem;
  color: var(--color-accent-dark);
  font-weight: 600;
}

/* ---------- Giving page ---------- */
.giving-hero {
  background: linear-gradient(165deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 100px 0 76px;
  text-align: center;
}
.giving-hero .eyebrow { color: var(--color-accent); }
.giving-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.8vw, 3.2rem); max-width: 720px; margin: 0 auto 0.5em; }
.giving-hero p { color: rgba(255,255,255,0.82); max-width: 600px; margin: 0 auto 1.6em; }
.giving-hero .btn-primary { border-radius: var(--radius-pill); padding: 0.9em 2em; }

.gradient-card {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.gradient-card .gc-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  display: block;
  margin-bottom: 4px;
  font-weight: 700;
}
.gradient-card .gc-title { font-weight: 700; font-size: 1.05rem; }
.gradient-card.gc-wide { aspect-ratio: 16/9; }

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}
.stat-grid .stat-num {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.6rem;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}
.stat-grid p { font-size: 0.88rem; margin: 0; }

/* Give tabs */
.give-tabs {
  display: flex;
  gap: 6px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-pill);
  padding: 6px;
  margin-bottom: 28px;
}
.give-tabs label {
  flex: 1;
  text-align: center;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-body);
  cursor: pointer;
  border-radius: var(--radius-pill);
}
.give-tabs input { display: none; }
.give-tab-panel { display: none; }
#tab-one:checked ~ .give-tabs label[for="tab-one"],
#tab-recurring:checked ~ .give-tabs label[for="tab-recurring"],
#tab-text:checked ~ .give-tabs label[for="tab-text"] {
  color: #fff;
  background: var(--color-primary);
}
#tab-one:checked ~ .give-tab-panels #panel-one,
#tab-recurring:checked ~ .give-tab-panels #panel-recurring,
#tab-text:checked ~ .give-tab-panels #panel-text {
  display: block;
}
.amount-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}
.amount-options span {
  display: block;
  text-align: center;
  padding: 13px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
}
.amount-options span.active { border-color: var(--color-primary); background: var(--color-bg-soft); color: var(--color-primary); }

/* FAQ accordion */
.faq-item {
  border-bottom: 1px solid var(--color-border);
}
.faq-item summary {
  padding: 20px 4px;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-ink);
  list-style: none;
  position: relative;
  padding-right: 28px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 20px;
  font-size: 1.1rem;
  color: var(--color-accent-dark);
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-body { padding: 0 4px 20px; font-size: 0.92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center;
  background: var(--color-primary);
  color: #fff;
  padding: 72px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,0.82); max-width: 520px; margin: 0 auto 28px; }
.cta-band .btn-primary { border-radius: var(--radius-pill); padding: 0.9em 2em; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--color-ink);
  color: rgba(255,255,255,0.65);
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: #fff;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.footer-grid ul { list-style: none; margin: 0; padding: 0; }
.footer-grid li { margin-bottom: 8px; }
.footer-grid a { color: rgba(255,255,255,0.65); }

/* ---------- Social icons ---------- */
.social-icons, .contact-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #fff;
  transition: color 0.15s ease, transform 0.15s ease;
}
.social-icon svg { width: 100%; height: 100%; fill: currentColor; }
.social-icon:hover { color: var(--color-accent-2); transform: translateY(-2px); }
.social-icon-dark { color: var(--color-ink); }
.social-icon-dark:hover { color: var(--color-accent-2); }
.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 10px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
}
.footer-bottom a { color: rgba(255,255,255,0.65); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-toggle-btn { display: flex; }
  .nav-panel {
    display: none;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    background: #fff;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 24px 24px;
    gap: 0;
  }
  .nav-toggle-input:checked ~ .nav-panel { display: flex; }
  .main-nav > ul {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .main-nav a {
    display: block;
    padding: 14px 4px;
    border-bottom: 1px solid var(--color-border);
  }
  .nav-has-dropdown > a::after { float: right; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: #f8f9fb;
    margin: 0 0 4px;
    padding: 4px;
  }
  .dropdown-menu a { border-bottom: none; padding: 12px 14px; }
  .header-cta {
    flex-direction: column-reverse;
    gap: 10px;
    width: 100%;
    margin-top: 16px;
  }
  .header-cta .btn, .header-cta .btn-give {
    width: 100%;
    text-align: center;
    padding: 0.85em 1.4em;
  }

  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .event-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .event-hero .event-meta-row { gap: 16px; }
  .message-layout { grid-template-columns: 1fr; }
  .msg-related-scroll { grid-template-columns: repeat(2, 1fr); }
  .msg-hero-play { width: 60px; height: 60px; right: 24px; font-size: 1.2rem; }
  .msg-hero-band { padding: 28px; min-height: 320px; }
  .feature-row, .contact-layout, .footer-grid, .dept-join-layout { grid-template-columns: 1fr; }
  .prophet-aside-col { order: 1; }
  .prophet-form-col { order: 2; }
  .dept-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-row.reverse .feature-media { order: 0; }
  .featured-message { grid-template-columns: 1fr; }
  .fm-video-card { aspect-ratio: 16/9; order: -1; }
  .stat-grid { grid-template-columns: 1fr; gap: 24px; }
  .amount-options { grid-template-columns: repeat(2, 1fr); }
  section { padding: 56px 0; }
}
@media (max-width: 540px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { padding: 96px 0 90px; min-height: 0; }
  .hero-title { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero .hero-actions .btn-pill-accent { width: 100%; text-align: center; }
  .cta-band .btn,
  .giving-hero .btn { width: 100%; }
  .hero-tagline { display: none; }
  .hero-scroll { bottom: 20px; }
  .event-register-row { grid-template-columns: 1fr; }
  .msg-hero-play { display: none; }
  .msg-related-scroll { grid-template-columns: 1fr; }
  .container { padding: 0 18px; }
  .featured-band .container { padding-top: 32px; padding-bottom: 32px; }
  .site-header .container { height: 68px; }
  .events-strip .strip-head { flex-direction: column; align-items: flex-start; }
}

/* ===== Watch a Weekend Service ===== */
.watch-band {
  background:
    radial-gradient(ellipse 70% 60% at 75% 20%, rgba(217,164,65,0.12) 0%, transparent 60%),
    linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  color: #fff;
  padding: 90px 0 76px;
}
.watch-band-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 44px;
}
.watch-band .eyebrow { color: var(--color-accent-2); }
.watch-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  color: #fff;
  font-weight: 600;
  line-height: 1.08;
  margin: 0.2em 0 0.4em;
}
.watch-band p { color: rgba(255,255,255,0.72); max-width: 460px; }
.watch-band .btn-primary { margin-top: 1.4em; }
.watch-hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background-size: cover;
  background-position: center top;
  box-shadow: var(--shadow-md);
  width: 74%;
  justify-self: start;
  -webkit-user-drag: none;
  pointer-events: none;
}
.watch-nav {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}
.watch-nav button {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.watch-nav button:hover { background: rgba(255,255,255,0.2); }

.watch-carousel-wrap {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
}
.watch-carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  cursor: grab;
  padding-bottom: 6px;
  padding-right: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  user-select: none;
}
.watch-carousel::-webkit-scrollbar { display: none; }
.watch-carousel-spacer {
  flex: 0 0 max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
}
.watch-carousel.dragging { cursor: grabbing; scroll-behavior: auto; }
.watch-card {
  flex: 0 0 250px;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: var(--color-body);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  -webkit-user-drag: none;
  user-select: none;
}
.watch-card * { pointer-events: none; -webkit-user-drag: none; }
.watch-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); text-decoration: none; }
.watch-card-media {
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  background-color: #eef1f6;
}
.watch-card-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.watch-card-body { padding: 10px 14px 12px; }
.watch-card-body .wc-speaker { font-weight: 700; font-size: 0.88rem; color: var(--color-primary); display: block; }
.watch-card-body .wc-meta { font-size: 0.76rem; color: #8b93a3; margin-top: 3px; }

/* ===== Find a Place to Serve — full-bleed draggable auto-scroll slider ===== */
.serve-slider-wrap {
  overflow: hidden;
  margin-top: 40px;
  padding: 4px 24px;
  padding-left: max(24px, calc((100vw - var(--max-width)) / 2 + 24px));
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}
.serve-track {
  display: flex;
  gap: 18px;
  width: max-content;
  cursor: grab;
  user-select: none;
  will-change: transform;
}
.serve-track.dragging { cursor: grabbing; }
.serve-card {
  flex: 0 0 clamp(220px, 16vw, 320px);
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  -webkit-user-drag: none;
  user-select: none;
  background-color: #101d38;
}
.serve-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.serve-card * { pointer-events: none; -webkit-user-drag: none; }
.serve-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,26,55,0) 40%, rgba(11,26,55,0.78) 100%);
  z-index: 1;
}
.serve-card-caption { position: relative; z-index: 1; font-weight: 700; font-size: 1.2rem; line-height: 1.15; }
.serve-card-caption span { display: block; font-weight: 500; font-size: 0.82rem; margin-top: 7px; color: rgba(255,255,255,0.75); text-transform: none; }
.serve-card:hover { text-decoration: none; }

@media (max-width: 900px) {
  .watch-band-top { grid-template-columns: 1fr; gap: 28px; }
  .watch-hero-image { aspect-ratio: 16/10; }
}
@media (max-width: 540px) {
  .watch-band { padding: 64px 0 56px; }
  .watch-card { flex-basis: 210px; }
  .serve-card { flex-basis: 190px; }
}

/* ===== Reusable gallery lightbox ===== */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,14,28,0.94);
  z-index: 2000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 16px;
}
.lightbox-overlay.is-open { display: flex; }
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}
.lightbox-close:hover { background: rgba(255,255,255,0.18); }
.lightbox-stage-row {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 1100px;
  flex: 1 1 auto;
  min-height: 0;
}
.lightbox-arrow {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}
.lightbox-arrow:hover { background: rgba(255,255,255,0.18); }
.lightbox-stage {
  flex: 1 1 auto;
  height: min(66vh, 640px);
  border-radius: var(--radius-lg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-color: #101d38;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 600;
  overflow: hidden;
}
.lightbox-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  max-width: 1100px;
  width: 100%;
  margin-top: 18px;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.lightbox-thumbs::-webkit-scrollbar { display: none; }
.lightbox-thumb {
  flex: 0 0 72px;
  height: 72px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-color: #101d38;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.6;
  transition: opacity 0.15s ease, border-color 0.15s ease;
}
.lightbox-thumb:hover { opacity: 0.9; }
.lightbox-thumb.is-active { opacity: 1; border-color: var(--color-accent-2); }
@media (max-width: 640px) {
  .lightbox-stage { height: 46vh; }
  .lightbox-arrow { width: 40px; height: 40px; }
}

/* ===== Gradient utility classes (moved out of inline style so they render in all viewers) ===== */
.grad-1 { background: linear-gradient(135deg, #142850 0%, #8134c9 100%); }
.grad-2 { background: linear-gradient(160deg, #0f1b2d 0%, #142850 50%, #8134c9 100%); }
.grad-3 { background: linear-gradient(135deg, #0b1a37 0%, #e2568f 100%); }
.grad-4 { background: linear-gradient(135deg, #d9a441 0%, #c73f76 100%); }
.grad-5 { background: linear-gradient(160deg, #0f1b2d 0%, #b3841f 100%); }
.grad-6 { background: linear-gradient(135deg, #142850 0%, #e2568f 100%); }
.grad-7 { background: linear-gradient(160deg, #2a1a3d 0%, #0b1a37 50%, #d9a441 100%); }
.grad-8 { background: linear-gradient(135deg, #b3841f 0%, #142850 100%); }
.grad-9 { background: linear-gradient(135deg, #e2568f 0%, #8134c9 100%); }
.grad-10 { background: linear-gradient(135deg, #b3841f 0%, #0b1a37 100%); }
.grad-11 { background: linear-gradient(135deg, #142850 0%, #0b1a37 55%, #d9a441 100%); }
.grad-12 { background: linear-gradient(135deg, #c73f76 0%, #142850 100%); }
.grad-13 { background: linear-gradient(135deg, #142850 0%, #d9a441 100%); }
.grad-14 { background: linear-gradient(135deg, #0b1a37 0%, #b3841f 100%); }
.grad-15 { background: linear-gradient(135deg, #0f1b2d 0%, #142850 100%); }
.grad-16 { background: linear-gradient(135deg, #0b1a37 0%, #0f1b2d 100%); }
.grad-17 { background: linear-gradient(135deg, #142850 0%, #b3841f 50%, #8134c9 100%); }
.grad-18 { background: linear-gradient(135deg, #d9a441 0%, #e2568f 100%); }
