@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #0d1117;
  --bg-2: #131920;
  --bg-3: #161e28;
  --bg-card: #111820;
  --gold: #c9a240;
  --gold-light: #dfc070;
  --gold-pale: #f2e3bb;
  --gold-dim: rgba(201,162,64,0.12);
  --text: #dce7f0;
  --text-soft: #9db0c4;
  --muted: #6a8498;
  --border: rgba(201,162,64,0.13);
  --border-soft: rgba(201,162,64,0.07);
  --line: rgba(255,255,255,0.06);
  --heading: #f0f6ff;
  --nav-bg: rgba(13,17,23,0.92);
  --nav-bg-scrolled: rgba(13,17,23,0.99);
  --nav-bg-mobile: rgba(13,17,23,0.98);
  --card-translucent: rgba(13,17,23,0.55);
  --modal-overlay-bg: rgba(8, 11, 15, 0.85);
  --scrollbar-track: var(--bg);
}

:root[data-theme="light"] {
  --bg: #f7f5ef;
  --bg-2: #efece3;
  --bg-3: #e7e2d4;
  --bg-card: #ffffff;
  --gold: #a9812f;
  --gold-light: #8f6c26;
  --gold-pale: #6d5320;
  --gold-dim: rgba(169,129,47,0.10);
  --text: #23303c;
  --text-soft: #46586a;
  --muted: #64778a;
  --border: rgba(169,129,47,0.22);
  --border-soft: rgba(169,129,47,0.1);
  --line: rgba(20,25,30,0.09);
  --heading: #14181f;
  --nav-bg: rgba(247,245,239,0.9);
  --nav-bg-scrolled: rgba(247,245,239,0.98);
  --nav-bg-mobile: rgba(247,245,239,0.98);
  --card-translucent: rgba(255,255,255,0.65);
  --modal-overlay-bg: rgba(20,20,15,0.55);
  --scrollbar-track: var(--bg);
}

body,
nav,
.org-card,
.community-card,
.book-card,
.other-book-item,
.service-item,
.gallery-card,
.prog-block,
.sensitize-item,
.contact-form-col,
.contact-card,
.modal-box,
.about-block,
.about-overview-banner,
.about-trio-card,
.form-group input,
.form-group textarea {
  transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

* { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

::-webkit-scrollbar { 
  width: 4px; 
}

::-webkit-scrollbar-track { 
  background: var(--bg); 
}

::-webkit-scrollbar-thumb { 
  background: var(--gold); 
}

nav {
  position: fixed;
  top: 0; 
  left: 0; 
  right: 0;
  z-index: 500;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s ease;
}

nav.scrolled {
  background: var(--nav-bg-scrolled);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  max-width: 1540px;
  margin: 0 auto;
}

.nav-brand { 
  display: flex; 
  align-items: center;
  gap: 0.75rem; 
  min-width: 0;
  flex-shrink: 0;
}

.brand-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  flex-shrink: 0;
}

.brand-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}

.nav-right {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0 auto;
  white-space: nowrap;
}

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
  white-space: nowrap;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active { 
  color: var(--gold); 
}

.nav-links a:hover::after,
.nav-links a.active::after { 
  width: 100%; 
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.nav-toggle svg {
  display: block;
  width: 26px;
  height: 26px;
}

.nav-utility {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.theme-toggle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--gold-dim);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.theme-toggle:hover {
  border-color: rgba(201,162,64,0.4);
  transform: translateY(-1px);
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 10rem 5rem 6rem;
  position: relative;
  overflow: hidden;
}

.hero-radial {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at center, rgba(201,162,64,0.05) 0%, transparent 65%);
  pointer-events: none;
}

.hero-radial-2 {
  position: absolute;
  bottom: -100px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(201,162,64,0.03) 0%, transparent 65%);
  pointer-events: none;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 5rem;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
}

.eyebrow-line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 4.5vw, 4.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--heading);
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.hero-heading em {
  font-style: normal;
  color: var(--gold);
  font-weight: 800;
}

.hero-sub {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.hero-sub::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--muted);
}

.hero-body {
  font-size: 0.92rem;
  line-height: 1.95;
  color: var(--text-soft);
  max-width: 510px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
}

.tag {
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  font-size: 0.63rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  background: var(--gold-dim);
  transition: border-color 0.3s, color 0.3s;
}

