:root {
  --paorc-red: #b91c1c;
  --paorc-red-dark: #7f1d1d;
  --paorc-orange: #f59e0b;
  --paorc-orange-dark: #d97706;
  --paorc-dark: #172033;
  --paorc-muted: #667085;
  --paorc-light: #fff7ed;
  --paorc-soft: #f8fafc;
  --paorc-surface: #ffffff;
  --paorc-border: #e5e7eb;
  --paorc-shadow: 0 18px 45px rgba(15, 23, 42, .08);
  --paorc-shadow-strong: 0 24px 70px rgba(15, 23, 42, .14);
  --paorc-radius: 22px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Raleway, Arial, sans-serif;
  color: #475467;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .08), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f8fafc 48%, #fff 100%);
  line-height: 1.75;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; }

a {
  color: var(--paorc-dark);
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

a:hover { color: var(--paorc-orange-dark); }

p { color: #5d6878; }

.site-header {
  position: relative;
  z-index: 100;
}

.top-strip {
  background: #fff;
  color: var(--paorc-muted);
  padding: 11px 0;
  border-bottom: 1px solid rgba(229, 231, 235, .9);
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 14px;
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .28), transparent 12rem),
    linear-gradient(135deg, #172033, #263244);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 22px;
  padding: 10px 18px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, .14);
}
.brand-lockup img { height: 64px; width: auto; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .18)); }
.brand-lockup .brand-text { max-width: 320px; object-fit: contain; }

.top-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  color: var(--paorc-muted);
  font-size: .94rem;
}

.top-meta a { color: var(--paorc-dark); font-weight: 800; }
.top-meta strong { color: var(--paorc-dark); }

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paorc-light);
  color: var(--paorc-red) !important;
  border-radius: 999px;
  padding: 7px 13px;
  border: 1px solid rgba(245, 158, 11, .24);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .08);
}

.language-switcher img { width: 22px; height: 22px; border-radius: 50%; object-fit: cover; }

.paorc-navbar {
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid rgba(229, 231, 235, .82);
  box-shadow: 0 10px 30px rgba(15, 23, 42, .06);
  backdrop-filter: blur(16px);
  transition: box-shadow .2s ease, background-color .2s ease, transform .2s ease;
  z-index: 1020;
}

.paorc-navbar.is-scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 16px 44px rgba(15, 23, 42, .12);
}

.paorc-navbar .navbar-brand img { height: 56px; }

.navbar-dark .navbar-nav .nav-link {
  color: #263244;
  font-weight: 800;
  letter-spacing: .01em;
  padding: 19px 12px;
  border: 0;
  outline: 0;
  box-shadow: none;
  border-radius: 999px;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link:focus,
.navbar-dark .navbar-nav .nav-link.active,
.navbar-dark .navbar-nav .show > .nav-link {
  background: var(--paorc-light);
  color: var(--paorc-orange-dark);
  border-color: transparent;
  outline: 0;
  box-shadow: none;
}

.paorc-navbar .navbar-toggler {
  border: 1px solid var(--paorc-border);
  border-radius: 14px;
  padding: 10px 12px;
  box-shadow: none;
}

.paorc-navbar .navbar-toggler-icon {
  background-image: none;
  position: relative;
  width: 1.45rem;
  height: 1.1rem;
}

.paorc-navbar .navbar-toggler-icon::before,
.paorc-navbar .navbar-toggler-icon::after,
.paorc-navbar .navbar-toggler-icon {
  border-top: 2px solid var(--paorc-dark);
}

.paorc-navbar .navbar-toggler-icon::before,
.paorc-navbar .navbar-toggler-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
}

.paorc-navbar .navbar-toggler-icon::before { top: .45rem; }
.paorc-navbar .navbar-toggler-icon::after { top: .9rem; }

.dropdown-menu {
  border: 1px solid rgba(229, 231, 235, .9);
  border-radius: 18px;
  box-shadow: var(--paorc-shadow-strong);
  padding: 12px;
  min-width: 235px;
}

