/* ============================================================
   TGN Homepage — PREMIUM ($10k-feel) variant
   Editorial composition · generous whitespace · numbered sections
   ============================================================ */

/* Add tighter Inter weights — premium typography uses both 800 and 500 */
:root {
  --p-fs-hero: clamp(56px, 9vw, 128px);
  --p-fs-section: clamp(40px, 5vw, 72px);
  --p-fs-feature: clamp(28px, 3vw, 40px);
  --p-fs-stat: clamp(72px, 9vw, 144px);
  --p-section-y: clamp(96px, 14vw, 200px);
  --p-gutter: clamp(24px, 6vw, 80px);
  --p-max: 1320px;
  --p-line: rgba(13, 95, 110, 0.16);
  --p-line-light: rgba(255, 255, 255, 0.18);
  --p-paper: #FBFAF6;
}

.p-container { max-width: var(--p-max); margin: 0 auto; padding: 0 var(--p-gutter); }
.p-vh { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

body { background: var(--p-paper); }

/* ---------- Scroll progress bar ---------- */
.p-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--color-orange) 0%, #FF6F45 100%);
  z-index: 1000;
  transition: width 80ms linear;
  pointer-events: none;
}

/* ---------- Image reveal (clip-path) ---------- */
.reveal-img {
  overflow: hidden;
}
.reveal-img > img,
.reveal-img > a > .p-event-photo > img,
.reveal-img > .p-event-photo > img {
  transform: scale(1.08);
  transition: transform 1200ms var(--ease-out);
}
.reveal-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-teal-deep);
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 900ms var(--ease-in-out);
  z-index: 5;
  pointer-events: none;
}
.reveal-img.is-in::before { transform: scaleX(0); transform-origin: right; }
.reveal-img.is-in > img,
.reveal-img.is-in > a > .p-event-photo > img,
.reveal-img.is-in > .p-event-photo > img { transform: scale(1); }

/* ---------- Premium entrance keyframe ---------- */
@keyframes pFadeUp {
  from { opacity: 0; transform: translateY(26px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Reveal animations — spring easing ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in { opacity: 1; transform: none; }

/* Directional variants — for horizontal reveals */
.reveal-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-left.is-in { opacity: 1; transform: none; }

.reveal-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 860ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 860ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-right.is-in { opacity: 1; transform: none; }

/* Hero-specific: deeper translateY, longer duration */
.p-hero .reveal {
  transform: translateY(36px);
  transition: opacity 1100ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

/* Hero elements not using .reveal — animate via keyframe */
.p-hero-meta {
  animation: pFadeUp 800ms cubic-bezier(0.22, 1, 0.36, 1) 60ms both;
}
.p-hero-foot {
  animation: pFadeUp 700ms cubic-bezier(0.22, 1, 0.36, 1) 940ms both;
}

/* Generic arrow used inside CTAs / pills */
.p-arrow {
  display: inline-block;
  transition: transform 300ms var(--ease-out);
}

/* Ensure reveal-img wrappers can stack the wipe pseudo correctly */
.p-event-card { position: relative; }

/* ---------- Buttons ---------- */
.p-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 14px 22px;
  min-height: 44px;
  border-radius: var(--radius-full);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  touch-action: manipulation;
  transition: background 300ms var(--ease-out),
              color 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              transform 300ms var(--ease-out);
  line-height: 1;
}
.p-btn-lg { padding: 18px 30px; font-size: 15px; }
.p-btn-pill { padding: 11px 20px; font-size: 13px; }

.p-btn-primary { background: #fff; color: var(--color-teal-deep); border-color: #fff; }
.p-btn-primary:hover { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }

.p-btn-orange { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.p-btn-orange:hover { background: #fff; color: var(--color-orange); border-color: var(--color-orange); }

/* Ghost — for use on light backgrounds */
.p-btn-ghost { background: transparent; color: var(--color-teal-deep); border-color: var(--color-teal-deep); }
.p-btn-ghost:hover { background: var(--color-teal-deep); color: #fff; }

/* Ghost white — for use on dark/teal backgrounds */
.p-btn-ghost-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.p-btn-ghost-white:hover { background: rgba(255,255,255,0.12); border-color: #fff; }

.p-btn-pill { background: var(--color-orange); color: #fff; border-color: var(--color-orange); }
.p-btn-pill:hover { background: transparent; color: #fff; border-color: rgba(255,255,255,0.8); }

/* Animated underlines */
.p-link-arrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-teal-deep);
  text-decoration: none;
  padding-bottom: 4px;
  transition: gap 300ms var(--ease-out), color 300ms var(--ease-out);
}
.p-link-arrow::before {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform-origin: left;
  transform: scaleX(1);
  transition: transform 400ms var(--ease-out);
}
.p-link-arrow::after {
  content: "→";
  font-weight: 500;
  transition: transform 300ms var(--ease-out);
}
.p-link-arrow:hover { gap: 16px; }
.p-link-arrow:hover::after { transform: translateX(4px); }
.p-link-arrow-orange { color: var(--color-orange); }
.p-link-arrow-light { color: #fff; }

/* ---------- Numbered eyebrow ---------- */
.p-numbered {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-5);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
}
.p-num {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-orange);
  font-feature-settings: "tnum";
  font-size: 12px;
}
.p-num-rule {
  display: inline-block;
  width: 56px;
  height: 1px;
  background: var(--color-orange);
}
.p-num-label { color: var(--color-teal-deep); }
.p-numbered-light { color: rgba(255,255,255,0.85); }
.p-numbered-light .p-num-label { color: rgba(255,255,255,0.85); }

/* ---------- Section head ---------- */
.p-section-head { max-width: 760px; margin: 0 0 var(--space-9); }
.p-section-head h2 {
  font-size: var(--p-fs-section);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--color-teal-deep);
  margin: 0;
  text-wrap: balance;
}
.p-section-head-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-9);
  align-items: end;
  max-width: none;
}
.p-section-head-lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-2);
  margin: 0;
  padding-bottom: 8px;
}

/* ============================================================
   HEADER
   ============================================================ */
.p-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 14px 0;
  transition: background 400ms var(--ease-out), padding 400ms var(--ease-out);
}
.p-header.is-scrolled {
  background: #084A56;
  padding: 10px 0;
}
.p-header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}
.p-logo img { display: block; height: 88px; width: auto; transition: height 300ms var(--ease-out); }
.p-header.is-scrolled .p-logo img { height: 72px; }

