:root {
  --bg: #f6f2ec;
  --surface: rgba(255, 255, 255, 0.84);
  --text: #171717;
  --muted: #5f5f5f;
  --line: rgba(0, 0, 0, 0.08);
  --shadow: 0 20px 60px rgba(18, 20, 28, 0.10);
  --shadow-soft: 0 14px 36px rgba(18, 20, 28, 0.08);
  --orange: #f2831f;
  --orange-deep: #d66b10;
  --dark: #15171d;
  --cream: #fff7ef;
  --container: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(242, 131, 31, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(242, 131, 31, 0.06), transparent 22%),
    var(--bg);
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.orb-one {
  width: 280px;
  height: 280px;
  top: -120px;
  left: -80px;
  background: rgba(242, 131, 31, 0.18);
}

.orb-two {
  width: 300px;
  height: 300px;
  right: -80px;
  bottom: -80px;
  background: rgba(210, 178, 140, 0.18);
}

/* topbar */
.topbar {
  background: #13161f;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
}

.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar a {
  color: #ffd5b0;
}

/* header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(246, 242, 236, 0.84);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(250, 247, 243, 0.95);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.07);
}

.nav-shell {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.brand-copy small {
  margin-top: 6px;
  color: var(--muted);
  letter-spacing: 0.16em;
  font-size: 0.72rem;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: #24252a;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-button {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(242, 131, 31, 0.22);
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: #14161a;
  transition: 0.22s ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 0 20px 18px;
  background: rgba(250, 247, 243, 0.98);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 14px;
  border-radius: 14px;
  font-weight: 600;
}

.mobile-link:hover,
.mobile-link.active {
  background: rgba(242, 131, 31, 0.09);
}

/* logo text */
.brand-logo-text,
.hero-card-logo-text,
.footer-logo-text {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #ffffff;
  color: #1b1b1b;
  overflow: hidden;
}

.brand-logo-text::before,
.hero-card-logo-text::before,
.footer-logo-text::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  border: 10px solid #f2831f;
  border-radius: 50%;
  top: -58%;
  right: -52%;
  opacity: 0.95;
}

.brand-logo-text::after,
.hero-card-logo-text::after,
.footer-logo-text::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 78%;
  border: 6px solid rgba(242, 131, 31, 0.22);
  border-radius: 50%;
  top: -24%;
  right: -10%;
}

.brand-logo-text {
  width: 74px;
  height: 74px;
  border-radius: 18px;
  padding: 8px;
  box-shadow: 0 14px 36px rgba(18, 20, 28, 0.08);
  flex-shrink: 0;
}

.hero-card-logo-text {
  width: 100%;
  min-height: 120px;
  border-radius: 22px;
  padding: 16px 18px;
}

.footer-logo-text {
  width: 170px;
  min-height: 90px;
  border-radius: 20px;
  padding: 12px 14px;
  margin-bottom: 16px;
}

.logo-year {
  position: relative;
  z-index: 2;
  font-weight: 800;
  line-height: 0.95;
  color: #f2831f;
  letter-spacing: 0.04em;
}

.logo-name {
  position: relative;
  z-index: 2;
  font-weight: 800;
  line-height: 1.05;
  color: #2a2a2a;
  letter-spacing: 0.08em;
}

.brand-logo-text .logo-year {
  font-size: 1.35rem;
}

.brand-logo-text .logo-name {
  font-size: 0.52rem;
}

.hero-card-logo-text .logo-year {
  font-size: 2.2rem;
}

.hero-card-logo-text .logo-name {
  font-size: 0.95rem;
}

.footer-logo-text .logo-year {
  font-size: 1.8rem;
}

.footer-logo-text .logo-name {
  font-size: 0.72rem;
}

/* hero */
.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  overflow: hidden;
  background: #10141d;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: opacity 0.8s ease, transform 4.5s ease;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 14% 18%, rgba(242, 131, 31, 0.12), transparent 24%),
    radial-gradient(circle at 85% 70%, rgba(255, 255, 255, 0.08), transparent 25%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 42px);
  display: grid;
  grid-template-columns: 1.08fr 0.68fr;
  gap: 30px;
  align-items: center;
  padding: 90px 0 124px;
}

.eyebrow,
.section-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 800;
  font-size: 0.78rem;
}

