/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
  /* Palette */
  --forest:      #123524;
  --forest-mid:  #2E5A43;
  --forest-dark: #0B2418;
  --gold:        #C97A35;
  --gold-light:  #E0A45C;
  --white:       #FFFFFF;
  --bg:          #FFFFFF;
  --bg-alt:      #F4F5F3;   /* very light gray — subtle section alternation */
  --bg-dark:     #0B2418;
  --ink:         #111111;
  --ink-soft:    #444444;
  --ink-mute:    #888888;
  --line:        #E2E2E2;
  --line-dark:   #1A3A28;

  /* Type */
  --fs-mega:    clamp(3.5rem, 9vw, 8.5rem);
  --fs-display: clamp(2.2rem, 4vw, 3.6rem);
  --fs-h3:      clamp(1.2rem, 1.8vw, 1.6rem);
  --fs-lead:    clamp(1rem, 1.4vw, 1.2rem);
  --fs-body:    1rem;
  --fs-eye:     0.7rem;

  /* Spacing */
  --gutter:    clamp(1.5rem, 5vw, 3.5rem);
  --section-y: clamp(5rem, 10vw, 9rem);

  /* Shape */
  --r:    0px;
  --r-md: 4px;
  --r-lg: 8px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.75rem 1.25rem;
  background: var(--forest);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 9999;
}
.skip-link:focus { top: 0; }

/* ==========================================================================
   LAYOUT
   ========================================================================== */
.wrap        { width: 100%; max-width: 1280px; margin-inline: auto; padding-inline: var(--gutter); }
.wrap--wide  { max-width: 1480px; }
.wrap--mid   { max-width: 900px; }
.wrap--narrow { max-width: 760px; }

/* ==========================================================================
   EYEBROW
   ========================================================================== */
.eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eye);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.eyebrow--light  { color: var(--gold-light); }
.eyebrow--center { text-align: center; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid transparent;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease;
  white-space: nowrap;
  cursor: pointer;
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn--primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--primary:hover { background: #a8621e; border-color: #a8621e; }

.btn--white {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}
.btn--white:hover { background: transparent; color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: var(--white); }

.btn--outline {
  background: transparent;
  color: var(--forest);
  border-color: var(--forest);
}
.btn--outline:hover { background: var(--forest); color: var(--white); }

.btn--outline-dark {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}
.btn--outline-dark:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

/* Text CTA link */
.link-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--forest);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 200ms ease;
}
.link-cta:hover { color: var(--gold); }
.link-cta--light { color: var(--white); border-bottom-color: var(--gold-light); }
.link-cta--light:hover { color: var(--gold-light); }
.link-cta:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

/* ==========================================================================
   PHOTO PLACEHOLDER
   ========================================================================== */
.photo {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 35% 30%, rgba(80,130,100,.5), transparent 55%),
    linear-gradient(150deg, #3A6050 0%, #1F3D2E 55%, #0F2A1C 100%);
}
.photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    108deg,
    rgba(255,255,255,.025) 0px,
    rgba(255,255,255,.025) 1px,
    transparent 1px,
    transparent 28px
  );
}
.photo__label {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 1.5rem 2rem;
  max-width: 78%;
  color: rgba(255,255,255,.65);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.55;
}
.photo__label::before {
  content: "FOTO";
  display: block;
  font-size: 0.58rem;
  letter-spacing: 0.4em;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 0.55rem;
}

/* ==========================================================================
   HEADER / NAV
   ========================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.25rem 0;
  transition: background 280ms ease, padding 280ms ease, box-shadow 280ms ease;
}
.site-header.is-scrolled {
  background: var(--white);
  padding: 0.8rem 0;
  box-shadow: 0 1px 0 var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

/* LOGO — assets/images/YLL_logo_transparent_final.png */
.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
  color: var(--white);
  transition: color 280ms ease;
}
.site-header.is-scrolled .logo { color: var(--forest); }

.logo__mark {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  object-fit: contain;
  filter: drop-shadow(0 1px 4px rgba(0,0,0,.55));
  transition: filter 280ms ease;
}
.site-header.is-scrolled .logo__mark { filter: none; }

.logo__text {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.logo__text small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 2px;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,.88);
  padding: 4px 0;
  transition: color 200ms ease;
  border-bottom: 2px solid transparent;
}
.site-header.is-scrolled .nav__links a { color: var(--ink-soft); }
.nav__links a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.site-header.is-scrolled .nav__links a:hover { color: var(--gold); }
.nav__links a:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }

.nav__cta { flex-shrink: 0; }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--white);
  transition: color 200ms ease;
}
.site-header.is-scrolled .nav__toggle { color: var(--forest); }
.nav__toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.nav__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  transition: transform 260ms ease, opacity 260ms ease, width 260ms ease;
}
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(2) { opacity: 0; width: 0; }
.nav__toggle[aria-expanded="true"] .nav__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile overlay + drawer */
.nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 199;
}