.tag:hover {
  border-color: rgba(201,162,64,0.4);
  color: var(--gold-light);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.btn-primary {
  padding: 0.9rem 2.4rem;
  background: var(--gold);
  color: var(--bg);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(201,162,64,0.22);
}

.btn-outline {
  padding: 0.9rem 2.4rem;
  border: 1px solid var(--border);
  color: var(--text-soft);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
  border-color: rgba(201,162,64,0.4);
  color: var(--gold);
  transform: translateY(-2px);
}

.hero-profile { 
  display: flex; 
  justify-content: center; 
}

.profile-wrapper {
  position: relative;
  width: 340px;
}

.profile-frame {
  position: absolute;
  top: 20px;
  left: 20px;
  right: -20px;
  bottom: 50px;
  border: 1px solid var(--border);
  z-index: 0;
}

.profile-img-box {
  position: relative;
  width: 100%;
  height: 430px;
  overflow: hidden;
  z-index: 2;
  background: var(--bg-2);
}

.profile-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.95) contrast(1.05);
}

.profile-name-tag {
  background: var(--gold);
  color: var(--bg);
  padding: 1rem 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  z-index: 5;
  position: relative;
  margin-top: -28px;
  letter-spacing: -0.01em;
}

.ticker-wrap {
  width: 100vw;
  position: relative;
  left: calc(-50vw + 50%);
  overflow: hidden;
  background: var(--gold);
  padding: 1.4rem 0;
  z-index: 10;
}

.ticker-track {
  display: flex;
  gap: 3.5rem;
  white-space: nowrap;
  animation: marquee 32s linear infinite;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--bg);
  font-weight: 600;
}

.ticker-dot {
  color: rgba(13,17,23,0.35);
  font-size: 0.45rem;
}

section {
  padding: 7rem 5rem;
  max-width: 1440px;
  margin: 0 auto;
}

section.alt {
  max-width: 100%;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 7rem 5rem;
}

section.alt > * {
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.label-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.8rem;
}

.label-text {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  flex-shrink: 0;
}

.label-line {
  flex: 1;
  height: 1px;
  background: var(--line);
}

.section-heading {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-heading em {
  font-style: normal;
  color: var(--gold);
  font-weight: 700;
}

.section-intro {
  font-size: 0.88rem;
  line-height: 2;
  color: var(--muted);
  max-width: 580px;
  margin-bottom: 4rem;
  font-weight: 300;
}

.about-lead {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--text-soft);
  max-width: 780px;
  margin-bottom: 3.5rem;
  font-weight: 300;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.about-block {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.about-block::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.about-block-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.4rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  letter-spacing: -0.01em;
}

.about-block-body {
  font-size: 0.85rem;
  line-height: 1.9;
  color: var(--text-soft);
  font-weight: 300;
}

.about-sublabel {
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 1.4rem 0 0.7rem;
}

.about-sublabel:first-of-type {
  margin-top: 0;
}

.about-list {
  list-style: none;
}

.about-list li {
  padding: 0.55rem 0;
  font-size: 0.83rem;
  color: var(--text-soft);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 300;
  line-height: 1.6;
}

.about-list li:last-child {
  border-bottom: none;
}

.about-list li i {
  color: var(--gold);
  font-size: 0.65rem;
  margin-top: 0.4rem;
  flex-shrink: 0;
}

.about-list li strong {
  color: var(--text);
  font-weight: 600;
}

.about-overview-banner {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 2.2rem 2.4rem;
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s;
}

.about-overview-banner:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,64,0.3);
}

.about-overview-content h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.about-overview-content h4 i {
  color: var(--gold);
}

.about-overview-content p {
  font-size: 0.86rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
}

.about-overview-roles {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
  color: var(--text);
  line-height: 1.7;
}

.about-overview-roles strong {
  color: var(--gold);
  font-weight: 600;
}

.about-overview-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  background: var(--bg-3);
  padding: 1.4rem;
  border: 1px solid var(--line);
}

.about-metric-cell {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.about-metric-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.about-metric-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.about-trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  align-items: start;
}

.about-trio-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 2.2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s;
}

.about-trio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,64,0.3);
}

.about-trio-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 1.2rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.about-trio-card h4 i {
  color: var(--gold);
}

.org-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.org-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  padding: 2.5rem 2.2rem;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s;
  display: flex;
  flex-direction: column;
}

.org-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201,162,64,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.org-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,162,64,0.25);
  border-top-color: var(--gold);
}