.eyebrow {
  color: rgba(255, 255, 255, 0.84);
  margin-bottom: 16px;
}

.section-label {
  color: var(--orange-deep);
  margin-bottom: 14px;
}

.hero-copy h1,
.section-copy h2,
.mission-copy h2,
.section-heading h2,
.staff-copy h2,
.contact-copy h2 {
  font-family: "Playfair Display", serif;
  line-height: 1.05;
  margin-top: 0;
}

.hero-copy h1 {
  color: #fff;
  font-size: clamp(2.8rem, 5.8vw, 5.4rem);
  margin-bottom: 18px;
  max-width: 800px;
}

.hero-text {
  color: rgba(255, 255, 255, 0.90);
  max-width: 720px;
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-stat-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.hero-stat {
  min-width: 150px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.hero-stat strong {
  display: block;
  font-size: 0.77rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.76);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.hero-card-logo-wrap {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  padding: 14px;
  margin-bottom: 16px;
}

.pill {
  display: inline-flex;
  min-height: 34px;
  padding: 0 12px;
  align-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-card h3 {
  font-size: 1.4rem;
  margin: 16px 0 18px;
}

.hero-controls {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.hero-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  border: 0;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
}

.dot.active {
  width: 34px;
  background: var(--orange);
}

/* buttons */
.btn {
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition: transform 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  box-shadow: 0 16px 34px rgba(242, 131, 31, 0.24);
}

.btn-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-light {
  background: #fff;
  color: #15161a;
}

.btn-outline-light {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

/* general */
section {
  padding: 100px 0;
}

.split-grid,
.mission-grid,
.staff-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 28px;
  align-items: center;
}

.section-copy h2,
.mission-copy h2,
.staff-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 16px;
}

.section-copy p,
.mission-copy p,
.staff-copy p,
.contact-copy p,
.section-subtext {
  color: var(--muted);
}

.tag-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.tag-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(242, 131, 31, 0.10);
  color: var(--orange-deep);
  font-weight: 700;
  font-size: 0.92rem;
}

.info-panel,
.highlight-card,
.leader-card,
.contact-form,
.program-card,
.gallery-item {
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.info-panel {
  border-radius: 28px;
  padding: 28px;
}

.info-panel h3 {
  margin-top: 0;
  margin-bottom: 18px;
  font-size: 1.35rem;
}

.info-list {
  display: grid;
  gap: 16px;
}

.info-item {
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.info-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.info-item span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  color: var(--orange-deep);
  font-weight: 800;
  margin-bottom: 6px;
}

.info-item p {
  margin: 0;
}

.info-list.compact .info-item {
  border-color: rgba(255, 255, 255, 0.14);
}

.info-list.compact .info-item span {
  color: rgba(255, 255, 255, 0.74);
}

/* mission */
.mission-visual img,
.staff-visual img {
  height: 600px;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.mission-points {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.mission-points article {
  padding: 18px 20px;
  border-radius: 22px;
  background: var(--cream);
  border: 1px solid rgba(242, 131, 31, 0.10);
}

.mission-points strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-deep);
}

/* headings */
.section-heading {
  margin-bottom: 38px;
}

.section-heading.center {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
}

.section-subtext {
  max-width: 760px;
  margin: 0 auto;
}

/* programs */
.programs-section {
  background: linear-gradient(180deg, rgba(255, 247, 239, 0.7), rgba(255, 255, 255, 0.35));
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.program-card {
  border-radius: 26px;
  overflow: hidden;
}

.program-card img {
  height: 240px;
}

.program-body {
  padding: 22px;
}

.program-body small {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--orange-deep);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.program-body h3 {
  margin: 0 0 10px;
  font-size: 1.34rem;
}

.program-body p {
  margin: 0;
  color: var(--muted);
}

/* highlights */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.highlight-card {
  border-radius: 26px;
  padding: 26px;
}

.highlight-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.34rem;
}

.highlight-card p {
  margin-bottom: 0;
  color: var(--muted);
}

/* staff */
.staff-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 247, 239, 0.5));
}

.leader-card {
  border-radius: 24px;
  padding: 24px;
  margin-top: 24px;
}