.dropdown-item {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  padding: 10px 14px;
  font-weight: 700;
  color: #334155;
}

.dropdown-item:hover,
.dropdown-item:focus,
.dropdown-item.active {
  background: var(--paorc-light);
  color: var(--paorc-orange-dark);
  outline: 0;
  box-shadow: none;
}

.btn {
  border-radius: 999px;
  font-weight: 800;
  padding: 12px 25px;
  letter-spacing: .01em;
  box-shadow: none;
}

.btn-primary {
  --bs-btn-bg: var(--paorc-orange);
  --bs-btn-border-color: var(--paorc-orange);
  --bs-btn-color: #1f2933;
  --bs-btn-hover-bg: var(--paorc-orange-dark);
  --bs-btn-hover-border-color: var(--paorc-orange-dark);
  --bs-btn-hover-color: #fff;
}

.btn-donate {
  background: var(--paorc-red);
  color: #fff;
  margin-left: 14px;
  box-shadow: 0 12px 26px rgba(185, 28, 28, .24);
}

.btn-donate:hover { background: var(--paorc-orange); color: #1f2933; }

.hero .carousel-item { height: 660px; min-height: 72vh; background: #111; }
.hero .carousel-item img { height: 100%; width: 100%; object-fit: cover; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .8), rgba(15, 23, 42, .5), rgba(15, 23, 42, .12)),
    linear-gradient(0deg, rgba(0, 0, 0, .22), transparent 45%);
}

.hero .carousel-caption {
  left: 8%;
  right: auto;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 790px;
  padding: 0;
}

.eyebrow,
.section-kicker,
.page-hero span,
.cta-band span {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 900;
  color: var(--paorc-orange);
  font-size: .78rem;
  margin-bottom: 13px;
}

.hero h1 {
  font-size: clamp(2.45rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.03;
  text-wrap: balance;
}

.hero p { font-size: 1.16rem; max-width: 620px; color: rgba(255, 255, 255, .88); }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

.action-row { margin-top: -64px; position: relative; z-index: 4; }

.action-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--paorc-radius);
  padding: 28px;
  min-height: 134px;
  box-shadow: var(--paorc-shadow-strong);
  color: var(--paorc-dark);
  height: 100%;
  backdrop-filter: blur(10px);
}