.org-num {
  position: absolute;
  top: 1.8rem;
  right: 2rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  color: rgba(201,162,64,0.08);
  font-weight: 800;
  line-height: 1;
}

.org-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
  margin-bottom: 1.6rem;
  height: 52px;
  width: fit-content;
}

.org-logo-badge img {
  max-height: 40px;
  max-width: 150px;
  object-fit: contain;
  display: block;
}

.org-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  color: var(--heading);
  margin-bottom: 1rem;
  line-height: 1.45;
  font-weight: 700;
}

.org-body {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--text-soft);
  margin-bottom: 1.4rem;
  font-weight: 300;
  flex-grow: 1;
}

.org-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: color 0.3s, transform 0.3s;
  margin-top: auto;
}

.org-link:hover {
  color: var(--gold-light);
  transform: translateX(4px);
}

.community-lead {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 3.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}

.community-lead img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
  filter: brightness(0.95) contrast(1.05);
}

.community-lead p {
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--text-soft);
  font-weight: 300;
  max-width: 640px;
}

.books-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.book-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 1.4rem 1.2rem;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s;
}

.book-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201,162,64,0.3);
}

.book-img-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.48;
  border-radius: 2px 7px 7px 2px;
  background: #151a22;
  box-shadow: 
    -3px 0 5px rgba(0, 0, 0, 0.6),
    2px 0 0 #f0f0f0,
    3px 0 0 #333333,
    5px 0 0 #d9d9d9,
    6px 0 0 #1a1a1a,
    10px 14px 28px rgba(0, 0, 0, 0.7);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s ease;
}

.book-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.book-img-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 32px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.25) 5%,
    rgba(255, 255, 255, 0.28) 9%,
    rgba(0, 0, 0, 0.45) 14%,
    rgba(0, 0, 0, 0.1) 18%,
    transparent 100%
  );
  z-index: 2;
  pointer-events: none;
}

.book-img-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.03) 30%,
    transparent 55%,
    rgba(0, 0, 0, 0.22) 100%
  );
  box-shadow: inset 1px 1px 1px rgba(255, 255, 255, 0.15), inset -1px -1px 2px rgba(0, 0, 0, 0.35);
  z-index: 3;
  pointer-events: none;
}

.book-card:hover .book-img-box {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 
    -4px 0 7px rgba(0, 0, 0, 0.7),
    2px 0 0 #f4f4f4,
    3px 0 0 #2e2e2e,
    5px 0 0 #e0e0e0,
    6px 0 0 #151515,
    14px 20px 34px rgba(0, 0, 0, 0.8),
    0 0 16px rgba(201, 162, 64, 0.12);
}

.book-details {
  margin-top: 1.3rem;
  padding-top: 0.6rem;
}

.book-details h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--heading);
  font-weight: 700;
  margin-bottom: 0.4rem;
  line-height: 1.35;
}

.book-details p {
  font-size: 0.72rem;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

.other-books-container {
  margin-top: 4.5rem;
  border-top: 1px solid var(--line);
  padding-top: 3.5rem;
}

.other-books-header {
  margin-bottom: 2.2rem;
}

.other-books-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.other-books-sub {
  font-size: 0.84rem;
  color: var(--muted);
  max-width: 680px;
  line-height: 1.75;
  font-weight: 300;
}

.other-books-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.other-book-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 1.05rem 1.2rem;
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  font-weight: 400;
  transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.other-book-item i {
  color: var(--gold);
  font-size: 0.85rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  opacity: 0.85;
}

.other-book-item:hover {
  transform: translateY(-2px);
  border-color: rgba(201,162,64,0.35);
  border-left-color: var(--gold-light);
  color: var(--heading);
  background: var(--bg-3);
}

.sensitize-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.sensitize-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 2rem;
  display: flex;
  gap: 1.2rem;
  transition: transform 0.3s, border-color 0.3s;
}

.sensitize-item:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,64,0.25);
}

.sensitize-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1.2;
}

.sensitize-text h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.sensitize-text p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.community-card {
  display: flex;
  gap: 1.8rem;
  padding: 2.4rem;
  background: var(--card-translucent);
  border: 1px solid var(--line);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), border-color 0.4s;
  position: relative;
  overflow: hidden;
}

.community-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.community-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,64,0.2);
}

.community-card:hover::before { 
  width: 100%; 
}

.comm-icon {
  font-size: 1.8rem;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.8;
}