.leader-badge {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(242, 131, 31, 0.10);
  color: var(--orange-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.leader-card h3 {
  margin: 14px 0 10px;
  font-size: 1.5rem;
}

/* donate */
.donate-section {
  padding-top: 30px;
}

.donate-shell {
  background: linear-gradient(135deg, #1a1b21, #272933 40%, #3c3128 100%);
  color: #fff;
  border-radius: 32px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  box-shadow: 0 24px 60px rgba(17, 18, 22, 0.2);
}

.donate-shell h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  margin: 0 0 10px;
}

.donate-shell p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 760px;
}

.section-label.light {
  color: rgba(255, 255, 255, 0.8);
}

.donate-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.gallery-grid .gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item {
  border-radius: 24px;
  overflow: hidden;
}

.gallery-item img {
  height: 100%;
  min-height: 240px;
}

/* contact */
.contact-section {
  background:
    radial-gradient(circle at top left, rgba(242, 131, 31, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 247, 239, 0.48));
}

.contact-grid {
  align-items: start;
}

.contact-data p {
  margin-bottom: 14px;
}

.contact-data a {
  color: var(--orange-deep);
  font-weight: 700;
}

.contact-form {
  border-radius: 28px;
  padding: 28px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: #fffdfb;
  color: var(--text);
  border-radius: 16px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #888;
}

.field input:focus,
.field textarea:focus {
  border-color: rgba(242, 131, 31, 0.7);
  box-shadow: 0 0 0 4px rgba(242, 131, 31, 0.10);
}

.field input.is-invalid,
.field textarea.is-invalid {
  border-color: #d46a6a;
  box-shadow: 0 0 0 4px rgba(212, 106, 106, 0.10);
}

.field-error {
  display: block;
  min-height: 18px;
  margin-top: 6px;
  font-size: 0.87rem;
  color: #b85252;
}

.form-feedback {
  display: none;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  font-size: 0.94rem;
  font-weight: 500;
}

.form-feedback.error {
  display: block;
  background: #fde9e9;
  color: #8f2f2f;
  border: 1px solid #efcaca;
}

.form-feedback.success {
  display: block;
  background: #eaf8ee;
  color: #24653a;
  border: 1px solid #bfe1c7;
}

.submit-btn {
  width: 100%;
  min-height: 54px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-deep));
  color: #fff;
  font-weight: 800;
  cursor: pointer;
}

.form-note {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 12px;
  margin-bottom: 0;
}

/* footer */
.site-footer {
  padding: 74px 0 24px;
  background: #14161d;
  color: rgba(255, 255, 255, 0.88);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.9fr;
  gap: 28px;
}

.site-footer h4 {
  color: #fff;
  margin-top: 4px;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #ffd7af;
}

.footer-address {
  color: rgba(255, 255, 255, 0.78);
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* responsive */
@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-block;
  }

  .hero-grid,
  .split-grid,
  .mission-grid,
  .staff-grid,
  .contact-grid,
  .footer-grid,
  .program-grid,
  .highlight-grid,
  .gallery-grid,
  .donate-shell {
    grid-template-columns: 1fr;
  }

  .mission-visual img,
  .staff-visual img {
    height: 420px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .topbar-inner {
    min-height: 48px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 8px 0;
  }

  .nav-shell {
    min-height: 82px;
  }

  .brand-logo-text {
    width: 58px;
    height: 58px;
  }

  .brand-copy strong {
    font-size: 0.92rem;
  }

  .brand-copy small {
    font-size: 0.67rem;
  }

  .brand-logo-text .logo-year {
    font-size: 1.05rem;
  }

  .brand-logo-text .logo-name {
    font-size: 0.42rem;
  }

  .hero-card-logo-text {
    min-height: 96px;
  }

  .hero-card-logo-text .logo-year {
    font-size: 1.7rem;
  }

  .hero-card-logo-text .logo-name {
    font-size: 0.78rem;
  }

  .footer-logo-text {
    width: 150px;
    min-height: 80px;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    min-height: auto;
    padding: 88px 0 120px;
  }

  .hero-actions,
  .hero-stat-row,
  .donate-actions,
  .tag-row {
    flex-direction: column;
  }

  .btn,
  .nav-button {
    width: 100%;
  }

  .hero-stat {
    width: 100%;
  }

  section {
    padding: 78px 0;
  }
}