/* ══════════════════════════════════════════════════════════════
   PILLAI TRUST — VISUAL ENHANCEMENTS
   Boxy depth buttons  ·  Scroll-progress bar  ·  Active nav
   Safe to edit — does not touch Elementor's generated CSS.
══════════════════════════════════════════════════════════════ */

/* ── 0. FONTS — self-hosted fallback via Google Fonts CDN ───── */
@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@400;500;600;700&family=Nunito:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Nunito+Sans:ital,opsz,wght@0,6..12,400;0,6..12,600;0,6..12,700;0,6..12,800;1,6..12,400&display=swap');


/* ── 1. SCROLL PROGRESS BAR ────────────────────────────────── */
#pt-progress {
  position: fixed;
  top: 0; left: 0;
  z-index: 999999;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #C96A10 0%, #E07B20 40%, #FFB74D 100%);
  box-shadow: 0 0 10px rgba(224,123,32,.8);
  pointer-events: none;
  transition: width 60ms linear;
}


/* ── 2. NAV — ACTIVE SECTION INDICATOR ────────────────────── */

/* Underline animation base */
.elementor-nav-menu .elementor-item {
  position: relative;
  transition: color .2s ease;
}
.elementor-nav-menu .elementor-item::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%;
  width: 0; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width .25s ease;
}

/* Active state — white underline, keep text white so it stays readable on orange bar */
.elementor-nav-menu .elementor-item.pt-active,
.elementor-nav-menu .elementor-item.pt-active:hover,
.elementor-nav-menu .elementor-item.elementor-item-active,
.elementor-nav-menu .elementor-item.elementor-item-active:hover {
  color: #ffffff !important;
  font-weight: 700 !important;
}
.elementor-nav-menu .elementor-item.pt-active::after,
.elementor-nav-menu .elementor-item.elementor-item-active::after {
  width: 80%;
}

/* Hover state (non-active) */
.elementor-nav-menu .elementor-item:hover::after {
  width: 60%;
}


/* ── 3. BOXY DEPTH BUTTONS ─────────────────────────────────── */
/*
  Strategy
  ─────────
  Every Elementor button gets:
    • Square-ish corners  (border-radius: 5px)
    • Warm gradient fill  (light → dark orange top-to-bottom)
    • Hard offset shadow  (4px/4px solid dark-orange) → the "depth"
    • Soft ambient glow   (rgba spread underneath)
    • Uppercase small-caps label for authority
  On hover  → translate(2px 2px) + shadow shrinks  (button "sinks")
  On active → translate(4px 4px) + shadow collapses (fully pressed)
*/