.comm-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.comm-body {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--muted);
  font-weight: 300;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  margin-top: 3.5rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  padding: 3.2rem 1.4rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background 0.4s;
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.4s ease;
}

.service-item:hover::before { 
  width: 60%; 
}

.service-item:nth-child(5n) { 
  border-right: none; 
}

.service-item:nth-child(n+6) { 
  border-bottom: none; 
}

.service-item:hover { 
  background: rgba(201,162,64,0.05); 
}

.svc-icon { 
  font-size: 1.8rem; 
  color: var(--gold); 
  opacity: 0.75; 
  transition: opacity 0.3s; 
}

.service-item:hover .svc-icon { 
  opacity: 1; 
}

.svc-name {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.3s;
}

.service-item:hover .svc-name { 
  color: var(--gold-light); 
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.8rem;
  margin-top: 3.5rem;
}

.gallery-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 2px solid var(--gold);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.4s, box-shadow 0.4s;
}

.gallery-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 162, 64, 0.35);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
}

.gallery-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--bg-2);
}

.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery-card:hover .gallery-img-wrap img {
  transform: scale(1.05);
}

.gallery-content {
  padding: 1.4rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  border-top: 1px solid var(--line);
}

.gallery-caption {
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-soft);
  font-weight: 300;
}

.contact-container {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 3rem;
  margin-top: 3.5rem;
}

.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 2px solid var(--gold);
  padding: 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,162,64,0.3);
}

.contact-icon {
  font-size: 1.4rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-label {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.contact-emails {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-val {
  color: var(--heading);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s;
}

.contact-val:hover {
  color: var(--gold);
}

.contact-val-text {
  color: var(--text-soft);
  font-size: 0.85rem;
  line-height: 1.6;
  font-weight: 300;
}

.contact-form-col {
  background: var(--bg-card);
  border: 1px solid var(--line);
  padding: 3rem;
  position: relative;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.form-group input,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 0.9rem 1.2rem;
  color: var(--text);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: var(--modal-overlay-bg);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  box-shadow: 0 25px 60px rgba(0,0,0,0.85), 0 0 30px rgba(201,162,64,0.18);
  max-width: 440px;
  width: 100%;
  padding: 3rem 2.2rem 2.4rem;
  text-align: center;
  position: relative;
  transform: scale(0.92) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.2,0.8,0.2,1);
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 1.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(201, 162, 64, 0.12);
  border: 2px solid var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 162, 64, 0.25);
}

.modal-icon-wrap.error {
  background: rgba(239, 68, 68, 0.12);
  border-color: #ef4444;
  color: #ef4444;
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.25);
}

.modal-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.modal-body {
  font-size: 0.85rem;
  line-height: 1.8;
  color: var(--text-soft);
  font-weight: 300;
  margin-bottom: 2rem;
}

.modal-close-x {
  position: absolute;
  top: 1.2rem;
  right: 1.4rem;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
}

.modal-close-x:hover {
  color: var(--gold);
}

.modal-action-btn {
  width: 100%;
}

footer {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  padding: 5rem 5rem;
}

.footer-logo {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.footer-tagline {
  font-size: 0.78rem;
  line-height: 1.9;
  color: var(--muted);
  font-weight: 300;
}

.footer-col h5 {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}

.footer-col ul { 
  list-style: none; 
}

.footer-col ul li {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.03);
  font-weight: 300;
  transition: color 0.3s;
}

.footer-col ul li a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover,
.footer-col ul li:hover { 
  color: var(--gold-light); 
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.6rem 5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.7rem;
  color: rgba(106,132,152,0.5);
  letter-spacing: 0.08em;
}

.btn-float {
  position: fixed;
  bottom: 5.2rem;
  right: 2rem;
  background: var(--gold);
  color: var(--bg);
  padding: 0.95rem 2rem;
  border-radius: 40px;
  text-decoration: none;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  z-index: 999;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: background 0.3s;
}

.btn-float:hover { 
  background: var(--gold-light); 
}

.btn-scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.45);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px);
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.btn-scroll-top:hover {
  background: var(--gold);
  color: var(--bg);
  box-shadow: 0 10px 24px rgba(201,162,64,0.3);
}

.reveal { 
  opacity: 0; 
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 1200px) {
  .nav-links {
    gap: 1.1rem;
  }
  .nav-links a {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }
  .books-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-trio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .other-books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .org-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .sensitize-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top { 
    grid-template-columns: 1fr 1fr; 
  }
}