.nav__drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(85vw, 320px);
  height: 100%;
  background: var(--white);
  z-index: 200;
  padding: 5rem 2rem 2.5rem;
  flex-direction: column;
  box-shadow: -8px 0 32px rgba(0,0,0,.15);
  overflow-y: auto;
}
.nav__drawer ul { display: flex; flex-direction: column; }
.nav__drawer li { border-bottom: 1px solid var(--line); }
.nav__drawer a {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  padding: 1rem 0;
  transition: color 200ms ease;
}
.nav__drawer a:hover { color: var(--gold); }
.nav__drawer .drawer-cta { margin-top: 2rem; }

@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__cta   { display: none; }
  .nav__toggle { display: flex; }
  body.menu-open .nav__drawer  { display: flex; }
  body.menu-open .nav__overlay { display: block; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.hero__slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1000ms ease;
}
.hero__slide.is-active { opacity: 1; }

.hero__slide-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

.hero__slide--tiger .hero__slide-img {
  object-position: center center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.88) 0%,
    rgba(0,0,0,.62) 25%,
    rgba(0,0,0,.25) 55%,
    rgba(0,0,0,.04) 80%,
    transparent 100%
  );
}

/* Arrow navigation */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 52px;
  height: 52px;
  background: rgba(0,0,0,.28);
  border: 1.5px solid rgba(255,255,255,.35);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 220ms ease, border-color 220ms ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 0;
}
.hero__arrow:hover {
  background: rgba(0,0,0,.5);
  border-color: rgba(255,255,255,.75);
}
.hero__arrow:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.hero__arrow svg { width: 20px; height: 20px; pointer-events: none; }

.hero__arrow--prev { left: 1.5rem; }
.hero__arrow--next { right: 1.5rem; }

@media (max-width: 680px) {
  .hero__arrow { width: 38px; height: 38px; top: 38%; }
  .hero__arrow svg { width: 15px; height: 15px; }
  .hero__arrow--prev { left: 0.75rem; }
  .hero__arrow--next { right: 0.75rem; }
}

.hero__body {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 780px;
  padding-top: 5rem;
  padding-bottom: clamp(3.5rem, 7vh, 5.5rem);
}

.hero__kicker {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-eye);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.1rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  text-transform: none;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 800;
}

.hero__sub {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255,255,255,.75);
  margin-bottom: 1.75rem;
  max-width: 460px;
  font-weight: 400;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 680px) {
  .hero { height: auto; min-height: 100svh; }
  .hero h1 { font-size: clamp(2rem, 9vw, 3rem); }
  .hero__body { padding-top: 4rem; padding-bottom: 3.5rem; }
  .hero__sub { font-size: 0.92rem; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { text-align: center; }
}

/* ==========================================================================
   SECTIONS
   ========================================================================== */
.section { padding-block: var(--section-y); }
.section--white  { background: var(--white); }
.section--alt    { background: var(--bg-alt); }
.section--dark   { background: var(--bg-dark); color: var(--white); }
.section--forest { background: var(--forest); color: var(--white); }

.section__head {
  max-width: 680px;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}
.section__head h2 {
  font-size: var(--fs-display);
  font-weight: 800;
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
}
.section__head p {
  margin-top: 1rem;
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  max-width: 560px;
  line-height: 1.7;
}
.section--dark .section__head p,
.section--forest .section__head p { color: rgba(255,255,255,.68); }

/* ==========================================================================
   MISSION
   ========================================================================== */
.mission {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 0;
  align-items: stretch;
  min-height: 560px;
}
@media (max-width: 820px) {
  .mission { grid-template-columns: 1fr; min-height: auto; }
  .mission__img { order: -1; }
  .mission__photo { min-height: 280px; aspect-ratio: 16/9; }
  .mission__content { padding: 2.5rem 0; }
}

.mission__img { overflow: hidden; }
.mission__photo {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border-radius: 0;
}

.mission__content {
  padding: clamp(3rem, 6vw, 5.5rem) clamp(2.5rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mission__heading {
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
  font-weight: 700;
  font-style: italic;
  color: var(--forest);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-top: 0.75rem;
  margin-bottom: 1.5rem;
}
.mission__heading em {
  font-style: normal;
  color: var(--gold);
}

.mission__body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 1.75rem;
  max-width: 480px;
}

.mission__manifesto {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--forest-mid);
  font-style: italic;
  padding: 1rem 0 1rem 1.25rem;
  border-left: 3px solid var(--gold);
  margin-bottom: 2rem;
  max-width: 460px;
}

/* ==========================================================================
   FOCUS CARDS
   ========================================================================== */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.5rem;
}
@media (min-width: 1100px) { .focus-grid { grid-template-columns: repeat(4, 1fr); } }