/* ─ Filled buttons (primary CTA) ─ */
.elementor-button,
a.elementor-button {
  border-radius: 5px !important;
  background: linear-gradient(175deg, #F5903A 0%, #C96A10 100%) !important;
  color: #fff !important;
  border: 2px solid #9A4E08 !important;
  box-shadow:
    4px 4px 0 #6B2F00,
    0  4px 18px rgba(224,123,32,.35) !important;
  font-weight: 700 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
  font-size: .76rem !important;
  padding: 12px 26px !important;
  transition:
    transform  100ms ease,
    box-shadow 100ms ease,
    background 200ms ease !important;
  will-change: transform;
}

.elementor-button:hover,
a.elementor-button:hover {
  background: linear-gradient(175deg, #FF9A40 0%, #E07B20 100%) !important;
  transform: translate(2px, 2px) !important;
  box-shadow:
    2px 2px 0 #6B2F00,
    0  6px 22px rgba(224,123,32,.45) !important;
  color: #fff !important;
}

.elementor-button:active,
a.elementor-button:active {
  transform: translate(4px, 4px) !important;
  box-shadow:
    0 0 0 #6B2F00,
    0 2px 8px rgba(224,123,32,.2) !important;
}

/* ─ Sticky bottom-bar "Donate Now" ─ */
.ast-above-header-sticky .elementor-button,
.ast-above-header-sticky a.elementor-button {
  border-radius: 5px !important;
}

/* ─ Nav "Donate Now" (header top-right) ─ */
.elementor-nav-menu ~ * .elementor-button,
header .elementor-button {
  box-shadow:
    3px 3px 0 #6B2F00,
    0 2px 10px rgba(224,123,32,.3) !important;
}

/* ─ Footer CTA button ─ */
footer .elementor-button,
footer a.elementor-button {
  box-shadow:
    4px 4px 0 #3D1A00,
    0 4px 16px rgba(0,0,0,.35) !important;
  border-color: #7A3E00 !important;
}
footer .elementor-button:hover,
footer a.elementor-button:hover {
  transform: translate(2px, 2px) !important;
  box-shadow:
    2px 2px 0 #3D1A00,
    0 6px 20px rgba(0,0,0,.4) !important;
}


/* ── 4. TOP ORANGE NAV BAR — FULL WIDTH & CENTRED ──────────── */
/* The nav widget (98ee743) sits inside a 1242px parent but is
   only 1056px — this stretches it edge-to-edge and centres links. */
[data-id="98ee743"] {
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 1 auto !important;
}
[data-id="98ee743"] .elementor-widget-container {
  width: 100% !important;
}
/* Push nav links to the RIGHT side of the orange bar */
.elementor-nav-menu--main .elementor-nav-menu {
  justify-content: flex-end !important;
  margin-left: auto !important;
  width: auto !important;
}
.elementor-nav-menu--main.elementor-nav-menu__container {
  justify-content: flex-end !important;
}

/* ── Donate CTAs (injected by renderer.js) ─────────────────────────────────── */
/* Brand-fill modifier — pairs with the site's interactive button classes
   (.elementor-button .elementor-animation-shrink) so every CTA matches the
   "Our Mission" / "Explore Our Programs" buttons. */
a.pt-cta { background-color: #C96A10 !important; color: #fff !important; border: 0 !important; }
a.pt-cta:hover { background-color: #A8560B !important; color: #fff !important; }
a.pt-cta .elementor-button-icon svg { fill: currentColor; }
/* Light variant — white button, orange text, red heart (nav bar).
   Strong border + shadow so it stays framed even where it overhangs the
   orange bar onto the cream header background. */
a.pt-cta--light { background-image: none !important; background-color: #fff !important; color: #C96A10 !important; border: 2px solid #C96A10 !important; box-shadow: 0 4px 14px rgba(0,0,0,.28); }
a.pt-cta--light:hover { background-image: none !important; background-color: #C96A10 !important; color: #fff !important; }
a.pt-cta--light .elementor-button-icon svg { fill: #e23b3b !important; }
a.pt-cta--light:hover .elementor-button-icon svg { fill: #fff !important; }

.pt-donate-nav-li { display: flex; align-items: center; margin-left: 26px; margin-right: 22px; }

/* Bottom CTA band above the footer */
.pt-donate-band { background: #241712; padding: 76px 24px; text-align: center; position: relative; overflow: hidden; }
.pt-donate-band::before { content: ""; position: absolute; left: 50%; top: -40%; width: 120%; height: 140%; transform: translateX(-50%); background: radial-gradient(ellipse at 50% 40%, rgba(201,106,16,.26), transparent 58%); pointer-events: none; }
.pt-donate-band-inner { position: relative; max-width: 720px; margin: 0 auto; }
.pt-donate-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin: 0 0 12px; color: #fdf6ee; letter-spacing: -.01em; }
.pt-donate-band p { margin: 0 0 28px; color: rgba(243,231,214,.82); line-height: 1.7; }


/* ── 5. MOBILE NAV ──────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Remove the orange bar — make the nav widget container transparent */
  [data-id="98ee743"] > .elementor-widget-container {
    background-color: transparent !important;
    border-radius: 0 !important;
  }

  /* Keep the nav widget visible so the hamburger toggle shows.
     Elementor already hides the desktop link list at ≤1024px. */
  [data-id="98ee743"] {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    padding: 4px 12px !important;
  }

  /* Style the hamburger button — orange button so it's visible on white header */
  [data-id="98ee743"] div.elementor-menu-toggle {
    display: flex !important;
    background: #C96A10 !important;
    border-radius: 6px !important;
    padding: 7px 9px !important;
  }
  [data-id="98ee743"] div.elementor-menu-toggle svg {
    fill: #fff !important;
    width: 22px !important; height: 22px !important;
  }

  /* Mobile dropdown panel */
  [data-id="98ee743"] nav.elementor-nav-menu--dropdown {
    position: absolute !important;
    top: 100% !important; left: 0 !important; right: 0 !important;
    background: #C96A10 !important;
    z-index: 9999 !important;
    border-radius: 0 0 10px 10px !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.25) !important;
  }
  [data-id="98ee743"] nav.elementor-nav-menu--dropdown a {
    color: #fff !important;
    padding: 12px 20px !important;
    border-bottom: 1px solid rgba(255,255,255,.12) !important;
    background-color: transparent !important;
  }
  [data-id="98ee743"] nav.elementor-nav-menu--dropdown a:hover {
    background: rgba(255,255,255,.1) !important;
  }
  /* Active item (current page) must not get Elementor's white background */
  [data-id="98ee743"] nav.elementor-nav-menu--dropdown a.elementor-item-active {
    background-color: rgba(255,255,255,.18) !important;
    color: #fff !important;
    font-weight: 800 !important;
  }

  /* Hide floating bottom bar on mobile */
  [data-id="1271d999"] {
    display: none !important;
  }
}


/* ── 6. ACTIVITY CARDS — IMAGE PLACEHOLDER ─────────────────── */
.pt-img-placeholder {
  width: 100%;
  height: 200px;
  background: #f9f9f9;
  border: 2px dashed #ddd;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}
.pt-img-placeholder p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: #bbb;
}
.pt-img-placeholder span {
  font-size: 0.68rem;
  color: #ccc;
}
.pt-img-placeholder strong {
  color: #E07B20;
  font-weight: 600;
}

/* ── Uniform 5-card activity grid ──────────────────────────── */
/* Wrap so cards flow into a 3 + 2 layout */
[data-id="de67453"] {
  flex-wrap: wrap !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  gap: 20px !important;
}

/* All 5 cards — same width as the original 3 */
[data-id="de67453"] > [data-id] {
  flex: 0 0 calc(33.333% - 14px) !important;
  max-width: calc(33.333% - 14px) !important;
  min-width: 260px !important;
}

/* New cards (4 & 5) — match Elementor card style exactly */
[data-id="pt-act-4"],
[data-id="pt-act-5"] {
  background: #fff !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  padding: 20px !important;          /* matches card 1–3: padding: 20px */
  box-shadow: rgba(0,0,0,.5) 0 0 5px !important;  /* matches Elementor's shadow */
  transition: box-shadow .3s, transform .3s !important;
}
[data-id="pt-act-4"]:hover,
[data-id="pt-act-5"]:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.18) !important;
  transform: translateY(-3px) !important;
}

/* Match title exactly: 24px, color #1F1F1F */
[data-id="pt-act-4"] h2.elementor-heading-title,
[data-id="pt-act-5"] h2.elementor-heading-title {
  color: #1F1F1F !important;
  font-size: 24px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  margin: 0 0 10px 0 !important;
}

/* Match description exactly: 18px */
[data-id="pt-act-4"] .elementor-widget-text-editor p,
[data-id="pt-act-5"] .elementor-widget-text-editor p {
  font-size: 18px !important;
  line-height: 1.6 !important;
  margin: 0 !important;
}

@media (max-width: 767px) {
  [data-id="de67453"] > [data-id] {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
}


/* ── 7. HERO — 3-COLUMN LAYOUT ─────────────────────────────── */
/* Typography left · Deity image center · India map right */
[data-id="9a9ff2b"] > .e-con-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 28px !important;
}

/* Typography column (left) */
[data-id="1587ae3"] {
  flex: 1 1 38% !important;
  max-width: 38% !important;
}

/* Scale hero title to fit the narrower column without word-breaking */
[data-id="1587ae3"] h1.elementor-heading-title {
  font-size: clamp(1.8rem, 3.2vw, 3rem) !important;
  line-height: 1.2 !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
}

/* Deity image (center) */
[data-id="pt-deities"] {
  flex: 0 1 30% !important;
  max-width: 30% !important;
  align-self: center !important;
}

/* India map (right) */
[data-id="3081015"] {
  flex: 0 1 30% !important;
  max-width: 30% !important;
}

/* Stack on mobile: text → deities → map */
@media (max-width: 767px) {
  [data-id="9a9ff2b"] > .e-con-inner {
    flex-direction: column !important;
  }
  [data-id="1587ae3"],
  [data-id="pt-deities"],
  [data-id="3081015"] {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
}


/* ── 8. HEADER LOGO SIZE ────────────────────────────────────── */
[data-id="f67b771"] img {
  width: 120px !important;
  height: auto !important;
}


/* ── 9. DYNAMIC CONTENT SECTIONS ───────────────────────────── */

/* Shared section wrapper */
.pt-section {
  padding: 64px 20px;
  background: #fff;
}
.pt-section--dark {
  background: #fdf6ee;
}
.pt-section-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}
.pt-badge {
  display: inline-block;
  font-family: Caveat, cursive;
  font-size: 1.1rem;
  color: #C96A10;
  border-bottom: 2px solid #C96A10;
  padding-bottom: 2px;
  margin-bottom: 12px;
}
.pt-section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #1F1F1F;
  margin: 0 0 12px;
}
.pt-section-intro {
  max-width: 680px;
  margin: 0 auto 40px;
  color: #555;
  font-size: 1rem;
  line-height: 1.7;
}

/* ── Activity cards ─────────────────────────────────────────── */
[data-id="de67453"] {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
  justify-content: center !important;
  padding: 0 !important;
}
.pt-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0,0,0,.10);
  overflow: hidden;
  flex: 0 0 calc(33.333% - 16px);
  max-width: calc(33.333% - 16px);
  min-width: 260px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.pt-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.15);
}
.pt-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f5f5f5;
}
.pt-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pt-card-img .pt-img-placeholder {
  height: 200px;
  margin: 0;
}
.pt-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.pt-card-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1F1F1F;
  margin: 0 0 10px;
}
.pt-card-desc {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.65;
  margin: 0;
}