.p-nav ul { display: flex; gap: var(--space-7); list-style: none; margin: 0; padding: 0; }
.p-nav a {
  position: relative;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  padding: 8px 0;
}
.p-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--color-orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease-out);
}
.p-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.p-header-cta { display: flex; align-items: center; gap: var(--space-4); }

.p-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  padding: 12px;
  cursor: pointer;
  min-height: 44px;
  min-width: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}
.p-menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: #fff;
  transition: transform 300ms var(--ease-out);
}
.p-mobile-menu {
  background: var(--color-teal-deep);
  padding: 0 var(--p-gutter);
  max-height: 0;
  overflow: hidden;
  transition: max-height 380ms cubic-bezier(0.22, 1, 0.36, 1),
              padding 380ms cubic-bezier(0.22, 1, 0.36, 1);
}
.p-mobile-menu ul { display: flex; flex-direction: column; gap: var(--space-2); list-style: none; margin: 0; padding: 0; }
.p-mobile-menu a {
  display: block;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.p-mobile-menu a.p-btn { border-bottom: none; margin-top: var(--space-4); display: inline-flex; }
.p-mobile-menu.is-open {
  max-height: 700px;
  padding-top: var(--space-5);
  padding-bottom: var(--space-7);
}

/* ============================================================
   HERO
   ============================================================ */
.p-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: #fff;
  overflow: hidden;
  padding: 200px 0 0;
}
.p-hero-bg { position: absolute; inset: 0; z-index: 0; }
.p-hero-bg img,
.p-hero-video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  animation: pHeroSlowZoom 16s ease-out forwards;
}
.p-hero-video { object-position: center center; }
@media (prefers-reduced-motion: reduce) {
  .p-hero-video { animation: none; transform: none; }
}
@keyframes pHeroSlowZoom { to { transform: scale(1); } }
.p-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(8,74,86,0.72) 0%, rgba(8,74,86,0.55) 50%, rgba(8,74,86,0.85) 100%);
}
.p-hero-grain {
  position: absolute; inset: 0;
  opacity: 0.12;
  mix-blend-mode: overlay;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220' viewBox='0 0 220 220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.95' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.5 0'/></filter><rect width='220' height='220' filter='url(%23n)'/></svg>");
  background-size: 220px 220px;
  pointer-events: none;
}

.p-hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: var(--space-11);
}
.p-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: var(--space-6);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.78);
}
.p-hero-meta-rule { width: 56px; height: 1px; background: var(--color-orange); }

.p-hero-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--p-fs-hero);
  line-height: 0.95;
  letter-spacing: -3px;
  color: #fff;
  margin: 0 0 var(--space-6);
  max-width: 14ch;
  text-wrap: balance;
}
.p-hero-line { display: block; }
.p-hero-line:nth-child(1) { transition-delay: 200ms; }
.p-hero-line:nth-child(2) { transition-delay: 380ms; }
.p-hero-italic {
  font-family: var(--font-scripture);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -2px;
  color: #fff;
}
.p-hero-italic em { font-style: italic; font-weight: 400; }

.p-hero-scripture {
  max-width: 540px;
  margin: 0 0 var(--space-7);
  color: rgba(255,255,255,0.86);
  font-size: 17px;
  line-height: 1.55;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition-delay: 540ms;
}
.p-hero-scripture .scripture {
  font-family: var(--font-scripture);
  font-style: italic;
  font-weight: 400;
  font-size: 19px;
  color: #fff;
}
.p-hero-ref {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.62);
  text-transform: uppercase;
}

.p-hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  flex-wrap: wrap;
  transition-delay: 680ms;
}
.p-watch-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: gap 300ms var(--ease-out), opacity 300ms var(--ease-out);
}
.p-watch-link:hover { gap: 16px; opacity: 0.78; }
.p-watch-icon {
  width: 38px; height: 38px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: var(--radius-full);
  display: inline-flex; align-items: center; justify-content: center;
  padding-left: 3px;
}

.p-hero-foot {
  position: relative;
  z-index: 1;
  padding-bottom: var(--space-6);
}
.p-hero-foot-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-6);
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: var(--space-5);
  flex-wrap: wrap;
}
.p-hero-marquee {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.76);
  font-feature-settings: "tnum";
  flex-wrap: wrap;
}
.p-hero-marquee span:nth-child(even) { color: rgba(255,255,255,0.32); }
.p-hero-scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: pHeroPulse 2.4s ease-in-out infinite;
}
@keyframes pHeroPulse { 0%,100% { opacity: 0.78; } 50% { opacity: 1; } }

/* ============================================================
   IMPACT
   ============================================================ */
.p-impact {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
  border-bottom: 1px solid var(--p-line);
}
.p-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}
.p-stat { display: flex; flex-direction: column; }
.p-stat-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: var(--p-fs-stat);
  line-height: 0.9;
  color: var(--color-teal-deep);
  letter-spacing: -4px;
  font-variant-numeric: tabular-nums;
  margin-bottom: var(--space-4);
}
.p-stat-rule {
  width: 32px; height: 2px;
  background: var(--color-orange);
  margin-bottom: var(--space-3);
}
.p-stat-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  margin-bottom: var(--space-3);
}
.p-stat-note {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-2);
  margin: 0;
}

/* ============================================================
   MISSION
   ============================================================ */
.p-mission {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
}
.p-mission-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.p-mission-media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.p-mission-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 2px;
}
.p-mission-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-mission-photo-1 {
  inset: 0 18% 18% 0;
}
.p-mission-photo-2 {
  inset: 30% 0 0 30%;
  border: 8px solid var(--p-paper);
}
.p-mission-tag {
  position: absolute;
  top: 18%;
  right: 4%;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: var(--color-orange);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transform: rotate(-8deg);
  z-index: 2;
  font-family: var(--font-body);
}
.p-mission-tag-num {
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}
.p-mission-tag-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.2;
}

