*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --green-dark:  #1a4d2e;
      --green-main:  #2e7d52;
      --green-mid:   #3a9463;
      --green-pale:  #e8f5ee;
      --white:       #ffffff;
      --off-white:   #f4f6f4;
      --text-dark:   #1a2e1f;
      --text-mid:    #3d5a45;
      --text-light:  #6b8f74;
      --border:      #c8dece;
    }
    html, body { scroll-behavior: smooth; }
    body { font-family: 'DM Sans', sans-serif; background: var(--white); color: var(--text-dark); }
    .page-wrap { overflow-x: hidden; }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--white);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 56px; height: 72px;
      border-bottom: 1px solid var(--border);
      box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    }
    .nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
    .logo-circle {
      width: 48px; height: 48px; border-radius: 50%;
      background: var(--green-main);
      display: flex; align-items: center; justify-content: center;
      border: 2px solid var(--green-dark);
    }
    .logo-circle i { color: white; font-size: 20px; }
    .nav-links { display: flex; align-items: center; gap: 40px; }
    .nav-links a { text-decoration: none; font-size: 15px; font-weight: 400; color: var(--text-dark); transition: color 0.2s; }
    .nav-links a:hover { color: var(--green-main); }
    .btn-nav {
      background: var(--green-main); color: white !important;
      padding: 10px 28px; border-radius: 50px;
      font-weight: 600 !important; font-size: 14px !important;
      transition: background 0.2s, transform 0.15s !important;
    }
    .btn-nav:hover { background: var(--green-dark) !important; transform: translateY(-1px); }

    /* ===================== HERO ===================== */
    .hero {
      margin-top: 72px;
      min-height: calc(100vh - 72px);
      display: grid;
      grid-template-columns: 42fr 58fr;
      overflow: hidden;
      background: #f2faf5;
      position: relative;
    }

    /* ---- LEFT SIDE ---- */
    .hero-content {
      position: relative; z-index: 2;
      display: flex; flex-direction: column; justify-content: center;
      padding: 72px 40px 72px 72px;
      background: linear-gradient(160deg, #f2faf5 0%, #e4f4eb 100%);
    }
    /* Faint circle decoration behind text */
    .hero-content::before {
      content: '';
      position: absolute; top: -60px; left: -60px;
      width: 320px; height: 320px; border-radius: 50%;
      background: radial-gradient(circle, rgba(46,125,82,0.09) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-pin {
      display: inline-block;
      margin-bottom: 12px;
      animation: pinWiggle 2.2s ease-in-out infinite;
    }
    .hero-pin img { width: 44px; height: 44px; object-fit: contain; }
    @keyframes pinWiggle {
      0%,100% { transform: translateY(0) rotate(-6deg); }
      50%      { transform: translateY(-10px) rotate(6deg); }
    }
    .hero-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(52px, 5.5vw, 80px);
      font-weight: 800; color: var(--green-dark);
      line-height: 0.96; margin-bottom: 20px;
      letter-spacing: -2px;
      max-width: 280px; /* forces IKOT- / WHEN? wrap */
    }
    .hero-sub {
      font-size: 15px; color: var(--text-mid);
      line-height: 1.75; margin-bottom: 36px;
      max-width: 340px;
    }
    .hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 4px; }
    .btn-primary {
      background: var(--green-main); color: #fff;
      padding: 13px 28px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 15px;
      text-decoration: none; border: none; cursor: pointer;
      box-shadow: 0 6px 20px rgba(46,125,82,0.35);
      transition: background .2s, transform .15s, box-shadow .2s;
    }
    .btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(46,125,82,0.45); }
    .btn-ghost {
      background: transparent; color: var(--green-dark);
      padding: 13px 28px; border-radius: 50px;
      font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 15px;
      text-decoration: none; border: 2px solid var(--green-main); cursor: pointer;
      transition: all .2s;
    }
    .btn-ghost:hover { background: rgba(46,125,82,0.08); transform: translateY(-2px); }
    .hero-note { margin-top: 14px; font-size: 12px; color: var(--text-light); font-style: italic; }
    .hero-socials { display: flex; gap: 16px; margin-top: 32px; }
    .hero-socials a {
      width: 38px; height: 38px; border-radius: 50%;
      border: 1.5px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-mid); font-size: 14px; text-decoration: none;
      transition: all .2s;
      background: white;
    }
    .hero-socials a:hover { border-color: var(--green-main); color: var(--green-main); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(46,125,82,0.18); }

    /* ---- RIGHT SIDE — STAGE ---- */
    .hero-stage {
      position: relative;
      background: linear-gradient(145deg, #1a4d2e 0%, #2e7d52 55%, #3a9463 100%);
      display: flex; align-items: flex-end; justify-content: center;
      overflow: visible;
    }
    /* DLSU-D Magdalo Gate watermark — img tag used for reliable path */
    .stage-bg {
      position: absolute; inset: 0; z-index: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center top;
      opacity: 0.05;
      pointer-events: none;
    }
    /* Decorative arcs — pure CSS rings */
    .stage-arc {
      position: absolute; border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.08);
      pointer-events: none; z-index: 1;
    }
    .stage-arc-1 {
      width: 560px; height: 560px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    .stage-arc-2 {
      width: 800px; height: 800px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }
    /* Centre glow blob */
    .stage-glow {
      position: absolute; z-index: 1;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 480px; height: 480px; border-radius: 50%;
      background: radial-gradient(circle, rgba(111,207,151,0.18) 0%, transparent 68%);
      pointer-events: none;
    }
    /* Ground shadow */
    .stage-shadow {
      position: absolute;
      bottom: 10px; left: -10%;
      transform: translateX(-50%);
      width: 100%; height: 32px;
      background: rgba(0,0,0,0.45);
      border-radius: 50%; filter: blur(28px);
      z-index: 2;
      animation: shadowPulse 3.5s ease-in-out infinite;
    }
    @keyframes shadowPulse {
      0%,100% { transform: translateX(-50%) scaleX(1);    opacity: .45; }
      50%      { transform: translateX(-50%) scaleX(0.84); opacity: .25; }
    }
    /* Floating pin — above jeep windshield */
    .stage-pin {
      position: absolute;
      top: 12%; left: 10%;
      width: 7%; max-width: 70px;
      object-fit: contain;
      filter: drop-shadow(0 6px 14px rgba(0,0,0,0.55));
      animation: stagePinFloat 2.4s ease-in-out infinite;
      z-index: 5;
    }
    @keyframes stagePinFloat {
      0%,100% { transform: translateY(0) scale(1); }
      50%      { transform: translateY(-20px) scale(1.07); }
    }
    /* The jeep — bleeds LEFT slightly, crops off RIGHT edge */
    .stage-jeep {
      position: absolute;
      bottom: -310px;
      left: -18%;
      width: 125%;
      max-width: none;
      object-fit: contain;
      z-index: 3;
      filter:
        drop-shadow(-20px 20px 40px rgba(0,0,0,0.7))
        drop-shadow(0 8px 24px rgba(0,0,0,0.4));
      animation: stageJeepFloat 3.5s ease-in-out infinite;
      transform-origin: bottom center;
    }
    @keyframes stageJeepFloat {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-18px); }
    }



    /* SECTIONS */
    section { padding: 96px 80px; }
    .section-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green-mid); margin-bottom: 10px; }
    .section-title { font-family: 'Syne', sans-serif; font-size: clamp(28px,3.2vw,42px); font-weight: 700; color: var(--green-dark); line-height: 1.15; margin-bottom: 20px; }

    /* ABOUT */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; max-width: 1100px; margin: 0 auto; }
    .about-text p { font-size: 15px; line-height: 1.85; color: var(--text-mid); margin-bottom: 16px; }
    .about-logo { display: flex; justify-content: center; align-items: center; }
    .logo-emblem {
      width: 280px; height: 280px; border-radius: 50%;
      background: var(--green-pale); border: 4px solid var(--border);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
      animation: float 4s ease-in-out infinite;
      box-shadow: 0 12px 40px rgba(46,125,82,0.15);
    }
    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
    .logo-emblem i { font-size: 64px; color: var(--green-main); }
    .logo-emblem .logo-text { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 17px; color: var(--green-dark); letter-spacing: 2px; }
    .logo-stars { display: flex; gap: 6px; }
    .logo-stars i { color: var(--green-main); font-size: 11px; }

    /* NAVIGATE */
    #navigate { background: var(--off-white); }
    .navigate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; max-width: 1100px; margin: 0 auto; }
    .map-frame {
      border-radius: 16px; overflow: hidden;
      box-shadow: 0 8px 32px rgba(0,0,0,0.12);
      border: 3px solid var(--border);
      height: 100%;
      min-height: 620px;
    }
    .map-frame iframe { width: 100%; height: 100%; min-height: 620px; border: none; display: block; }
    .nav-features { display: flex; flex-direction: column; gap: 24px; }
    .nav-feat h4 { font-family: 'Syne', sans-serif; font-size: 15.5px; font-weight: 700; color: var(--green-main); margin-bottom: 6px; }
    .nav-feat p { font-size: 14px; line-height: 1.75; color: var(--text-mid); }
    .nav-btns { display: flex; gap: 14px; margin-top: 24px; flex-wrap: wrap; }
    .btn-outline {
      background: transparent; color: var(--green-dark);
      padding: 11px 24px; border-radius: 8px;
      font-family: 'DM Sans', sans-serif; font-weight: 500; font-size: 14px;
      text-decoration: none; border: 2px solid var(--green-main); cursor: pointer;
      transition: all 0.2s;
    }
    .btn-outline:hover { background: var(--green-pale); }

    /* FAQ */
    #faqs { background: var(--green-dark); }
    #faqs .section-tag { color: rgba(255,255,255,0.6); }
    #faqs .section-title { color: white; }
    .faq-inner { max-width: 800px; margin: 0 auto; }
    .faq-list { display: flex; flex-direction: column; gap: 6px; margin-top: 40px; }
    .faq-item {
      background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
      border-radius: 10px; overflow: hidden; transition: background 0.2s;
    }
    .faq-item:hover { background: rgba(255,255,255,0.12); }
    .faq-q {
      width: 100%; background: none; border: none; cursor: pointer;
      padding: 18px 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-family: 'DM Sans', sans-serif; font-size: 15px; font-weight: 500;
      color: white; text-align: left; gap: 16px;
    }
    .faq-q i { font-size: 12px; opacity: 0.6; transition: transform 0.3s; flex-shrink: 0; }
    .faq-item.open .faq-q i { transform: rotate(180deg); }
    .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; padding: 0 24px; }
    .faq-item.open .faq-a { max-height: 180px; padding: 0 24px 18px; }
    .faq-a p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.72); }

    /* COMMUNITY */
    #community { background: var(--white); }
    .comm-inner { max-width: 1100px; margin: 0 auto; }
    .comm-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 48px; }
    .comm-card {
      background: var(--off-white); border: 1px solid var(--border);
      border-radius: 16px; padding: 28px 24px 24px;
      transition: transform 0.2s, box-shadow 0.2s;
    }
    .comm-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
    .comm-quote { font-size: 40px; color: var(--green-mid); font-family: Georgia, serif; line-height: 1; margin-bottom: 12px; opacity: 0.5; }
    .comm-card p { font-size: 14.5px; line-height: 1.72; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
    .comm-user { display: flex; align-items: center; gap: 12px; }
    .comm-av {
      width: 40px; height: 40px; border-radius: 50%;
      background: var(--green-main);
      display: flex; align-items: center; justify-content: center;
      color: white; font-weight: 700; font-size: 15px; flex-shrink: 0;
    }
    .comm-info strong { display: block; font-size: 14px; color: var(--text-dark); }
    .comm-info span { font-size: 12.5px; color: var(--text-light); }
    .carousel-ctrl { display: flex; justify-content: center; gap: 14px; margin-top: 40px; }
    .carousel-btn {
      width: 44px; height: 44px; border-radius: 50%;
      border: 2px solid var(--green-main); background: transparent;
      color: var(--green-main); font-size: 15px; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.2s;
    }
    .carousel-btn:hover { background: var(--green-main); color: white; }

    /* FOOTER */
    footer { background: var(--white); border-top: 1px solid var(--border); padding: 64px 80px 40px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
    .footer-brand .f-name { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 12px; }
    .footer-brand p { font-size: 13.5px; line-height: 1.72; color: var(--text-light); max-width: 260px; }
    .f-socials { display: flex; gap: 12px; margin-top: 20px; }
    .f-socials a {
      width: 36px; height: 36px; border-radius: 50%;
      border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      color: var(--text-light); font-size: 13px; text-decoration: none;
      transition: all 0.2s;
    }
    .f-socials a:hover { border-color: var(--green-main); color: var(--green-main); }
    .footer-col h5 {
      font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 2px;
      color: var(--text-dark); margin-bottom: 16px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
    .footer-col ul li a { text-decoration: none; font-size: 13.5px; color: var(--text-light); transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--green-main); }
    .footer-bottom {
      border-top: 1px solid var(--border); padding-top: 24px;
      display: flex; justify-content: space-between; align-items: center;
      font-size: 12.5px; color: var(--text-light);
    }

    /* FADE IN */
    .fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    @media (max-width: 960px) {
      nav { padding: 0 20px; }
      section { padding: 60px 24px; }
      .hero { grid-template-columns: 1fr; }
      .hero-content { padding: 56px 24px; }
      .hero-stage { display: none; }
      .about-grid, .navigate-grid { grid-template-columns: 1fr; gap: 40px; }
      .comm-cards { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      footer { padding: 48px 24px 32px; }
    }