/* ── Coming soon banner ─────────────────────────────────────── */
.pt-coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 48px 24px;
  border: 2px dashed #e0c4a0;
  border-radius: 14px;
  background: #fdf6ee;
  max-width: 500px;
  margin: 0 auto;
}
.pt-coming-soon-icon { font-size: 2.8rem; }
.pt-coming-soon p {
  margin: 0;
  color: #555;
  font-size: 1.05rem;
}
.pt-coming-soon p strong { color: #C96A10; }
.pt-coming-soon-sub {
  font-size: 0.9rem !important;
  color: #888 !important;
}
.pt-coming-soon-sub a { color: #C96A10; text-decoration: none; font-weight: 600; }
.pt-coming-soon-sub a:hover { text-decoration: underline; }

/* ── Donation cards ─────────────────────────────────────────── */
.pt-donations-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 8px;
}
.pt-don-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 20px rgba(0,0,0,.09);
  overflow: hidden;
  flex: 0 0 calc(25% - 18px);
  min-width: 240px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  border-top: 4px solid #C96A10;
}
.pt-don-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 36px rgba(201,106,16,.18);
}
.pt-don-img {
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #fdf6ee;
}
.pt-don-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pt-don-img .pt-img-placeholder {
  height: 160px;
  margin: 0;
}
.pt-don-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.pt-don-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}
.pt-don-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #1F1F1F;
  margin: 0 0 4px;
}
.pt-don-amount {
  font-size: 0.85rem;
  font-weight: 700;
  color: #C96A10;
  background: #fdf6ee;
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  display: inline-block;
}
.pt-don-desc {
  font-size: 0.88rem;
  color: #555;
  line-height: 1.6;
  flex: 1;
  margin: 0 0 10px;
}
.pt-don-impact {
  font-size: 0.82rem;
  color: #2a7a2a;
  margin: 0 0 16px;
}
.pt-don-btn {
  display: inline-block;
  background: linear-gradient(175deg, #F5903A 0%, #C96A10 100%);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 9px 22px;
  border-radius: 5px;
  text-decoration: none;
  box-shadow: 3px 3px 0 #6B2F00;
  transition: transform .1s, box-shadow .1s;
  border: 2px solid #9A4E08;
}
.pt-don-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 #6B2F00;
  color: #fff !important;
}