.p-mission-text h2 {
  font-size: var(--p-fs-section);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--color-teal-deep);
  margin: 0 0 var(--space-6);
}
.p-mission-lead {
  font-size: 19px;
  line-height: 1.55;
  color: var(--color-teal-deep);
  font-weight: 500;
  margin: 0 0 var(--space-5);
}
.p-mission-text p { color: var(--color-text-2); font-size: 16px; line-height: 1.7; }
.p-mission-cta { display: flex; flex-wrap: wrap; gap: var(--space-7); margin-top: var(--space-6); }

/* ============================================================
   ACTIVITIES
   ============================================================ */
.p-activities {
  background: #fff;
  padding: var(--p-section-y) 0;
}
.p-activity-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: var(--space-5);
  min-height: 640px;
}
.p-activity-feature {
  grid-row: 1 / 3;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  background: var(--color-teal-deep);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 560px;
}
.p-activity-feature-photo {
  position: absolute; inset: 0; z-index: 0;
}
.p-activity-feature-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 800ms var(--ease-out);
}
.p-activity-feature:hover .p-activity-feature-photo img { transform: scale(1.04); }
.p-activity-feature::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,74,86,0) 30%, rgba(8,74,86,0.92) 100%);
  z-index: 1;
}
.p-activity-feature-body {
  position: relative;
  z-index: 2;
  padding: var(--space-7);
  max-width: 520px;
}
.p-activity-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}
.p-activity-feature h3 {
  font-size: var(--p-fs-feature);
  font-weight: 800;
  letter-spacing: -1px;
  color: #fff;
  margin: 0 0 var(--space-3);
}
.p-activity-feature p {
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 var(--space-5);
}

.p-activity-small {
  background: var(--color-teal-tint);
  padding: var(--space-7);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  transition: background 400ms var(--ease-out);
}
.p-activity-small:hover { background: #DCE6E8; }
.p-activity-icon {
  width: 48px; height: 48px;
  color: var(--color-teal-deep);
  margin-bottom: var(--space-5);
}
.p-activity-small h3 {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.8px;
  color: var(--color-teal-deep);
  margin: 0 0 var(--space-3);
}
.p-activity-small p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-2);
  margin: 0 0 var(--space-5);
  flex: 1;
}

/* ============================================================
   DONATE — cinematic
   ============================================================ */
.p-donate {
  position: relative;
  color: #fff;
  padding: var(--p-section-y) 0;
  overflow: hidden;
}
.p-donate-photo { position: absolute; inset: 0; z-index: 0; }
.p-donate-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) brightness(0.7);
}
.p-donate-photo-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(232, 69, 26, 0.7) 0%, rgba(8, 74, 86, 0.86) 60%);
}
.p-donate-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--space-10);
  align-items: end;
}
.p-donate-text h2 {
  font-size: var(--p-fs-section);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.0;
  color: #fff;
  margin: 0 0 var(--space-5);
}
.p-donate-text p { color: rgba(255,255,255,0.9); font-size: 17px; line-height: 1.6; margin: 0 0 var(--space-5); max-width: 560px; }
.p-donate-scripture {
  margin-top: var(--space-6) !important;
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255,255,255,0.22);
}
.p-donate-scripture .scripture {
  font-family: var(--font-scripture);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255,255,255,0.94);
  display: block;
}
.p-donate-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-5);
  padding-bottom: 8px;
}
.p-donate-options {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.p-donate-options a { color: rgba(255,255,255,0.86); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; }
.p-donate-options a:hover { color: #fff; border-color: #fff; }
.p-donate-options span { color: rgba(255,255,255,0.3); }

/* ============================================================
   TESTIMONIES
   ============================================================ */
.p-testimonies {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
}
.p-testimony-stage {
  position: relative;
  background: #fff;
  border-radius: 2px;
  overflow: hidden;
  min-height: 680px;
}
.p-testimony {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 45% 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms var(--ease-out), visibility 0s linear 600ms;
}
.p-testimony.is-active {
  opacity: 1;
  visibility: visible;
  transition: opacity 600ms var(--ease-out), visibility 0s;
}
.p-testimony-photo {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.p-testimony-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.p-testimony-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(8,74,86,0.08) 60%, rgba(8,74,86,0.28) 100%);
}
.p-testimony-body {
  padding: clamp(40px, 5vw, 72px) clamp(32px, 5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.p-testimony-mark {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 120px;
  line-height: 0.5;
  color: var(--color-orange);
  margin: 0 0 24px;
  user-select: none;
}
.p-testimony-quote {
  font-family: var(--font-body);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 500;
  line-height: 1.45;
  color: var(--color-teal-deep);
  letter-spacing: -0.3px;
  margin: 0 0 var(--space-6);
  text-wrap: pretty;
}
.p-testimony-meta { margin-bottom: var(--space-6); }
.p-testimony-name {
  font-size: 17px;
  font-weight: 700;
  color: var(--color-teal-deep);
  margin-bottom: 2px;
}
.p-testimony-place {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text-3);
  font-weight: 500;
}
.p-testimony-verse {
  padding-top: var(--space-5);
  border-top: 1px solid var(--p-line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
}
.p-testimony-verse .scripture {
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 17px;
  color: var(--color-teal-deep);
}
.p-testimony-ref {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-text-3);
  font-weight: 600;
}

.p-testimony-controls {
  position: absolute;
  bottom: clamp(24px, 4vw, 48px);
  right: clamp(40px, 6vw, 80px);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: var(--space-5);
}
.p-testimony-counter {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-teal-deep);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.p-testimony-counter-sep { color: var(--color-orange); margin: 0 4px; }
.p-testimony-counter-total { color: var(--color-text-3); }
.p-testimony-buttons { display: flex; gap: 8px; }
.p-t-btn {
  width: 48px; height: 48px;
  border-radius: var(--radius-full);
  border: 1px solid var(--p-line);
  background: #fff;
  color: var(--color-teal-deep);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 300ms var(--ease-out), color 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.p-t-btn:hover {
  background: var(--color-teal-deep);
  color: #fff;
  border-color: var(--color-teal-deep);
}

.p-testimony-submit {
  margin-top: var(--space-6);
  text-align: center;
  font-size: 14px;
  color: var(--color-text-2);
}
.p-testimony-submit a {
  color: var(--color-orange);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================================
   INSTAGRAM — square grid with IG hover overlay
   ============================================================ */
.p-insta {
  background: #fff;
  padding: var(--p-section-y) 0;
}
.p-insta-link { font-size: 14px; }
.p-insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.p-insta-tile {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
}
.p-insta-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 900ms var(--ease-out), filter 500ms var(--ease-out);
  filter: grayscale(15%);
}
.p-insta-hover {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding: 14px;
  background: linear-gradient(180deg, rgba(8,74,86,0.2) 0%, rgba(8,74,86,0.78) 100%);
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}
.p-insta-icon { color: #fff; transform: translateY(-6px); transition: transform 500ms var(--ease-out); }
.p-insta-stats {
  align-self: stretch;
  display: flex;
  gap: 14px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-variant-numeric: tabular-nums;
  transform: translateY(6px);
  transition: transform 500ms var(--ease-out);
}
.p-insta-stats span { display: inline-flex; align-items: center; gap: 5px; }
.p-insta-stats svg { color: #fff; }

.p-insta-tile:hover > img { transform: scale(1.06); filter: grayscale(0%); }
.p-insta-tile:hover .p-insta-hover { opacity: 1; }
.p-insta-tile:hover .p-insta-icon { transform: none; }
.p-insta-tile:hover .p-insta-stats { transform: none; }

/* ============================================================
   CONTACT — split info + form
   ============================================================ */
.p-contact {
  background: #fff;
  padding: var(--p-section-y) 0;
}
.p-contact-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-2);
  margin: var(--space-4) auto 0;
  max-width: 580px;
}
.p-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 0;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid var(--p-line);
}

/* ---------- LEFT: info column ---------- */
.p-contact-info {
  background: var(--color-teal-deep);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.p-contact-info-inner {
  position: relative;
  z-index: 1;
  padding: clamp(40px, 5vw, 64px);
}
.p-contact-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-orange);
  margin: 0 0 var(--space-6);
}
.p-contact-eyebrow-light { color: var(--color-orange); }

.p-contact-channels {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}
.p-contact-channels li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}
.p-contact-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-orange);
  background: rgba(255, 255, 255, 0.04);
}
.p-contact-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 6px;
}
.p-contact-value {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  line-height: 1.5;
}
.p-contact-value-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  transition: border-color 300ms var(--ease-out), color 300ms var(--ease-out);
}
.p-contact-value-link:hover { color: var(--color-orange); border-color: var(--color-orange); }
.p-contact-sub {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.58);
  text-decoration: none;
}
a.p-contact-sub:hover { color: var(--color-orange); }