.action-card:hover { transform: translateY(-5px); color: var(--paorc-dark); }
.action-card i { display: grid; place-items: center; flex: 0 0 58px; width: 58px; height: 58px; border-radius: 18px; background: var(--paorc-light); font-size: 1.75rem; color: var(--paorc-orange-dark); }
.action-card span { display: block; color: var(--paorc-orange-dark); font-weight: 900; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
.action-card strong { font-size: 1.12rem; color: var(--paorc-dark); }

.section { padding: 96px 0; }
.section-heading { max-width: 760px; margin: 0 auto 46px; }
.section h2,
.cta-band h2 { font-size: clamp(2rem, 3.5vw, 3.4rem); font-weight: 900; color: var(--paorc-dark); line-height: 1.12; text-wrap: balance; }

.about-section { background: linear-gradient(180deg, #fff, var(--paorc-soft)); margin-top: 72px; }

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

.section-intro p {
  font-size: 1.08rem;
  margin-bottom: 0;
}

.donation-card,
.content-card,
.mission-card,
.person-card,
.restore-notice {
  background: var(--paorc-surface);
  border: 1px solid var(--paorc-border);
  border-radius: var(--paorc-radius);
  padding: 32px;
  box-shadow: var(--paorc-shadow);
  height: 100%;
}

.donation-card { border-top: 6px solid var(--paorc-orange); }
.donation-card h3,
.content-card h3,
.mission-card h3,
.person-card h3,
.team-card h3 { font-size: 1.23rem; font-weight: 900; color: var(--paorc-dark); }

.content-card,
.mission-card,
.person-card,
.team-card,
.donation-card { transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.content-card:hover,
.mission-card:hover,
.person-card:hover,
.team-card:hover,
.donation-card:hover { transform: translateY(-4px); box-shadow: var(--paorc-shadow-strong); border-color: rgba(247, 150, 33, .28); }

.mission-card i { display: grid; place-items: center; width: 62px; height: 62px; border-radius: 20px; background: var(--paorc-light); font-size: 1.9rem; color: var(--paorc-orange-dark); margin-bottom: 22px; }
.mission-card a { font-weight: 900; color: var(--paorc-dark); }
.mission-card a:hover { color: var(--paorc-orange-dark); }

.stats-band {
  background:
    radial-gradient(circle at top left, rgba(245, 158, 11, .25), transparent 28rem),
    linear-gradient(135deg, #1f2937, #0f172a);
  padding: 76px 0;
  color: #fff;
}

.stat i { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border: 1px solid rgba(247, 150, 33, .55); border-radius: 50%; font-size: 1.45rem; margin-bottom: 16px; color: var(--paorc-orange); }
.stat strong { display: block; font-family: Roboto, Arial, sans-serif; font-size: 3rem; line-height: 1; font-weight: 900; }
.stat span { font-weight: 900; color: rgba(255, 255, 255, .9); }

.page-hero {
  background:
    linear-gradient(135deg, rgba(15, 23, 42, .88), rgba(15, 23, 42, .58)),
    url("https://web.archive.org/web/20250306104231im_/https://paorc.org.np/img/carousel-3.jpg") center/cover;
  padding: 112px 0 88px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: -8rem;
  bottom: -10rem;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: rgba(245, 158, 11, .22);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 { font-size: clamp(2.35rem, 4vw, 4.2rem); font-weight: 900; text-wrap: balance; }
.breadcrumb { margin-bottom: 0; }
.breadcrumb a,
.breadcrumb .active { color: rgba(255, 255, 255, .9); }

.page-content { font-size: 1.06rem; background: #fff; }
.page-content > .container > p { max-width: 1020px; }
.page-content p:last-child { margin-bottom: 0; }

.page-layout {
  align-items: flex-start;
}

.page-copy {
  background: #fff;
  border: 1px solid var(--paorc-border);
  border-radius: var(--paorc-radius);
  padding: 34px;
  box-shadow: var(--paorc-shadow);
}

.page-copy p + p { margin-top: 1.15rem; }

.image-panel {
  position: sticky;
  top: 108px;
}

.image-card {
  overflow: hidden;
  border-radius: var(--paorc-radius);
  background: #fff;
  border: 1px solid var(--paorc-border);
  box-shadow: var(--paorc-shadow);
}

.image-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
}

.image-card-body {
  padding: 24px;
}

.image-card-body h3 {
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--paorc-dark);
}

.placeholder-visual {
  min-height: 270px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(245, 158, 11, .84), rgba(185, 28, 28, .76)),
    url("https://web.archive.org/web/20250306104231im_/https://paorc.org.np/img/carousel-5.jpg") center/cover;
  color: #fff;
  text-align: center;
  padding: 32px;
}

.placeholder-visual i {
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .18);
  font-size: 2rem;
}

.placeholder-visual strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.25;
}

.mini-card { display: flex; gap: 16px; background: #fff; border: 1px solid var(--paorc-border); border-radius: 20px; padding: 24px; height: 100%; box-shadow: 0 12px 28px rgba(31, 41, 51, .06); }
.mini-icon { display: inline-flex; align-items: center; justify-content: center; flex: 0 0 42px; width: 42px; height: 42px; border-radius: 50%; background: var(--paorc-light); color: var(--paorc-orange-dark); }

.person-card { text-align: center; }
.team-card { background: #fff; border: 1px solid var(--paorc-border); border-radius: var(--paorc-radius); box-shadow: var(--paorc-shadow); overflow: hidden; }
.team-card-body { padding: 28px; }
.profile-photo { height: 220px; border-radius: 20px; background: linear-gradient(135deg, rgba(247, 150, 33, .82), rgba(31, 41, 51, .82)), url("https://web.archive.org/web/20250306104231im_/https://paorc.org.np/img/carousel-5.jpg") center/cover; display: grid; place-items: center; margin-bottom: 22px; }
.team-card .profile-photo { border-radius: 0; margin-bottom: 0; }
.profile-photo span { display: grid; place-items: center; width: 88px; height: 88px; border-radius: 50%; background: rgba(255, 255, 255, .96); color: var(--paorc-dark); font-weight: 900; font-size: 1.6rem; box-shadow: 0 14px 32px rgba(31, 41, 51, .2); }
.profile-socials { display: flex; justify-content: center; gap: 10px; flex-wrap: wrap; margin-top: 20px; }
.profile-socials a { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 50%; background: var(--paorc-light); color: var(--paorc-orange-dark); }
.profile-socials a:hover { background: var(--paorc-orange); color: #1f2933; transform: translateY(-2px); }

.name-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.name-cloud span { background: #fff; border: 1px solid var(--paorc-border); border-radius: 999px; padding: 10px 16px; font-weight: 800; color: var(--paorc-dark); box-shadow: 0 8px 20px rgba(31, 41, 51, .05); }

.paorc-accordion { border-radius: var(--paorc-radius); overflow: hidden; box-shadow: var(--paorc-shadow); }
.paorc-accordion .accordion-item { border-color: var(--paorc-border); }
.paorc-accordion .accordion-button { font-weight: 900; color: var(--paorc-dark); padding: 20px 24px; box-shadow: none; }
.paorc-accordion .accordion-button:not(.collapsed) { background: var(--paorc-light); color: var(--paorc-dark); }
.paorc-accordion .accordion-body { padding: 22px 24px; color: #5d6878; }

.gallery-card { position: relative; display: block; overflow: hidden; border-radius: var(--paorc-radius); box-shadow: var(--paorc-shadow); height: 270px; background: #ddd; }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .28s ease; }
.gallery-card:hover img { transform: scale(1.06); }
.gallery-card span { position: absolute; left: 18px; bottom: 18px; background: #fff; color: var(--paorc-dark); border-radius: 999px; padding: 8px 15px; font-weight: 900; box-shadow: 0 10px 24px rgba(31, 41, 51, .18); }

.contact-card {
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--paorc-orange), var(--paorc-red));
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.contact-list a,
.contact-list span {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--paorc-dark);
  font-weight: 800;
}

.contact-list i {
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  background: var(--paorc-light);
  color: var(--paorc-orange-dark);
}

.paorc-table { overflow: hidden; border-radius: 18px; box-shadow: var(--paorc-shadow); }
.paorc-table th { background: var(--paorc-dark); color: #fff; padding: 15px; }
.paorc-table td { padding: 14px 15px; vertical-align: middle; }
.paorc-table tbody tr:nth-child(even) { background: #fff8f3; }
.small-note { font-weight: 900; color: var(--paorc-orange-dark); margin-top: 18px; }

.restore-notice { display: flex; gap: 18px; align-items: flex-start; background: var(--paorc-light); border: 1px solid #f1d3c5; }
.restore-notice i { font-size: 2rem; color: var(--paorc-orange-dark); }

.cta-band { background: linear-gradient(135deg, #fff7ed, #ffedd5); padding: 58px 0; color: #111; border-top: 1px solid #fed7aa; border-bottom: 1px solid #fed7aa; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.55rem); margin: 0; }
.cta-band .btn-light { color: #fff; background: var(--paorc-red); border-color: var(--paorc-red); font-weight: 900; }
.cta-band .btn-light:hover { color: #1f2933; background: var(--paorc-orange); border-color: var(--paorc-orange); }

.site-footer {
  background: linear-gradient(135deg, #111827, #1f2937);
  color: #fff;
  padding: 74px 0 24px;
}

.footer-logo { width: 90px; margin-bottom: 20px; filter: drop-shadow(0 10px 22px rgba(0, 0, 0, .15)); }
.site-footer h3 { font-size: 1.04rem; font-weight: 900; margin-bottom: 18px; text-transform: uppercase; letter-spacing: .06em; }
.site-footer a { display: block; color: rgba(255, 255, 255, .9); margin-bottom: 8px; }
.site-footer a:hover { color: var(--paorc-orange); }
.site-footer p { color: rgba(255, 255, 255, .86); }
.socials { display: flex; gap: 10px; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border: 1px solid rgba(255, 255, 255, .5); border-radius: 50%; }
.socials a:hover { background: #fff; color: var(--paorc-red); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .22); margin-top: 42px; padding-top: 20px; text-align: center; font-weight: 800; color: rgba(255, 255, 255, .85); }

.back-to-top { position: fixed; right: 22px; bottom: 24px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--paorc-dark); color: #fff; display: none; z-index: 50; box-shadow: 0 8px 24px rgba(0, 0, 0, .18); }
.back-to-top:hover { background: var(--paorc-orange-dark); }

.coming-soon-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-main {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
  background:
    radial-gradient(circle at 18% 22%, rgba(245, 158, 11, .14), transparent 42%),
    radial-gradient(circle at 88% 68%, rgba(185, 28, 28, .08), transparent 38%),
    linear-gradient(180deg, #f8fafc 0%, #fff 55%, #fff7ed 100%);
}

.coming-soon-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--paorc-surface);
  border: 1px solid rgba(229, 231, 235, .95);
  border-radius: var(--paorc-radius);
  padding: clamp(32px, 5vw, 52px) clamp(26px, 4vw, 44px);
  box-shadow: var(--paorc-shadow-strong);
}

.coming-soon-title {
  font-size: clamp(2.1rem, 4.5vw, 2.85rem);
  font-weight: 900;
  color: var(--paorc-dark);
  line-height: 1.12;
  margin-bottom: 18px;
}

.coming-soon-lead {
  font-size: 1.08rem;
  color: #5d6878;
  margin-bottom: 28px;
  line-height: 1.75;
}

.coming-soon-highlights {
  text-align: left;
  max-width: 420px;
  margin: 0 auto 28px;
  padding: 0;
}

.coming-soon-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 700;
  color: var(--paorc-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--paorc-border);
}

.coming-soon-highlights li:last-child { border-bottom: 0; }

.coming-soon-highlights i {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--paorc-light);
  color: var(--paorc-orange-dark);
  font-size: 1rem;
}

.coming-soon-note {
  font-size: .95rem;
  color: var(--paorc-muted);
  font-weight: 600;
}

.coming-soon-actions { margin-top: 26px; }

@media (max-width: 1199px) {
  .paorc-navbar .navbar-collapse {
    padding: 16px 0 6px;
  }
  .navbar-dark .navbar-nav .nav-link { padding: 12px 14px; border-radius: 14px; }
  .btn-donate { margin: 10px 0 16px; width: 100%; }
  .brand-lockup .brand-text { display: none; }
  .dropdown-menu { box-shadow: none; border-radius: 14px; border-color: var(--paorc-border); margin: 0 0 10px; }
  .image-panel { position: static; }
}

@media (max-width: 767px) {
  .brand-lockup { padding: 9px 14px; border-radius: 18px; }
  .brand-lockup img { height: 54px; }
  .top-meta { font-size: .85rem; justify-content: center; }
  .top-meta span { display: none; }
  .hero .carousel-item { height: 580px; }
  .hero .carousel-caption { left: 6%; right: 6%; }
  .hero h1 { font-size: 2.35rem; }
  .action-row { margin-top: 0; padding-top: 24px; }
  .section { padding: 64px 0; }
  .about-section { margin-top: 30px; }
  .page-hero { padding: 82px 0 66px; }
  .page-copy { padding: 26px; }
  .donation-card,
  .content-card,
  .mission-card,
  .person-card,
  .restore-notice { padding: 26px; }
}