:root {
  --pink: #e83f8f;
  --pink-soft: #ffe8f3;
  --pink-pale: #fff5fa;
  --purple: #37113f;
  --purple-2: #5a1e67;
  --ink: #25172b;
  --muted: #715f76;
  --white: #ffffff;
  --lavender: #f8f1fb;
  --mint: #d8f3ed;
  --gold: #f6d36d;
  --shadow: 0 20px 50px rgba(55, 17, 63, 0.12);
  --shadow-soft: 0 12px 30px rgba(55, 17, 63, 0.08);
  --radius: 8px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.7;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 80px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--purple);
  line-height: 1.08;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
}

h1 {
  font-size: clamp(2.7rem, 8vw, 5.3rem);
  max-width: 830px;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
}

h3 {
  font-size: 1.15rem;
}

p {
  margin: 0;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--pink);
  box-shadow: 0 12px 24px rgba(232, 63, 143, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #cf2f7b;
  box-shadow: 0 16px 30px rgba(232, 63, 143, 0.32);
}

.btn-secondary {
  color: var(--purple);
  background: var(--white);
  border-color: rgba(90, 30, 103, 0.18);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: var(--pink);
  color: var(--pink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(90, 30, 103, 0.08);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--purple);
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  width: 150px;
  height: auto;
}

.brand-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand small {
  color: var(--pink);
  font-weight: 800;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--purple);
  font-size: 0.94rem;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink);
  background: var(--pink-soft);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: var(--pink-soft);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--purple);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: 100px;
  background:
    radial-gradient(circle at 14% 18%, rgba(232, 63, 143, 0.18), transparent 32%),
    linear-gradient(135deg, var(--pink-pale) 0%, var(--white) 58%, var(--lavender) 100%);
}

.hero-bg {
  position: absolute;
  border-radius: 999px;
  opacity: 0.62;
  pointer-events: none;
}

.hero-bg-one {
  right: -110px;
  top: 110px;
  width: 280px;
  height: 280px;
  background: var(--pink-soft);
}

.hero-bg-two {
  left: -120px;
  bottom: 40px;
  width: 230px;
  height: 230px;
  background: rgba(216, 243, 237, 0.9);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 30px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.hero-visual {
  position: relative;
  min-height: 560px;
}

.image-placeholder {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(55, 17, 63, 0.92), rgba(90, 30, 103, 0.78)), var(--purple);
  box-shadow: var(--shadow);
}

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

.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(55, 17, 63, 0.06), rgba(55, 17, 63, 0.68));
}

.placeholder-window {
  position: absolute;
  inset: 28px 28px 132px;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #ffe0ef 0%, #d8f3ed 58%, #f6d36d 100%);
}

.sun {
  position: absolute;
  right: 52px;
  top: 46px;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 18px rgba(246, 211, 109, 0.2);
}

.mountain {
  position: absolute;
  bottom: -28px;
  width: 70%;
  height: 52%;
  background: rgba(55, 17, 63, 0.9);
  clip-path: polygon(0 100%, 52% 0, 100% 100%);
}

.mountain-one {
  left: -12%;
}

.mountain-two {
  right: -18%;
  background: rgba(232, 63, 143, 0.8);
}

.visual-note {
  position: absolute;
  z-index: 1;
  right: 28px;
  bottom: 28px;
  left: 28px;
  padding: 24px;
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.visual-note span {
  display: block;
  color: #ffd4e9;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.visual-note strong {
  display: block;
  margin-top: 8px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.55rem, 4vw, 2.45rem);
  line-height: 1.08;
}

.floating-card {
  position: absolute;
  right: -14px;
  bottom: -70px;
  width: min(250px, 70%);
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.floating-card strong {
  display: block;
  color: var(--pink);
  font-size: 2.2rem;
  line-height: 1;
}

.floating-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* Cards and Sections */
.about-grid,
.contact-grid,
.impact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: stretch;
}