/* ── Gallery — bento grid ───────────────────────────────────── */
.pt-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
  margin-top: 8px;
}

/* Bento pattern — repeats every 7 items */
.pt-gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 2; } /* big */
.pt-gallery-item:nth-child(7n+4) { grid-column: span 2; }                    /* wide */
.pt-gallery-item:nth-child(7n+6) { grid-row: span 2; }                       /* tall */

.pt-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: #f0e8df;
  cursor: pointer;
  min-height: 100%;
}
.pt-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.pt-gallery-item:hover img {
  transform: scale(1.06);
}
.pt-gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 28px 12px 10px;
  opacity: 0;
  transition: opacity .3s ease;
}
.pt-gallery-item:hover .pt-gallery-caption {
  opacity: 1;
}
.pt-gallery-item .pt-img-placeholder {
  height: 100%;
  border-radius: 0;
  border: none;
  background: #f0e8df;
}

@media (max-width: 900px) {
  .pt-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }
}
@media (max-width: 600px) {
  .pt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
    gap: 8px;
  }
  /* Simplify spans on mobile */
  .pt-gallery-item:nth-child(7n+1) { grid-column: span 2; grid-row: span 1; }
  .pt-gallery-item:nth-child(7n+6) { grid-row: span 1; }
  .pt-gallery-caption { opacity: 1; }
}

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .pt-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
  .pt-don-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}