.p-contact-socials-row {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  margin-top: var(--space-8);
  padding-top: var(--space-5);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.p-contact-socials-row .p-contact-eyebrow { margin: 0; }
.p-contact-socials { display: flex; gap: 10px; }
.p-contact-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.p-contact-socials a:hover { background: var(--color-orange); border-color: var(--color-orange); }

/* ---------- RIGHT: form column ---------- */
.p-contact-form {
  background: var(--p-paper);
  padding: clamp(40px, 5vw, 64px);
  position: relative;
}
.p-contact-form .p-contact-eyebrow {
  color: var(--color-orange);
  margin-bottom: var(--space-7);
}

.p-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.p-field {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--space-5);
  position: relative;
}
.p-field-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  margin-bottom: 10px;
}
.p-field input,
.p-field select,
.p-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-teal-deep);
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 2px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
  -webkit-appearance: none;
  appearance: none;
}
.p-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.55;
  font-family: var(--font-body);
}
.p-field select {
  cursor: pointer;
  padding-right: 40px;
  background-image: none;
}
.p-field-arrow {
  position: absolute;
  right: 16px;
  bottom: 18px;
  pointer-events: none;
  color: var(--color-teal-deep);
  opacity: 0.6;
}
.p-field input:focus,
.p-field select:focus,
.p-field textarea:focus {
  border-color: var(--color-orange);
  background: #fff;
}
.p-field input::placeholder,
.p-field textarea::placeholder {
  color: rgba(13, 95, 110, 0.4);
}

.p-contact-submit {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  flex-wrap: wrap;
  margin-top: var(--space-3);
}
.p-contact-privacy {
  font-size: 12px;
  color: var(--color-text-3);
  margin: 0;
  flex: 1;
  min-width: 220px;
}
.p-contact-privacy a {
  color: var(--color-teal-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-contact-thanks {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-5);
  padding: var(--space-4) var(--space-5);
  background: var(--color-teal-tint);
  border-left: 3px solid var(--color-teal-deep);
  border-radius: 2px;
  animation: pThanksIn 400ms var(--ease-out);
}
@keyframes pThanksIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}
.p-contact-thanks-check {
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-teal-deep);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p-contact-thanks strong {
  display: block;
  color: var(--color-teal-deep);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 2px;
}
.p-contact-thanks span {
  font-size: 13px;
  color: var(--color-text-2);
}

@media (max-width: 900px) {
  .p-contact-grid { grid-template-columns: 1fr; }
  .p-contact-row { grid-template-columns: 1fr; }
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.p-newsletter {
  background: #fff;
  padding: 0 0 var(--p-section-y);
}
.p-newsletter-card {
  background: var(--color-teal-deep);
  color: #fff;
  border-radius: 2px;
  padding: clamp(48px, 7vw, 96px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.p-newsletter-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--color-orange);
  margin: 0 0 var(--space-4);
}
.p-newsletter-text h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 var(--space-3);
  text-wrap: balance;
}
.p-newsletter-sub { color: rgba(255,255,255,0.7); margin: 0; font-size: 15px; }