.story-panel,
.info-card,
.service-card,
.event-card,
.involved-card,
.testimonial-card,
.stat-card,
.contact-form {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.story-panel {
  position: relative;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: clamp(30px, 5vw, 48px);
  background:
    radial-gradient(circle at 92% 14%, rgba(232, 63, 143, 0.38), transparent 24%),
    radial-gradient(circle at 8% 90%, rgba(246, 211, 109, 0.18), transparent 26%),
    linear-gradient(145deg, #2c0d3b 0%, #40114d 54%, #6d1f62 100%);
  isolation: isolate;
}

.story-panel h3,
.story-panel p {
  color: var(--white);
}

.story-panel::before {
  content: "\"";
  position: absolute;
  top: -52px;
  right: 26px;
  z-index: -1;
  color: rgba(255, 255, 255, 0.1);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(9rem, 20vw, 16rem);
  line-height: 1;
}

.story-panel::after {
  content: "";
  position: absolute;
  inset: auto 34px 86px 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.verse-kicker {
  width: fit-content;
  margin-bottom: 18px;
  padding: 7px 12px;
  border-radius: var(--radius);
  color: #ffe8f3;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.story-panel h3 {
  max-width: 420px;
  font-size: 10px;
}

.story-panel p {
  max-width: 620px;
  margin-top: 26px;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 20PX;
  line-height: 1.26;
}

.verse-card-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(42px, 8vw, 86px);
}

.verse-card-footer span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: #ffd4e9;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Vision */
.vision-section {
  background: var(--white);
}

.vision-panel {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.vision-logo {
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto 34px;
  display: block;
}

.vision-panel blockquote {
  margin: 0 auto;
  max-width: 620px;
  color: #8a285c;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  font-weight: 500;
  line-height: 1.35;
}

.scripture {
  margin-top: 26px;
  color: var(--pink);
  font-size: clamp(1.55rem, 5vw, 2.35rem);
  font-weight: 500;
  letter-spacing: 0.08em;
}

.vision-panel h2 {
  margin-top: 30px;
  color: var(--pink);
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(2rem, 6vw, 3rem);
  font-weight: 500;
}

.vision-copy,
.vision-note {
  max-width: 680px;
  margin: 12px auto 0;
  color: #2f2933;
  font-size: clamp(1.08rem, 3vw, 1.55rem);
  line-height: 1.32;
}

.vision-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 420px);
  margin: 34px auto;
  color: #8a285c;
}

.vision-divider::before,
.vision-divider::after {
  content: "";
  flex: 1;
  height: 2px;
  background: currentColor;
}

.vision-divider span {
  position: relative;
  width: 36px;
  height: 36px;
  margin: 0 8px;
}

.vision-divider span::before,
.vision-divider span::after {
  content: "";
  position: absolute;
  inset: 8px 15px;
  border-radius: 999px;
  background: currentColor;
}

.vision-divider span::after {
  transform: rotate(90deg);
}

.vision-note {
  max-width: 650px;
}

.info-card,
.service-card,
.involved-card,
.testimonial-card {
  padding: 28px;
}

.info-card p,
.service-card p,
.involved-card p,
.testimonial-card p {
  margin-top: 12px;
  color: var(--muted);
}

.card-icon,
.icon-badge {
  display: inline-grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 0.88rem;
  font-weight: 900;
}

.soft-section {
  background: linear-gradient(180deg, var(--pink-pale), rgba(248, 241, 251, 0.62));
}

.cards-grid {
  display: grid;
  gap: 20px;
}

.five-grid {
  grid-template-columns: repeat(5, 1fr);
}

.four-grid {
  grid-template-columns: repeat(4, 1fr);
}

.three-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.involved-card,
.event-card,
.testimonial-card,
.info-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.involved-card:hover,
.event-card:hover,
.testimonial-card:hover,
.info-card:hover {
  border-color: rgba(232, 63, 143, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

/* Impact */
.impact-section {
  color: var(--white);
  background: linear-gradient(135deg, rgba(55, 17, 63, 0.96), rgba(90, 30, 103, 0.95)), var(--purple);
}

.impact-section h2,
.impact-section .eyebrow {
  color: var(--white);
}

.impact-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.stat-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.stat-card strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.82);
}

/* Events */
.event-card {
  display: flex;
  gap: 18px;
  padding: 24px;
}

.trail-event-poster {
  display: block;
  width: 100%;
  height: auto;
}

.trail-poster-card {
  padding: 0;
  overflow: hidden;
}

.trail-poster-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.trail-poster-trigger:focus-visible {
  outline: 3px solid rgba(232, 63, 143, 0.38);
  outline-offset: -3px;
}

.trail-poster-modal[hidden] {
  display: none;
}

.trail-poster-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(37, 23, 43, 0.82);
  backdrop-filter: blur(6px);
}

.trail-poster-modal-dialog {
  width: min(100%, 560px);
}

.trail-poster-modal-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.event-date {
  flex: 0 0 70px;
  display: grid;
  height: 80px;
  place-items: center;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--purple);
}

.event-date span,
.event-date small {
  display: block;
  line-height: 1;
}

.event-date span {
  font-size: 1.8rem;
  font-weight: 900;
}

.event-date small {
  color: #ffd4e9;
  font-weight: 900;
}

.event-meta {
  margin: 8px 0;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 800;
}

