*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --forest:   #0d1f0d;
      --canopy:   #162916;
      --moss:     #2e5c28;
      --fern:     #4a8c40;
      --leaf:     #7bbf6a;
      --amber:    #c8a456;
      --gold:     #e8c97a;
      --cream:    #f2ebe0;
      --mist:     #d4cfc5;
      --ink:      #1a2e1a;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--forest);
      color: var(--cream);
      font-family: 'Jost', sans-serif;
      font-weight: 300;
      line-height: 1.8;
      overflow-x: hidden;
    }

    
    #leaf-canvas {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      opacity: 0.35;
    }

    
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0.7rem 3rem;
      background: #ffffff;
      box-shadow: 0 2px 20px rgba(0,0,0,0.08);
      transition: box-shadow 0.3s;
    }
    nav.scrolled {
      box-shadow: 0 4px 30px rgba(0,0,0,0.14);
    }
    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 0.3rem;
    }
    .nav-links { display: flex; gap: 0; list-style: none; align-items: center; }
    .nav-links li { position: relative; list-style: none; }
    .nav-links a {
      color: #222;
      text-decoration: none;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 0.5rem 1rem;
      transition: color 0.2s;
      display: block;
      position: relative;
    }
    .nav-links a:hover, .nav-links a.active { color: var(--fern); }
    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: -2px; left: 1rem; right: 1rem;
      height: 2px;
      background: var(--fern);
      border-radius: 2px;
    }
    .nav-cta {
      margin-left: 1.2rem;
      padding: 0.6rem 1.4rem;
      background: #111;
      color: #fff;
      font-size: 0.75rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 4px;
      transition: background 0.2s, transform 0.2s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--fern); transform: translateY(-1px); }

    
    #home {
      position: relative;
      min-height: calc(100vh - 72px);
      margin-top: 72px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      overflow: hidden;
      background: #0d1a0d;
    }
    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 5rem;
      position: relative;
      z-index: 2;
    }
    .hero-right {
      position: relative;
      overflow: hidden;
    }
    .hero-tiger-img {
      position: absolute;
      top: 0; right: 0; bottom: 0; left: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center 30%;
    }
    /* Smooth multi-stop left smudge */
    .hero-tiger-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(
        to right,
        #0d1a0d   0%,
        rgba(13,26,13,0.97) 8%,
        rgba(13,26,13,0.88) 16%,
        rgba(13,26,13,0.72) 26%,
        rgba(13,26,13,0.50) 38%,
        rgba(13,26,13,0.28) 52%,
        rgba(13,26,13,0.10) 68%,
        rgba(13,26,13,0.02) 82%,
        transparent        100%
      );
      z-index: 1;
    }
    /* Top & bottom vignette */
    .hero-tiger-vignette {
      position: absolute; inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(13,26,13,0.55) 0%,
        rgba(13,26,13,0.15) 15%,
        transparent 30%,
        transparent 72%,
        rgba(13,26,13,0.45) 88%,
        #0d1a0d 100%
      );
      z-index: 1;
    }
    /* Photo caption badge */
    .hero-tiger-caption {
      position: absolute;
      bottom: 1.2rem; right: 1.4rem;
      z-index: 2;
      font-size: 0.62rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      background: rgba(0,0,0,0.25);
      padding: 0.3rem 0.7rem;
      backdrop-filter: blur(4px);
    }
    .hero-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--leaf);
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.3s forwards;
    }
    .hero-title {
      font-family: 'Jost', sans-serif;
      font-size: clamp(2.8rem, 5.5vw, 5.5rem);
      font-weight: 700;
      line-height: 1.0;
      color: #ffffff;
      letter-spacing: -0.01em;
      opacity: 0;
      animation: fadeUp 0.8s 0.5s forwards;
      text-transform: uppercase;
    }
    .hero-title .india-line {
      color: var(--fern);
      display: block;
    }
    .hero-subtitle {
      font-size: clamp(1rem, 1.8vw, 1.3rem);
      font-weight: 500;
      color: #ffffff;
      letter-spacing: 0.02em;
      margin-top: 1rem;
      opacity: 0;
      animation: fadeUp 0.8s 0.65s forwards;
      text-transform: uppercase;
    }
    .hero-body {
      max-width: 440px;
      margin-top: 1.2rem;
      font-size: 0.98rem;
      color: rgba(210,205,195,0.72);
      line-height: 1.7;
      opacity: 0;
      animation: fadeUp 0.8s 0.8s forwards;
    }
    .hero-cta {
      margin-top: 2.5rem;
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      opacity: 0;
      animation: fadeUp 0.8s 1s forwards;
    }
    .btn-primary {
      padding: 0.85rem 2rem;
      background: var(--moss);
      border: 2px solid var(--fern);
      border-radius: 6px;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      cursor: pointer;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--fern); transform: translateY(-2px); }
    .btn-ghost {
      padding: 0.85rem 2rem;
      background: transparent;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 6px;
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      transition: border-color 0.25s, background 0.25s, transform 0.2s;
    }
    .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

    
    .hero-mission-bar {
      position: relative;
      z-index: 2;
      background: #111e11;
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-top: 1px solid rgba(74,140,64,0.2);
    }
    .mission-bar-item {
      display: flex;
      align-items: flex-start;
      gap: 1.4rem;
      padding: 2.2rem 3rem;
    }
    .mission-bar-item:first-child {
      border-right: 1px solid rgba(74,140,64,0.2);
    }
    .mission-bar-icon {
      width: 44px; height: 44px;
      border-radius: 50%;
      background: rgba(46,92,40,0.3);
      border: 1px solid rgba(74,140,64,0.35);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }
    .mission-bar-text h4 {
      font-family: 'Jost', sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 0.4rem;
    }
    .mission-bar-text p {
      font-size: 0.88rem;
      color: rgba(210,205,195,0.65);
      line-height: 1.5;
    }

    .scroll-hint { display: none; }

    
    section {
      position: relative;
      z-index: 1;
      padding: 7rem 2rem;
    }
    .container { max-width: 960px; margin: 0 auto; }
    .container-wide { max-width: 1200px; margin: 0 auto; }

    .section-eyebrow {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--fern);
      background: rgba(74,140,64,0.12);
      border: 1px solid rgba(74,140,64,0.3);
      padding: 0.35rem 1rem;
      margin-bottom: 1.4rem;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      line-height: 1.08;
      color: #ffffff;
      margin-bottom: 1.2rem;
    }
    .section-title em { color: var(--gold); font-style: italic; }
    .section-title strong { color: var(--leaf); font-style: normal; font-weight: 600; }
    .section-lead {
      font-size: 1.08rem;
      line-height: 1.8;
      color: rgba(255,255,255,0.65);
      max-width: 560px;
    }
    .accent-line {
      width: 48px; height: 3px;
      background: var(--fern);
      margin: 1.4rem 0;
      border-radius: 2px;
    }

    
    #about {
      background: #0a180a;
      padding: 0;
      overflow: hidden;
    }
    .about-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 520px;
    }
    .about-top-left {
      padding: 7rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
    }
    .about-top-left::after {
      content: '';
      position: absolute;
      right: 0; top: 10%; bottom: 10%;
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(74,140,64,0.3), transparent);
    }
    .about-founder-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center top;
      display: block;
    }
    .about-img-placeholder {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      min-height: 520px;
      position: relative;
      overflow: hidden;
    }
    .about-img-placeholder::before {
      display: none;
    }
    .about-founder-wrap {
      position: relative;
      overflow: hidden;
      min-height: 520px;
      background: #0a180a;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .about-founder-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to right,
        #0a180a 0%,
        rgba(10,24,10,0.85) 8%,
        rgba(10,24,10,0.55) 18%,
        rgba(10,24,10,0.25) 32%,
        rgba(10,24,10,0.05) 50%,
        transparent 70%
      );
      z-index: 1;
      pointer-events: none;
    }
    .about-founder-img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      object-position: center top;
      display: block;
      filter: contrast(1.0) brightness(1.0);
      transition: transform 0.6s ease, filter 0.4s ease;
    }
    .about-founder-wrap:hover .about-founder-img {
      transform: scale(1.03);
      filter: contrast(1.0) brightness(1.09);
    }
    .about-img-placeholder .placeholder-icon {
      font-size: 4rem;
      opacity: 0.25;
      position: relative;
      z-index: 1;
    }
    .about-img-placeholder p {
      font-size: 0.65rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.2);
      position: relative;
      z-index: 1;
    }
    /* big decorative quote mark */
    .about-deco-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 12rem;
      line-height: 0.7;
      color: rgba(74,140,64,0.08);
      position: absolute;
      top: 3rem; left: 3rem;
      pointer-events: none;
      user-select: none;
    }
    .about-name-tag {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--fern);
      padding: 0.5rem 1.4rem;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: #fff;
      margin-bottom: 1.6rem;
      box-shadow: 0 4px 20px rgba(74,140,64,0.35);
    }
    .about-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5.5vw, 5rem);
      font-weight: 300;
      line-height: 1.0;
      color: #fff;
      margin-bottom: 0.8rem;
      letter-spacing: -0.02em;
    }
    .about-headline em {
      color: var(--gold);
      font-style: italic;
      display: block;
      font-size: 1.15em;
    }
    .about-accent { width: 48px; height: 3px; background: var(--fern); border-radius: 2px; margin: 1.4rem 0; }
    .about-story-text {
      font-size: 1rem;
      line-height: 1.9;
      color: rgba(255,255,255,0.65);
      margin-bottom: 1.4rem;
    }
    .about-pull-quote {
      border-left: 3px solid var(--fern);
      padding: 1rem 1.6rem;
      background: rgba(74,140,64,0.07);
      margin: 1.6rem 0;
    }
    .about-pull-quote p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-style: italic;
      color: var(--gold);
      line-height: 1.55;
    }
    /* Bottom strip — mission / vision / approach */
    .about-bottom {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .about-pillar {
      padding: 3rem 3.5rem;
      border-right: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
    }
    .about-pillar:last-child { border-right: none; }
    .about-pillar:hover { background: rgba(74,140,64,0.06); }
    .about-pillar-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3rem;
      font-weight: 300;
      color: rgba(74,140,64,0.2);
      line-height: 1;
      margin-bottom: 0.6rem;
    }
    .about-pillar-icon { font-size: 1.8rem; margin-bottom: 1rem; }
    .about-pillar h3 {
      font-size: 0.68rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--leaf);
      margin-bottom: 0.8rem;
    }
    .about-pillar p {
      font-size: 0.93rem;
      color: rgba(255,255,255,0.58);
      line-height: 1.75;
    }

    
    
    #goals { background: #060f06; padding: 7rem 2rem; }
    .goals-header { text-align: center; margin-bottom: 5rem; }
    .goals-header .accent-line { margin: 1.4rem auto; }
    .goals-grid-new {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      max-width: 1100px;
      margin: 0 auto;
    }
    .goal-card-new {
      padding: 2.8rem 2.4rem;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-start;
      gap: 1.6rem;
      border-radius: 16px;
      cursor: default;
      /* glass base */
      background: rgba(255,255,255,0.02);
      backdrop-filter: blur(0px);
      border: none;
      transition: background 0.4s ease, backdrop-filter 0.4s ease,
                  box-shadow 0.4s ease, transform 0.3s ease;
    }
    .goal-card-new:hover {
      background: rgba(255,255,255,0.07);
      backdrop-filter: blur(12px);
      box-shadow:
        0 8px 32px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.08),
        inset 0 0 0 1px rgba(74,140,64,0.18);
      transform: translateY(-5px);
    }
    /* subtle shimmer on hover */
    .goal-card-new::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(255,255,255,0.06) 0%,
        transparent 50%,
        rgba(74,140,64,0.04) 100%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .goal-card-new:hover::before { opacity: 1; }
    .goal-card-new::after {
      content: attr(data-num);
      position: absolute;
      top: -0.5rem; right: 1rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 6rem;
      font-weight: 300;
      color: rgba(74,140,64,0.06);
      line-height: 1;
      pointer-events: none;
      user-select: none;
    }
    .goal-icon-wrap {
      width: 52px; height: 52px;
      border-radius: 50%;
      background: rgba(74,140,64,0.12);
      border: 1px solid rgba(74,140,64,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      flex-shrink: 0;
      transition: transform 0.35s, background 0.35s, box-shadow 0.35s;
    }
    .goal-card-new:hover .goal-icon-wrap {
      background: rgba(74,140,64,0.25);
      transform: scale(1.12);
      box-shadow: 0 0 18px rgba(74,140,64,0.3);
    }
    .goal-card-body { flex: 1; position: relative; z-index: 1; }
    .goal-card-new .goal-num {
      font-size: 0.6rem;
      font-weight: 600;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--fern);
      margin-bottom: 0.5rem;
    }
    .goal-card-new h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.45rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 0.6rem;
      line-height: 1.2;
    }
    .goal-card-new p { font-size: 0.91rem; color: rgba(255,255,255,0.52); line-height: 1.75; }

    
    
    #gallery { background: #0a180a; padding: 7rem 2rem; }
    .gallery-header { margin-bottom: 3.5rem; }

    /* Masonry via CSS columns */
    .gallery-masonry {
      columns: 3;
      column-gap: 14px;
      max-width: 1200px;
      margin: 0 auto;
    }
    .g-slot {
      break-inside: avoid;
      margin-bottom: 14px;
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      cursor: default;
      display: block;
    }
    /* Nature-textured SVG pattern background per slot */
    .g-slot-bg {
      width: 100%;
      display: block;
      position: relative;
    }
    /* Height variants */
    .g-slot.h1 .g-slot-bg { padding-top: 130%; }
    .g-slot.h2 .g-slot-bg { padding-top: 100%; }
    .g-slot.h3 .g-slot-bg { padding-top: 75%;  }
    .g-slot.h4 .g-slot-bg { padding-top: 155%; }
    .g-slot.h5 .g-slot-bg { padding-top: 60%;  }

    /* pattern fill */
    .g-slot-pattern {
      position: absolute;
      inset: 0;
      background-color: #0d1f0d;
    }
    /* each slot gets a unique gradient + svg leaf pattern */
    .g-slot:nth-child(1)  .g-slot-pattern { background: linear-gradient(160deg,#0d2210 0%,#173d17 100%); }
    .g-slot:nth-child(2)  .g-slot-pattern { background: linear-gradient(145deg,#0a1a0d 0%,#1a3a1a 100%); }
    .g-slot:nth-child(3)  .g-slot-pattern { background: linear-gradient(130deg,#112211 0%,#0c2a0c 100%); }
    .g-slot:nth-child(4)  .g-slot-pattern { background: linear-gradient(155deg,#081808 0%,#1f3d1f 100%); }
    .g-slot:nth-child(5)  .g-slot-pattern { background: linear-gradient(140deg,#0f2a0f 0%,#153015 100%); }
    .g-slot:nth-child(6)  .g-slot-pattern { background: linear-gradient(165deg,#0a1e0a 0%,#1c3a1c 100%); }

    /* SVG leaf/branch texture overlay */
    .g-slot-pattern::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='none' stroke='rgba(74,140,64,0.12)' stroke-width='1'%3E%3Cellipse cx='30' cy='40' rx='18' ry='9' transform='rotate(-30 30 40)'/%3E%3Cellipse cx='70' cy='30' rx='15' ry='7' transform='rotate(20 70 30)'/%3E%3Cellipse cx='55' cy='75' rx='20' ry='10' transform='rotate(-15 55 75)'/%3E%3Cellipse cx='90' cy='80' rx='14' ry='7' transform='rotate(35 90 80)'/%3E%3Cellipse cx='15' cy='90' rx='16' ry='8' transform='rotate(-25 15 90)'/%3E%3Cline x1='30' y1='40' x2='55' y2='75' stroke='rgba(74,140,64,0.07)'/%3E%3Cline x1='70' y1='30' x2='90' y2='80' stroke='rgba(74,140,64,0.07)'/%3E%3C/g%3E%3C/svg%3E");
      background-size: 120px 120px;
      opacity: 0.6;
    }

    /* overlay label at bottom */
    .g-slot-label-wrap {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 2rem 1.4rem 1.2rem;
      background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .g-slot:hover .g-slot-label-wrap { opacity: 1; }
    .g-slot-label {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.85);
      font-weight: 500;
    }
    .g-slot-coming {
      font-size: 0.58rem;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
    }

    /* real photos in gallery slots */
    .g-slot img {
      position: absolute;
      inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
    }
    .g-slot:hover img { transform: scale(1.05); }

    /* centre icon */
    .g-slot-icon-center {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 2.8rem;
      opacity: 0.18;
      transition: opacity 0.35s;
      pointer-events: none;
    }
    .g-slot:hover .g-slot-icon-center { opacity: 0.08; }

    .gallery-cta-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 3rem;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto;
      flex-wrap: wrap;
      gap: 1rem;
    }
    .gallery-cta-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-style: italic;
      color: rgba(255,255,255,0.4);
      max-width: 440px;
    }
    .btn-portfolio-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.9rem 2.4rem;
      background: var(--fern);
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 0.78rem;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 8px;
      transition: background 0.25s, transform 0.2s;
      white-space: nowrap;
    }
    .btn-portfolio-cta:hover { background: #3d7835; transform: translateY(-2px); }

    
    
    #activities { background: #0a1a0a; }
    .activities-wrap {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 6rem;
      align-items: start;
    }
    .activities-list-new { display: flex; flex-direction: column; }
    .act-item {
      display: flex;
      align-items: flex-start;
      gap: 1.8rem;
      padding: 2rem 1.2rem;
      border-bottom: 1px solid rgba(255,255,255,0.07);
      position: relative;
      transition: background 0.3s, padding-left 0.3s;
      border-radius: 8px;
      margin-bottom: 4px;
    }
    .act-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
    .act-item::before {
      content: '';
      position: absolute;
      left: 0; top: 12px; bottom: 12px;
      width: 3px;
      background: var(--fern);
      border-radius: 2px;
      opacity: 0;
      transition: opacity 0.3s;
    }
    .act-item:hover { background: rgba(74,140,64,0.06); padding-left: 1.8rem; }
    .act-item:hover::before { opacity: 1; }
    .act-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.8rem;
      font-weight: 300;
      color: rgba(74,140,64,0.2);
      line-height: 1;
      min-width: 52px;
      flex-shrink: 0;
      transition: color 0.3s;
    }
    .act-item:hover .act-num { color: rgba(74,140,64,0.45); }
    .act-body { flex: 1; }
    .act-header {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      margin-bottom: 0.5rem;
    }
    .act-icon { font-size: 1.3rem; }
    .act-status {
      font-size: 0.58rem;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--fern);
      background: rgba(74,140,64,0.12);
      padding: 0.2rem 0.6rem;
      border-radius: 20px;
      margin-left: auto;
    }
    .act-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-weight: 400;
      color: #fff;
      margin-bottom: 0.4rem;
      line-height: 1.2;
    }
    .act-desc { font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

    
    
    .join-contact-wrap {
      position: relative;
      background: #050f05;
    }
    .join-contact-wrap::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('Join-bg.jpeg') center 40% / cover no-repeat;
      opacity: 0.28;
      z-index: 0;
    }
    .join-contact-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom,
        rgba(5,12,5,0.55) 0%,
        rgba(5,12,5,0.45) 50%,
        rgba(5,12,5,0.65) 100%
      );
      z-index: 0;
    }
    /* divider line between join and contact */
    .join-contact-divider {
      position: relative;
      z-index: 1;
      height: 1px;
      background: linear-gradient(to right, transparent, rgba(74,140,64,0.25), transparent);
    }
    #join { background: transparent; padding: 0; }
    .join-banner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 600px;
    }
    .join-left, .join-right { position: relative; z-index: 1; }
    .join-left {
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .join-left-content { position: relative; z-index: 1; }
    .join-eyebrow {
      display: inline-block;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--leaf);
      background: rgba(74,140,64,0.15);
      border: 1px solid rgba(74,140,64,0.3);
      padding: 0.35rem 1rem;
      margin-bottom: 1.6rem;
    }
    .join-headline {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(3rem, 5vw, 4.5rem);
      font-weight: 300;
      line-height: 1.0;
      color: #fff;
      margin-bottom: 0.5rem;
    }
    .join-headline em { color: var(--gold); font-style: italic; display: block; }
    .join-tagline {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      font-style: italic;
      color: rgba(255,255,255,0.65);
      margin: 1.2rem 0 2.5rem;
      line-height: 1.6;
      border-left: 2px solid rgba(74,140,64,0.5);
      padding-left: 1.2rem;
    }
    .join-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      padding: 1rem 2.4rem;
      background: var(--fern);
      color: #fff;
      font-family: 'Jost', sans-serif;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      text-decoration: none;
      border-radius: 6px;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      align-self: flex-start;
      box-shadow: 0 4px 20px rgba(74,140,64,0.3);
    }
    .join-btn:hover {
      background: #3d7835;
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(74,140,64,0.4);
    }
    /* Right — dark cards */
    .join-right {
      background: transparent;
      padding: 6rem 5rem;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }
    .join-right-label {
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--fern);
      margin-bottom: 0.5rem;
    }
    .join-card {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      padding: 1.3rem 1.6rem;
      background: rgba(255,255,255,0.03);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s, border-color 0.3s, transform 0.25s;
      cursor: default;
    }
    .join-card:hover {
      background: rgba(74,140,64,0.08);
      border-color: rgba(74,140,64,0.3);
      transform: translateX(6px);
    }
    .join-card-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
      width: 44px; height: 44px;
      background: rgba(74,140,64,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s;
    }
    .join-card:hover .join-card-icon { background: rgba(74,140,64,0.22); }
    .join-card p { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.65; }

    
    
    #contact {
      background: transparent;
      padding: 0;
    }
    .contact-outer {
      display: grid;
      grid-template-columns: 1fr 1fr;
      position: relative;
      z-index: 1;
    }
    #join > *, #contact > * { position: relative; z-index: 1; }
    .contact-info-panel {
      padding: 7rem 5rem;
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .contact-info-panel .section-eyebrow { margin-bottom: 1.4rem; }
    .contact-info-panel .section-title { margin-bottom: 1rem; }
    .contact-info-panel .accent-line { margin-bottom: 1.6rem; }
    .contact-info-panel > p {
      font-size: 1rem;
      color: rgba(255,255,255,0.55);
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 420px;
    }
    .contact-links { display: flex; flex-direction: column; gap: 1rem; }
    .contact-link {
      display: flex;
      align-items: center;
      gap: 1.4rem;
      padding: 1.3rem 1.8rem;
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 10px;
      text-decoration: none;
      color: #fff;
      transition: border-color 0.3s, background 0.3s, transform 0.25s;
    }
    .contact-link:hover {
      border-color: var(--fern);
      background: rgba(74,140,64,0.1);
      transform: translateX(8px);
    }
    .contact-link-icon {
      width: 50px; height: 50px;
      background: rgba(74,140,64,0.12);
      border: 1px solid rgba(74,140,64,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
      flex-shrink: 0;
      transition: background 0.3s, transform 0.3s;
    }
    .contact-link:hover .contact-link-icon {
      background: rgba(74,140,64,0.25);
      transform: scale(1.1);
    }
    .contact-link-label {
      font-size: 0.6rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--leaf);
      margin-bottom: 0.3rem;
    }
    .contact-link-value { font-size: 0.97rem; color: rgba(255,255,255,0.8); }

    /* Right — quote panel */
    .contact-quote-panel {
      padding: 7rem 5rem;
      background: transparent;
      display: flex;
      flex-direction: column;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
    .contact-quote-panel::before {
      content: '"';
      position: absolute;
      top: -2rem; left: 3rem;
      font-family: 'Cormorant Garamond', serif;
      font-size: 18rem;
      color: rgba(74,140,64,0.07);
      line-height: 1;
      pointer-events: none;
    }
    .contact-big-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-style: italic;
      font-weight: 300;
      color: #fff;
      line-height: 1.4;
      margin-bottom: 2rem;
      position: relative;
      z-index: 1;
    }
    .contact-big-quote em { color: var(--gold); font-style: italic; }
    .contact-quote-body {
      font-size: 0.93rem;
      color: rgba(255,255,255,0.5);
      line-height: 1.8;
      margin-bottom: 1.8rem;
      position: relative;
      z-index: 1;
      max-width: 380px;
    }
    .contact-meta {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--fern);
      position: relative;
      z-index: 1;
    }

    
    footer {
      position: relative;
      z-index: 1;
      background: #030803;
      padding: 2.8rem 3.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1.5rem;
      border-top: 1px solid rgba(74,140,64,0.12);
    }
    .footer-left { display: flex; align-items: center; gap: 1.4rem; }
    .footer-tagline {
      font-size: 0.72rem;
      letter-spacing: 0.15em;
      color: rgba(255,255,255,0.25);
    }
    .footer-right {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      gap: 0.35rem;
    }
    .footer-right p {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      color: rgba(255,255,255,0.2);
    }
    .footer-dev {
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      color: rgba(74,140,64,0.5) !important;
    }

    
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeIn {
      from { opacity: 0; }
      to   { opacity: 1; }
    }

    /* reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    

    /* ── HAMBURGER ── */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 0.4rem;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: #222;
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── TABLET ≤900px ── */
    @media (max-width: 900px) {
      /* About */
      .about-top { grid-template-columns: 1fr; }
      .about-top-left { padding: 4rem 2rem; }
      .about-top-left::after { display: none; }
      .about-founder-wrap { min-height: 340px; }
      .about-bottom { grid-template-columns: 1fr; }
      .about-pillar { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 2rem; }
      .about-pillar:last-child { border-bottom: none; }
      /* Goals */
      .goals-grid-new { grid-template-columns: 1fr 1fr; gap: 1rem; }
      /* Gallery */
      .gallery-masonry { columns: 2; }
      .gallery-cta-row { flex-direction: column; align-items: flex-start; gap: 1rem; }
      /* Activities */
      .activities-wrap { grid-template-columns: 1fr; gap: 2rem; }
      /* Join */
      .join-banner { grid-template-columns: 1fr; }
      .join-left, .join-right { padding: 4rem 2rem; }
      /* Contact */
      .contact-outer { grid-template-columns: 1fr; }
      .contact-info-panel, .contact-quote-panel { padding: 4rem 2rem; }
      /* Footer */
      footer { padding: 2.5rem 2rem; }
    }

    /* ── MOBILE ≤768px ── */
    @media (max-width: 768px) {
      nav { padding: 0.9rem 1.5rem; }
      .nav-right { position: relative; }

      /* Hamburger ON, links hidden by default */
      .hamburger { display: flex; }
      .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.08);
        border-radius: 8px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.12);
        padding: 0.6rem 0;
        min-width: 200px;
        flex-direction: column;
        z-index: 200;
      }
      .nav-links.open { display: flex; }
      .nav-links li { width: 100%; }
      .nav-links a { padding: 0.75rem 1.5rem; width: 100%; }
      .nav-links a.active::after { display: none; }
      .nav-cta { display: none; }

      /* Hero */
      .hero-grid { grid-template-columns: 1fr; min-height: auto; }
      .hero-right { display: none; }
      .hero-left { padding: 5rem 1.5rem 3rem; min-height: 80vh; }
      .hero-mission-bar { grid-template-columns: 1fr; }
      .mission-bar-item:first-child { border-right: none; border-bottom: 1px solid rgba(74,140,64,0.2); }

      /* About */
      .about-headline { font-size: 2.4rem; }
      .about-founder-wrap { min-height: 280px; }

      /* Goals */
      .goals-grid-new { grid-template-columns: 1fr; }
      .goal-card-new { padding: 2rem 1.5rem; }

      /* Gallery */
      .gallery-masonry { columns: 1; }

      /* Activities */
      .act-item { padding: 1.4rem 0.8rem; gap: 1rem; }

      /* Join */
      .join-headline { font-size: 2.2rem; }
      .join-left { padding: 3.5rem 1.5rem; }
      .join-right { padding: 3rem 1.5rem; }
      .join-card { gap: 1rem; padding: 1rem 1.2rem; }
      .join-card-icon { width: 38px; height: 38px; font-size: 1.1rem; }

      /* Contact */
      .contact-info-panel { padding: 3rem 1.5rem; }
      .contact-quote-panel { padding: 2.5rem 1.5rem; }
      .contact-big-quote { font-size: 1.5rem; }
      .contact-link { padding: 1rem 1.2rem; }
      .contact-link-icon { width: 42px; height: 42px; }

      /* Footer */
      footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 2.5rem 1.5rem;
        gap: 1.2rem;
      }
      .footer-left { flex-direction: column; gap: 0.7rem; }
      .footer-right { align-items: center; }
    }

    /* ── SMALL MOBILE ≤480px ── */
    @media (max-width: 480px) {
      nav { padding: 0.8rem 1rem; }
      section { padding: 4rem 1.2rem; }

      .section-title { font-size: 2rem; }
      .about-headline { font-size: 2rem; }
      .join-headline { font-size: 1.9rem; }
      .contact-big-quote { font-size: 1.3rem; }

      .about-pillar { padding: 1.5rem 1rem; }
      .about-quote-block { padding: 1rem; }

      .act-num { font-size: 2rem; min-width: 36px; }
      .act-title { font-size: 0.62rem; }

      .goals-grid-new { grid-template-columns: 1fr; }
      .gallery-masonry { columns: 1; }

      .join-eyebrow { font-size: 0.58rem; }

      .contact-link { flex-direction: row; }
      .contact-meta { font-size: 0.6rem; }

      footer { padding: 2rem 1rem; }
    }

    /* ── VOLUNTEER FORM ── */
    .volunteer-eyebrow {
      display: block;
      font-size: 0.62rem; font-weight: 600;
      letter-spacing: 0.28em; text-transform: uppercase;
      color: var(--leaf); margin-bottom: 1rem;
    }
    .volunteer-form { margin-top: 1.8rem; display: flex; flex-direction: column; gap: 1rem; }
    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
    .form-label {
      font-size: 0.65rem; font-weight: 600;
      letter-spacing: 0.18em; text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }
    .form-input {
      background: rgba(255,255,255,0.05);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px; color: #fff;
      font-family: 'Jost', sans-serif; font-size: 0.92rem;
      padding: 0.75rem 1rem;
      transition: border-color 0.25s, background 0.25s;
      outline: none; width: 100%;
    }
    .form-input::placeholder { color: rgba(255,255,255,0.25); }
    .form-input:focus { border-color: var(--fern); background: rgba(74,140,64,0.07); }
    .form-select {
      appearance: none; -webkit-appearance: none;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(123,191,106,0.6)' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: right 1rem center; cursor: pointer;
    }
    .form-select option { background: #0d1f0d; color: #fff; }
    .form-textarea { resize: vertical; min-height: 90px; }
    .form-submit {
      margin-top: 0.4rem; padding: 0.9rem 2.2rem;
      background: var(--fern); color: #fff; border: none; border-radius: 6px;
      font-family: 'Jost', sans-serif; font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.15em; text-transform: uppercase; cursor: pointer;
      transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
      align-self: flex-start; box-shadow: 0 4px 18px rgba(74,140,64,0.25);
    }
    .form-submit:hover { background: #3d7835; transform: translateY(-2px); box-shadow: 0 8px 28px rgba(74,140,64,0.35); }
    .form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
    .form-success {
      display: none; font-size: 0.88rem; color: var(--leaf);
      background: rgba(74,140,64,0.1); border: 1px solid rgba(74,140,64,0.25);
      border-radius: 6px; padding: 0.75rem 1rem; margin-top: 0.5rem;
    }
    .form-success.visible { display: block; }
    @media (max-width: 768px) { .form-submit { width: 100%; text-align: center; } }