.focus-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  overflow: hidden;
  transition: box-shadow 260ms ease;
}
.focus-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,.1); }

.focus-card__img {
  overflow: hidden;
  aspect-ratio: 3/2;
}
.focus-card__img .photo {
  width: 100%;
  height: 100%;
  transition: transform 550ms var(--ease);
}
.focus-card:hover .focus-card__img .photo { transform: scale(1.04); }

.focus-card__body {
  padding: 1.5rem 1.25rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.focus-card__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.focus-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.65rem;
  transition: color 200ms ease;
}
.focus-card:hover h3 { color: var(--gold); }

.focus-card p {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  flex: 1;
}

/* ==========================================================================
   STORY
   ========================================================================== */
.story {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
@media (max-width: 820px) {
  .story { grid-template-columns: 1fr; }
  .story__img { order: -1; }
  .story__photo { aspect-ratio: 16/9; max-height: none; }
}

.story__img { overflow: hidden; }
.story__photo {
  aspect-ratio: 3/4;
  max-height: 640px;
  width: 100%;
}

.story__text h2 {
  font-size: var(--fs-display);
  font-weight: 700;
  font-style: italic;
  color: var(--forest);
  margin-bottom: 1.25rem;
  margin-top: 0.75rem;
  letter-spacing: -0.02em;
}
.story__text h2 em {
  font-style: normal;
  color: var(--gold);
}
.story__text p {
  font-size: var(--fs-lead);
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 58ch;
}

/* ==========================================================================
   PROGRAMS
   ========================================================================== */
.programs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 820px) { .programs-grid { grid-template-columns: repeat(3, 1fr); } }

.program-card { display: flex; flex-direction: column; }

.program-card__img {
  overflow: hidden;
  aspect-ratio: 16/11;
  margin-bottom: 1.5rem;
}
.program-card__img .photo {
  width: 100%;
  height: 100%;
  transition: transform 550ms var(--ease);
}
.program-card:hover .program-card__img .photo { transform: scale(1.04); }

.program-card__tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
}
.program-card h3 {
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.program-card p {
  color: var(--ink-soft);
  margin-bottom: 1.25rem;
  flex: 1;
  line-height: 1.65;
  font-size: 0.95rem;
  max-width: 55ch;
}

/* ==========================================================================
   IMPACT
   ========================================================================== */
.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem 2rem;
}
@media (min-width: 820px) { .impact-grid { grid-template-columns: repeat(4, 1fr); } }

.impact-stat {
  padding-top: 1.75rem;
  border-top: 2px solid var(--line-dark);
}
.impact-stat__num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: clamp(3.5rem, 6.5vw, 5.5rem);
  line-height: 1;
  color: var(--gold-light);
  letter-spacing: -0.04em;
  margin-bottom: 0.75rem;
}
.impact-stat__num sup { font-size: 0.5em; }
.impact-stat__label {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}
.impact-note {
  margin-top: 4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,.38);
  font-style: italic;
  max-width: 480px;
}

/* ==========================================================================
   GET INVOLVED
   ========================================================================== */
.involve {
  position: relative;
  isolation: isolate;
  color: var(--white);
}
.involve__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(170deg, rgba(11,36,24,.74) 0%, rgba(11,36,24,.92) 100%),
    radial-gradient(ellipse at 20% 30%, rgba(58,96,80,.48), transparent 55%),
    url('../images/Pemberdayaan-Masyarakat.jpg');
  background-size: cover;
  background-position: center;
}
.involve__bg::after {
  content: "";
  position: absolute;
  bottom: 1rem;
  right: 2rem;
  pointer-events: none;
}

.involve__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
}
.involve__head h2 {
  font-size: var(--fs-display);
  font-weight: 700;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.involve__head p {
  font-size: var(--fs-lead);
  color: rgba(255,255,255,.72);
  line-height: 1.65;
  max-width: 56ch;
  margin-inline: auto;
}

.involve-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 720px) { .involve-grid { grid-template-columns: repeat(3, 1fr); } }

.involve-card {
  border: 1px solid rgba(255,255,255,.14);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color 240ms ease, background 240ms ease;
}
.involve-card:hover {
  border-color: var(--gold-light);
  background: rgba(255,255,255,.04);
}

.involve-card__num {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}
.involve-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}
.involve-card p {
  color: rgba(255,255,255,.68);
  flex: 1;
  margin-bottom: 1.75rem;
  font-size: 0.94rem;
  line-height: 1.65;
}

/* ==========================================================================
   NEWS
   ========================================================================== */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 720px) { .news-grid { grid-template-columns: repeat(3, 1fr); } }