.p-newsletter-form { position: relative; z-index: 1; }
.p-newsletter-input {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: var(--radius-full);
  padding: 6px 6px 6px 22px;
  gap: 12px;
}
.p-newsletter-input input {
  flex: 1;
  border: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  color: var(--color-text);
  min-width: 0;
}
.p-newsletter-input .p-btn {
  flex: 0 0 auto;
}
.p-nl-thanks {
  margin: var(--space-4) 0 0;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.p-nl-disclaimer {
  margin: var(--space-4) 0 0;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.p-footer {
  background: var(--color-teal-deep);
  color: rgba(255,255,255,0.74);
  font-size: 14px;
}
.p-footer-quote {
  padding: var(--space-9) 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.p-footer-scripture {
  max-width: 880px;
  margin: 0;
  font-family: var(--font-scripture);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.4;
  color: #fff;
  letter-spacing: -0.3px;
}
.p-footer-scripture .scripture { display: block; margin-bottom: var(--space-4); }
.p-footer-ref {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--color-orange);
  text-transform: uppercase;
}

.p-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--space-7);
  padding: var(--space-9) 0 var(--space-7);
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.p-footer-brand p { max-width: 320px; margin: var(--space-4) 0 var(--space-5); color: rgba(255,255,255,0.66); line-height: 1.6; }
.p-footer-est { font-size: 11px !important; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 0 !important; margin-bottom: var(--space-5) !important; color: rgba(255,255,255,0.35) !important; }
.p-footer-logo { height: 64px; width: auto; display: block; }
.p-footer-socials { display: flex; gap: var(--space-3); }
.p-footer-socials a {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: background 300ms var(--ease-out), border-color 300ms var(--ease-out);
}
.p-footer-socials a:hover { background: var(--color-orange); border-color: var(--color-orange); }

.p-footer-col h4 {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 var(--space-5);
}
.p-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: var(--space-3); }
.p-footer-col a { color: rgba(255,255,255,0.74); text-decoration: none; }
.p-footer-col a:hover { color: var(--color-orange); }
.p-footer-col address { font-style: normal; color: rgba(255,255,255,0.7); line-height: 1.8; font-size: 14px; }
.p-footer-col address a { color: rgba(255,255,255,0.74); text-decoration: none; }
.p-footer-col address a:hover { color: var(--color-orange); }

.p-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}
.p-footer-bar p { margin: 0; color: inherit; }
.p-footer-bar ul { display: flex; gap: var(--space-5); list-style: none; margin: 0; padding: 0; }
.p-footer-bar a { color: rgba(255,255,255,0.5); text-decoration: none; }
.p-footer-bar a:hover { color: #fff; }

/* ============================================================
   TEAM — circular ring carousel
   ============================================================ */
.p-team {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
  overflow: hidden;
}

/* Centered section head variant */
.p-section-head-center {
  margin: 0 auto var(--space-9);
  text-align: center;
  max-width: 720px;
}
.p-section-head-center h2 { margin-left: auto; margin-right: auto; }
.p-numbered-center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.p-numbered-center .p-num-rule { width: 36px; }

.p-team-intro {
  font-size: 17px;
  line-height: 1.6;
  color: var(--color-text-2);
  margin: var(--space-4) auto 0;
  max-width: 540px;
}

/* ---------- Carousel ---------- */
.p-team-carousel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 var(--space-8);
  height: 360px;
}

.p-team-stage {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 1200px;
}

.p-team-slot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  margin: -110px 0 0 -110px;   /* center */
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    transform 800ms var(--ease-out),
    opacity 800ms var(--ease-out),
    filter 800ms var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform, opacity;
}

/* Position-based transforms (pos 2 = center / active) */
.p-team-slot[data-pos="0"] { transform: translateX(-440px) scale(0.45); opacity: 0.32; filter: grayscale(0.55) brightness(0.92); z-index: 1; }
.p-team-slot[data-pos="1"] { transform: translateX(-250px) scale(0.7);  opacity: 0.62; filter: grayscale(0.3)  brightness(0.96); z-index: 2; }
.p-team-slot[data-pos="2"] { transform: translateX(0)      scale(1);    opacity: 1;    filter: none;                              z-index: 3; }
.p-team-slot[data-pos="3"] { transform: translateX(250px)  scale(0.7);  opacity: 0.62; filter: grayscale(0.3)  brightness(0.96); z-index: 2; }
.p-team-slot[data-pos="4"] { transform: translateX(440px)  scale(0.45); opacity: 0.32; filter: grayscale(0.55) brightness(0.92); z-index: 1; }

.p-team-slot:hover { filter: none; }
.p-team-slot:focus-visible { outline: 2px solid var(--color-orange); outline-offset: 6px; border-radius: 50%; }

/* Circular portrait */
.p-team-portrait {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--color-teal-tint);
  transition: box-shadow 600ms var(--ease-out);
}
.p-team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Animated conic-gradient ring around the active portrait */
.p-team-ring {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 500ms var(--ease-out) 200ms;
}
.p-team-slot[data-pos="2"] .p-team-ring { opacity: 1; }

.p-team-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(
    from 0deg,
    var(--color-orange) 0deg,
    rgba(232, 69, 26, 0.35) 90deg,
    transparent 180deg,
    rgba(232, 69, 26, 0.55) 270deg,
    var(--color-orange) 360deg
  );
  -webkit-mask: radial-gradient(circle, transparent 49%, black 50%, black 51%, transparent 52%);
          mask: radial-gradient(circle, transparent 49%, black 50%, black 51%, transparent 52%);
  animation: pRingSpin 7s linear infinite;
}

/* Orbiting dot on the active ring */
.p-team-ring::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: 10px;
  height: 10px;
  margin-left: -5px;
  background: var(--color-orange);
  border-radius: 50%;
  transform-origin: 5px 130px;  /* approx half ring height + half dot */
  animation: pRingOrbit 7s linear infinite;
  box-shadow: 0 0 14px rgba(232, 69, 26, 0.6);
}

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

/* Static teal ring on non-active portraits (subtle outline) */
.p-team-slot:not([data-pos="2"]) .p-team-portrait {
  box-shadow: 0 0 0 1px var(--p-line);
}

/* Nav buttons */
.p-team-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--p-line);
  color: var(--color-teal-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transform: translateY(-50%);
  transition: background 300ms var(--ease-out),
              color 300ms var(--ease-out),
              border-color 300ms var(--ease-out),
              transform 300ms var(--ease-out);
}
.p-team-nav:hover {
  background: var(--color-teal-deep);
  color: #fff;
  border-color: var(--color-teal-deep);
}
.p-team-nav-prev { left: 0; }
.p-team-nav-next { right: 0; }