.event-card p:last-child {
  color: var(--muted);
}

.center-action {
  margin-top: 34px;
  text-align: center;
}

/* Events Page */
.events-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 12%, rgba(232, 63, 143, 0.2), transparent 30%),
    linear-gradient(135deg, var(--pink-pale), var(--white) 54%, var(--lavender));
}

.events-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: center;
}

.poster-feature {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(45, 14, 42, 0.56), rgba(112, 34, 74, 0.24)),
    url("images/Themed events/T1.png");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.poster-feature h2 {
  color: var(--white);
}

.poster-feature p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.poster-label,
.poster-month,
.poster-place {
  display: inline-flex;
  width: fit-content;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.poster-label {
  margin-bottom: 18px;
  padding: 8px 12px;
  color: var(--purple);
  background: var(--pink-soft);
}

.poster-section {
  background: var(--white);
}

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

.event-poster {
  overflow: hidden;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.event-poster:hover {
  border-color: rgba(232, 63, 143, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.poster-art {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(55, 17, 63, 0.96), rgba(232, 63, 143, 0.68)),
    var(--purple);
}

.poster-art-alt {
  background:
    linear-gradient(160deg, rgba(232, 63, 143, 0.84), rgba(216, 243, 237, 0.52)),
    var(--pink);
}

.poster-art-deep {
  background:
    linear-gradient(160deg, rgba(55, 17, 63, 0.98), rgba(90, 30, 103, 0.72)),
    var(--purple);
}

.poster-art-soft {
  color: var(--purple);
  background:
    linear-gradient(160deg, rgba(255, 232, 243, 0.94), rgba(246, 211, 109, 0.42)),
    var(--pink-soft);
}

.poster-art h3 {
  color: inherit;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.poster-art p {
  color: currentColor;
  opacity: 0.84;
  font-weight: 700;
}

.poster-month {
  padding: 8px 10px;
  color: var(--purple);
  background: var(--white);
}

.poster-art-soft .poster-month {
  color: var(--white);
  background: var(--purple);
}

.poster-place {
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.16);
}

.poster-art-soft .poster-place {
  color: var(--white);
  background: var(--pink);
}

.poster-info {
  display: grid;
  gap: 5px;
  padding: 18px;
}

.poster-info strong {
  color: var(--purple);
}

.poster-info span {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.event-tracks-section {
  background: linear-gradient(180deg, var(--white), rgba(255, 245, 250, 0.74));
}

.event-tabs {
  display: grid;
  gap: 26px;
}

.event-pill-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
}

.event-pill {
  padding: 12px 20px;
  border: 0;
  border-radius: 999px;
  color: var(--purple);
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.event-pill:hover,
.event-pill:focus-visible,
.event-pill.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--pink), var(--purple-2));
  box-shadow: 0 12px 24px rgba(90, 30, 103, 0.2);
  transform: translateY(-1px);
}

.event-tab-panel {
  padding: 34px;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.event-track-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
}

.event-track-feature,
.track-card,
.archive-card,
.trails-highlight,
.trail-step,
.trails-cta-panel {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.event-track-feature {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(55, 17, 63, 0.3), rgba(232, 63, 143, 0.12)),
    linear-gradient(160deg, #2f0d3f, #5a1e67 56%, #d93782);
}

.event-track-feature h3,
.event-track-feature p {
  color: var(--white);
}

.event-track-feature p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.event-track-feature-pillow {
  background:
    linear-gradient(140deg, rgba(36, 14, 44, 0.6), rgba(94, 25, 73, 0.34)),
    url("images/pillow talk/P1.png");
  background-position: center;
  background-size: cover;
}

.event-track-feature-alt {
  background:
    linear-gradient(145deg, rgba(232, 63, 143, 0.34), rgba(246, 211, 109, 0.12)),
    linear-gradient(155deg, #8a285c, #d93782 55%, #f3b55b);
}

.event-track-feature-themed {
  background:
    linear-gradient(145deg, rgba(55, 17, 63, 0.5), rgba(143, 40, 92, 0.28)),
    url("images/Themed events/T1.png");
  background-position: center;
  background-size: cover;
}

.event-track-feature-deep {
  background:
    linear-gradient(140deg, rgba(24, 18, 30, 0.62), rgba(28, 46, 42, 0.42)),
    url("images/hikes/H1.png");
  background-position: center;
  background-size: cover;
}

.track-tags,
.archive-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.track-tags span,
.archive-meta span,
.archive-badge {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}

.track-tags span {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.event-track-list,
.archive-grid,
.trail-flow-grid {
  display: grid;
  gap: 18px;
}

.track-card,
.archive-card,
.trail-step {
  padding: 24px;
  background: linear-gradient(180deg, var(--white), rgba(248, 241, 251, 0.58));
}

.track-card strong,
.trail-step strong {
  color: var(--purple);
}

.track-card p,
.archive-card p,
.trail-step p {
  margin-top: 10px;
  color: var(--muted);
}

.track-link {
  margin-top: 18px;
}

.track-event-stack {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.mini-event-card {
  padding: 18px;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}

.mini-event-card h4 {
  margin: 0;
  color: var(--purple);
  font-size: 1rem;
  line-height: 1.2;
}

.mini-event-card p:last-child {
  margin-top: 8px;
  color: var(--muted);
}

.archive-grid {
  grid-template-columns: repeat(3, 1fr);
}

.archive-card {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.archive-badge {
  color: var(--purple);
  background: var(--pink-soft);
}

.archive-card h3 {
  margin-top: 18px;
}

.archive-card .btn {
  width: 100%;
  margin-top: 20px;
}

.archive-meta span {
  color: var(--pink);
  background: rgba(232, 63, 143, 0.08);
}

.trails-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 16%, rgba(216, 243, 237, 0.38), transparent 28%),
    radial-gradient(circle at 16% 18%, rgba(246, 211, 109, 0.2), transparent 24%),
    linear-gradient(135deg, #f7fbfa, var(--white) 52%, var(--pink-pale));
}

.trails-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: center;
}

.trails-highlight {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(23, 32, 31, 0.58), rgba(98, 78, 40, 0.26)),
    url("images/hikes/H1.png");
  background-position: center;
  background-size: cover;
}

.trails-highlight h2,
.trails-highlight p {
  color: var(--white);
}

.trails-highlight p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.trail-flow-grid {
  grid-template-columns: repeat(3, 1fr);
}

.trails-gallery-section {
  background: var(--white);
}

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

.trails-gallery-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.trails-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.trails-cta-section {
  background: var(--white);
}

.trails-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(37, 63, 65, 0.96), rgba(79, 107, 83, 0.92)),
    #294244;
}

.trails-cta-panel h2,
.trails-cta-panel .eyebrow,
.trails-cta-panel p {
  color: var(--white);
}

.trails-cta-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

.trails-join-btn {
  white-space: nowrap;
  min-width: 220px;
}

/* Quotes */
.quotes-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 14%, rgba(246, 211, 109, 0.22), transparent 28%),
    radial-gradient(circle at 18% 20%, rgba(232, 63, 143, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pink-pale), var(--white) 54%, #fffaf0);
}

