:root {
  --green-950: #112c21;
  --green-900: #173d2c;
  --green-800: #1d5a3b;
  --green-600: #2d7a4d;
  --saffron: #f6a51a;
  --gold: #ffd166;
  --cream: #fff8e9;
  --paper: #ffffff;
  --earth: #7b5637;
  --muted: #627066;
  --ink: #17231c;
  --line: rgba(29, 90, 59, 0.14);
  --shadow: 0 22px 60px rgba(17, 44, 33, 0.13);
  --radius: 24px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fffdf8;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

body.nav-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: #fff;
  background: var(--green-900);
  border-radius: 10px;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(calc(100% - 32px), var(--max));
  margin-inline: auto;
}

.section {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 253, 248, 0.88);
  border-bottom: 1px solid rgba(29, 90, 59, 0.1);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 24px rgba(17, 44, 33, 0.12);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  font-size: 1rem;
  color: var(--green-900);
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #33463b;
  font-size: 0.95rem;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
}

.nav-links a:hover {
  color: var(--green-900);
  background: rgba(45, 122, 77, 0.1);
}

.nav-links a.active {
  color: var(--green-900);
  background: rgba(246, 165, 26, 0.18);
}

.nav-links .nav-cta {
  color: #fff;
  background: var(--green-800);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--green-900);
  border-radius: 99px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 209, 102, 0.34), transparent 28%),
    radial-gradient(circle at 8% 78%, rgba(246, 165, 26, 0.18), transparent 30%),
    linear-gradient(135deg, #123325 0%, #1d5a3b 48%, #f1a51c 150%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(to bottom, transparent, #fffdf8);
  pointer-events: none;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 209, 102, 0.34), transparent 28%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.page-hero h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.12rem;
}

.page-hero .eyebrow {
  color: var(--gold);
}

.hero-contact-cards {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 0.9fr;
  gap: 14px;
  margin-top: 34px;
}

.hero-contact-cards div {
  padding: 18px 20px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 18px;
  backdrop-filter: blur(12px);
}

.hero-contact-cards strong,
.hero-contact-cards span {
  display: block;
}

.hero-contact-cards strong {
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.9rem;
}

.hero-contact-cards span {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 58px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--saffron);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.vm-card h2,
.cta h2,
.impact h2 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 8vw, 6.9rem);
  font-weight: 800;
}

.hero-subtitle {
  margin: 24px 0 0;
  color: var(--gold);
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.25;
}

.hero-text {
  max-width: 650px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn-primary {
  color: #10261c;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  box-shadow: 0 14px 34px rgba(246, 165, 26, 0.26);
}

.btn-secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
}

.photo-stack {
  position: relative;
  min-height: 540px;
}

.photo-main,
.photo-card,
.glow-card {
  box-shadow: var(--shadow);
}

.photo-main {
  width: 86%;
  height: 470px;
  margin-left: auto;
  object-fit: cover;
  border: 12px solid rgba(255, 255, 255, 0.85);
  border-radius: 34px;
}

.photo-card {
  position: absolute;
  left: 0;
  bottom: 30px;
  width: 48%;
  height: 220px;
  object-fit: cover;
  border: 10px solid #fff;
  border-radius: 28px;
}

.glow-card {
  position: absolute;
  right: 16px;
  bottom: 0;
  width: 210px;
  padding: 18px;
  color: var(--green-950);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
}

.glow-card img {
  width: 58px;
  height: 58px;
  object-fit: cover;
  border-radius: 50%;
}

.glow-card span,
.glow-card strong {
  display: block;
}

.glow-card span {
  margin-top: 12px;
  color: var(--green-600);
  font-weight: 800;
}

.glow-card strong {
  font-size: 1.18rem;
}

.firefly-field span {
  position: absolute;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: #ffdf76;
  border-radius: 50%;
  box-shadow: 0 0 18px 7px rgba(255, 209, 102, 0.5);
  animation: float 7s ease-in-out infinite;
}

.firefly-field span:nth-child(1) { left: 10%; top: 24%; }
.firefly-field span:nth-child(2) { left: 40%; top: 14%; animation-delay: 1.2s; }
.firefly-field span:nth-child(3) { right: 18%; top: 58%; animation-delay: 2.1s; }
.firefly-field span:nth-child(4) { left: 58%; bottom: 18%; animation-delay: 3s; }
.firefly-field span:nth-child(5) { right: 8%; top: 22%; animation-delay: 4s; }

.two-column,
.vm-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: start;
}

.section-heading h2 {
  color: var(--green-950);
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 800;
}

.section-heading p:not(.eyebrow),
.impact p {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-copy {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 44, 33, 0.07);
}