@media (max-width: 600px) {
  .pt-section { padding: 48px 16px; }
  .pt-card, .pt-don-card {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pt-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}


/* ── 10. MISC POLISH ────────────────────────────────────────── */

/* Smooth scroll for the whole page */
html {
  scroll-behavior: smooth;
}

/* Kill any lingering teal colour leaks on text */
span[style*="color:#00757D"],
span[style*="color: #00757D"],
span[style*="color:#03737D"],
span[style*="color: #03737D"] {
  color: #E07B20 !important;
}

/* ── Built-by strip ─────────────────────────────────────────────────────── */
/* ── About Us page ──────────────────────────────────────────────────────── */
.pt-about-section {
  padding: 72px 24px 64px;
  background: #fff;
}
.pt-about-alt {
  background: #fdf6ee;
}
.pt-about-inner {
  max-width: 960px;
  margin: 0 auto;
}
.pt-about-breadcrumb {
  font-size: 0.82rem;
  color: #999;
  margin-bottom: 18px;
  letter-spacing: .04em;
}
.pt-about-breadcrumb a { color: #C96A10; text-decoration: none; }
.pt-about-breadcrumb a:hover { text-decoration: underline; }
.pt-about-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1F1F1F;
  line-height: 1.2;
  margin: 0 0 20px;
}
.pt-about-section-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #1F1F1F;
  margin: 0 0 28px;
}
.pt-about-lead {
  font-size: 1.1rem;
  line-height: 1.75;
  color: #444;
  max-width: 780px;
  margin: 0 0 36px;
}
.pt-about-hero-img {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
  margin-top: 8px;
}
.pt-about-hero-img img { width: 100%; display: block; }