.quotes-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: center;
}

.quotes-highlight,
.quote-poster-inner,
.quote-preview-card,
.quotes-cta-panel {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.quotes-highlight {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(55, 17, 63, 0.24), rgba(246, 211, 109, 0.12)),
    linear-gradient(160deg, #5a1e67, #d93782 58%, #f3b55b);
}

.quotes-highlight h2,
.quotes-highlight p {
  color: var(--white);
}

.quotes-highlight p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
}

.quote-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote-poster {
  display: block;
}

.quote-poster-image-card {
  overflow: hidden;
  aspect-ratio: 1236 / 1600;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.quote-poster-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-poster-inner {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  overflow: hidden;
  color: var(--white);
}

.quote-poster-inner blockquote,
.quote-preview-card blockquote {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.2;
}

.quote-poster-inner blockquote {
  font-size: clamp(1.8rem, 3.4vw, 2.5rem);
}

.quote-poster-inner::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  pointer-events: none;
}

.quote-category {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quote-poster-motivation {
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(150deg, #3a123f, #8a285c 56%, #e83f8f);
}

.quote-poster-scripture {
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(150deg, #6b531d, #b88f4c 52%, #f4d98a);
}

.quote-poster-soft {
  background:
    radial-gradient(circle at 84% 16%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(150deg, #6f3654, #d56e9c 58%, #f3d9e5);
}

.quote-poster-deep {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(150deg, #253f41, #46636d 56%, #93b7b8);
}

.quote-poster-scripture,
.quote-poster-soft,
.quote-poster-deep {
  color: var(--white);
}

.quote-poster-scripture .quote-category,
.quote-poster-motivation .quote-category,
.quote-poster-soft .quote-category,
.quote-poster-deep .quote-category {
  color: var(--purple);
  background: rgba(255, 255, 255, 0.86);
}

.quote-caption,
.quote-reference,
.quote-poster-inner footer {
  position: relative;
  z-index: 1;
}

.quote-caption,
.quote-reference {
  margin-top: 18px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
}

.quote-reference {
  font-size: 0.98rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.quote-poster-inner footer {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
}

.quotes-preview-section {
  background: linear-gradient(180deg, rgba(255, 245, 250, 0.7), var(--white));
}

.quote-preview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.quote-preview-card {
  padding: 28px;
  background: var(--white);
}

.quote-preview-card blockquote {
  margin-top: 16px;
  color: var(--purple);
  font-size: clamp(1.35rem, 3vw, 1.95rem);
}

.quote-preview-card .quote-reference {
  color: var(--pink);
}

.quotes-cta-section {
  background: var(--white);
}

.quotes-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(90, 30, 103, 0.96), rgba(217, 55, 130, 0.88)),
    var(--purple);
}

.quotes-cta-panel h2,
.quotes-cta-panel .eyebrow,
.quotes-cta-panel p {
  color: var(--white);
}

.quotes-cta-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 620px;
}

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

/* Outreach */
.outreach-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 211, 109, 0.24), transparent 28%),
    radial-gradient(circle at 15% 22%, rgba(232, 63, 143, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pink-pale), var(--white) 54%, #f7fbfa);
}

.outreach-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: center;
}

.outreach-highlight,
.outreach-metric-card,
.outreach-story-card,
.action-card,
.outreach-cta-panel {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.outreach-highlight {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(55, 17, 63, 0.35), rgba(232, 63, 143, 0.16)),
    linear-gradient(160deg, #2f0d3f, #5a1e67 58%, #d93782);
}

.outreach-highlight h2 {
  color: var(--white);
}

.outreach-highlight p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.outreach-metrics-section {
  background: var(--white);
}

.outreach-metric-card {
  padding: 26px;
  background: linear-gradient(180deg, var(--white), rgba(255, 245, 250, 0.78));
}

.outreach-metric-card strong {
  display: block;
  color: var(--purple);
  font-size: 1.1rem;
}

.outreach-metric-number {
  margin-bottom: 10px;
  color: var(--pink) !important;
  font-size: clamp(2rem, 5vw, 3.1rem) !important;
  font-weight: 900;
  line-height: 1;
}

.outreach-metric-card span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
}

.outreach-story-grid,
.outreach-action-grid {
  display: grid;
  gap: 20px;
}

.outreach-story-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.outreach-story-card,
.action-card {
  padding: 28px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.outreach-story-card:hover,
.action-card:hover {
  border-color: rgba(232, 63, 143, 0.3);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.outreach-story-card p,
.action-card p {
  margin-top: 12px;
  color: var(--muted);
}

.outreach-gallery-section {
  background: var(--white);
}

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

.outreach-gallery-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.outreach-gallery-card img {
  display: block;
  width: 100%;
  aspect-ratio: 0.9;
  object-fit: cover;
}

.outreach-gallery-card figcaption {
  padding: 18px;
  color: var(--muted);
  font-weight: 600;
}

.outreach-actions-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 22%, rgba(232, 63, 143, 0.12), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(246, 211, 109, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(248, 241, 251, 0.86), rgba(255, 255, 255, 0.98));
}

.outreach-action-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  margin: 0 auto;
}

.action-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 32px;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.9));
}