@media (max-width: 900px) {
  .hero-container { 
    display: flex; 
    flex-direction: column; 
    gap: 4rem; 
  }
  .hero-text { 
    order: 2; 
  }
  .hero-profile { 
    order: 1; 
    justify-content: center; 
    margin-top: 2rem; 
    margin-bottom: 0; 
  }
  .about-overview-banner {
    grid-template-columns: 1fr;
    gap: 1.6rem;
    padding: 1.8rem 1.5rem;
  }
  .about-trio-grid {
    grid-template-columns: 1fr;
  }
  .about-lead {
    font-size: 0.9rem;
    line-height: 1.85;
    margin-bottom: 2.5rem;
  }
  .community-lead {
    flex-direction: column;
    text-align: center;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
  }
  .community-lead img {
    margin: 0 auto;
  }
  .contact-container {
    grid-template-columns: 1fr;
  }
  .org-grid { 
    grid-template-columns: 1fr; 
  }
  .sensitize-grid {
    grid-template-columns: 1fr;
  }
  .community-grid { 
    grid-template-columns: 1fr; 
  }
  .books-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .other-books-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .service-item {
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }
  .service-item:nth-child(2n) { 
    border-right: none; 
  }
  .service-item:nth-child(n+9) { 
    border-bottom: none; 
  }
}

@media (max-width: 640px) {
  .nav-inner { 
    padding: 0.85rem 1.2rem; 
    gap: 0.75rem;
  }
  .nav-brand {
    gap: 0.55rem;
    min-width: 0;
    flex: 1 1 auto;
  }
  .brand-avatar {
    width: 30px;
    height: 30px;
  }
  .brand-main {
    font-size: 1.05rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .nav-right {
    flex: 0 0 auto;
    justify-content: flex-end;
    gap: 0.5rem;
  }
  .nav-utility {
    gap: 0.4rem;
    flex-shrink: 0;
    margin-left: 0;
  }
  .theme-toggle {
    width: 32px;
    height: 32px;
    font-size: 0.78rem;
  }
  .nav-toggle { 
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
    line-height: 0;
  }
  .nav-toggle svg {
    width: 22px;
    height: 22px;
    display: block;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; 
    right: 0;
    margin: 0;
    flex-direction: column;
    background: var(--nav-bg-mobile);
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open { 
    display: flex; 
  }
  #hero { 
    padding: 7.5rem 1.2rem 4rem; 
  }
  section, section.alt { 
    padding: 4.5rem 1.2rem; 
  }
  .about-lead {
    font-size: 0.86rem;
    line-height: 1.75;
    margin-bottom: 1.8rem;
  }
  .about-overview-banner {
    padding: 1.6rem 1.2rem;
  }
  .about-overview-metrics {
    grid-template-columns: 1fr 1fr;
    padding: 1.1rem;
  }
  .about-trio-card {
    padding: 1.6rem 1.2rem;
  }
  .about-block-title {
    font-size: 0.9rem;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
  }
  .about-block-body {
    font-size: 0.82rem;
    line-height: 1.75;
  }
  .about-list li {
    padding: 0.45rem 0;
    font-size: 0.8rem;
    line-height: 1.6;
    gap: 0.6rem;
  }
  .about-list li i {
    font-size: 0.55rem;
    margin-top: 0.35rem;
  }
  .about-sublabel {
    font-size: 0.64rem;
    margin: 1.1rem 0 0.5rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .contact-form-col {
    padding: 2rem 1.2rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .books-grid { 
    grid-template-columns: 1fr; 
  }
  .other-books-grid {
    grid-template-columns: 1fr;
  }
  .footer-top { 
    grid-template-columns: 1fr; 
    padding: 3rem 1.2rem; 
  }
  .footer-bottom { 
    flex-direction: column; 
    gap: 0.5rem; 
    text-align: center; 
    padding: 1.5rem 1.2rem; 
  }
  .hero-actions { 
    flex-direction: column; 
    align-items: stretch; 
  }
  .profile-wrapper { 
    width: 280px; 
  }
  .services-grid { 
    grid-template-columns: repeat(2, 1fr); 
  }
  .modal-box {
    padding: 2.2rem 1.4rem 2rem;
  }
  .btn-scroll-top {
    bottom: 1.5rem;
    right: 1.2rem;
    width: 38px;
    height: 38px;
    font-size: 0.85rem;
  }
  .btn-float {
    bottom: 4.5rem;
    right: 1.2rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.68rem;
  }
}