.news-card { display: flex; flex-direction: column; }

.news-card__img {
  overflow: hidden;
  aspect-ratio: 16/11;
  margin-bottom: 1.5rem;
}
.news-card__img .photo {
  width: 100%;
  height: 100%;
  transition: transform 550ms var(--ease);
}
.news-card:hover .news-card__img .photo { transform: scale(1.04); }

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 0.85rem;
}
.news-card__cat { color: var(--gold); }

.news-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  transition: color 200ms ease;
}
.news-card h3 a:hover { color: var(--gold); }

.news-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.news__more {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

/* ==========================================================================
   CLOSING CTA
   ========================================================================== */
.closing {
  position: relative;
  isolation: isolate;
  padding-block: clamp(6rem, 13vw, 11rem);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.closing__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url('../images/Harimau_Sumatera1_Landingpage.jpg');
  background-size: cover;
  background-position: center 30%;
}
.closing__bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.72);
}

.closing h2 {
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 800;
  line-height: 1.06;
  max-width: 860px;
  margin: 0.85rem auto 2.5rem;
  letter-spacing: -0.03em;
}
.closing h2 em {
  font-style: italic;
  color: var(--gold-light);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #0D0D0D;
  color: rgba(255,255,255,.65);
  padding: 5.5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
}

.footer__brand .logo { color: var(--white); margin-bottom: 1.5rem; }
.footer__brand .logo__mark { filter: drop-shadow(0 1px 3px rgba(0,0,0,.4)); }
.footer__brand p { font-size: 0.9rem; line-height: 1.7; max-width: 300px; }

.footer__col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.footer__col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.55);
  transition: color 200ms ease;
}
.footer__col a:hover { color: var(--gold-light); }
.footer__col a:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.footer__contact { font-size: 0.88rem; line-height: 1.75; }
.footer__contact-lbl {
  display: block;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.32);
  margin-top: 1rem;
  margin-bottom: 0.15rem;
}
.footer__contact-lbl:first-child { margin-top: 0; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}
.footer__tagline {
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  font-size: 0.9rem;
  color: var(--gold-light);
  font-weight: 700;
}
.footer__tagline b { color: rgba(255,255,255,.25); font-style: normal; font-weight: 400; margin: 0 0.35rem; }
.footer__copy { font-size: 0.78rem; color: rgba(255,255,255,.3); }

/* ==========================================================================
   REAL PHOTO IMAGES — menggantikan placeholder .photo
   ========================================================================== */
.img-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 550ms var(--ease);
}

/* Zoom on hover via parent card */
.focus-card:hover .img-photo,
.program-card:hover .img-photo,
.news-card:hover .img-photo { transform: scale(1.04); }

/* Mission photo — perlu min-height agar kolom kiri proporsional */
.mission__img .img-photo {
  min-height: 520px;
  object-position: center 30%;
}
@media (max-width: 820px) {
  .mission__img .img-photo { min-height: 280px; }
}

/* Story photo */
.story__img .img-photo {
  aspect-ratio: 3/4;
  max-height: 640px;
}
@media (max-width: 820px) {
  .story__img .img-photo { aspect-ratio: 16/9; max-height: none; }
}

/* ==========================================================================
   FULL-BLEED PULLQUOTE SECTION
   ========================================================================== */
.pullquote {
  background: var(--forest);
  color: var(--white);
  padding-block: clamp(5rem, 11vw, 10rem);
  text-align: center;
}

.pullquote__inner {
  max-width: 860px;
}

.pullquote__line {
  display: block;
  width: 36px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 2.75rem;
}

.pullquote__text {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.55rem, 3.2vw, 2.8rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.28;
  letter-spacing: -0.02em;
  color: var(--white);
}

.pullquote__text em {
  font-style: normal;
  color: var(--gold-light);
}

.pullquote__source {
  margin-top: 2.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.38);
}

/* ==========================================================================
   REVEAL ANIMATION
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.d1 { transition-delay:  80ms; }
.d2 { transition-delay: 160ms; }
.d3 { transition-delay: 240ms; }
.d4 { transition-delay: 320ms; }

/* ==========================================================================
   MOBILE < 480px
   ========================================================================== */
@media (max-width: 480px) {
  .section__head h2 { font-size: 1.85rem; }
  .section__head { margin-bottom: 2.5rem; }
  .closing h2 { font-size: 2rem; }
  .impact-stat__num { font-size: clamp(2.8rem, 14vw, 3.5rem); }
  .involve__head h2 { font-size: 1.85rem; }
  .footer { padding: 3.5rem 0 2rem; }
  .footer__grid { gap: 2.25rem; }
  .program-card h3 { font-size: 1.35rem; }
  .closing .btn { width: 100%; max-width: 320px; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
:focus:not(:focus-visible) { outline: none; }