.action-card::after {
  content: "";
  position: absolute;
  inset: auto 24px 0;
  height: 5px;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(90deg, var(--pink), #f08cb8);
  opacity: 0.9;
}

.action-card-tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  color: var(--pink);
  background: var(--pink-soft);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-card-tag-gold {
  color: #7a5614;
  background: rgba(246, 211, 109, 0.24);
}

.action-card h3 {
  font-size: clamp(1.45rem, 2.5vw, 1.8rem);
}

.action-points {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.action-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 600;
}

.action-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
}

.action-card .btn {
  width: 100%;
  margin-top: auto;
  min-height: 54px;
  border-radius: 14px;
  font-size: 1rem;
}

.outreach-cta {
  background: var(--white);
}

.outreach-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(55, 17, 63, 0.96), rgba(90, 30, 103, 0.92)),
    var(--purple);
}

.outreach-cta-panel h2,
.outreach-cta-panel .eyebrow,
.outreach-cta-panel p {
  color: var(--white);
}

.outreach-cta-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 640px;
}

.outreach-cta-panel .btn {
  white-space: nowrap;
  min-width: 140px;
}

/* Gallery Page */
.gallery-page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 14%, rgba(246, 211, 109, 0.26), transparent 28%),
    linear-gradient(135deg, rgba(255, 245, 250, 0.96), rgba(255, 255, 255, 0.98) 50%, rgba(216, 243, 237, 0.82));
}