/* ---------- Detail panel ---------- */
.p-team-detail {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  transition: opacity 320ms var(--ease-out), transform 320ms var(--ease-out);
}
.p-team-detail.is-leaving {
  opacity: 0;
  transform: translateY(8px);
}

.p-team-detail-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-orange);
  margin-bottom: var(--space-3);
}
.p-team-detail h3 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--color-teal-deep);
  margin: 0 0 6px;
  line-height: 1.1;
}
.p-team-detail-role {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-teal-deep);
  opacity: 0.7;
  margin-bottom: var(--space-5);
}
.p-team-detail-bio {
  color: var(--color-text-2);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 auto var(--space-5);
  max-width: 540px;
}
.p-team-detail-quote {
  margin: 0 auto var(--space-6);
  max-width: 540px;
  font-family: var(--font-scripture);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--color-teal-deep);
}
.p-team-detail-socials {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.p-team-detail-socials a {
  width: 38px; height: 38px;
  border: 1px solid var(--p-line);
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--color-teal-deep);
  text-decoration: none;
  transition: background 300ms var(--ease-out),
              color 300ms var(--ease-out),
              border-color 300ms var(--ease-out);
}
.p-team-detail-socials a:hover {
  background: var(--color-orange);
  color: #fff;
  border-color: var(--color-orange);
}

/* Dot indicators */
.p-team-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: var(--space-7);
}
.p-team-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--p-line);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 300ms var(--ease-out), width 300ms var(--ease-out), border-radius 300ms var(--ease-out);
}
.p-team-dot.is-active {
  background: var(--color-orange);
  width: 26px;
  border-radius: 4px;
}

.p-team-foot {
  margin-top: var(--space-8);
  text-align: center;
}

@media (max-width: 900px) {
  .p-team-carousel { height: 300px; }
  .p-team-slot { width: 180px; height: 180px; margin: -90px 0 0 -90px; }
  .p-team-slot[data-pos="0"] { transform: translateX(-340px) scale(0.38); }
  .p-team-slot[data-pos="1"] { transform: translateX(-190px) scale(0.65); }
  .p-team-slot[data-pos="3"] { transform: translateX(190px)  scale(0.65); }
  .p-team-slot[data-pos="4"] { transform: translateX(340px)  scale(0.38); }
  .p-team-ring::after { transform-origin: 5px 105px; }
}

@media (max-width: 560px) {
  .p-team-carousel { height: 240px; }
  .p-team-slot { width: 140px; height: 140px; margin: -70px 0 0 -70px; }
  .p-team-slot[data-pos="0"],
  .p-team-slot[data-pos="4"] { display: none; }
  .p-team-slot[data-pos="1"] { transform: translateX(-130px) scale(0.6); }
  .p-team-slot[data-pos="3"] { transform: translateX(130px)  scale(0.6); }
  .p-team-ring::after { transform-origin: 5px 85px; }
  .p-team-nav-prev { left: -8px; }
  .p-team-nav-next { right: -8px; }
}

@media (prefers-reduced-motion: reduce) {
  .p-team-ring::before,
  .p-team-ring::after { animation: none; }
}

/* ============================================================
   SCHOOLS — feature section
   ============================================================ */
.p-schools {
  background: var(--color-teal-tint);
  padding: var(--p-section-y) 0;
}
.p-schools-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: var(--space-10);
  align-items: center;
}
.p-schools-media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.p-schools-photo {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 2px;
}
.p-schools-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.p-schools-stat {
  position: absolute;
  bottom: -32px;
  left: -32px;
  background: var(--color-orange);
  color: #fff;
  padding: var(--space-6) var(--space-6) var(--space-5);
  min-width: 220px;
  border-radius: 2px;
  z-index: 2;
}
.p-schools-stat-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 56px;
  line-height: 0.95;
  letter-spacing: -2px;
}
.p-schools-stat-rule {
  width: 28px; height: 2px;
  background: rgba(255, 255, 255, 0.7);
  margin: var(--space-3) 0;
}
.p-schools-stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.p-schools-stat-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 4px;
  line-height: 1.4;
}
.p-schools-text h2 {
  font-size: var(--p-fs-section);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--color-teal-deep);
  margin: 0 0 var(--space-6);
}
.p-schools-list {
  list-style: none;
  margin: var(--space-5) 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3) var(--space-5);
}
.p-schools-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.45;
}
.p-tick {
  display: inline-block;
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--color-orange);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><polyline points='20 6 9 17 4 12' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/contain no-repeat;
}

/* ============================================================
   EVENTS
   ============================================================ */
.p-events {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
}
.p-events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.p-event-card {
  background: #fff;
  border: 1px solid var(--p-line);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 300ms var(--ease-out);
}
.p-event-card:hover { border-color: var(--color-teal-deep); }
.p-event-card a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.p-event-photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.p-event-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 600ms var(--ease-out);
}
.p-event-card:hover .p-event-photo img { transform: scale(1.04); }
.p-event-photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(8,74,86,0) 50%, rgba(8,74,86,0.5) 100%);
  transition: background 400ms var(--ease-out);
}
.p-event-card:hover .p-event-photo-overlay {
  background: linear-gradient(180deg, rgba(8,74,86,0.2) 0%, rgba(8,74,86,0.78) 100%);
}
.p-event-view {
  position: absolute;
  left: var(--space-4);
  bottom: var(--space-4);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(8, 74, 86, 0.72);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 400ms var(--ease-out), transform 500ms var(--ease-out);
}
.p-event-view .p-arrow { transition: transform 300ms var(--ease-out); }
.p-event-card:hover .p-event-view { opacity: 1; transform: none; }
.p-event-card:hover .p-event-view .p-arrow { transform: translateX(3px); }
.p-event-tag {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--color-teal-deep);
  background: rgba(255, 255, 255, 0.94);
  padding: 6px 12px;
  border-radius: var(--radius-full);
}
.p-event-tag-upcoming { background: var(--color-orange); color: #fff; }

.p-event-body {
  padding: var(--space-6);
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
  flex: 1;
}
.p-event-date {
  flex-shrink: 0;
  text-align: center;
  border-right: 1px solid var(--p-line);
  padding-right: var(--space-5);
  min-width: 64px;
}
.p-event-day {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--color-orange);
  letter-spacing: -1.5px;
  margin-bottom: 4px;
}
.p-event-mo {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--color-teal-deep);
  line-height: 1.2;
}
.p-event-meta { flex: 1; min-width: 0; }
.p-event-meta h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--color-teal-deep);
  margin: 0 0 8px;
  line-height: 1.2;
  text-wrap: balance;
}
.p-event-loc {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--color-text-2);
}
.p-event-loc svg { color: var(--color-orange); }