/* Floating images */
.pt-about-img-float {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
  margin-bottom: 18px;
  max-width: 400px;
}
.pt-about-img-float img { width: 100%; display: block; }
.pt-about-img-right { float: right; margin-left: 32px; }
.pt-about-img-left  { float: left;  margin-right: 32px; }
.pt-about-clearfix::after { content: ''; display: table; clear: both; }
.pt-about-section p { line-height: 1.8; color: #444; margin-bottom: 16px; }
.pt-about-section h3 { font-size: 1.25rem; font-weight: 700; color: #1F1F1F; margin: 24px 0 8px; }

/* Pull quote */
.pt-about-quote {
  border-left: 4px solid #C96A10;
  padding: 20px 28px;
  margin: 40px 0;
  background: rgba(201,106,16,.06);
  border-radius: 0 12px 12px 0;
}
.pt-about-quote p {
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 600;
  color: #1F1F1F;
  margin-bottom: 8px !important;
}
.pt-about-quote cite { font-size: 0.85rem; color: #888; font-style: normal; }

/* ── The Legacy Path (heritage cards) ─────────────────────────────────────── */
.pt-legacy-section { background: #fff; text-align: center; }
.pt-legacy-section .pt-badge { margin-left: auto; margin-right: auto; }
.pt-legacy-section .pt-about-section-title { margin: 0 0 16px; }
.pt-accent { color: #C96A10; }
.pt-legacy-intro {
  max-width: 720px;
  margin: 0 auto 48px;
  color: #555;
  line-height: 1.8;
  font-size: 1rem;
}

/* Heritage photo — shown in full, never cropped */
.pt-legacy-photo {
  max-width: 1040px;
  margin: 0 auto 48px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 50px rgba(0,0,0,.22);
}
.pt-legacy-photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Legacy member stat cards */
.pt-legacy-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  text-align: left;
}
.pt-legacy-card {
  background: #fff;
  border: 1px solid #ECECEC;
  border-radius: 14px;
  padding: 22px 20px;
  box-shadow: 0 4px 18px rgba(0,0,0,.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.pt-legacy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.10);
}
.pt-legacy-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: #1E2A3A;
  margin: 0 0 4px;
  line-height: 1.3;
}
.pt-legacy-years {
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  font-weight: 700;
  color: #C96A10;
  margin-bottom: 10px;
}
.pt-legacy-role {
  font-size: .82rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 1024px) {
  .pt-legacy-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pt-legacy-cards { grid-template-columns: 1fr; }
}

/* Detailed timeline chart (vertical rail with full stories) */
.pt-timeline-chart {
  position: relative;
  max-width: 820px;
  margin: 72px auto 0;
  padding-left: 40px;
  text-align: left;
}
.pt-timeline-chart::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  background: linear-gradient(180deg, #C96A10 0%, rgba(201,106,16,.25) 100%);
  border-radius: 2px;
}
.pt-tlc-item {
  position: relative;
  padding-bottom: 44px;
}
.pt-tlc-item:last-child { padding-bottom: 0; }
.pt-tlc-dot {
  position: absolute;
  left: -40px;
  top: 4px;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #C96A10;
  border: 3px solid #fff;
  box-shadow: 0 0 0 3px #C96A10;
}
.pt-tlc-content {
  background: #FBFAF8;
  border: 1px solid #EDE7DE;
  border-radius: 14px;
  padding: 24px 26px;
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.pt-tlc-name {
  font-size: 1.18rem;
  font-weight: 800;
  color: #1E2A3A;
  margin: 0 0 2px;
  line-height: 1.3;
}
.pt-tlc-year {
  font-family: 'Space Mono', monospace;
  font-size: .82rem;
  font-weight: 700;
  color: #C96A10;
  margin-bottom: 14px;
}
.pt-tlc-content p {
  font-size: .92rem;
  line-height: 1.8;
  color: #555;
  margin: 0 0 12px;
}
.pt-tlc-content p:last-child { margin-bottom: 0; }
@media (max-width: 560px) {
  .pt-timeline-chart { padding-left: 30px; }
  .pt-tlc-dot { left: -30px; }
  .pt-tlc-content { padding: 20px; }
}

/* ── Mission & Vision cards ─────────────────────────────────────────────── */
.pt-mv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 16px;
}
.pt-mv-card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,.07);
  border-top: 4px solid #C96A10;
}
.pt-mv-icon { font-size: 2rem; margin-bottom: 14px; }
.pt-mv-card h3 { font-size: 1.1rem; font-weight: 800; color: #1F1F1F; margin: 0 0 12px; }
.pt-mv-card p { color: #555; line-height: 1.7; font-size: 0.95rem; margin: 0; }

/* ── Board of Trustees page ──────────────────────────────────────────────── */
.pt-people-grid {
  display: grid;
  gap: 36px;
  margin-top: 16px;
}
.pt-person-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 32px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  padding: 32px;
  align-items: start;
}
.pt-person-photo { border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 5; background: #f0e8df; }
.pt-person-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; }
.pt-person-initials, .pt-person-no-photo .pt-person-initials {
  display: flex; align-items: center; justify-content: center;
  width: 100%; height: 100%; aspect-ratio: 1;
  font-size: 2.5rem; font-weight: 800;
  color: #C96A10; background: #fdf6ee;
  border-radius: 12px;
}
.pt-person-name { font-size: 1.3rem; font-weight: 800; color: #1F1F1F; margin: 0 0 4px; }
.pt-person-role { font-size: 0.9rem; font-weight: 700; color: #C96A10; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 8px; }
.pt-person-creds { font-size: 0.82rem; color: #888; margin: 0 0 16px; }
.pt-person-body p { color: #555; line-height: 1.75; margin-bottom: 12px; font-size: 0.95rem; }

/* ── Advisors grid ───────────────────────────────────────────────────────── */
.pt-advisors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 28px;
  margin-top: 16px;
}
.pt-advisor-card {
  display: flex;
  gap: 20px;
  background: #fdf6ee;
  border-radius: 14px;
  padding: 28px;
  align-items: flex-start;
}
.pt-advisor-initials {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #C96A10;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.pt-advisor-name { font-size: 1.05rem; font-weight: 800; color: #1F1F1F; margin: 0 0 2px; }
.pt-advisor-role { font-size: 0.8rem; font-weight: 700; color: #C96A10; text-transform: uppercase; letter-spacing: .05em; margin: 0 0 10px; }
.pt-advisor-body p { color: #555; line-height: 1.7; margin-bottom: 10px; font-size: 0.92rem; }

/* Responsive */
@media (max-width: 700px) {
  .pt-about-img-float { float: none; margin: 0 0 20px; max-width: 100%; }
  .pt-person-card { grid-template-columns: 1fr; }
  .pt-person-photo { max-width: 140px; }
  .pt-advisors-grid { grid-template-columns: 1fr; }
}

/* ── Gallery page hero ──────────────────────────────────────────────────── */
.pt-gallery-hero {
  text-align: center;
  padding: 72px 24px 40px;
  background: #fdf6ee;
}
.pt-gallery-hero .pt-badge {
  margin-bottom: 14px;
}
.pt-gallery-hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #1F1F1F;
  margin: 0 0 14px;
}
.pt-gallery-hero-sub {
  max-width: 600px;
  margin: 0 auto;
  color: #666;
  font-size: 1rem;
  line-height: 1.65;
}

/* ── Gallery page grid section ──────────────────────────────────────────── */
#pt-gallery-page {
  background: #fff;
  padding: 40px 24px 80px;
}
#pt-gallery-page .pt-section-inner {
  max-width: 1300px;
}

/* Hide sticky NGO ticker bar */
[data-id="1271d999"] { display: none !important; }

/* ── Footer copyright — keep the org-name link visible ─────────────────── */
footer .elementor-widget-text-editor a[href="index.html"] {
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,.45);
}
footer .elementor-widget-text-editor a[href="index.html"]:hover {
  border-bottom-color: #fff;
}

.built-by {
  background: #0a0a0a;
  padding: 32px 40px;
  text-align: center;
  border-top: 1px solid rgba(245,243,240,.06);
}
.built-by-text {
  font-family: "Space Mono", monospace;
  font-size: clamp(.72rem, 1vw, .88rem);
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,243,240,.3);
  cursor: default;
  display: inline-block;
}
.bbc {
  display: inline-block;
  transition: color .2s ease, transform .3s cubic-bezier(.22,1,.36,1);
}
.bbc:hover {
  color: #C96A10;
  transform: translateY(-5px);
}
.built-by-link {
  text-decoration: none;
  cursor: pointer;
}
.built-by-link .bbc {
  color: rgba(245,243,240,.55);
}
.built-by-link:hover .bbc {
  color: #C96A10;
}