.gallery-page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 40px;
  align-items: center;
}

.gallery-page-highlight {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(150deg, rgba(40, 17, 45, 0.62), rgba(105, 45, 70, 0.28)),
    url("images/HERP BG.jpg");
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.gallery-page-highlight h2 {
  color: var(--white);
}

.gallery-page-highlight p {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}

.gallery-filter-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.84));
}

.gallery-pill-nav {
  justify-content: center;
  margin-bottom: 14px;
}

.gallery-filter-panel {
  display: grid;
  gap: 28px;
}

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

.gallery-filter-copy {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.gallery-filter-copy h3 {
  margin-top: 6px;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
}

.gallery-filter-copy p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
}

.gallery-page-grid {
  margin-top: 10px;
}

.gallery-filter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.gallery-filter-grid-portrait {
  grid-template-columns: repeat(3, minmax(0, 0.9fr));
  justify-content: center;
}

.gallery-story-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: calc(var(--radius) + 2px);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.gallery-story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 63, 143, 0.24);
  box-shadow: var(--shadow);
}

.gallery-story-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.gallery-story-card-portrait img {
  height: 460px;
  object-fit: cover;
  object-position: center top;
}

.gallery-story-card-body {
  display: grid;
  gap: 10px;
  padding: 20px;
}

.gallery-story-card-body span {
  color: var(--pink);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-story-card-body h4 {
  font-size: 1.25rem;
}

.gallery-story-card-body p {
  color: var(--muted);
}

/* Testimonials */
.testimonial-card {
  position: relative;
}

.testimonial-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--pink);
}

.testimonial-card h3 {
  margin-top: 22px;
}

.testimonial-card span {
  color: var(--pink);
  font-size: 0.9rem;
  font-weight: 800;
}

/* Gallery */
.gallery-section {
  background: var(--pink-pale);
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  display: grid;
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin-bottom: 18px;
  place-items: end start;
  padding: 18px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(55, 17, 63, 0.76), rgba(232, 63, 143, 0.36)), linear-gradient(145deg, var(--lavender), var(--mint));
  box-shadow: var(--shadow-soft);
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
}

.gallery-item span {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-weight: 900;
}

.gallery-photo {
  padding: 0;
}

.gallery-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.gallery-photo::after {
  border-color: rgba(255, 255, 255, 0.55);
}

/* Contact */
.contact-hero {
  background:
    radial-gradient(circle at 18% 22%, rgba(232, 63, 143, 0.18), transparent 30%),
    linear-gradient(135deg, var(--pink-pale), var(--white) 58%, var(--lavender));
}

.contact-hero .section-heading {
  margin-bottom: 0;
}

.contact-hero .section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.contact-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: var(--muted);
}

.contact-details {
  margin: 28px 0;
  padding: 22px;
  border-left: 4px solid var(--pink);
  border-radius: var(--radius);
  background: var(--pink-pale);
}

.contact-details p {
  margin: 6px 0;
}

.contact-details a {
  color: var(--purple);
  font-weight: 800;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: var(--radius);
  font-weight: 900;
}

.social-links svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.social-links a {
  color: var(--purple);
  background: var(--lavender);
}

.social-links a:hover {
  color: var(--white);
  background: var(--pink);
}

.contact-form {
  padding: 28px;
}

.contact-form label {
  display: block;
  margin: 18px 0 8px;
  color: var(--purple);
  font-weight: 800;
}

.contact-form label:first-of-type {
  margin-top: 0;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(90, 30, 103, 0.16);
  border-radius: var(--radius);
  padding: 14px 15px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 4px rgba(232, 63, 143, 0.12);
}

.contact-form .btn {
  width: 100%;
  margin-top: 22px;
}

.prayer-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(246, 211, 109, 0.2), transparent 22%),
    radial-gradient(circle at 16% 24%, rgba(232, 63, 143, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 245, 250, 0.96), rgba(255, 255, 255, 0.98) 54%, rgba(248, 241, 251, 0.9));
}

.prayer-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 40px;
  align-items: center;
}

.prayer-highlight,
.prayer-comfort-card,
.prayer-form,
.prayer-cta-panel {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.prayer-highlight {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(140deg, rgba(55, 17, 63, 0.42), rgba(232, 63, 143, 0.16)),
    linear-gradient(160deg, #2f0d3f, #5a1e67 56%, #d93782);
}

.prayer-highlight h2,
.prayer-highlight p {
  color: var(--white);
}

.prayer-highlight p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.prayer-promises-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.76));
}

.prayer-scripture-section {
  background: var(--white);
}