.p-events-foot {
  margin-top: var(--space-8);
  text-align: center;
}

/* ============================================================
   GALLERY — asymmetric grid with caption overlays
   ============================================================ */
.p-gallery {
  background: #fff;
  padding: var(--p-section-y) 0;
}
.p-gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 220px;
  gap: 6px;
}
.p-gallery-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 2px;
  text-decoration: none;
  color: #fff;
}
.p-gallery-tile > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1100ms var(--ease-out), filter 600ms var(--ease-out);
  filter: brightness(0.96);
}

/* Hover overlay — bottom gradient + caption + CTA */
.p-gallery-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-5) var(--space-6);
  background: linear-gradient(180deg, rgba(8,74,86,0) 35%, rgba(8,74,86,0.92) 100%);
  opacity: 0;
  transition: opacity 500ms var(--ease-out);
}
.p-gallery-cap {
  transform: translateY(14px);
  transition: transform 600ms var(--ease-out);
}
.p-gallery-cap-tag {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: var(--color-orange);
  margin-bottom: 6px;
}
.p-gallery-cap-title {
  display: block;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.3px;
  line-height: 1.2;
  color: #fff;
  text-wrap: balance;
}
.p-gallery-cap-cta {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: rgba(8, 74, 86, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 600ms var(--ease-out), transform 600ms var(--ease-out);
}
.p-gallery-cap-cta .p-arrow {
  transition: transform 300ms var(--ease-out);
}

.p-gallery-tile:hover > img {
  transform: scale(1.08);
  filter: brightness(0.78);
}
.p-gallery-tile:hover .p-gallery-overlay { opacity: 1; }
.p-gallery-tile:hover .p-gallery-cap { transform: none; }
.p-gallery-tile:hover .p-gallery-cap-cta { opacity: 1; transform: none; }
.p-gallery-tile:hover .p-gallery-cap-cta .p-arrow { transform: translateX(3px); }

.p-tile-a { grid-column: span 7; grid-row: span 2; }
.p-tile-b { grid-column: span 5; grid-row: span 1; }
.p-tile-c { grid-column: span 5; grid-row: span 1; }
.p-tile-d { grid-column: span 4; grid-row: span 1; }
.p-tile-e { grid-column: span 4; grid-row: span 1; }
.p-tile-f { grid-column: span 4; grid-row: span 1; }

/* ============================================================
   VOLUNTEER
   ============================================================ */
.p-volunteer {
  background: var(--p-paper);
  padding: var(--p-section-y) 0;
}
.p-volunteer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: var(--space-10);
  align-items: center;
}
.p-volunteer-text h2 {
  font-size: var(--p-fs-section);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.05;
  color: var(--color-teal-deep);
  margin: 0 0 var(--space-6);
}
.p-volunteer-roles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-4);
  margin: var(--space-7) 0;
}
.p-role {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border: 1px solid var(--p-line);
  border-radius: 2px;
  background: #fff;
  transition: border-color 300ms var(--ease-out), background 300ms var(--ease-out);
}
.p-role:hover { border-color: var(--color-teal-deep); }
.p-role-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: var(--color-teal-tint);
  color: var(--color-teal-deep);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
}
.p-role-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-teal-deep);
  margin-bottom: 2px;
  line-height: 1.2;
}
.p-role-note {
  font-size: 12px;
  color: var(--color-text-2);
  line-height: 1.3;
}
.p-volunteer-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-5);
}
.p-volunteer-note {
  font-size: 13px;
  color: var(--color-text-2);
}

.p-volunteer-media {
  position: relative;
  aspect-ratio: 4 / 5;
}
.p-volunteer-media > img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}
.p-volunteer-tag {
  position: absolute;
  top: var(--space-7);
  right: -32px;
  background: var(--color-teal-deep);
  color: #fff;
  padding: var(--space-5) var(--space-6);
  min-width: 200px;
  border-radius: 2px;
  z-index: 2;
}
.p-volunteer-tag-num {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 6px;
}
.p-volunteer-tag-num span {
  font-size: 0.55em;
  vertical-align: top;
  color: var(--color-orange);
  margin-left: 2px;
}
.p-volunteer-tag-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 1100px) {
  .p-schools-grid,
  .p-volunteer-grid { grid-template-columns: 1fr; gap: var(--space-9); }
  .p-schools-media,
  .p-volunteer-media { max-width: 560px; }
  .p-schools-media { margin-bottom: 48px; }
  .p-schools-list { grid-template-columns: 1fr; }
  .p-events-grid { grid-template-columns: 1fr; }
  .p-volunteer-roles { grid-template-columns: 1fr; }

  .p-gallery-grid {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 180px;
  }
  .p-tile-a { grid-column: span 6; grid-row: span 2; }
  .p-tile-b, .p-tile-c { grid-column: span 3; grid-row: span 1; }
  .p-tile-d, .p-tile-e, .p-tile-f { grid-column: span 2; grid-row: span 1; }
}