.intro-copy p:first-child {
  margin-top: 0;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.vision-mission {
  background: linear-gradient(180deg, #fffdf8, #f4faef);
}

.vm-grid {
  grid-template-columns: 0.9fr 1.1fr;
}

.vm-card {
  min-height: 100%;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.vm-card-dark {
  color: #fff;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 209, 102, 0.26), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
}

.vm-card h2 {
  font-size: clamp(1.65rem, 3vw, 2.65rem);
}

.vm-card-dark h2,
.vm-card-dark .eyebrow {
  color: #fff;
}

.marathi {
  color: var(--green-800);
  font-family: "Noto Sans Devanagari", "Mangal", system-ui, sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 26px;
  color: var(--green-950);
  background: #fff1c7;
  border-radius: 18px;
  font-size: 1.6rem;
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  background: var(--gold);
  border-radius: 50%;
}

.centered {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.centered p {
  margin-inline: auto;
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.program-card {
  min-height: 264px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 16px 36px rgba(17, 44, 33, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-icon {
  display: inline-grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #fff4d4, #e8f5df);
  border-radius: 18px;
  font-size: 1.55rem;
}

.program-card h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 1.24rem;
  line-height: 1.25;
}

.program-card p {
  margin: 0;
  color: var(--muted);
}

.content-card {
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(17, 44, 33, 0.07);
}

.content-card p:first-child {
  margin-top: 0;
}

.content-card p:last-child {
  margin-bottom: 0;
}

.feature-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.feature-list li {
  padding: 16px 18px;
  color: #435248;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.home-banner {
  padding: 0 0 42px;
  background: #fffdf8;
}

.home-banner-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: grid;
  align-items: end;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(17, 44, 33, 0.16);
}

.home-banner-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 44, 33, 0.88) 0%, rgba(17, 44, 33, 0.55) 46%, rgba(17, 44, 33, 0.12) 100%),
    linear-gradient(0deg, rgba(17, 44, 33, 0.62), transparent 54%);
}

.home-banner-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-banner-copy {
  position: relative;
  z-index: 1;
  max-width: 650px;
  padding: 44px;
  color: #fff;
}

.home-banner-copy .eyebrow {
  color: var(--gold);
}

.home-banner-copy h2 {
  margin: 0 0 24px;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 14px 34px rgba(17, 44, 33, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-item figcaption {
  padding: 14px 16px 16px;
  color: var(--green-900);
  font-weight: 800;
}

.mini-cta {
  padding: 34px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 209, 102, 0.24), transparent 34%),
    linear-gradient(135deg, var(--green-950), var(--green-800));
  border-radius: 28px;
}

.mini-cta h2 {
  max-width: 760px;
  margin: 0 0 20px;
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 1.12;
}

.mini-cta .eyebrow {
  color: var(--gold);
}

.photo-band {
  padding-block: 36px;
  background: #f4faef;
}

.photo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.photo-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 15px 36px rgba(17, 44, 33, 0.1);
}

.journey {
  background: linear-gradient(180deg, #fffdf8, #f7fbf1);
}

.journey-story {
  background: #fffdf8;
}

.journey-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: 48px;
  align-items: center;
}

.journey-photo-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.journey-photo-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.journey-photo-card div {
  padding: 24px 26px 28px;
}

.journey-photo-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--saffron);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.journey-photo-card strong {
  display: block;
  color: var(--green-950);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  line-height: 1.2;
}

.timeline {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin-top: 42px;
  margin-inline: auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(var(--saffron), var(--green-600));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 26px;
  padding: 26px 28px 26px 58px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 14px 34px rgba(17, 44, 33, 0.07);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 10px;
  top: 28px;
  width: 18px;
  height: 18px;
  background: var(--gold);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(246, 165, 26, 0.22);
}

.timeline-item span {
  color: var(--green-900);
  font-weight: 800;
}

.timeline-item h3 {
  margin: 0 0 8px;
  color: var(--green-950);
  font-size: 1.16rem;
  line-height: 1.25;
}

.timeline-item p {
  margin: 0;
  color: #405246;
}

.journey-values {
  padding-top: 36px;
  background: #f7fbf1;
}

.journey-value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.journey-value {
  min-height: 238px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(17, 44, 33, 0.06);
}

.journey-value span {
  display: inline-grid;
  width: 48px;
  height: 48px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--green-950);
  background: #fff1c7;
  border-radius: 16px;
  font-weight: 800;
}

.journey-value h3 {
  margin: 0 0 10px;
  color: var(--green-950);
  font-size: 1.25rem;
}

.journey-value p {
  margin: 0;
  color: #46564b;
}

.journey-final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 209, 102, 0.32), transparent 30%),
    linear-gradient(135deg, #0f2a20, #1d5a3b);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 22px 60px rgba(17, 44, 33, 0.18);
}

.journey-final-cta h2 {
  margin-bottom: 0;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

.journey-final-cta .eyebrow {
  color: #ffd166;
}

.impact {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 209, 102, 0.2), transparent 28%),
    linear-gradient(135deg, #15392a, #1d5a3b);
}