.prayer-scripture-card {
  max-width: 880px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 245, 250, 0.92), rgba(248, 241, 251, 0.78));
  box-shadow: var(--shadow-soft);
}

.prayer-scripture-card blockquote {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
}

.prayer-scripture-card p {
  margin-top: 18px;
  color: var(--muted);
}

.prayer-comfort-card {
  padding: 28px;
  background: var(--white);
}

.prayer-comfort-card p {
  margin-top: 12px;
  color: var(--muted);
}

.prayer-request-section {
  background: var(--white);
}

.prayer-details {
  background: linear-gradient(180deg, rgba(255, 245, 250, 0.96), rgba(248, 241, 251, 0.88));
}

.prayer-copy-note {
  margin-top: 22px;
  padding: 22px;
  border-radius: var(--radius);
  color: var(--purple);
  background: var(--lavender);
}

.prayer-form {
  background: linear-gradient(180deg, var(--white), rgba(255, 245, 250, 0.74));
}

.prayer-form-note {
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.95rem;
}

.prayer-cta {
  background: var(--white);
}

.prayer-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(55, 17, 63, 0.96), rgba(90, 30, 103, 0.92)),
    var(--purple);
}

.prayer-cta-panel h2,
.prayer-cta-panel .eyebrow,
.prayer-cta-panel p {
  color: var(--white);
}

.prayer-cta-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 640px;
}

.prayer-cta-panel .btn {
  white-space: nowrap;
}

.founder-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(246, 211, 109, 0.18), transparent 24%),
    radial-gradient(circle at 14% 22%, rgba(232, 63, 143, 0.14), transparent 26%),
    linear-gradient(135deg, rgba(255, 245, 250, 0.96), rgba(255, 255, 255, 0.98) 54%, rgba(248, 241, 251, 0.9));
}

.founder-hero-grid,
.founder-message-grid {
  display: grid;
  grid-template-columns: 0.86fr 1fr;
  gap: 38px;
  align-items: center;
}

.founder-photo-wrap,
.founder-value-card,
.founder-message-card,
.founder-verse-card,
.founder-cta-panel {
  border: 1px solid rgba(90, 30, 103, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.founder-photo-wrap {
  overflow: hidden;
  background: var(--white);
}

.founder-photo {
  width: 100%;
  height: 100%;
  min-height: 620px;
  display: block;
  object-fit: cover;
}

.founder-subtitle {
  margin-top: 12px;
  color: var(--pink);
  font-size: 1.02rem;
  font-weight: 900;
}

.founder-copy .hero-text + .hero-text {
  margin-top: 16px;
}

.founder-story-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 245, 250, 0.76));
}

.founder-value-card {
  padding: 28px;
  background: var(--white);
}

.founder-value-card p {
  margin-top: 12px;
  color: var(--muted);
}

.founder-message-section {
  background: var(--white);
}

.founder-message-card,
.founder-verse-card {
  padding: 32px;
  background: linear-gradient(180deg, var(--white), rgba(255, 245, 250, 0.68));
}

.founder-message-card p:not(.eyebrow),
.founder-verse-card p {
  margin-top: 16px;
  color: var(--muted);
}

.founder-verse-card {
  text-align: center;
}

.founder-verse-card blockquote {
  margin: 0;
  color: var(--purple);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.2;
}

.founder-cta {
  background: var(--white);
}

.founder-cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(55, 17, 63, 0.96), rgba(90, 30, 103, 0.92)),
    var(--purple);
}

.founder-cta-panel h2,
.founder-cta-panel .eyebrow,
.founder-cta-panel p {
  color: var(--white);
}

.founder-cta-panel p:not(.eyebrow) {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 640px;
}

.founder-cta-panel .btn {
  white-space: nowrap;
}

.form-message {
  display: none;
  padding: 12px 14px;
  border-radius: var(--radius);
  font-weight: 800;
}

.form-message.show {
  display: block;
}

.form-message.error {
  color: #7b1640;
  background: #ffe1ee;
}

.form-message.success {
  color: #185d50;
  background: var(--mint);
}

/* Footer */
.site-footer {
  padding: 54px 0 24px;
  border-top: 16px solid var(--pink);
  color: rgba(255, 255, 255, 0.82);
  background: var(--purple);
}

.footer-grid {
  display: grid;
  grid-template-columns: 0.9fr 0.6fr minmax(460px, 1.35fr);
  gap: 34px;
  align-items: start;
}

.footer-brand {
  color: var(--white);
}

.footer-brand .brand-logo {
  width: 170px;
  padding: 8px 10px;
  border-radius: var(--radius);
  background: var(--white);
}

.site-footer p {
  max-width: 420px;
  margin-top: 18px;
}