@media (max-width: 760px) {
  .p-schools-stat { left: 0; bottom: -24px; min-width: 0; padding: var(--space-5); }
  .p-schools-stat-num { font-size: 44px; }
  .p-volunteer-tag { right: 0; top: var(--space-5); min-width: 0; padding: var(--space-4); }
  .p-volunteer-tag-num { font-size: 36px; }
  .p-event-body { gap: var(--space-4); padding: var(--space-5); }
  .p-event-day { font-size: 28px; }

  .p-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
  }
  .p-tile-a { grid-column: span 4; grid-row: span 2; }
  .p-tile-b, .p-tile-c { grid-column: span 4; grid-row: span 1; }
  .p-tile-d, .p-tile-e, .p-tile-f { grid-column: span 4; grid-row: span 1; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .p-stats { grid-template-columns: repeat(2, 1fr); gap: var(--space-7); }
  .p-section-head-row { grid-template-columns: 1fr; gap: var(--space-5); align-items: start; }
  .p-section-head-lead { padding-bottom: 0; }
  .p-mission-grid { grid-template-columns: 1fr; gap: var(--space-9); }
  .p-mission-media { max-width: 560px; }
  .p-activity-grid { grid-template-columns: 1fr; grid-template-rows: auto; min-height: auto; }
  .p-activity-feature { grid-row: auto; min-height: 480px; }
  .p-donate-inner { grid-template-columns: 1fr; gap: var(--space-7); }
  .p-footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
  .p-newsletter-card { grid-template-columns: 1fr; gap: var(--space-6); }
  .p-testimony { grid-template-columns: 1fr; }
  .p-testimony-photo { height: 400px; min-height: unset; max-height: unset; flex-shrink: 0; }
}

@media (max-width: 760px) {
  .p-nav { display: none; }
  .p-header-cta .p-btn { display: none; }
  .p-menu-toggle { display: inline-flex; }
  .p-hero { padding-top: 140px; }
  .p-hero-foot-row { flex-direction: column; align-items: flex-start; gap: var(--space-4); }
  .p-footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .p-footer-bar { flex-direction: column; align-items: flex-start; }
  .p-mission-tag { width: 100px; height: 100px; }
  .p-mission-tag-num { font-size: 32px; }
  .p-testimony-stage { min-height: 820px; }
  .p-testimony-controls { right: 24px; bottom: 24px; }
}

@media (max-width: 480px) {
  /* Tighter vertical rhythm on small phones */
  :root {
    --p-section-y: clamp(64px, 14vw, 96px);
    --p-gutter: 20px;
  }

  /* Stats: single column at 480px (was 360px) */
  .p-stats { grid-template-columns: 1fr; }

  /* Hero buttons: stack full-width */
  .p-hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-4);
  }
  .p-hero-actions .p-btn { justify-content: center; }
  .p-hero-actions .p-watch-link { justify-content: center; }

  /* Gallery: 2-column on small phones */
  .p-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }
  .p-tile-a { grid-column: span 2; grid-row: span 2; }
  .p-tile-b, .p-tile-c,
  .p-tile-d, .p-tile-e, .p-tile-f { grid-column: span 2; grid-row: span 1; }

  /* Newsletter card: tighter padding on small screens */
  .p-newsletter-card { padding: var(--space-8) var(--space-5); }

  /* Event body: hide date column to save space */
  .p-event-date { display: none; }

  /* Testimony: full height auto on tiny screens */
  .p-testimony-stage { min-height: auto; }
  .p-testimony-photo { height: 260px; }

  /* Schools stat: span full image width */
  .p-schools-stat { left: 0; right: 0; min-width: 0; }

  /* Volunteer tag: compact */
  .p-volunteer-tag { right: 0; top: var(--space-4); }
}

@media (max-width: 360px) {
  /* already covered by 480px block above — kept for safety */
}

/* ============================================================
   SECTION STAGGER — nth-child transition delays
   Elements need .reveal class in HTML to use these.
   ============================================================ */

/* Stats: 4 cards cascade left-to-right */
.p-stat:nth-child(1) { transition-delay: 0ms; }
.p-stat:nth-child(2) { transition-delay: 100ms; }
.p-stat:nth-child(3) { transition-delay: 200ms; }
.p-stat:nth-child(4) { transition-delay: 300ms; }

/* Activities */
.p-activity-feature { transition-delay: 0ms; }
.p-activity-small:nth-of-type(2) { transition-delay: 130ms; }
.p-activity-small:nth-of-type(3) { transition-delay: 260ms; }

/* Volunteer roles */
.p-role:nth-child(1) { transition-delay: 0ms; }
.p-role:nth-child(2) { transition-delay: 80ms; }
.p-role:nth-child(3) { transition-delay: 160ms; }
.p-role:nth-child(4) { transition-delay: 240ms; }
.p-role:nth-child(5) { transition-delay: 320ms; }
.p-role:nth-child(6) { transition-delay: 400ms; }

/* Schools list */
.p-schools-list li:nth-child(1) { transition-delay: 0ms; }
.p-schools-list li:nth-child(2) { transition-delay: 80ms; }
.p-schools-list li:nth-child(3) { transition-delay: 160ms; }
.p-schools-list li:nth-child(4) { transition-delay: 240ms; }

/* Event cards (supplements the JS stagger) */
.p-events-grid .p-event-card:nth-child(1) { transition-delay: 0ms; }
.p-events-grid .p-event-card:nth-child(2) { transition-delay: 110ms; }
.p-events-grid .p-event-card:nth-child(3) { transition-delay: 220ms; }

/* ============================================================
   TESTIMONY — body content slides up on slide change
   ============================================================ */
.p-testimony.is-active .p-testimony-body {
  animation: pFadeUp 580ms cubic-bezier(0.22, 1, 0.36, 1) 180ms both;
}

/* ============================================================
   ORANGE RULE — scaleX reveal when section enters viewport
   ============================================================ */
.p-num-rule {
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-in .p-num-rule,
.p-numbered.is-in .p-num-rule {
  transform: scaleX(1);
}

/* ---------- Accessibility ---------- */
.p-btn:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 3px;
}
.p-link-arrow:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal-img::before { display: none; }
  .reveal-img > img,
  .reveal-img > a > .p-event-photo > img,
  .reveal-img > .p-event-photo > img {
    transform: none;
    transition: none;
  }
  .p-hero-meta,
  .p-hero-foot { animation: none; opacity: 1; }
  .p-testimony.is-active .p-testimony-body { animation: none; }
  .p-num-rule { transform: scaleX(1); transition: none; }
  .p-mobile-menu { transition: none; }
  .p-stat, .p-role, .p-schools-list li, .p-activity-feature, .p-activity-small {
    transition-delay: 0ms !important;
  }
}