.impact-wrap {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 44px;
  align-items: center;
  padding: 44px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.impact h2,
.impact .eyebrow {
  color: #fff;
}

.impact p {
  color: rgba(255, 255, 255, 0.82);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.value-grid span {
  padding: 18px 20px;
  color: #143225;
  background: rgba(255, 255, 255, 0.88);
  border-radius: 16px;
  font-weight: 800;
}

.cta {
  padding-block: 72px;
  background: #fff8e9;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 38px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.cta h2 {
  max-width: 780px;
  color: var(--green-950);
  font-size: clamp(1.8rem, 3.4vw, 3rem);
}

.cta .journey-final-cta h2 {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.cta .journey-final-cta .eyebrow {
  color: #ffd166;
}

.contact-grid {
  grid-template-columns: 0.95fr 1.05fr;
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.contact-list p {
  margin: 0;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.contact-form label {
  color: var(--green-950);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(29, 90, 59, 0.2);
  border-radius: 14px;
  font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(246, 165, 26, 0.22);
  border-color: var(--saffron);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-footer {
  padding: 46px 0 22px;
  color: rgba(255, 255, 255, 0.84);
  background: var(--green-950);
}

.footer-grid {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}

.footer-brand strong,
.footer-brand small {
  color: #fff;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 24px 34px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.footer-title {
  width: 100%;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-links a:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.11);
  transform: translateY(-1px);
}

.social-icon {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.social-whatsapp .social-icon {
  background: #25d366;
}

.social-whatsapp .social-icon::before {
  content: "WA";
  font-size: 0.58rem;
}

.social-email .social-icon {
  background: #f6a51a;
}

.social-email .social-icon::before {
  content: "@";
  font-size: 0.95rem;
}

.social-facebook .social-icon {
  background: #1877f2;
  font-family: Arial, sans-serif;
}

.social-facebook .social-icon::before {
  content: "f";
  font-size: 1.05rem;
}

.social-instagram .social-icon {
  background: radial-gradient(circle at 30% 110%, #fdf497 0 18%, #fd5949 42%, #d6249f 62%, #285aeb 100%);
}

.social-instagram .social-icon::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 4px;
}

.social-instagram .social-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  right: 6px;
  width: 3px;
  height: 3px;
  background: #fff;
  border-radius: 50%;
}

.social-youtube .social-icon {
  background: #ff0000;
}

.social-youtube .social-icon::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 2px;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid #fff;
}

.copyright {
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
}

.copyright p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease var(--delay, 0ms), transform 600ms ease var(--delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: 0.5; }
  50% { transform: translate3d(18px, -22px, 0); opacity: 1; }
}

@media (max-width: 980px) {
  .section {
    padding: 76px 0;
  }

  .home-banner {
    padding-bottom: 34px;
  }

  .hero-grid,
  .two-column,
  .vm-grid,
  .journey-story-grid,
  .contact-grid,
  .impact-wrap {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 82px;
  }

  .photo-stack {
    min-height: 430px;
  }

  .photo-main {
    width: 100%;
    height: 380px;
  }

  .program-grid,
  .photo-grid,
  .gallery-grid,
  .journey-value-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-contact-cards {
    grid-template-columns: 1fr;
  }

  .photo-grid img:first-child {
    grid-column: 1 / -1;
  }

  .cta-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .journey-final-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 68px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 78px;
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 14px;
  }

  .hero {
    padding-top: 68px;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 15vw, 4.4rem);
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .photo-stack {
    min-height: auto;
    display: grid;
    gap: 14px;
  }

  .photo-main,
  .photo-card,
  .glow-card {
    position: static;
    width: 100%;
  }

  .photo-main,
  .photo-card {
    height: 280px;
    border-width: 8px;
    border-radius: 24px;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 10vw, 2.75rem);
  }

  .intro-copy,
  .vm-card,
  .contact-form,
  .impact-wrap,
  .cta-panel,
  .home-banner-copy {
    padding: 24px;
    border-radius: 20px;
  }

  .home-banner {
    padding-bottom: 28px;
  }

  .home-banner-card {
    min-height: 460px;
    border-radius: 22px;
  }

  .home-banner-card::after {
    background: linear-gradient(0deg, rgba(17, 44, 33, 0.9) 0%, rgba(17, 44, 33, 0.54) 62%, rgba(17, 44, 33, 0.08) 100%);
  }

  .home-banner-copy h2 {
    font-size: clamp(1.75rem, 9vw, 2.6rem);
  }

  .program-grid,
  .photo-grid,
  .value-grid,
  .gallery-grid,
  .journey-value-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 68px 0 58px;
  }

  .content-card {
    padding: 24px;
  }

  .photo-grid img {
    height: 260px;
  }

  .gallery-item img {
    height: 240px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 24px 22px 24px 54px;
  }

  .journey-photo-card img {
    height: 260px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-columns {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