.footer-trust {
  display: inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffd4e9;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.84rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.footer-links a:hover {
  color: #ffd4e9;
}

.footer-social a {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
  background: var(--pink);
}

.footer-social {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.footer-social a {
  width: min(100%, 360px);
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 5px 14px 5px 5px;
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 700;
}

.footer-social-row {
  display: flex;
  gap: 10px;
}

.footer-social a.icon-only {
  width: 50px;
  min-width: 50px;
  justify-content: center;
  padding: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.footer-social svg {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 999px;
  color: var(--pink);
  fill: currentColor;
  background: var(--white);
}

.footer-social span {
  white-space: nowrap;
}

.footer-social a[href^="mailto:"] span {
  font-size: 0.94rem;
}

.copyright {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.copyright p {
  max-width: none;
  margin: 0;
  font-size: 0.9rem;
}

.copyright p + p {
  margin-top: 0;
  text-align: right;
}

.copyright a {
  color: #ffd4e9;
  font-weight: 900;
}

.copyright a:hover {
  color: var(--white);
}

/* WhatsApp */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.32);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #1fbd5a;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.4);
  transform: translateY(-2px);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* Reveal Animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1040px) {
  .five-grid,
  .four-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .three-grid,
  .hero-grid,
  .about-grid,
  .contact-grid,
  .impact-grid,
  .events-hero-grid,
  .outreach-hero-grid,
  .event-track-grid,
  .trails-hero-grid,
  .quotes-hero-grid,
  .gallery-page-hero-grid,
  .prayer-hero-grid,
  .founder-hero-grid,
  .founder-message-grid {
    grid-template-columns: 1fr;
  }

  .poster-grid,
  .outreach-story-grid,
  .outreach-action-grid,
  .outreach-gallery-grid,
  .archive-grid,
  .trail-flow-grid,
  .trails-gallery-grid,
  .quote-gallery,
  .gallery-filter-grid,
  .gallery-filter-grid-portrait {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    min-height: auto;
  }

  .image-placeholder {
    min-height: 470px;
  }

  .story-panel {
    min-height: 430px;
  }
}

@media (max-width: 780px) {
  .section-pad {
    padding: 62px 0;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: 16px;
    left: 16px;
    display: grid;
    gap: 6px;
    padding: 16px;
    border: 1px solid rgba(90, 30, 103, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .event-pill-nav {
    justify-content: flex-start;
    border-radius: 26px;
  }

  .event-tab-panel {
    padding: 24px;
  }

  .hero {
    padding-top: 74px;
  }

  .hero-grid {
    gap: 36px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mission-grid,
  .stats-grid,
  .five-grid,
  .four-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 2;
  }

  .outreach-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery-pill-nav {
    justify-content: flex-start;
  }

  .trails-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .quotes-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .prayer-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .story-panel::after {
    bottom: 92px;
  }

  .footer-social a.icon-only {
    width: 50px;
  }

  .footer-social span {
    white-space: nowrap;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
  }

  .whatsapp-float svg {
    width: 27px;
    height: 27px;
  }
}

@media (max-width: 620px) {
  .footer-social,
  .footer-social a:not(.icon-only) {
    width: 100%;
  }

  .footer-social span {
    white-space: normal;
  }

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

  .copyright p + p {
    text-align: left;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 24px), var(--max-width));
  }

  .brand strong {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.78rem;
  }

  .brand-logo {
    width: 126px;
    height: auto;
  }

  .image-placeholder {
    min-height: 390px;
  }

  .placeholder-window {
    inset: 18px 18px 126px;
  }

  .visual-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 18px;
  }

  .floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 14px;
  }

  .event-card {
    flex-direction: column;
  }

  .event-date {
    width: 70px;
  }

  .trail-poster-modal {
    padding: 16px;
  }

  .trail-poster-modal-dialog {
    width: min(100%, 420px);
  }

  .gallery-grid {
    column-count: 1;
  }

  .poster-grid,
  .outreach-story-grid,
  .outreach-action-grid,
  .outreach-gallery-grid,
  .archive-grid,
  .trail-flow-grid,
  .trails-gallery-grid,
  .quote-gallery,
  .quote-preview-grid,
  .gallery-filter-grid,
  .gallery-filter-grid-portrait {
    grid-template-columns: 1fr;
  }

  .poster-art,
  .poster-feature,
  .outreach-highlight,
  .event-track-feature,
  .trails-highlight,
  .quotes-highlight,
  .gallery-page-highlight {
    min-height: 360px;
  }

  .quote-poster-inner {
    min-height: 460px;
  }
}
